Firebase 注册令牌未显示在 Android Studio logcat 中
Posted
技术标签:
【中文标题】Firebase 注册令牌未显示在 Android Studio logcat 中【英文标题】:Firebase registration token is not showing in Android Studio logcat 【发布时间】:2021-12-13 13:16:02 【问题描述】:我使用的是安卓工作室北极狐版本。我需要实现一个自动通知应用程序,它将按日期发送通知。我正在使用 6.0.1 android 版本的实际设备上运行我的应用程序。我已经连接了 fcm 并设置了依赖项。但是令牌没有显示在 logcat 上。还在firebase中注册了该应用程序。任何想法为什么会发生这种情况?
build:gradle(:app)
plugins
id 'com.android.application'
id 'com.google.gms.google-services'
android
compileSdk 31
defaultConfig
applicationId "com.example.f1"
minSdk 21
targetSdk 31
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
buildTypes
release
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
compileOptions
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
dependencies
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'com.google.android.material:material:1.4.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.1'
implementation 'com.google.firebase:firebase-messaging:22.0.0'
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
构建:gradle(模块)
dependencies
classpath "com.android.tools.build:gradle:7.0.2"
classpath 'com.google.gms:google-services:4.3.10'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
manifest.xml
<service android:name=".MyFirebaseMessagingService"
android:exported="false">
<intent-filter>
<action android:name="com.google.firebase.INSTANCE_ID_EVENT"/>
</intent-filter>
</service>
MyFirebaseMessagingService
public class MyFirebaseMessagingService extends FirebaseMessagingService
@Override
public void onNewToken(@NonNull String s)
super.onNewToken(s);
Log.d("My token", "Refreshed Token"+s);
sendRegistrationToServer(s);
private void sendRegistrationToServer(String s)
【问题讨论】:
【参考方案1】:如果您在添加MyFirebaseMessagingService
代码之前在设备上运行了该应用程序,那么它可能已经生成了一个令牌。添加MyFirebaseMessagingService
不会生成新令牌,因此不会调用您的onNewToken
。
在这种情况下获取令牌的两个选项是:
-
从(例如)您的主要活动调用
FirebaseMessaging.getInstance().getToken()
,并在那里调用相同的sendRegistrationToServer
。
添加FirebaseMessaging.getInstance().getToken()
代码后删除应用程序及其数据,然后重新安装应用程序。删除数据会删除令牌,因此当您运行应用程序时,它将生成一个新令牌并调用您的onNewToken
。
【讨论】:
是的,我确实尝试过你的方法。当我将此语句 android:stopWithTask="false" 作为服务放在清单中时,它起作用了。但我真的不知道为什么会这样。感谢您的回复@Frank。 :)以上是关于Firebase 注册令牌未显示在 Android Studio logcat 中的主要内容,如果未能解决你的问题,请参考以下文章
为啥不获取 Android Firebase FCM 注册令牌?
android firebase reg id recived但通知未显示在手机显示屏中