web-dev-qa-db-ja.com

Google Play Servicesを11.0.0バージョンにアップグレードした後のエラー

奇妙な問題があります。 Google Play Servicesライブラリをバージョン10.2.6からバージョン11.0.0にアップロードした後、コンパイルしようとすると次のエラーが表示されます。

エラー:タスク ':app:processDebugGoogleServices'の実行に失敗しました。 google-servicesプラグインのバージョンを更新して、バージョンの競合を修正してください(最新バージョンに関する情報は https://bintray.com/Android/android-tools/com.google.gms.googleで入手できます-services / )またはcom.google.Android.gmsのバージョンを11.0.0に更新します。

エラーに記載されているリンクにアクセスしましたが、google-servicesプラグインの最後のバージョンは3.1.0(つまり、使用しているバージョン)で、すべてのプレイサービスライブラリを11.0.0バージョンにアップグレード済みです。 11.0.0バージョンのGMSでコードをコンパイルするにはどうすればよいですか?

ここに私のbuild.gradleファイル(モジュールスコープ)があります:

apply plugin: 'com.Android.application'
apply plugin: 'realm-Android'

Android {

    compileSdkVersion 25
    buildToolsVersion "25.0.2"
    defaultConfig {
        applicationId "com.example.app"
        minSdkVersion 15
        targetSdkVersion 25
        versionCode 23
        versionName "0.7.3.2"
        testInstrumentationRunner "Android.support.test.runner.AndroidJUnitRunner"
        manifestPlaceholders = [onesignal_app_id               : "12345678-1234-1234-1234-123456789",
                            // Project number pulled from dashboard, local value is ignored.
                            onesignal_google_project_number: "REMOTE"]
        multiDexEnabled true
    }
    buildTypes {

        release {
            minifyEnabled true
            proguardFiles getDefaultProguardFile('proguard-Android.txt'), 'proguard-rules.pro'
        }
    }

    productFlavors {
        prontopro {
            applicationId "com.example.app"
            buildConfigField "boolean", "TEST_ENVIRONMENT", "false"
        }

        prontoproTest {
            applicationId "com.example.app"
            buildConfigField "boolean", "TEST_ENVIRONMENT", "true"
        }
    }

    dataBinding {
        enabled = true
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile 'com.Android.support:multidex:1.0.1'
    compile 'com.Android.support:appcompat-v7:25.3.1'
    compile 'com.Android.support:design:25.3.1'
    compile 'com.google.Android.gms:play-services-places:11.0.0'
    compile 'com.google.Android.gms:play-services-location:11.0.0'
    compile 'org.parceler:parceler-api:1.1.6'
    annotationProcessor 'org.parceler:parceler:1.1.6'
    annotationProcessor 'com.Android.databinding:compiler:2.2.2'
    compile 'com.viewpagerindicator:library:2.4.1'
    compile 'com.squareup.retrofit2:retrofit:2.1.0'
    compile 'com.squareup.retrofit2:converter-gson:2.1.0'
    compile 'com.squareup.okhttp3:logging-interceptor:3.4.2'
    compile 'com.google.code.gson:gson:2.7'
    compile 'com.github.bumptech.glide:glide:3.7.0'
    compile 'com.github.chrisbanes:PhotoView:1.2.6'
    compile 'de.hdodenhof:circleimageview:2.1.0'
    compile 'com.facebook.Android:facebook-Android-sdk:[4,5)'
    compile 'io.realm:Android-adapters:2.0.0'
    compile 'com.google.firebase:firebase-crash:10.2.6'
    //reactive libraries
    compile 'io.reactivex:rxandroid:1.2.1'
    compile 'io.reactivex:rxjava:1.2.3'
    compile 'com.jakewharton.rxbinding:rxbinding:1.0.0'
    compile 'com.jakewharton.rxbinding:rxbinding-support-v4:1.0.0'
    compile 'com.jakewharton.rxbinding:rxbinding-appcompat-v7:1.0.0'
    compile 'com.jakewharton.rxbinding:rxbinding-design:1.0.0'
    compile 'com.jakewharton.rxbinding:rxbinding-recyclerview-v7:1.0.0'
    compile 'com.tbruyelle.rxpermissions:rxpermissions:0.8.2@aar'
    compile 'com.squareup.retrofit2:adapter-rxjava:2.1.0'
    compile 'com.github.pwittchen:reactivenetwork:0.8.0'
    compile 'com.hwangjr.rxbus:rxbus:1.0.5'
    compile 'com.f2prateek.rx.preferences:rx-preferences:1.0.2'
    //testing
    androidTestCompile('com.Android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.Android.support', module: 'support-annotations'
    })
    testCompile 'junit:junit:4.12'
    testCompile 'org.mockito:mockito-core:2.6.3'
    //onesignal
    compile 'com.onesignal:OneSignal:3.4.4@aar'
    compile "com.mixpanel.Android:mixpanel-Android:5.1.0"
    compile 'com.google.Android.gms:play-services-gcm:11.0.0'
}
apply plugin: 'com.google.gms.google-services'

最後に、build.gradleファイル(アプリスコープ)を示します。

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.Android.tools.build:gradle:2.3.2'
        classpath 'io.realm:realm-gradle-plugin:3.1.4'
        classpath 'com.google.gms:google-services:3.1.0'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        maven { url "http://dl.bintray.com/populov/maven" }
        maven { url "https://jitpack.io" }
        mavenCentral()
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}
13
Mattia Ruggiero

