所有com.android.support库都必须使用完全相同的版本规范(混合版本可能导致运行时崩溃)。找到版本28.0.0,

时间:2019-02-16 08:36:28

标签: android

所有com.android.support库必须使用完全相同的版本规范(混合版本可能导致运行时崩溃)。找到版本28.0.0,27.0.2。示例包括com.android.support:animated-vector-drawable: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 个答案:

答案 0 :(得分:0)

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

备份您的项目,然后在android studio中转到

Refractor>迁移到AndroidX

答案 1 :(得分:0)

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

对于您的情况implementation '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'