android - GCM not delivering Amazon SNS -
i've set aws server , android app push notifications using gcm , sns.
the app registers successfully, i.e. broadcastreceiver
gets notification registration id. problem no sns notifications go through.
is there way check if notification received device, not delivered broadcastreceiver
reason?
also, maybe i've done wrong (possibly package name)? here manifest:
... <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="my.package.tester" ... > <permission android:name="my.package.permission.c2d_message" android:protectionlevel="signature" /> <uses-permission android:name="my.package.permission.c2d_message" /> <uses-permission android:name="com.google.android.c2dm.permission.receive"/> ... <application ... > <service android:name="my.package.path.to.pushnotificationsservice" > </service> ... <receiver android:name="my.package.path.to.pushnotificationsbroadcastreceiver" > <intent-filter> <action android:name="com.google.android.c2dm.intent.receive" /> <action android:name="com.google.android.c2dm.intent.registration" /> <action android:name="com.google.android.c2dm.intent.register" /> <category android:name="my.package" /> </intent-filter> </receiver> ... </application> </manifest>
a few things can check:
- the receiver requires
com.google.android.c2dm.permission.send
permission. please addandroid:permission="com.google.android.c2dm.permission.send"
in receiver block - the category of intent filter should match application name
- if device connects wifi, make sure gcm port (5228, 5229, , 5230) whitelisted.
further reading:
Comments
Post a Comment