web-dev-qa-db-ja.com

appcompat-v7:27.1.1がplay-services:11.0.1と競合しています

私は新しいアプリに取り組んでいます。現在、依存関係を追加しようとしています。

implementation 'com.google.Android.gms:play-services:11.0.1'

実行すると、実装 'com.Android.support:appcompat-v7:27.1.1'でgradleコンパイルエラーが発生します。

Com.Android.supportライブラリはすべて、まったく同じバージョン仕様を使用する必要があります(バージョンを混在させるとランタイムがクラッシュする可能性があります)。バージョン27.1.1、26.1.0が見つかりました。例には、com.Android.support:animated-vector-drawable:27.1.1およびcom.Android.support:mediarouter-v7:26.1.0が含まれます。

この問題を最適に解決する方法はありますか?

Gradleファイル

apply plugin: 'com.Android.application'

Android {
    compileSdkVersion 27
    defaultConfig {
        applicationId "com.example.boulbabazitouni.getdevicelocation_time"
        minSdkVersion 21
        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(include: ['*.jar'], dir: 'libs')
    implementation 'com.Android.support:appcompat-v7:27.1.1'
    implementation 'com.Android.support:support-vector-drawable:27.1.1'
    implementation 'com.Android.support:mediarouter-v7:27.1.1'
    implementation 'com.Android.support.constraint:constraint-layout:1.1.0'
    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.Android.gms:play-services:11.0.1'
}
12

問題は、このライブラリに一時的な依存関係があることです。これが発生するたびに、競合する依存関係を明示的に追加し、現在のバージョンと一致させることができます。

implementation 'com.Android.support:animated-vector-drawable:27.1.1'
implementation 'com.Android.support:mediarouter-v7:27.1.1'
implementation 'com.Android.support:support-v4:27.1.1'
7
Levi Moreira