-1
データ通信でFCMを使用していて、フォアグラウンドとバックグラウンドの両方の通知を処理できますが、電話機の再起動時やアプリの終了時には受信できません(タスクはスワイプタスクマネージャで)。Android、FireBaseクラウドメッセージング(FCM)
データ通信でFCMを使用していて、フォアグラウンドとバックグラウンドの両方の通知を処理できますが、電話機の再起動時やアプリの終了時には受信できません(タスクはスワイプタスクマネージャで)。Android、FireBaseクラウドメッセージング(FCM)
マニフェスト:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.tadad.firebasetestDOUBLE">
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<application
android:name="com.example.tadad.firebasetestDOUBLE.AndroidApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name="com.example.tadad.firebasetestDOUBLE.MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<!-- Notification -->
<service
android:name="com.example.tadad.firebasetestDOUBLE.notification.SomeInstanceIDListenerService">
<intent-filter>
<action android:name="com.google.firebase.INSTANCE_ID_EVENT" />
</intent-filter>
</service>
<service
android:name="com.example.tadad.firebasetestDOUBLE.notification.SomeFirebaseMessagingService">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>
</service>
</application>
</manifest>
コード:
public class SomeFirebaseMessagingService extends FirebaseMessagingService {
@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
int a = 4;
sendNotification("Smth", "Receive please!");
}
}
public class SomeInstanceIDListenerService extends FirebaseInstanceIdService {
@Override
public void onTokenRefresh() {
String refreshedToken = FirebaseInstanceId.getInstance().getToken();
sendRegistrationToServer(refreshedToken);
}
private void sendRegistrationToServer(String token) {
// TODO: Implement this method to send token to your app server.
}
}
だから、私はバックグラウンドとフォアグラウンドの通知を受け取ることができますが、(タスクマネージャのアプリケーションをスワイプすると通知を処理することはできませんが、テレグラムとそのような別のアプリケーションは動作します(リブートしてからアプリケーションを終了してスワイプしても機能します)。 –
は – androidXP
答えを得るためのコードを追加してくださいするためにあなたのコードを表示し、あなたのサービスやマニフェスト –
は、あなたがそれを考え出したことがありますか? –