web-dev-qa-db-ja.com

解決に失敗しました:com.google.Android.gms:play-services-measurement:9.6.1

今日、Android Nをサポートするために、すべてのサポートライブラリとビルドツールを最新バージョンに更新しました。すべてを更新してアプリを実行すると、InstanceId私のアプリでGCMを生成する方法ですので、play-servicesも更新することを提案するソリューションを検索し、見つけました。すべてのSO質問と回答行き詰まっていて先に進むことができません。サポートライブラリに戻る23.x.xは、Android N。をターゲットにしたいため、オプションではありません。

これが私のプロジェクトレベルbuild.gradleファイルの外観:

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

allprojects {
    repositories {
        jcenter()
    }
}

アプリレベルbuild.gradle

buildscript {
    repositories {
        mavenCentral()
        maven { url 'https://maven.fabric.io/public' }
//        maven { url 'http://hansel.io/maven' }
        maven {
            url "https://jitpack.io"
        }
    }

    dependencies {
        classpath 'io.fabric.tools:gradle:1.+'
//        classpath 'io.hansel.preprocessor:preprocessor:1.0.+'
    }
}


apply plugin: 'com.Android.application'
apply plugin: 'io.fabric'
//apply plugin: 'io.hansel.preprocessor'


Android {
    compileSdkVersion 24
    buildToolsVersion "24.0.2"
    signingConfigs {

    }
    defaultConfig {
        applicationId 'com.example.Android'
        multiDexEnabled true
        minSdkVersion 16
        targetSdkVersion 24
        versionCode 47
        versionName "1.3.2"
        renderscriptTargetApi 24
        renderscriptSupportModeEnabled true
    }
    buildTypes {
        debug {
            applicationIdSuffix = ".dev"
            resValue "string", "app_name", "example-debug"
        }
        release {
            minifyEnabled false
            shrinkResources false
            resValue "string", "app_name", "example"
            proguardFiles getDefaultProguardFile('proguard-Android.txt'), 'proguard-rules.pro'
        }
    }
    productFlavors {
        dev {
            // dev utilizes minSDKVersion = 21 to allow the Android gradle plugin
            // to pre-dex each module and produce an APK that can be tested on
            // Android Lollipop without time consuming dex merging processes.
            minSdkVersion 21
        }
        prod {
            // The actual minSdkVersion for the application.
            minSdkVersion 16
        }
    }
    dexOptions {
        javaMaxHeapSize "4g"
    }
}

repositories {
    mavenCentral()
    mavenLocal()
    jcenter()
    maven { url 'https://maven.fabric.io/public' }
    maven { url "https://jitpack.io" }
//    maven { url 'http://hansel.io/maven' }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile 'com.Android.support:appcompat-v7:24.2.1'
    compile 'com.Android.support:support-v4:24.2.1'
    compile 'com.Android.support:support-annotations:24.2.1'
    compile 'com.squareup.picasso:picasso:2.5.2'
    compile 'com.Android.support:design:24.2.1'
    compile 'com.facebook.Android:facebook-Android-sdk:4.3.0'
    compile 'com.squareup.okhttp:okhttp:2.4.0'
    compile 'com.squareup.okhttp:okhttp-urlconnection:2.4.0'
    compile 'com.Android.support:recyclerview-v7:24.2.1'
    compile 'com.Android.support:cardview-v7:24.2.1'
    compile 'com.squareup.retrofit:retrofit:1.9.0'
    compile 'com.jakewharton:butterknife:7.0.1'
    compile 'com.github.clans:fab:1.6.1'
    compile 'com.facebook.fresco:fresco:0.8.1+'
    compile 'com.facebook.fresco:imagepipeline-okhttp:0.8.1+'
    compile 'uk.co.chrisjenx:calligraphy:2.1.0'
    compile 'com.google.Android.gms:play-services-analytics:9.6.1'
    compile 'com.google.Android.gms:play-services-location:9.6.1'
    compile 'com.google.Android.gms:play-services-gcm:9.6.1'
    compile 'com.google.Android.gms:play-services-measurement:9.6.1'
    compile 'com.github.liuguangqiang.swipeback:library:1.0.2@aar'
    compile 'me.imid.swipebacklayout.lib:library:1.0.0'
    compile 'com.github.2359media:EasyAndroidAnimations:0.8'
    compile 'com.theartofdev.edmodo:Android-image-cropper:2.0.+'
    compile 'com.wang.avi:library:1.0.1'
    compile 'com.nineoldandroids:library:2.4.0'
    compile 'com.mixpanel.Android:mixpanel-Android:4.6.4'
    compile 'com.github.ppamorim:dragger:1.2'
    compile 'io.reactivex:rxandroid:1.1.0'
    compile 'io.reactivex:rxjava:1.1.3'
    compile 'com.jakewharton.rxbinding:rxbinding:0.2.0'
//    debugCompile 'com.squareup.leakcanary:leakcanary-Android:1.4-beta2'
//    releaseCompile 'com.squareup.leakcanary:leakcanary-Android-no-op:1.4-beta2'
    compile 'com.bignerdranch.Android:expandablerecyclerview:2.1.1'
    compile 'com.Android.support:multidex:1.0.1'
    compile 'com.birbit:Android-priority-jobqueue:2.0.0'
    compile 'com.squareup:otto:1.3.8'
    compile 'com.mikhaellopez:circularprogressbar:1.1.1'
    compile 'com.github.dotloop:aosp-exif:be25ae51ec'
    compile('com.crashlytics.sdk.Android:crashlytics:2.5.5@aar') {
        exclude group: 'com.squareup.okhttp', module: 'okhttp'
        transitive = true;
    }
}
apply plugin: 'com.google.gms.google-services'

そして、これは私が得ているエラーです: enter image description here

どんな助けも大歓迎です。ありがとう。

編集

Google Playサービスも更新されます。 enter image description here

9
Amit Tiwari

最後に、自分で解決しました。ここに私がやったことがあります:

  1. compile 'com.google.Android.gms:play-services-measurement:9.6.1'を削除してからプロジェクトをコンパイルしました
  2. GCMFirebaseにシフトされ、missing api_key errorファイルが機能しないため、google-services.jsonが返されます。
  3. これを修正するには、google-services.jsonファイルを、Firebaseからのクラウドメッセージングを使用する新しい生成ファイルで更新するだけです
  4. この後、Places Autocomplete APIを使用しているため、プロジェクトから@drawable/powered_by_google_darkが欠落しているという別のエラーが発生しました。これを修正するには、compile 'com.google.Android.gms:play-services-places:9.6.0'を依存関係に追加します
2
Amit Tiwari

今日、私は同じ問題を抱えていました。これで問題が解決しました:

スタンドアローンを開きますAndroid SDK Manager。エクストラセクションでは「Google Play Services」は最新バージョンでしたが、「Google Repository」をバージョン33から35、問題はなくなりました。

5
sativa

最新のGoogle Playサービスを持っていません。リンクをクリックするだけでAndroid studioがインストールするためのダイアログを表示します。

2
sativa

すべてのプレイサービスの依存関係を9.6.0に設定します。 9.6.1はまだリリースされていません。それでも問題が発生する場合は、最新のGoogle PlayサービスとリポジトリをAndroidスタジオにインストールしてください。

1
Sudip Podder

まあ、インターネットに接続していないときに起こることもあります。エラーがなくなったら、インターネットに接続してプロジェクトを再構築します。私のためにこのように働いた。

0
Shivam Singh