In a few words
- Set up Firebase (Android) and Apple (iPhone) in the Notifique dashboard
- Install
@notifique/push-react-nativeand native Firebase - Call
NotifiquePush.initwith yourappId - Build a native app. Expo Go alone isn’t enough for real push
Before you start
Expo Go (quick test app) doesn’t receive real push. Use a dev or production build with Firebase configured.
Step 1: Install
In your project terminal:Step 2: Start in the app
In JavaScript/TypeScript:YOUR_APP_ID with the dashboard ID.
Only
appId in the app, never API keys in React Native.Step 3: Test
- Build the native app (
npx expo run:android/run:iosor equivalent) - Open on a real phone and accept notifications
- Send a test from the dashboard
Checklist
- Credentials in dashboard
- Native Firebase configured (not just Expo Go)
-
initwith correctappId - Test on real device

