0

私は、Googleの文書に示されているようにFirebaseを実装しました。 Firebaseコンソールからメッセージを送信します。しかし、私のデバイスには通知は出ません。手伝って頂けますか?前もって感謝します。私の `MyFirebaseMessagingService.javaFirebaseの通知がデバイスに送信されない

public class MyFirebaseMessagingService extends FirebaseMessagingService { 
private String TAG = "MFMS"; 

@Override 
public void onMessageReceived(RemoteMessage remoteMessage) { 
    super.onMessageReceived(remoteMessage); 

    Map<String, String> newMsg = remoteMessage.getData(); 

    Set<String> keys = newMsg.keySet(); 
    Iterator<String> iterator = keys.iterator(); 

    while (iterator.hasNext()) { 
     String key = iterator.next(); 

     Log.e(TAG, "key = " + key + " value = " + newMsg.get(key)); 
    } 


    Log.d(TAG, "From: " + remoteMessage.getFrom()); 


    if (remoteMessage.getData().size() > 0) { 
     Log.d(TAG, "Message data payload: " + remoteMessage.getData()); 
    } 


    if (remoteMessage.getNotification() != null) { 
     Log.d(TAG, "Message Notification Body: " + remoteMessage.getNotification().getBody()); 
    } 
} 
} 

MyFirebaseInstanceIdService.java

public class MyFirebaseInstanceIdService extends FirebaseInstanceIdService { 
private static final String TAG = "FBIIS"; 

@Override 
public void onTokenRefresh() { 
    String refreshedToken = FirebaseInstanceId.getInstance().getToken(); 
    Log.d(TAG, "Refreshed token: " + refreshedToken); 

} 
} 

でのAndroidManifest.xml

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> 
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> 
<uses-permission android:name="android.permission.WAKE_LOCK" /> 
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> 
<uses-permission android:name="android.permission.INTERNET" /> 
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> 
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> 

<permission 
    android:name="android.permission.INTERACT_ACROSS_USERS_FULL" 
    android:protectionLevel="signature" /> 

<application 
    android:allowBackup="true" 
    android:icon="@mipmap/ic_launcher" 
    android:label="@string/app_name" 
    android:supportsRtl="true" 
    android:theme="@style/AppTheme"> 
    <activity 
     android:name=".another.IntroActivity" 
     android:theme="@style/AppTheme.NoActionBar" 
     android:screenOrientation="portrait"> 
     <intent-filter> 
      <action android:name="android.intent.action.MAIN" /> 

      <category android:name="android.intent.category.LAUNCHER" /> 
     </intent-filter> 
    </activity> 

    <service android:name=".firebase.MyFirebaseInstanceIdService"> 
     <intent-filter> 
      <action android:name="com.google.firebase.INSTANCE_ID_EVENT" /> 
     </intent-filter> 
    </service> 
    <service android:name=".firebase.MyFirebaseMessagingService"> 
     <intent-filter> 
      <action android:name="com.google.firebase.MESSAGING_EVENT" /> 
     </intent-filter> 
    </service> 
</application> 

マイアプリにはないで

onMessageReceived関数に入ります。あなたのonTokenRefresh()sendRegistrationToServer(refreshedToken)を追加し、これを実装で

sendNotification("Hello","FCM"); 

//method 

     private void sendNotification(String messageTitle, String messageBody) { 
       Intent intent = new Intent(this, SplashActivity.class); 
       intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); 
       PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, PendingIntent.FLAG_ONE_SHOT); 

       Uri defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION); 
       NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this) 
         .setSmallIcon(R.mipmap.ic_launcher) 
         .setContentTitle(!Utils.isStringNullOrEmpty(messageTitle) ? messageTitle : APP.NAME) 
         .setContentText(messageBody) 
         .setAutoCancel(true) 
         .setSound(defaultSoundUri) 
         .setStyle(new NotificationCompat.BigTextStyle().bigText(messageBody)) 

         .setContentIntent(pendingIntent); 
       NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE); 
       notificationManager.notify(1, notificationBuilder.build()); 
    } 
+0

アプリを終了し、通知を受け取っているかどうかを確認しますか?最近からスワイプして閉じることはできません。ただ、近くに通常 –

+0

@MohammedAtif、いいえ、通知は、あなたが「MFMS」 – JokeRaes

+1

を来ていない... はあなたを行います理由を知っている? –

答えて

0

がMyFirebaseMessagingServiceクラスで通知を作成して知りません。

+0

私のアプリはonMessageReceived関数には入っていません。なぜなのかご存知ですか? – JokeRaes

+0

どのようにテストしていますか?あなたがテストしている投稿メッセージは何ですか? – Androider

0

:私はメッセージとして受け取ったときに、なぜ...

+0

sendRegistrationToServer(refreshedToken)に書き込む内容を知っていますか? – JokeRaes

+0

[https://github.com/firebase/quickstart-android/blob/master/mess/app/src/main/java/com/google/firebase/quickstart/fcm/MyFirebaseInstanceIDService.java] – badou

+0

このリンクを使用してください:https ://github.com/firebase/quickstart-android/blob/master/messaging/app/src/main/java/com/google/firebase/quickstart/fcm/MyFirebaseInstanceIDService.java – badou

関連する問題