Start a new topic

Duplication by Push

Hi,
This looks fine and I was able to get my Kinvey messages pushed to iOS and my Android device.
The problem is that each time I modify my app, I suppress it from the Android device, deploy it, then it creates a new registration with Kinvey.
Then, instead of 1 push notification, I get as many notifications as I deployed a new version.
If I debug my app 15 times and deploy it to my Android tablet, then I will get 15 copies of my notification.
It seems to be a known behavior. How can we avoid the Android device to register each time? Any way to check the registration and skip it if Kinvey already has the Device ID?
iOS is fine, it shows only 1 notification.

Have you may forgotten "ON DUPLICATE KEY UPDATE"?
Example:

INSERT INTO gcm_dixy (`DeviceID`, `DeviceToken`, `last_update`, `add_date`, `RequestCount`, `Active`) VALUES
('$DeviceID','$DeviceToken', NOW(),NOW(), 1, 1) ON DUPLICATE KEY UPDATE
`DeviceToken` = '$DeviceToken', `last_update` = NOW(), `RequestCount` = `RequestCount` + 1, `Active` =  1


Thanks.


Steps:
1. Install the application on the android device.
2. Send one push from Kinvey panel.
Result:

Good. All well see one push in application.
3. Remove this application from the android device.
4. Install again this application on the android device.
5. Send one push from Kinvey panel.
Result:
Bad - we get duplication by push in this application.
Other people confirm this in the comments:

remote-push-notifications-on-android

Thanks.

 

Vlad,

  1. Can you please explain what do you mean by "suppress it from the Android device"?
  2. What version of Android SDK are you using?
  3. Can you explain your usecase in more details?

Thanks,

Pranav

Kinvey

Login or Signup to post a comment