Java tutorial
/** * Copyright 2016 Google Inc. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * Modified by Daniel Weber on 1/9/17. */ package push.dantech.com.personalpushnotifications; import android.app.NotificationManager; import android.app.PendingIntent; import android.content.Context; import android.content.Intent; import android.media.RingtoneManager; import android.net.Uri; import android.os.Bundle; import android.os.Handler; import android.os.Message; import android.support.v4.app.NotificationCompat; import com.google.firebase.messaging.FirebaseMessagingService; import com.google.firebase.messaging.RemoteMessage; public class MyFirebaseMessagingService extends FirebaseMessagingService { private Intent intent; private Handler handler = new Handler() { public void handleMessage(Message msg) { System.out.println("sending intent with message = " + msg.getData().getString("message")); intent.putExtra("message", msg.getData().getString("message")); sendBroadcast(intent); } }; @Override public void onCreate() { super.onCreate(); intent = new Intent("serviceData"); } /** * Called when message is received. * * @param remoteMessage Object representing the message received from Firebase Cloud Messaging. */ @Override public void onMessageReceived(RemoteMessage remoteMessage) { System.out.println("From: " + remoteMessage.getFrom()); // Check if message contains a data payload. if (remoteMessage.getData().size() > 0) { System.out.println("Message data payload: " + remoteMessage.getData()); Message msg = new Message(); Bundle data = new Bundle(); data.putString("message", remoteMessage.getData().get("message")); msg.setData(data); handler.sendMessage(msg); } // Check if message contains a notification payload. if (remoteMessage.getNotification() != null) { System.out.println("Message Notification Body: " + remoteMessage.getNotification().getBody()); } } }