设备未收到 Firebase 云消息通知
Firebase cloud messaging notification not received by device
我在使用 FireBase 云消息传递时遇到问题,我从设备获取令牌并通过 Google Firebase 通知控制台发送通知测试,但是,通知从未被记录或推送到 android虚拟设备。 FCM 的文档几乎与我在下面的代码完全相同,并且几乎没有其他内容可以让您获得与 firebase 一起使用的推送通知。我已经完成了文档中指定的所有设置信息(build.gradle 添加、安装 google 播放服务等...),但仍然没有生成消息。我确实在推送声明 "I/FA: Tag Manager is not found and thus will not be used" 的通知后立即收到一次性错误,但这是唯一输出的数据,我没有在 google 上找到与跟踪代码管理器要求和 FCM 相关的任何内容.我没有收到 logcat 或设备的推送通知的代码有什么问题?请让我知道任何有帮助的进一步信息。
谢谢
NotificationGenie.java
public class NotificationGenie extends FirebaseMessagingService {
private static final String TAG = "Firebase_MSG";
@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
// TODO(developer): Handle FCM messages here.
// If the application is in the foreground handle both data and notification messages here.
// Also if you intend on generating your own notifications as a result of a received FCM
// message, here is where that should be initiated. See sendNotification method below.
sendNotification(remoteMessage.getNotification().getBody());
Log.d(TAG, "From: " + remoteMessage.getFrom());
Log.d(TAG, "Notification Message Body: " + remoteMessage.getNotification().getBody());
}
private void sendNotification(String messageBody) {
Intent intent = new Intent(this, PostLoginActivity.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.tf2spyprofile)
.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());
}
}
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.test.movile_android">
<!-- To auto-complete the email text field in the login form with the user's emails -->
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.READ_PROFILE" />
<uses-permission android:name="android.permission.READ_CONTACTS" />
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".LoginActivity"
android:label="@string/title_activity_login">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".DashBoardActivity"
android:label="@string/title_activity_dash_board"
android:theme="@style/AppTheme.NoActionBar">
</activity>
<activity
android:name=".NewOrderActivity"
android:label="@string/title_activity_dash_board"
android:theme="@style/AppTheme.NoActionBar">
</activity>
<activity
android:name=".PostLoginActivity"
android:label="@string/title_activity_dash_board"
android:theme="@style/AppTheme.NoActionBar">
</activity>
</application>
<service
android:name=".NotificationGenie">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT"/>
</intent-filter>
</service>
您已将您的服务置于应用程序标签之外。把底部改成这个。
<service
android:name=".NotificationGenie">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT"/>
</intent-filter>
</service>
</application>
我遇到了设备未收到 Firebase 云消息的相同问题。
在我的案例中,在 Firebase 控制台项目上定义的包名称与在我的 Android 项目的清单和 Gradle 上定义的包名称不同。
结果我正确地收到了令牌,但根本没有消息。
总而言之,Firebase 控制台包名称和清单 & Gradle 必须匹配。
您还必须记住,要接收从 Firebase 控制台发送的消息,应用程序必须在后台,既没有启动也没有隐藏。
我遇到了类似的问题,但就我而言,我的 Gradle 构建中缺少 google-services
plugin(我正在将 Firebase 添加到现有项目)。
我将以下内容添加到我的根 build.gradle
:
classpath 'com.google.gms:google-services:3.1.0'
以及以下到我的 app
级别 build.gradle
结尾的内容:
apply plugin: 'com.google.gms.google-services'
然后我不得不从 Firebase 控制台下载 google-services.json
文件(最初导入了一个现有的 Google 云项目)并将其复制到我的 app
目录`。
我遇到了同样的问题,但我的清单中仍然有一些来自旧 GCM 的碎片。当我从我的清单中获得以下许可时,它修复了错误。
com.google.android.c2dm.permission.RECEIVE
我遇到了同样的问题,通过在我的服务中定义 enabled,exported to true 解决了这个问题
<service
android:name=".MyFirebaseMessagingService"
android:enabled="true"
android:exported="true">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT"/>
</intent-filter>
</service>
"You must also keep in mind that to receive Messages sent from Firebase Console, App must be in background, not started neither hidden." --- 根据@Laurent Russier 的评论。
在我将我的应用程序置于后台之前,我从未收到来自 Firebase 的任何消息。
这仅适用于模拟器的 USB 连接,您也会在前台收到通知
您需要遵循以下清单代码(清单中必须有服务)
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="soapusingretrofitvolley.firebase">
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service
android:name=".MyFirebaseMessagingService">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT"/>
</intent-filter>
</service>
<service
android:name=".MyFirebaseInstanceIDService">
<intent-filter>
<action android:name="com.google.firebase.INSTANCE_ID_EVENT"/>
</intent-filter>
</service>
</application>
</manifest>
在 Overriden 方法中调用 super.OnMessageReceived()
。这对我有用!
终于!
private void sendNotification(String message) {
Intent intent = new Intent(this, MainActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
int requestCode = 0;
PendingIntent pendingIntent = PendingIntent.getActivity(this, requestCode, intent, PendingIntent.FLAG_ONE_SHOT);
Uri sound = RingtoneManager.getDefaultUri(RingtoneManager.URI_COLUMN_INDEX);
NotificationCompat.Builder noBuilder = new NotificationCompat.Builder(this)
.setSmallIcon(R.mipmap.ic_launcher)
.setContentText(message)
.setColor(getResources().getColor(R.color.colorPrimaryDark))
.setSmallIcon(R.mipmap.ic_launcher)
.setContentTitle("FCM Message")
.setContentText("hello").setLargeIcon(((BitmapDrawable) getResources().getDrawable(R.drawable.dog)).getBitmap())
.setStyle(new NotificationCompat.BigPictureStyle()
.bigPicture(((BitmapDrawable) getResources().getDrawable(R.drawable.dog)).getBitmap()))
.setAutoCancel(true)
.setSound(sound)
.setContentIntent(pendingIntent);
NotificationManager notificationManager = (NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(0, noBuilder.build());
如果您刚刚将 FCM 添加到现有应用程序,onTokenRefresh()
将不会被调用。我通过卸载应用程序并重新安装它来 运行。
可能是来自连接
我将连接从以太网更改为无线,无需执行任何其他操作即可正常工作
当您复制设备令牌时,它可能会复制 space,仔细检查您是否复制了正确的令牌
<activity android:name=".activity.MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<!-- Firebase Notifications -->
<service android:name=".service.MyFirebaseMessagingService">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>
</service>
<service android:name=".service.MyFirebaseInstanceIDService">
<intent-filter>
<action android:name="com.google.firebase.INSTANCE_ID_EVENT" />
</intent-filter>
</service>
我一直在研究整个 post 以及其他教程视频,但未能解决我收不到消息的问题,但注册令牌有效。
在那之前,我只是在模拟器上测试应用程序。在物理上试用后 phone 它立即工作,无需对项目进行任何事先更改。
我遇到了这个问题,我检查了我的代码。我试图修复这里提到的所有内容。最后这个问题太愚蠢了。我设备的 Sync
已关闭。这是我没有按预期收到通知的唯一原因。
如果您希望您的应用也 运行 超过 24 个版本,请遵循以下步骤:
1.Add 这个在你的 strings.xml
< string name="default_notification_channel_id" translatable="false">
fcm_default_channel
- 在您的清单文件中添加此元数据:
< meta-data
android:name="com.google.firebase.messaging.default_notification_channel_id"
android:value="@string/default_notification_channel_id" />
3.for 创建通知(带有图像)在您处理通知的地方使用此方法,如果直接添加 firebasemessaging 服务,或者如果您使用一些 util class 然后添加该 util class :
@RequiresApi(api = Build.VERSION_CODES.JELLY_BEAN)
public static void createBigNotification(Bitmap bitmap, int icon, String message, Uri alarmSound) {
final int NOTIFY_ID = 0; // ID of notification
NotificationManager notificationManager = (NotificationManager) mContext.getSystemService(NOTIFICATION_SERVICE);
String id = mContext.getString(R.string.default_notification_channel_id); // default_channel_id
String title = mContext.getString(R.string.app_name);
Intent intent;
NotificationCompat.Builder builder;
if (notificationManager == null) {
notificationManager = (NotificationManager) mContext.getSystemService(Context.NOTIFICATION_SERVICE);
}
PendingIntent resultPendingIntent;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
int importance = NotificationManager.IMPORTANCE_HIGH;
NotificationChannel mChannel = notificationManager.getNotificationChannel(id);
if (mChannel == null) {
mChannel = new NotificationChannel(id, title, importance);
mChannel.enableVibration(true);
mChannel.setVibrationPattern(new long[]{100, 200, 300, 400, 500, 400, 300, 200, 400});
notificationManager.createNotificationChannel(mChannel);
}
builder = new NotificationCompat.Builder(mContext, id);
intent = new Intent(mContext, MainActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
resultPendingIntent = PendingIntent.getActivity(mContext, 0, intent, 0);
NotificationCompat.BigPictureStyle bigPictureStyle = new NotificationCompat.BigPictureStyle();
bigPictureStyle.setBigContentTitle(title);
bigPictureStyle.setSummaryText(Html.fromHtml(message).toString());
bigPictureStyle.bigPicture(bitmap);
builder.setContentTitle(title) // required
.setSmallIcon(R.drawable.app_icon) // required
.setContentText(message) // required
.setDefaults(Notification.DEFAULT_ALL)
.setAutoCancel(true)
.setSound(alarmSound)
.setStyle(bigPictureStyle)
.setContentIntent(resultPendingIntent)
.setLargeIcon(BitmapFactory.decodeResource(mContext.getResources(), icon))
.setTicker(title)
.setVibrate(new long[]{100, 200, 300, 400, 500, 400, 300, 200, 400});
} else {
builder = new NotificationCompat.Builder(mContext, id);
intent = new Intent(mContext, MainActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
resultPendingIntent = PendingIntent.getActivity(mContext, 0, intent, 0);
NotificationCompat.BigPictureStyle bigPictureStyle = new NotificationCompat.BigPictureStyle();
bigPictureStyle.setBigContentTitle(title);
bigPictureStyle.setSummaryText(Html.fromHtml(message).toString());
bigPictureStyle.bigPicture(bitmap);
builder.setContentTitle(title) // required
.setSmallIcon(R.drawable.app_icon) // required
.setContentText(message) // required
.setDefaults(Notification.DEFAULT_ALL)
.setAutoCancel(true)
.setSound(alarmSound)
.setStyle(bigPictureStyle)
.setContentIntent(resultPendingIntent)
.setLargeIcon(BitmapFactory.decodeResource(mContext.getResources(), icon))
.setTicker(title)
.setVibrate(new long[]{100, 200, 300, 400, 500, 400, 300, 200, 400})
.setPriority(Notification.PRIORITY_HIGH);
}
Notification notification = builder.build();
notificationManager.notify(NOTIFY_ID, notification);
}
按照这些步骤操作,您的通知就会出现在通知栏中。
就我而言,我注意到 mergedmanifest 缺少接收器。所以我必须包括:
<receiver
android:name="com.google.firebase.iid.FirebaseInstanceIdReceiver"
android:exported="true"
android:permission="com.google.android.c2dm.permission.SEND" >
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
</intent-filter>
</receiver>
就我而言,我手动杀死了一些 google 播放服务并忘记了它。
稍后,我必须重新启动设备,之后我才能毫无问题地收到通知。
就我而言,我只是在模拟器中打开了 WiFi 和移动数据,效果非常好。
在这个问题上花了几个小时之后,当我故意破坏“google-services.json”的格式时,我终于意识到了这个问题,但我的构建仍然成功。我的 IDE(AndroidStudio) 没有注意到这个文件的变化。我尝试了很多东西,“从磁盘重新加载”、gradle 任务“cleanBuildCache”、新虚拟设备、uninstalling/reinstalling 应用程序等,但 none 有效。
对我来说,解决方案是 AndroidStudio -> Build -> Clean Project
和 Build -> Rebuild Project
PS:还要确保“google-services.json”在“app”文件夹中。
我按照 firebase 网站上的所有步骤为 Android APP 设置发送通知。我尝试了很多次,但无论是在美德设备还是物理设备上,我都无法收到通知。当我在美德设备和物理设备中更改了一些设置(那些关于接收通知的设置在SETTING部分)后,虚拟设备和物理设备都开始接收通知。
我在使用 FireBase 云消息传递时遇到问题,我从设备获取令牌并通过 Google Firebase 通知控制台发送通知测试,但是,通知从未被记录或推送到 android虚拟设备。 FCM 的文档几乎与我在下面的代码完全相同,并且几乎没有其他内容可以让您获得与 firebase 一起使用的推送通知。我已经完成了文档中指定的所有设置信息(build.gradle 添加、安装 google 播放服务等...),但仍然没有生成消息。我确实在推送声明 "I/FA: Tag Manager is not found and thus will not be used" 的通知后立即收到一次性错误,但这是唯一输出的数据,我没有在 google 上找到与跟踪代码管理器要求和 FCM 相关的任何内容.我没有收到 logcat 或设备的推送通知的代码有什么问题?请让我知道任何有帮助的进一步信息。 谢谢
NotificationGenie.java
public class NotificationGenie extends FirebaseMessagingService {
private static final String TAG = "Firebase_MSG";
@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
// TODO(developer): Handle FCM messages here.
// If the application is in the foreground handle both data and notification messages here.
// Also if you intend on generating your own notifications as a result of a received FCM
// message, here is where that should be initiated. See sendNotification method below.
sendNotification(remoteMessage.getNotification().getBody());
Log.d(TAG, "From: " + remoteMessage.getFrom());
Log.d(TAG, "Notification Message Body: " + remoteMessage.getNotification().getBody());
}
private void sendNotification(String messageBody) {
Intent intent = new Intent(this, PostLoginActivity.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.tf2spyprofile)
.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());
}
}
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.test.movile_android">
<!-- To auto-complete the email text field in the login form with the user's emails -->
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.READ_PROFILE" />
<uses-permission android:name="android.permission.READ_CONTACTS" />
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".LoginActivity"
android:label="@string/title_activity_login">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".DashBoardActivity"
android:label="@string/title_activity_dash_board"
android:theme="@style/AppTheme.NoActionBar">
</activity>
<activity
android:name=".NewOrderActivity"
android:label="@string/title_activity_dash_board"
android:theme="@style/AppTheme.NoActionBar">
</activity>
<activity
android:name=".PostLoginActivity"
android:label="@string/title_activity_dash_board"
android:theme="@style/AppTheme.NoActionBar">
</activity>
</application>
<service
android:name=".NotificationGenie">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT"/>
</intent-filter>
</service>
您已将您的服务置于应用程序标签之外。把底部改成这个。
<service
android:name=".NotificationGenie">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT"/>
</intent-filter>
</service>
</application>
我遇到了设备未收到 Firebase 云消息的相同问题。
在我的案例中,在 Firebase 控制台项目上定义的包名称与在我的 Android 项目的清单和 Gradle 上定义的包名称不同。
结果我正确地收到了令牌,但根本没有消息。
总而言之,Firebase 控制台包名称和清单 & Gradle 必须匹配。
您还必须记住,要接收从 Firebase 控制台发送的消息,应用程序必须在后台,既没有启动也没有隐藏。
我遇到了类似的问题,但就我而言,我的 Gradle 构建中缺少 google-services
plugin(我正在将 Firebase 添加到现有项目)。
我将以下内容添加到我的根 build.gradle
:
classpath 'com.google.gms:google-services:3.1.0'
以及以下到我的 app
级别 build.gradle
结尾的内容:
apply plugin: 'com.google.gms.google-services'
然后我不得不从 Firebase 控制台下载 google-services.json
文件(最初导入了一个现有的 Google 云项目)并将其复制到我的 app
目录`。
我遇到了同样的问题,但我的清单中仍然有一些来自旧 GCM 的碎片。当我从我的清单中获得以下许可时,它修复了错误。 com.google.android.c2dm.permission.RECEIVE
我遇到了同样的问题,通过在我的服务中定义 enabled,exported to true 解决了这个问题
<service
android:name=".MyFirebaseMessagingService"
android:enabled="true"
android:exported="true">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT"/>
</intent-filter>
</service>
"You must also keep in mind that to receive Messages sent from Firebase Console, App must be in background, not started neither hidden." --- 根据@Laurent Russier 的评论。
在我将我的应用程序置于后台之前,我从未收到来自 Firebase 的任何消息。
这仅适用于模拟器的 USB 连接,您也会在前台收到通知
您需要遵循以下清单代码(清单中必须有服务)
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="soapusingretrofitvolley.firebase">
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service
android:name=".MyFirebaseMessagingService">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT"/>
</intent-filter>
</service>
<service
android:name=".MyFirebaseInstanceIDService">
<intent-filter>
<action android:name="com.google.firebase.INSTANCE_ID_EVENT"/>
</intent-filter>
</service>
</application>
</manifest>
在 Overriden 方法中调用 super.OnMessageReceived()
。这对我有用!
终于!
private void sendNotification(String message) {
Intent intent = new Intent(this, MainActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
int requestCode = 0;
PendingIntent pendingIntent = PendingIntent.getActivity(this, requestCode, intent, PendingIntent.FLAG_ONE_SHOT);
Uri sound = RingtoneManager.getDefaultUri(RingtoneManager.URI_COLUMN_INDEX);
NotificationCompat.Builder noBuilder = new NotificationCompat.Builder(this)
.setSmallIcon(R.mipmap.ic_launcher)
.setContentText(message)
.setColor(getResources().getColor(R.color.colorPrimaryDark))
.setSmallIcon(R.mipmap.ic_launcher)
.setContentTitle("FCM Message")
.setContentText("hello").setLargeIcon(((BitmapDrawable) getResources().getDrawable(R.drawable.dog)).getBitmap())
.setStyle(new NotificationCompat.BigPictureStyle()
.bigPicture(((BitmapDrawable) getResources().getDrawable(R.drawable.dog)).getBitmap()))
.setAutoCancel(true)
.setSound(sound)
.setContentIntent(pendingIntent);
NotificationManager notificationManager = (NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(0, noBuilder.build());
如果您刚刚将 FCM 添加到现有应用程序,onTokenRefresh()
将不会被调用。我通过卸载应用程序并重新安装它来 运行。
可能是来自连接 我将连接从以太网更改为无线,无需执行任何其他操作即可正常工作
当您复制设备令牌时,它可能会复制 space,仔细检查您是否复制了正确的令牌
<activity android:name=".activity.MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<!-- Firebase Notifications -->
<service android:name=".service.MyFirebaseMessagingService">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>
</service>
<service android:name=".service.MyFirebaseInstanceIDService">
<intent-filter>
<action android:name="com.google.firebase.INSTANCE_ID_EVENT" />
</intent-filter>
</service>
我一直在研究整个 post 以及其他教程视频,但未能解决我收不到消息的问题,但注册令牌有效。
在那之前,我只是在模拟器上测试应用程序。在物理上试用后 phone 它立即工作,无需对项目进行任何事先更改。
我遇到了这个问题,我检查了我的代码。我试图修复这里提到的所有内容。最后这个问题太愚蠢了。我设备的 Sync
已关闭。这是我没有按预期收到通知的唯一原因。
如果您希望您的应用也 运行 超过 24 个版本,请遵循以下步骤:
1.Add 这个在你的 strings.xml
< string name="default_notification_channel_id" translatable="false"> fcm_default_channel
- 在您的清单文件中添加此元数据:
< meta-data android:name="com.google.firebase.messaging.default_notification_channel_id" android:value="@string/default_notification_channel_id" />
3.for 创建通知(带有图像)在您处理通知的地方使用此方法,如果直接添加 firebasemessaging 服务,或者如果您使用一些 util class 然后添加该 util class :
@RequiresApi(api = Build.VERSION_CODES.JELLY_BEAN)
public static void createBigNotification(Bitmap bitmap, int icon, String message, Uri alarmSound) {
final int NOTIFY_ID = 0; // ID of notification
NotificationManager notificationManager = (NotificationManager) mContext.getSystemService(NOTIFICATION_SERVICE);
String id = mContext.getString(R.string.default_notification_channel_id); // default_channel_id
String title = mContext.getString(R.string.app_name);
Intent intent;
NotificationCompat.Builder builder;
if (notificationManager == null) {
notificationManager = (NotificationManager) mContext.getSystemService(Context.NOTIFICATION_SERVICE);
}
PendingIntent resultPendingIntent;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
int importance = NotificationManager.IMPORTANCE_HIGH;
NotificationChannel mChannel = notificationManager.getNotificationChannel(id);
if (mChannel == null) {
mChannel = new NotificationChannel(id, title, importance);
mChannel.enableVibration(true);
mChannel.setVibrationPattern(new long[]{100, 200, 300, 400, 500, 400, 300, 200, 400});
notificationManager.createNotificationChannel(mChannel);
}
builder = new NotificationCompat.Builder(mContext, id);
intent = new Intent(mContext, MainActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
resultPendingIntent = PendingIntent.getActivity(mContext, 0, intent, 0);
NotificationCompat.BigPictureStyle bigPictureStyle = new NotificationCompat.BigPictureStyle();
bigPictureStyle.setBigContentTitle(title);
bigPictureStyle.setSummaryText(Html.fromHtml(message).toString());
bigPictureStyle.bigPicture(bitmap);
builder.setContentTitle(title) // required
.setSmallIcon(R.drawable.app_icon) // required
.setContentText(message) // required
.setDefaults(Notification.DEFAULT_ALL)
.setAutoCancel(true)
.setSound(alarmSound)
.setStyle(bigPictureStyle)
.setContentIntent(resultPendingIntent)
.setLargeIcon(BitmapFactory.decodeResource(mContext.getResources(), icon))
.setTicker(title)
.setVibrate(new long[]{100, 200, 300, 400, 500, 400, 300, 200, 400});
} else {
builder = new NotificationCompat.Builder(mContext, id);
intent = new Intent(mContext, MainActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
resultPendingIntent = PendingIntent.getActivity(mContext, 0, intent, 0);
NotificationCompat.BigPictureStyle bigPictureStyle = new NotificationCompat.BigPictureStyle();
bigPictureStyle.setBigContentTitle(title);
bigPictureStyle.setSummaryText(Html.fromHtml(message).toString());
bigPictureStyle.bigPicture(bitmap);
builder.setContentTitle(title) // required
.setSmallIcon(R.drawable.app_icon) // required
.setContentText(message) // required
.setDefaults(Notification.DEFAULT_ALL)
.setAutoCancel(true)
.setSound(alarmSound)
.setStyle(bigPictureStyle)
.setContentIntent(resultPendingIntent)
.setLargeIcon(BitmapFactory.decodeResource(mContext.getResources(), icon))
.setTicker(title)
.setVibrate(new long[]{100, 200, 300, 400, 500, 400, 300, 200, 400})
.setPriority(Notification.PRIORITY_HIGH);
}
Notification notification = builder.build();
notificationManager.notify(NOTIFY_ID, notification);
}
按照这些步骤操作,您的通知就会出现在通知栏中。
就我而言,我注意到 mergedmanifest 缺少接收器。所以我必须包括:
<receiver
android:name="com.google.firebase.iid.FirebaseInstanceIdReceiver"
android:exported="true"
android:permission="com.google.android.c2dm.permission.SEND" >
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
</intent-filter>
</receiver>
就我而言,我手动杀死了一些 google 播放服务并忘记了它。
稍后,我必须重新启动设备,之后我才能毫无问题地收到通知。
就我而言,我只是在模拟器中打开了 WiFi 和移动数据,效果非常好。
在这个问题上花了几个小时之后,当我故意破坏“google-services.json”的格式时,我终于意识到了这个问题,但我的构建仍然成功。我的 IDE(AndroidStudio) 没有注意到这个文件的变化。我尝试了很多东西,“从磁盘重新加载”、gradle 任务“cleanBuildCache”、新虚拟设备、uninstalling/reinstalling 应用程序等,但 none 有效。
对我来说,解决方案是 AndroidStudio -> Build -> Clean Project
和 Build -> Rebuild Project
PS:还要确保“google-services.json”在“app”文件夹中。
我按照 firebase 网站上的所有步骤为 Android APP 设置发送通知。我尝试了很多次,但无论是在美德设备还是物理设备上,我都无法收到通知。当我在美德设备和物理设备中更改了一些设置(那些关于接收通知的设置在SETTING部分)后,虚拟设备和物理设备都开始接收通知。