如何解决混合依赖版本的问题?

时间:2019-03-28 20:38:18

标签: android version mixing

我在混合依赖版本时遇到错误。几天前,它工作得非常好,但问题无处不在。

显示:所有com.android.support库都必须使用完全相同的版本规范(混合版本可能导致运行时崩溃)。找到版本28.0.0-alpha1,28.0.0。示例包括com.android.support:customtabs:28.0.0-alpha1和com.android.support:animated-vector-drawable:28.0.0

我也在使用Firebase依赖项,是否会引起任何麻烦?

我试图添加一些额外的依赖项(如弹出所示),但没有任何效果。

应用插件:“ com.android.application”

android {     compileSdkVersion 28

defaultConfig {
    applicationId "namantiwari.epplieschool"
    minSdkVersion 21
    targetSdkVersion 28
    versionCode 7
    versionName "1.4"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}

}

依赖项{     实现fileTree(dir:'libs',包括:['* .jar'])

implementation 'com.android.support:appcompat-v7:28.0.0-alpha1'

implementation 'com.android.support:customtabs:28.0.0-alpha1'
implementation 'com.android.support:support-vector-drawable:28.0.0-alpha1'
implementation 'com.android.support:support-media-compat:28.0.0-alpha1'
implementation 'com.android.support:support-v4:28.0.0-alpha1'

implementation 'com.android.support:design:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'

implementation 'com.google.firebase:firebase-messaging:17.3.2'
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'
implementation 'com.google.firebase:firebase-core:16.0.1'
compile 'com.squareup.okhttp3:okhttp:3.2.0'

} 应用插件:“ com.google.gms.google-services”

1 个答案:

答案 0 :(得分:0)

Android X应该可以解决这些问题。

How to migrate to Android X