当前位置: 首页 > 知识库问答 >
问题:

一切正常。Android支持库必须使用完全相同的版本规范。找到了版本28.0.0、26.1.0

汪安宁
2023-03-14

所有com.android.support库都必须使用完全相同的版本规范(混合版本可能导致运行时崩溃)。找到的版本28.0.0, 26.1.0。示例包括com.android.support:动画-矢量-绘图:28.0.0和com.android.support:支持-媒体-比较:26.1.0少(Ctrl F1)有一些库或工具和库的组合不兼容,或者可能导致错误。其中一种不兼容是使用不是最新版本的Android支持库版本进行编译(或者特别是低于您的目标SdkVersion的版本)。问题id:GradleCompace ble问题id:GradleCompace ble

构建中的依赖关系。格拉德尔

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'
}

共有1个答案

阳福
2023-03-14

您可以通过添加库来删除错误,如下所示:

dependencies {
  implementation 'com.android.support:animated-vector-drawable:28.0.0'
  implementation 'com.android.support:support-media-compat:28.0.0'
} 
 类似资料: