DEV Community

Cover image for Send Push Notifications without Hassles of FCM Token Generation
Nik L. for SuprSend

Posted on

Send Push Notifications without Hassles of FCM Token Generation

Handling FCM tokens and marking the user state is a hassle that businesses doesn't want to get into. To solve for this, SuprSend provides you with all the popular languages SDK, with point install and integration.

Token Generation and Notification handled By SDK

You may use this option if all of your android push notifications are to be handled via SuprSend SDK. We recommend you use this method as it is just a single-step process to just register the service in your application manifest and everything else will be ready.


<!--If you are targeting to API 33 (Android 13) you will additional need to add POST_NOTIFICATIONS -->
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />

<service
    android:name="app.suprsend.fcm.SSFirebaseMessagingService"
    android:enabled="true"
    android:exported="false">
    <intent-filter>
        <action android:name="com.google.firebase.MESSAGING_EVENT" />
    </intent-filter>
</service>
Enter fullscreen mode Exit fullscreen mode

Full documentation here:

  1. React Native - Docs
  2. Android - Docs
  3. Flutter - Docs

Top comments (0)