Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Push notifications for both android and iPhone [closed]

I m developing an android and iPhone app and wanted to send push notification both platform users - a simple pop up with any major news preferably even when the device is closed.

Any suggestions which way I should go for?

like image 693
random Avatar asked Jul 23 '12 09:07

random


Video Answer


2 Answers

You can configure your app and send out push notifications to both Android and iOS (as well as to four more platforms) with PushWoosh. Unlike Urban Airship, it's a free service so that you don't have to pay and integration is pretty easy.

They have several extensive guides on how to integrate push notifications in your app, for instance: iOS, Android

like image 51
Noah Borg Avatar answered Oct 21 '22 00:10

Noah Borg


Depend on your budget. There're multiple solutions ready if you are willing to pay, e.g. Urban Airship

I don't think you can force open popup on iOS if the screen is closed. In iOS the behavior of Push notification(APN) is entirely up to user. I could be wrong but that's my impression.

On Android(GCM) you can do that by faking popup in an Activity. Then wake the device from sleep to display the Activity.

If you are looking into news solution, be aware that both Android and iOS only allow 1,000 push devices per API call. So you will need to manage them yourself.

like image 44
RobGThai Avatar answered Oct 21 '22 01:10

RobGThai