Simple macOS application for sending push notifications directly to booted iOS simulators.
- Friendly GUI around
xcrun simctl push
- Detects booted simulators automatically
- Convenient
.apns
file picker - Alerts for success and errors
- Includes a sample payload in
Resources/notification.apns
- Clone the repository.
- Open
PushPush.xcodeproj
with Xcode. - Build and run the PushPush target.
Note: Xcode command line tools are required.
- Launch an iOS Simulator.
- Run PushPush.
- Enter your application's Bundle ID.
- Click Choose .apns file and select the notification payload.
- Pick a booted device from the dropdown list.
- Hit Push to send the notification.
{
"aps": {
"sound": "default",
"badge": 1,
"alert": {
"body": "PUSH",
"title": "YOOO"
}
},
"type": "CULTURAL_EVENT",
"eventIds": "[189313]",
"pushId": 1234567
}
Contributions and bug reports are welcome! Feel free to open an issue or submit a pull request.
Enjoy pushing notifications!