Swift
CocoaPods release for iOS 15+, with events, APNs tokens, and notification callbacks.
0.1.0-beta.5Open device SDKs
Events, identity, permission handling, token acquisition, deep links and device callbacks — through public source you can audit. A handful of calls is the whole surface.
// initialize once
await Notifie.initialize(
apiKey: env.notifieKey,
);
// product evidence
await Notifie.track(
'order_shipped',
properties: {'order_id': id},
);
// enrol the device once; Cloud owns delivery from here
await Notifie.enableNotifications();Public packages
Each SDK owns persistence, retries, anonymous identity, token refresh, and lifecycle behavior so application code stays focused on product events.
CocoaPods release for iOS 15+, with events, APNs tokens, and notification callbacks.
0.1.0-beta.5Maven Central artifact with events, FCM tokens, and notification handling.
0.1.0-beta.6A thin bridge over the native implementations with durable event and token storage.
0.1.0-beta.10One conceptual API
Platform-specific capabilities remain explicit, but the product model stays intentionally small across native and cross-platform SDKs.
await Notifie.initialize(
apiKey: env.notifieKey,
onNotificationOpened: (n) => router.open(n.deepLink),
);
await Notifie.identify('user-42');
await Notifie.track('purchase_completed');
// Ask once, when the value is obvious to the user.
await Notifie.enableNotifications();Public beta — no credit card
Start with the public package for your platform, send one event, and watch it arrive in the dashboard.
Connect a real app