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

一切正常。Android支持库必须使用完全相同的版本规范(混合版本可能会导致运行时崩溃)。找到了28.0.0版本,

于捷
2023-03-14

所有com.android.support库都必须使用完全相同的版本规范(混合版本可能导致运行时崩溃)。找到的版本28.0.0, 27.0.2。示例包括com.android.support:动画矢量绘图: 28.0.0和com.android.support: cardview-v7:27.0。

无论我使用什么API都会给我同样的错误。

implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.facebook.android:facebook-android-sdk:[4,5)'

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'

共有2个答案

邹京
2023-03-14

显式添加具有旧版本但具有新版本号的库。

在您的情况下实现'com.android.support: cardview-v7:28.0.0'所以您需要添加:

implementation 'com.android.support:cardview-v7:28.0.0'  

ie:从第二项中获取库,并使用第一项中的版本号实现它。

注意:现在不要忘记按同步

现在,更改后,您的依赖项将如下所示:

  implementation fileTree(dir: 'libs', include: ['*.jar'])
  implementation 'com.android.support:appcompat-v7:28.0.0'
  implementation 'com.android.support:support-v4:28.0.0'
  implementation "com.android.support:support-media-compat:28.0.0"
  implementation "com.android.support:customtabs:28.0.0"
  implementation 'com.android.support:cardview-v7:28.0.0'
  implementation 'com.android.support.constraint:constraint-layout:1.1.3'
  implementation 'com.facebook.android:facebook-android-sdk:[4,5)'

  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'
桑坚成
2023-03-14

android团队一直在努力将支持库迁移到androidx。这可以让你更好地混合搭配。

备份您的项目并在android Studio中转到

折射镜

 类似资料: