Get started
Cloud quickstart
Connect a released SDK, observe one event, configure customer-owned providers, and verify a physical device.1. Create an application
Create a Notifie account, name the workspace and app, then explicitly select every platform you intend to configure now.
- Do not infer platforms from incoming events.
- Use a development app for sandbox credentials.
- Copy the SDK ingest key when it is shown; plaintext is displayed once.
2. Choose your SDK
pod 'Notifie', '0.1.0-beta.5'3. Initialize and verify an event
Notifie.initialize(apiKey: processInfo.notifieKey)
Notifie.track("notifie_test_notification")Run the application once, then use Check connection. The dashboard advances only after it observes a stored event.
4. Configure APNs or FCM
Follow iOS push setup or Android push setup. The client configuration belongs in the application; the private provider credential is uploaded only in Notifie. Once the provider configuration is in place, register the device at startup:
await Notifie.enableNotifications();5. Run on a physical device
Simulators cannot prove provider token registration or real push delivery. Background the app, track the setup event, and inspect provider acceptance separately from presentation.