A simple Mac app built with SWiftUI to send Push notification using APNs.
It is an utility app to send Push Notification using APNs which can be used by Developers to test Push notification integration in your apps. So you can be sure that app behaves the way it should be.
Begore you start using it please go through following limitations:
- Only Token-Based APNs connection is supported, Certificate-Based connection is not supported.
- Can send notification to only one device at a time.
- Message should include full payload.
{
"aps" : {
"alert" : {
"title" : "Hey Yuvi!",
"subtitle" : "Good morning",
"body" : "You have important meetings today"
},
"category" : "MEETING_REMINDER"
},
"user_info_1" : "Hey",
"user_info_2" : "there"
}
It's simple, like any other Xcode project
- Clone project
- Open project using
UVAPNs.xcodeproj
file (If you are opening it for first time it will sync dependencies using SPM that may take few minutes) - Run project and use the app