The message in this case shall be a simple string. Not JSON.
Seems like it is a strange bug related to the 1st registered device. The devices after does not having it.
javascript,jquery,angularjs,html5,kinvey
You're using ng-repeat on the <ul> tag which will generate you a <ul> for each item in your menu array. Use it on <li> instead so that each one is a menu item as opposed to an empty menu. You also don't need to wrap item.path in {{}}. This is...
android,delphi,android-gcm,delphi-xe7,kinvey
I had the same problem. AFAIK the answer is no, installing a new APK or uninstalling the application doesnt unregister your ID from your backend provider (Kinvey, Parse, Azure notification hub). My solution was to add a collapse_key in the gcm payload Ps: In my case, Notification Hub has an...
Kinvey will actually return the object to you in the promise, and you can just grab the _id off the returned object. promise.then(function(data) { // Here's where you get your _id $scope.newActivity.text = data._id; }, function(err) { console.error(err); }); ...