Android 集成FCM(Google 推送)

image.png

国内手机必须要安装以下引用:

image.png

1. 第一步 打开FCM官网

image.png

2. 选择Android

image.png

3. 写入你的APP的包名,应用别名可以不填,还有你app的SHA1值

image.png

4. 点击下载JSON文件并且保存在你项目中

image.png

这一步下面也有说(配置文件)

image.png

点击下一步 选择你创建的应用

image.png

下一步下一步略过....

到了发布消息的死磕了!点击审核,点击发布,自动跳转到你发送消息的页面,之后你的app如果在后台就会收到消息
相应配置
在你的app里面集成

    apply plugin: 'com.android.application'
    apply plugin: 'com.google.gms.google-services'
    implementation 'com.google.firebase:firebase-analytics:17.2.0'
    implementation 'com.google.firebase:firebase-messaging:20.0.0'

项目根部

    classpath 'com.google.gms:google-services:4.3.2'

在你的清单文件里面集成这些

    <meta-data //你的推送栏图标,自定义
        android:name="com.google.firebase.messaging.default_notification_icon"
        android:resource="@drawable/appicon" />

    <meta-data //颜色
        android:name="com.google.firebase.messaging.default_notification_color"
        android:resource="@color/styleTitleOrange" /> <!-- [END fcm_default_icon] -->


    <meta-data // 这个可选,
        android:name="firebase_messaging_auto_init_enabled"
                android:value="false" />
    <meta-data //可选
        android:name="firebase_analytics_collection_enabled"
        android:value="false" />

    <service //这是我自定义继承了谷歌的消息类
        android:name=".MyFirebaseMessagingService"
        android:exported="false">
        <intent-filter>
    <action android:name="com.google.firebase.MESSAGING_EVENT" />
        </intent-filter>
    </service>

自定义MyFirebaseMessagingService

    //继承FirebaseMessagingService
    public class MyFirebaseMessagingService extends FirebaseMessagingService {
    
    private String mToken;
 
 @Override
    public void onCreate() {
    super.onCreate();
 
    L.e("消息服务已开启");
    }
 
    //获取到谷歌到token
@Override
public void onNewToken(@NonNull String token) {
    super.onNewToken(token);
    Log.e("Google token", "Refreshed token: $token");
    sendRegistrationToServer(token);
}

//  回传给服务器操作
private void sendRegistrationToServer(String token) {

    mToken = token;

    //这里我做了本地保存,你可以在你需要到地方获取
    ShareUtils.putString(getApplicationContext(), "GoogleToken", mToken);

}

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

    L.e("APP处于前台消息标题" + remoteMessage.getNotification().getTitle());
    L.e("APP处于前台消息内容" + remoteMessage.getNotification().getBody());

    L.e("Data消息(为空)" + remoteMessage.getData());
    L.e("服务器" + remoteMessage.getFrom());

    FirebaseInstanceId.getInstance().getInstanceId()
            .addOnCompleteListener(new OnCompleteListener<InstanceIdResult>() {
                @Override
                public void onComplete(@NonNull Task<InstanceIdResult> task) {
                    if (!task.isSuccessful()) {
                        Log.w(TAG, "getInstanceId failed", task.getException());
                        return;
                    }

                    String token = task.getResult().getToken();

                    //谷歌返回的token
                    Log.e("Google_token", token);

                }
            });
    
    //这个应该可以看懂
    if (remoteMessage.getNotification() != null && remoteMessage.getNotification().getBody() != null) {
        sendNotification(getApplicationContext(), remoteMessage.getNotification().getTitle(), remoteMessage.getNotification().getBody());
    } else {
        sendNotification(getApplicationContext(), remoteMessage.getData().get("title"), remoteMessage.getData().get("body"));
    }
}

@Override
public void onDeletedMessages() {
    super.onDeletedMessages();
}

@Override
public void onMessageSent(String s) {
    super.onMessageSent(s);

}

@Override
public void onSendError(String s, Exception e) {
    super.onSendError(s, e);
}

private void sendNotification(Context iContext, String messageTitle, String messageBody) {


    //跳转到你想要跳转到页面
    Intent intent = new Intent(this, NotificationActivity.class);
    intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
    PendingIntent pendingIntent = PendingIntent.getActivity(this, 0 /* Request code */, intent,
            PendingIntent.FLAG_ONE_SHOT);

    String channelId = getString(R.string.default_notification_channel_id);
    Uri defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
    NotificationCompat.Builder notificationBuilder =
            new NotificationCompat.Builder(this, channelId)
                    .setTicker(messageTitle)//标题
                    .setSmallIcon(R.mipmap.appicon)//你的推送栏图标
                    .setContentTitle("notification")
                    .setContentText(messageBody)//内容
                    .setAutoCancel(true)
                    .setSound(defaultSoundUri)
                    .setContentIntent(pendingIntent);

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


    //判断版本
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        NotificationChannel channel = new NotificationChannel(channelId,
                "notification",
                NotificationManager.IMPORTANCE_DEFAULT);
        notificationManager.createNotificationChannel(channel);
    }

    //这里如果需要的话填写你自己项目的,可以在控制台找到,强转成int类型
    notificationManager.notify(0 /* ID of notification */, notificationBuilder.build());


}

最重要的一点!没有这个你app在前台的状态是接收不到的!
在你创建项目的时候,谷歌会给你一个json你需要放在项目中,(上面有图和真相)
打开json 放入进去,位置随便,这下就可以了

    "to" : "APA91bHun4MxP5egoKMwt2KZFBaFUH-1RYqx...",
    "notification" : {
      "body" : "great match!",
      "title" : "Portugal vs. Denmark",
      "icon" : "myicon"
    },
    "data" : {
      "Nick" : "Mario",
      "Room" : "PortugalVSDenmark"
    },

因为前台的消息属于数据类型消息,具体可以看下文档。

还有一点,在你的MainActivity 添加,或者需要的地方。!!

    if (intent.extras != null) {
        for (s in intent.extras!!.keySet()) {
            Log.e("MainActivity", s + "--" + intent.extras!!.get(s))
            // 在官网的发送notification 使用高级选项可以自定义 键值对,最终会在getIntent().getExtras()中获取到
        }
        val intent = Intent(this, MainActivity::class.java)
        startActivity(intent)
    }

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,445评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,889评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,047评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,760评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,745评论 5 367
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,638评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,011评论 3 398
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,669评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,923评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,655评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,740评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,406评论 4 320
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,995评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,961评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,197评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,023评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,483评论 2 342

推荐阅读更多精彩内容