Answers for "send push notification to ios simulator"

0

send push notification to ios simulator

/// get the list of devices online
xcrun simctl list 'devices' 'booted'

/// send to all online devices
xcrun simctl push booted com.bundle.identifier payload.json 

/// send to a specific device by passing deviceId found in above list
xcrun simctl push <deviceId> com.bundle.identifier payload.json
Posted by: Guest on March-25-2022

Code answers related to "send push notification to ios simulator"

Browse Popular Code Answers by Language