React native push notifications

Опубликовано: 30 Сентябрь 2024
на канале: Coding Hands
3,609
44

React Native Local and Remote Notifications for Android.

MainApplication.java
import io.invertase.firebase.messaging.RNFirebaseMessagingPackage;
import io.invertase.firebase.notifications.RNFirebaseNotificationsPackage;

packages.add(new RNFirebaseMessagingPackage());
packages.add(new RNFirebaseNotificationsPackage());

app/build gradle
apply plugin: 'com.google.gms.google-services'

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

implementation "com.google.firebase:firebase-messaging:20.1.5"
implementation "com.google.firebase:firebase-core:16.0.8"
compile(project(':react-native-firebase')) {
transitive = false
}

github link: https://github.com/Ramesh21071993/rea...