❤️ Support my app ❤️
- Push Hero - pure Swift native macOS application to test push notifications
- PastePal - Pasteboard, note and shortcut manager
- Frame recorder - Recorder gif and video with frame
- Alias - App and file shortcut manager
- Other apps
❤️❤️😇😍🤘❤️❤️
Unofficial, simple push notification
The official SDKs can do many things
- Register device token. This is crucial for the notification to get from
your backend -> APNS -> device
- Manage player id, user id, arn, ...This is used to associate with device token
- Manager tag, topic, subscription, segments, ...This is used to group a set of device tokens
- Do swizzling, update your application badge number, change your user notification settings, ... without your knowing about that
- Some other fancy stuffs
Dust
does only one thing, which is push notification handling. The rest is under your control
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject : AnyObject]?) -> Bool {
OneSignal.appID = ""
}
func application(application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: NSData) {
OneSignal.handleDeviceToken(deviceToken)
}
Dust is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod 'Dust'
Dust is also available through Carthage. To install just write into your Cartfile:
github "onmyway133/Dust"
Dust can also be installed manually. Just download and drop Sources
folders in your project.
Khoa Pham, onmyway133@gmail.com
We would love you to contribute to Dust, check the CONTRIBUTING file for more info.
Dust is available under the MIT license. See the LICENSE file for more info.