web-dev-qa-db-ja.com

Google Playサービスにアップグレードする:9.0.0エラー解決に失敗しました:com.google.Android.gms:play-services-measurement:9.0.0

からbuild.gradleファイルをアップグレードしました。

compile 'com.google.Android.gms:play-services:8.4.0'

compile 'com.google.Android.gms:play-services:9.0.0'

そして今、私は今までになかったエラーを受けています。

エラー:解決に失敗しました:com.google.Android.gms:play-services-measurement:9.0.0enter image description here

enter image description here

125
Philip Herbert

これは問題を解決するために発見されました。

プロジェクトレベルのグレードcom.google.gms:google-services:2.1.0のクラスパスをクラスパスcom.google.gms:google-services:3.0.0に更新します。

246
user3330522

必須:Android StudioおよびGoogle Play Servicesの最新バージョン

次のように最上位build.gradleファイルとアプリレベルのbuild.gradleファイルを更新することで、プロジェクトにプラグインを追加できます。

classpath 'com.google.gms:google-services:3.0.0'

好き

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

buildscript {
    repositories {
        jcenter()
        mavenLocal()
    }
    dependencies {
        classpath 'com.Android.tools.build:gradle:2.2.0'
        classpath 'com.google.gms:google-services:3.0.0'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
        mavenLocal()
    }
}

それでは、Google Play Servicesに依存関係を追加する必要があります。あなたのアプリのbuild.gradleの中に追加してください:

compile 'com.google.Android.gms:play-services:9.6.1'

最後に

    apply plugin: 'com.Android.application'

Android {
    compileSdkVersion 24
    buildToolsVersion "24.0.2"

    defaultConfig {
        applicationId "// set Yours"
        minSdkVersion 15
        targetSdkVersion 24
        versionCode 1
        versionName "1.0"


    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-Android.txt'), 'proguard-rules.pro'
        }
    }
    packagingOptions {
        exclude 'LICENSE.txt'
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
  compile 'com.google.Android.gms:play-services-gcm:9.6.1'
    compile 'com.Android.support:appcompat-v7:24.2.0'

}

apply plugin: 'com.google.gms.google-services'
27
IntelliJ Amiya

GCMはrebrandedからFirebaseへのクラウドメッセージング(FCM)です。com.google.Android.gms:play-services:9.0.0を使用したい場合はこの記事を読んでください FCM 。プラグインを使用するようにbuild.gradleファイルを修正してください。

buildscript {
  dependencies {
    // Add this line
    classpath 'com.google.gms:google-services:3.0.0'
  }
}
11
Saeed Darvish

私が見つけた最も簡単な方法はすべての人に最新版を使うことです

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.Android.support.test.espresso:espresso-core:2.2.2', {
    exclude group: 'com.Android.support', module: 'support-annotations'
})
//apply plugin: 'com.google.gms.google-services' //Firebase
compile 'com.Android.support:appcompat-v7:25.3.1'
compile 'com.Android.support:design:25.3.1'
compile 'com.Android.support.constraint:constraint-layout:1.0.0-alpha8'
compile 'com.google.firebase:firebase-auth:10.2.6'
compile 'com.google.Android.gms:play-services-auth:10.2.6' //10.2.6
compile 'com.google.firebase:firebase-core:10.2.6' // used for FCM
compile 'com.google.firebase:firebase-messaging:10.2.6' // used for FCM
testCompile 'junit:junit:4.12'
//  apply plugin: 'com.google.gms.google-services'

}

説明

プラグインを適用する: 'com.google.gms.google-services' //一番下にこれを追加します。

  • まず、apply plugin: 'com.google.gms.google-services' //これを一番下に追加します。
  • 次に、これらを依存関係に追加します

    compile 'com.google.firebase:firebase-auth:10.2.6' // makeこれは最新バージョンです。

    compile 'com.google.Android.gms:play-services-auth:10.2.6' //10.2.6最新

    compile 'com.google.firebase:firebase-core:10.2.6' // FCMに使用されます

    compile 'com.google.firebase:firebase-messaging:10.2.6' // FCMに使用されます

2017年5月25日、今日のfirebase-auth 10.2.6が最新であると仮定します。接続してエラーを表示しません。

これが役に立ったと思います

1
Harshit Sahni

プレイサービスを10.2.1より上のバージョンに変更すると、依存関係の解決に失敗し始めました。

以下のmaven URLを変更することで問題が解決することがわかりました。

maven { url 'https://raw.githubusercontent.com/onepf/OPF-mvn-repo/master/' }

maven { url 'https://github.com/onepf/OPF-mvn-repo/raw/master/' }

URLを変更すると、それがgradleまたはmavenにキャッシュされなくなり、それが解決される可能性があります。

0
Claus Holst

私はGradleの文字列を

compile 'com.google.Android.gms:play-services:9.0.0' //or latest version
0
E.Mayorenko