In a few words
- Set up Apple in the Notifique dashboard
- Add the
NotifiquePushlibrary in Xcode - Call
configurewith your Push App ID - Test on a real iPhone
Before you start
If Apple isn’t in the dashboard yet: → iOS credentials (Apple) You’ll need the appId (Push App screen) and push permissions enabled in Xcode.Step 1: Add the library
In Xcode, add the Swift package NotifiquePush (Swift Package Manager). If unsure, ask your iOS developer to add it.Step 2: Start in the app
At app startup (e.g. inApp or AppDelegate):
YOUR_APP_ID with the dashboard ID.
The app asks for notification permission and registers itself.
Don’t put API keys in the app. Only the public
appId.Step 3: Test
- Run on a physical iPhone (simulator isn’t reliable for push)
- Accept “Allow notifications”
- Send a test alert from the Notifique dashboard
Checklist
- Apple configured in ⚙️ dashboard
- Bundle ID matches on Apple, Xcode, and Notifique
- Push Notifications enabled in Xcode
- Code with correct
appId - Test on real iPhone

