今日、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'
どんな助けも大歓迎です。ありがとう。
編集
最後に、自分で解決しました。ここに私がやったことがあります:
compile 'com.google.Android.gms:play-services-measurement:9.6.1'
を削除してからプロジェクトをコンパイルしましたGCM
がFirebase
にシフトされ、missing api_key error
ファイルが機能しないため、google-services.json
が返されます。google-services.json
ファイルを、Firebaseからのクラウドメッセージングを使用する新しい生成ファイルで更新するだけです@drawable/powered_by_google_dark
が欠落しているという別のエラーが発生しました。これを修正するには、compile 'com.google.Android.gms:play-services-places:9.6.0'
を依存関係に追加します今日、私は同じ問題を抱えていました。これで問題が解決しました:
スタンドアローンを開きますAndroid SDK Manager。エクストラセクションでは「Google Play Services」は最新バージョンでしたが、「Google Repository」をバージョン33から35、問題はなくなりました。
最新のGoogle Playサービスを持っていません。リンクをクリックするだけでAndroid studioがインストールするためのダイアログを表示します。
すべてのプレイサービスの依存関係を9.6.0に設定します。 9.6.1はまだリリースされていません。それでも問題が発生する場合は、最新のGoogle PlayサービスとリポジトリをAndroidスタジオにインストールしてください。
まあ、インターネットに接続していないときに起こることもあります。エラーがなくなったら、インターネットに接続してプロジェクトを再構築します。私のためにこのように働いた。