2

以下にサンプルを説明し、問題を理解するのに役立つ最小限のコードを示しました。

最後に、私のgradleファイルに

apply plugin: 'com.google.gms.google-services'

依存関係 { } 内に追加しました

 compile 'com.google.firebase:firebase-messaging:9.2.0'

依存関係には次のものもあります{}

compile 'com.google.android.gms:play-services:9.2.0'
compile 'com.google.android.gms:play-services-maps:9.2.0'
compile 'com.google.android.gms:play-services-ads:9.2.0'
compile 'com.google.android.gms:play-services-auth:9.2.0'
compile 'com.google.android.gms:play-services-gcm:9.2.0'
compile 'com.google.android.gms:play-services-analytics:9.2.0'
compile 'com.google.android.gms:play-services-location:9.2.0'
compile 'com.google.maps.android:android-maps-utils:0.4.+'

私が持っているマニフェスト

     <!-- Google Cloud Messaging -->
        <uses-permission
            android:name="com.mcruiseon.buseeta.permission.C2D_MESSAGE"
            android:protectionLevel="signature"/>
        <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE"/>

<service android:name=".support.NotificationIncoming">
            <intent-filter>
                <action android:name="com.google.firebase.MESSAGING_EVENT"/>
            </intent-filter>
        </service>
        <service android:name=".support.NotificationsIDService">
            <intent-filter>
                <action android:name="com.google.firebase.INSTANCE_ID_EVENT"/>
            </intent-filter>
        </service>

NotificationIncoming.java には

public class NotificationIncoming extends FirebaseMessagingService {


    @Override
    public void onMessageReceived(RemoteMessage remoteMessage) {

        Log.d(God.LOG_TAG, "From: " + remoteMessage.getFrom());
        Log.d(God.LOG_TAG, "Notification Message Body: " + remoteMessage.getNotification().getBody());
        sendNotification(remoteMessage.getNotification().getBody());
    }

    private void sendNotification(String messageBody) {
        Intent intent = new Intent(this, MyBookings.class);
        intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
        PendingIntent pendingIntent = PendingIntent.getActivity(this, 0 /* Request code */, intent,
                PendingIntent.FLAG_ONE_SHOT);

        Uri defaultSoundUri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
        NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
                //.setSmallIcon(R.drawable.ic_launcher)
                .setContentTitle("FCM Message")
                .setContentText(messageBody)
                .setAutoCancel(true)
                .setSound(defaultSoundUri)
                .setContentIntent(pendingIntent);

        NotificationManager notificationManager =
                (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);

        notificationManager.notify(0 /* ID of notification */, notificationBuilder.build());
    }
}

私の NotificationIDService で

public class NotificationsIDService extends FirebaseInstanceIdService {
    @Override
    public void onTokenRefresh() {

        String refreshedToken = FirebaseInstanceId.getInstance().getToken();
        Log.d(God.LOG_TAG, "Refreshed token: " + refreshedToken);
        sendRegistrationToServer(refreshedToken);
    }
    private void sendRegistrationToServer(String token) {
        // Add custom implementation, as needed.
    }
}

Firebaseで私は次のことをしました

  1. プロジェクトを作成しました
  2. SHA1 フィンガープリントを追加
  3. google-services.json をダウンロードして app フォルダーにコピーしました。

SHA1 と同じキーストアから署名付きアプリケーションを構築しました。そして、アプリケーションを実行しました。次に、Firebase コンソールからメッセージを送信しました。

運がない。私は何が欠けていますか? 本当に基本的なことだと思います。

編集

これを読んでいるすべての人にとって、上記は私にとって完璧に機能しました。

4

1 に答える 1

0

何も変更せずに、上記のセットアップ/コードが機能し始め、これらの通知を遅く受け取りました。

@shadab-ansari、はい、ドロップダウンからアプリを追加しました。そして、マニフェストからアクセス許可を削除していません:)、現在は機能しており、触れていません。

于 2016-06-30T05:31:29.037 に答える