与项目 ':app' 中的依赖项'com.android.support:support-media-compat'冲突



当我尝试开始测试时,出现此错误:

与项目 'app' 中的依赖项 'com.android.support:support-media-compat' 冲突。应用 (27.0.0( 和测试应用 (27.1.1( 的已解决版本不同。有关详细信息,请参阅 https://d.android.com/r/tools/test-apk-dependency-conflicts.html。

这是我的build.gradle依赖项:

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:cardview-v7:27.1.1'
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:recyclerview-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
// ViewModel and LiveData
implementation "android.arch.lifecycle:extensions:1.1.1"
annotationProcessor "android.arch.lifecycle:compiler:1.1.1"
// ButterKnife Library
implementation 'com.jakewharton:butterknife:8.8.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
// Gson Library
implementation 'com.google.code.gson:gson:2.8.5'
// Glide Library
implementation 'com.github.bumptech.glide:glide:4.8.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.8.0'
// ExoPlayer Library
implementation 'com.google.android.exoplayer:exoplayer-core:2.8.3'
implementation 'com.google.android.exoplayer:exoplayer-ui:2.8.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation "com.android.support.test:rules:1.0.2"
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support:support-annotations:27.1.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-contrib:3.0.2'
}

我在代码中的任何地方都没有看到使用 27.0.0 版本,我认为 ExoPlayer 可能在内部使用该版本!我能做些什么来解决冲突?!

在 gradle 文件中使用依赖项

实现 'com.android.support:support-media-compat:27.1.1'

尝试使用 无检查 Gradle兼容 上面显示错误的行

相关内容

最新更新