Уведомление FCM Push не открывает приложение
Я получаю уведомления FCM Push, но приложение не открывается при прикосновении к уведомлению, которое доставляется в системный трей, когда приложение находится в фоновом режиме.
Моя полезная нагрузка из Back End выглядит так:
Array(
[registration_ids] => Array
([0] => some value)
[priority] => high
[notification] => Array
(
[body] => Booking Cancelled: Your recent Booking attempt for Sound mix was declined.
[title] => Booking Rejected
[click_action] => USER_BOOKING_REJECTED
[sound] => default
)
[data] => Array
(
[type] => USER_BOOKING_REJECTED
[booking_id] => 331
)
)
Я добавил это USER_BOOKING_REJECTED в качестве действия в манифесте для соответствующего действия.
Как это:
<activity
android:name=".view.activity.HomeActivity"
android:exported="true"
android:screenOrientation="portrait"
android:theme="@style/AppTheme"
android:windowSoftInputMode="adjustPan">
<intent-filter>
<action android:name="USER_BOOKING_APPROVED" />
<action android:name="USER_BOOKING_REJECTED" />
<action android:name="USER_BOOKING_AUTO_REJECTED" />
<action android:name="USER_CANCEL_BOOKING" />
<action android:name="USER_BOOKING_REMINDER" />
<action android:name="USER_INVOICE_EDIT" />
<action android:name="USER_INVOICE_NEW" />
<action android:name="USER_INVOICE_REFUND" />
<action android:name="USER_INVOICE_REMOVE" />
<action android:name="NEW_MESSAGE" />
<action android:name="SP_BOOKING_REMINDER" />
<action android:name="SP_BOOKING_NEW" />
<action android:name="SP_BOOKING_CANCEL" />
<action android:name="SP_INVOICE_PAYMENT" />
<action android:name="SP_NO_FUTURE_SLOT" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="@string/host"
android:pathPrefix="@string/home_path"
android:scheme="http" />
</intent-filter>
</activity>
Даже если я получаю уведомление в системном трее, приложение не открывается при нажатии на уведомление. Любая помощь?
2 ответа
Вам нужно сделать отдельный <intent-filter>
с отдельно <action>
s в AndroidManifest.xml.
Попробуйте добавить только это:
<intent-filter>
<action android:name="USER_BOOKING_REJECTED" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
Пришлось обновить библиотеку, чтобы она наконец заработала. Почесывала затылок целых 2 дня, лол. Всем удачного кодирования!
implementation 'com.google.firebase:firebase-messaging:20.2.3'
Вам нужно отправлять данные в полезной нагрузке с серверной части вместо уведомления. А затем вызвать службу сообщений Firebase.
const payload = {
data: {
/*set reuired data over here which you want for generating notification like below*/
message : `${messageSnapshot}`,
vibrate : '1',
sound : '1',
largeIcon : 'large_icon',
smallIcon : 'small_icon'
}
};
return admin.messaging().sendToDevice(deviceToken, payload).then(response => {
// For each message check if there was an error.
const tokensToRemove = [];
response.results.forEach((result, index) => {
const error = result.error;
if (error) {
console.error('Failure sending notification to', deviceToken, error);
// Cleanup the tokens who are not registered anymore.
if (error.code === 'messaging/invalid-registration-token' ||
error.code === 'messaging/registration-token-not-registered') {
tokensToRemove.push(deviceToken);
}
}
});
});
<service
android:name=".services.MyFirebaseMessagingService"
android:enabled="true"
android:exported="true">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>
</service>
public class MyFirebaseMessagingService extends FirebaseMessagingService {
public static String TAG = "MessagingService";
@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
Log.e("MyFirebase","vcdjvbdbv");
if (remoteMessage == null)
return;
// Check if message contains a data payload.
if (remoteMessage.getData().size() > 0) {
Map<String, String> data = remoteMessage.getData();
String message = data.get("message");}}}