I am implementating pushnotification for one of my ionic apps. I have 2 applications registered with PushWoosh.Last month I had registered my device using the first pushwoosh app.It worked fine for many devices. Now I created another mobile application and tried implementing pushnotification and the registration always seems to fail. Is there a limitation that one device can register to only one pushwoosh notification? Cant I register my phone to multiple pushwoosh notifications?
1 Answers
0
votes
There shouldn't be any problem with multiple apps (as long as they have different Apple Bundle Id).
What kind of message you receive when registration fails?
You should go through the very standard checks for iOS:
- Is my profile push compatible?
The app should display "allow push notifications" alert on start (at the very first launch only!). - Provisioning profile should have "aps-environment" string it in.
- Do I use correct push notifications gateway? The gateway should match the provisioning profiles. Sandbox for development profiles and Production for AdHoc and AppStore builds.
- Maybe my wi-fi router blocks APS ports? Wi-Fi will need to allow inbound and outbound TCP packets over port 5223.
- Reboot the device. have you tried turning it off and on again.
- What does the status of the push on "Pushes" page display?
(https://community.pushwoosh.com/questions/542/ios-no-notification-shown)