所有com.android.support库必须使用完全相同的版本 规范(混合版本可能导致运行时崩溃)。找到了 版本28.0.0、26.1.0。例子包括 com.android.support:animated-vector-drawable:28.0.0和 com.android.support:support-media-compat:26.1.0以下(Ctrl + F1) 是一些库或工具和库的组合,它们是 不兼容,否则可能导致错误。一种这样的不兼容是 使用不支持的Android支持库版本进行编译 最新版本(或特别是低于您的版本 targetSdkVersion)。问题ID:GradleCompatible问题ID: GradleCompatible
build.gradle中的依赖项
dependencies {
implementation fileTree(dir:'libs',include:['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.google.android.gms:play-services-maps:16.0.0'
testImplementation'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-
core:3.0.2'
}
答案 0 :(得分:0)
您可以通过添加如下所示的库来消除错误:
dependencies {
implementation 'com.android.support:animated-vector-drawable:28.0.0'
implementation 'com.android.support:support-media-compat:28.0.0'
}