apply plugin: 'com.google.gms.google-services'を削除する必要があります

apply plugin: 'com.Android.application'には既に同じパッケージがあるためです。

そこで競合が発生します。

更新:

Playサービスバージョン11.0.1を使用します

24
dustblue

Play Serviceバージョン12.0.0を使用し、

プロジェクトレベルのgradleではclasspath 'com.google.gms:google-services:3.1.0'を使用します

[〜#〜] edit [〜#〜]最新バージョンに更新された回答

6
Abhishek Singh

Android Studioのメジャーアップデートの後、プロジェクトの再構築をクリーンアップします。より良いバージョン10を使用できます。

1
Gowthaman M

私のために働いたのは次のことでした

プロジェクトGradle

dependencies {
    classpath 'com.Android.tools.build:gradle:2.3.2'
    classpath 'com.google.gms:google-services:3.0.0'

アプリのGradle

compileSdkVersion 26
buildToolsVersion '26.0.0'
defaultConfig {
    minSdkVersion 16
    targetSdkVersion 26
    multiDexEnabled = true
}

依存関係

//    compile 'com.crittercism:crittercism-Android-agent:+'
compile project(':paymentGatewayCommons')
compile project(':Paypal')
compile project(':paytm')
compile project(':payu')
compile 'com.fasterxml.jackson.core:jackson-core:2.9.0.pr1'
compile 'com.fasterxml.jackson.core:jackson-annotations:2.9.0.pr1'
compile 'com.fasterxml.jackson.core:jackson-databind:2.9.0.pr1'
compile 'com.Android.support:multidex:1.0.1'
compile 'com.google.Android.gms:play-services:11.0.1'
compile 'com.google.Android.gms:play-services-base:11.0.1'
//compile 'com.google.Android.gms:play-services-appindexing:11.0.1'
//compile 'com.google.Android.gms:play-services-contextmanager:11.0.1'
compile 'com.google.Android.gms:play-services-places:11.0.1'
compile 'com.google.Android.gms:play-services-nearby:11.0.1'
compile 'com.google.Android.gms:play-services-maps:11.0.1'
compile 'com.google.Android.gms:play-services-ads:11.0.1'
compile 'com.google.Android.gms:play-services-auth:11.0.1'
compile 'com.google.Android.gms:play-services-gcm:11.0.1'
compile 'com.google.Android.gms:play-services-analytics:11.0.1'
compile 'com.google.Android.gms:play-services-location:11.0.1'
compile 'com.google.maps.Android:android-maps-utils:0.4.+'
compile 'com.google.zxing:core:3.2.0'
compile 'com.journeyapps:zxing-Android-embedded:3.3.0@aar'
compile 'com.google.firebase:firebase-messaging:11.0.1'
compile 'com.google.firebase:firebase-core:11.0.1'
compile 'com.google.firebase:firebase-analytics:11.0.1'
compile 'com.flurry.Android:analytics:6.4.2'
compile 'com.Android.support.constraint:constraint-layout:+'
testCompile 'junit:junit:4.12'
1
Siddharth

おそらく準備は万全ですが、Firebaseプラグインを11.0.1に更新すると問題が解決しました。

1
Altf4

SmsRetriverをコンパイルする場合など、必要なサービスを直接ターゲットにしてみてください

compile 'com.google.Android.gms:play-services-auth-api-phone:11.0.1'

のではなく

compile 'com.google.Android.gms:play-services:11.0.1'
0
Anubhav Tiwari