1
String refreshedToken = FirebaseInstanceId.getInstance().getToken();
サムスンS7エッジは7.0.0
リフレッシュトークン値がnull
であるアンドロイドのバージョンでFCMトークンを取得できません。
マイライブラリのバージョン:
com.google.firebase:firebase-messaging:11.0.2
String refreshedToken = FirebaseInstanceId.getInstance().getToken();
サムスンS7エッジは7.0.0
リフレッシュトークン値がnull
であるアンドロイドのバージョンでFCMトークンを取得できません。
マイライブラリのバージョン:
com.google.firebase:firebase-messaging:11.0.2
This issue is resolve updating version of the library.
Make sure you have to use the same version of your google play service library and firebase messaging library.
My old library:
com.google.firebase:firebase-messaging:11.0.2
Replace with latest version:
compile 'com.google.firebase:firebase-core:11.6.2'
compile 'com.google.android.gms:play-services-gcm:11.6.2'
compile 'com.google.firebase:firebase-messaging:11.6.2'
それは、他のデバイス上で動作していますか? – R2R
はい、他のデバイスで正常に動作しています。 –
com.google.firebase:firebase-messaging:11.6.2 \t最新バージョン – R2R