gradle发现版本错误

时间:2018-06-01 11:39:24

标签: android android-studio

我收到了这个错误:

  

所有com.android.support库必须使用完全相同的内容   版本规范(混合版本可能导致runtme崩溃)。   发现版本27.1.1,26,1.0。例子包括   com.android.support:animated-vector-drawable:27.1.1和   android.supoirt:customtabs:26.1.0

我没有自定义:26 ... 我该如何解决这个问题?

我的代码:

android {
    compileSdkVersion 27
    defaultConfig {
        applicationId "com.social.uk"
        minSdkVersion 15
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    implementation 'com.android.support:appcompat-v7:27.1.1' // error here
    implementation 'com.android.volley:volley:1.0.0'
    testImplementation 'junit:junit:4.12'
    implementation 'com.android.support:recyclerview-v7:27.1.1'
    implementation 'com.android.support:cardview-v7:27.1.1'
    //compile 'com.google.android.gms:play-services-appindexing:9.8.0'
    implementation 'com.android.support:design:27.1.1'
    implementation 'com.squareup.picasso:picasso:2.5.2'
    implementation 'com.squareup.okhttp3:okhttp:3.7.0'
    implementation 'de.hdodenhof:circleimageview:2.1.0'
    implementation 'com.google.android.gms:play-services-ads:15.0.1'
    implementation 'com.anjlab.android.iab.v3:library:1.0.+'
}

1 个答案:

答案 0 :(得分:2)

您的其他一个依赖项已在内部添加了com.android.support:customtabs:26.1.0。您可以只包含更新后的版本com.android.support:customtabs:27.1.1来覆盖。