https://www.simplifiedcoding.net/firebase-cloud-messaging-Android/ に記載されているFCMとチュートリアルを使用して、アプリに通知サービスを追加しようとしています。しかし、メッセージングハンドラを作成した後、エラーが発生し始めました。
Error:(22, 26) error: cannot access AbstractSafeParcelable
class file for com.google.Android.gms.common.internal.safeparcel.AbstractSafeParcelable not found
ビルドは失敗します。 Plsガイド。 gradleのコードは次のとおりです。
buildscript {
repositories {
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'io.fabric.tools:gradle:1.+'
}
}
apply plugin: 'com.Android.application'
apply plugin: 'io.fabric'
repositories {
maven { url 'https://maven.fabric.io/public' }
maven {
url "https://s3-ap-southeast-1.amazonaws.com/godel-release/godel/"
}
}
Android {
compileSdkVersion 25
buildToolsVersion "24.0.3"
useLibrary 'org.Apache.http.legacy'
defaultConfig {
applicationId "jss.smartapp"
minSdkVersion 16
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "Android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-Android.txt'), 'proguard-rules.pro'
}
}
packagingOptions {
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE'
exclude 'META-INF/NOTICE.txt'
}
}
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'
})
testCompile 'junit:junit:4.12'
compile files('libs/activation.jar')
compile files('libs/additionnal.jar')
//Apache IO
compile files('libs/commons-io-2.5.jar')
compile 'com.Android.support:design:25.0.0'
compile 'com.Android.support:appcompat-v7:25.0.0'
//Crashlytics
compile('com.crashlytics.sdk.Android:crashlytics:2.6.5@aar') {
transitive = true;
}
//Dropbox
compile 'com.dropbox.core:dropbox-core-sdk:2.0.1'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.squareup.okhttp:okhttp:2.4.0'
//FTP
compile files('libs/ftp4j-1.7.2.jar')
//Http
compile 'com.squareup.okhttp3:okhttp:3.4.2'
//Instamojo
compile 'com.instamojo:Android-sdk:+'
//Material Design Didalogs
compile 'com.afollestad.material-dialogs:commons:0.9.1.0'
compile 'org.Apache.httpcomponents:httpclient-Android:4.3.5.1'
//GSON
compile 'com.squareup.retrofit:retrofit:2.0.0-beta2'
compile 'com.squareup.retrofit:converter-gson:2.0.0-beta2'
//multidex dependency
compile 'com.Android.support:multidex:1.0.1'
//box dependencies
compile 'com.box:box-Java-sdk:2.1.1'
compile 'com.box:box-Android-sdk:3.0.2'
//google drive dependency
compile 'com.google.Android.gms:play-services-drive:10.0.1'
//one drive dependency
compile('com.OneDrive.sdk:OneDrive-sdk-Android:1.2+') {
transitive = false
}
compile('com.Microsoft.services.msa:msa-auth:0.8.+')
compile('com.Microsoft.aad:adal:1.1.+')
//justify test
compile 'com.github.bluejamesbond:textjustify-Android:2.1.6'
//image downnloader
/*compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'*/
//Glide Image downloading
compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'com.Android.support:support-v4:25.1.0'
compile 'com.google.firebase:firebase-messaging:9.2.1'
}
apply plugin: 'com.google.gms.google-services'
Gradleファイルでは、google-play-serviceとfirebaseのすべてのバージョンで同じバージョンを使用する必要があります。
あなたが使用しているように:
compile 'com.google.Android.gms:play-services-drive:10.0.1'
あなたが使用する必要があります:
compile 'com.google.firebase:firebase-messaging:10.0.1'
// 9.2.1ではなく
同じバージョンのすべてのGoogle Playサービスラインが必要です。
compile 'com.google.Android.gms:play-services:11.0.1'
compile 'com.google.Android.gms:play-services-maps:11.0.1'
compile 'com.google.firebase:firebase-core:11.0.1'
compile 'com.google.firebase:firebase-messaging:11.0.1'
これはAndroid Studioのバグであり、play-services *ライブラリのようにfirebaseライブラリを自動的にアップグレードすることを提供していません。
自動更新
compile 'com.google.Android.gms:play-services-drive:10.0.1'
自動更新なし(play-services *と同じバージョンに手動でアップする必要があります)
compile 'com.google.firebase:firebase-messaging:10.0.1'
次のようなものを使用します。
dependencies {
compile 'com.google.Android.gms:play-services:11.0.1'
compile 'com.google.firebase:firebase-core:11.0.1'
compile 'com.google.firebase:firebase-messaging:11.0.1'
}
apply plugin: 'com.google.gms.google-services'
適用プラグインが依存関係の下に来ることを確認してください。
GoogleサービスのバージョンがFirebaseのバージョンと一致していることを確認してください。現在、「com.google.Android.gms:play-services-drive:10.0.1」のコンパイルは「com.google.firebase:firebase-messaging:9.2.1」のコンパイルと一致しません。「com」を変更する必要があります.google.firebase:firebase-messaging:9.2.1 'を' com.google.firebase:firebase-messaging:10.0.1 'に変更して、バージョンが一致するようにします。
最終的に私を救ったもの:
Android studioで、Androidビューではなくプロジェクトビューに切り替えます。 .gradle foldermとgradle.propertiesファイルも削除します。プロジェクトをきれいにします。グラドルをもう一度同期します。
これがなぜ機能したのか、私にはわかりません。 .gradleフォルダーのみを削除してもジョブは実行されず、新しく作成されたgradle.propertiesは古いものとまったく同じです!しかし、私の問題は修正されました。