当我尝试开始测试时,出现此错误:
与项目“: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可能在内部使用该版本!我应该怎么做才能解决冲突?!
答案 0 :(得分:2)
在gradle文件中使用依赖项
实现'com.android.support:support-media-compat:27.1.1'
答案 1 :(得分:0)
尝试使用 // noinspection GradleCompatible 上面显示错误的行