In a few words
- Set up Google (Firebase) in the Notifique dashboard
- Install the Notifique library in the app
- Call
initwith your Push App ID - Done, the phone can receive alerts
Before you start
If Firebase isn’t in the dashboard yet: → Android credentials (Firebase) You’ll need the appId (on the Push App screen) andgoogle-services.json in the project (from Firebase).
Step 1: Install the library
In the Android dependencies file, add:Step 2: Start in the app
When the app opens (usually in theApplication class):
YOUR_APP_ID with the ID from the Notifique dashboard.
The app will ask for notification permission (Android 13+) and register itself.
Don’t put API keys (
sk_live_...) in the app. Only the public appId.Step 3: Test
- Install on an Android phone
- Open the app and accept notifications if asked
- Send a test push from the Notifique dashboard
Checklist
- Firebase configured in ⚙️ dashboard
- Package name matches in Firebase and Notifique
-
google-services.jsonin project -
initcode with correctappId - Test sent from dashboard

