Gradle混合版本28.0.0-beta01和26.1.0

时间:2018-08-05 14:09:01

标签: android dependencies build.gradle version

我遇到一个问题,即Android Studio经常说我正在混合使用28.0.0-beta01和26.1.0,但是我没有使用26.1的库

我检查了其他一些帖子,但是没有任何解释,或者是我没有工作的帖子。

这是build.gradle:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "at.mrminemeet.asciimoji"
        minSdkVersion 23
        targetSdkVersion 28
        versionCode 31
        versionName '2.1'
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    buildToolsVersion '28.0.1'
    productFlavors {
    }
}

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    testImplementation 'junit:junit:4.12'
    implementation 'com.android.support.constraint:constraint-layout:1.1.2'
    implementation 'com.android.support:recyclerview-v7:28.0.0-beta01'
    implementation 'com.android.support:design:28.0.0-beta01'
    implementation 'com.android.support:support-v4:28.0.0-beta01'
    implementation 'com.android.support:appcompat-v7:28.0.0-beta01'
    implementation 'com.android.support:gridlayout-v7:28.0.0-beta01'
    implementation 'com.android.support:gridlayout-v7:28.0.0-beta01'
    implementation 'com.google.android.gms:play-services-ads:15.0.1'
    implementation 'com.google.android.gms:play-services-maps:15.0.1'
    implementation 'com.google.android.gms:play-services-ads:15.0.1'
}

apply plugin: 'com.google.gms.google-services'

Picture

2 个答案:

答案 0 :(得分:2)

使用gradle app:dependencies检查依赖关系。根据结果​​,您可以轻松解决问题

答案 1 :(得分:0)

您可能使用了不同版本的支持库。所有支持的库版本必须相同