我已经在我的Android应用程序中从GCM切换到FCM。但我没有触及代码的服务器部分,因为据说我没必要。但现在,当服务器发送通知时,我的设备不再看到它。所以我误解了以下内容?
https://developers.google.com/cloud-messaging/android/android-migrate-fcm#update_server_endpoints
Google不会严格要求更新这些终端 继续支持现有的GCM端点。
清单
<!-- for notifications -->
<!--<uses-permission android:name="android.permission.WAKE_LOCK"/>-->
<!--<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE"/>-->
<!--<uses-permission android:name="com.business.myapp.android.permission.C2D_MESSAGE"/>-->
…
<application …>
…
<!-- START GCM SECTION -->
<!--<receiver-->
<!--android:name="com.google.android.gms.gcm.GcmReceiver"-->
<!--android:exported="true"-->
<!--android:permission="com.google.android.c2dm.permission.SEND">-->
<!--<intent-filter>-->
<!--<action android:name="com.google.android.c2dm.intent.RECEIVE"/>-->
<!--<category android:name="com.business.myapp"/>-->
<!--</intent-filter>-->
<!--</receiver>-->
<service
android:name=".data.service.notification.BusinessGcmListenerService"
android:exported="false">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT"/>
</intent-filter>
</service>
<service
android:name=".data.service.notification.BusinessInstanceIDListenerService">
<intent-filter>
<action android:name="com.google.firebase.INSTANCE_ID_EVENT"/>
</intent-filter>
</service>
<service
android:name=".data.service.notification.RegistrationIntentService"
android:exported="false">
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE"/>
</intent-filter>
</service>
<!-- END GCM SECTION -->
请注意,当我从Firebase控制台发送通知时,它会通过:如果应用位于前台,则会通过onMessageReceived
;否则,我只是在状态栏中收到通知。基本上我按照提供的链接上的说明进行操作。
这是onTokenRefresh
@Override
public void onTokenRefresh() {
Intent intent = new Intent(this, RegistrationIntentService.class);
startService(intent);//intent service to send token to my server
}
答案 0 :(得分:0)
你是否在应用程序的root / app上更改了json-service.json?