Menu
  • HOME
  • TAGS

TBackendPush send Push to Kinvey

delphi,delphi-xe6,kinvey

The message in this case shall be a simple string. Not JSON.

Receiving 10 times same Push?

delphi,delphi-xe6,kinvey

Seems like it is a strange bug related to the 1st registered device. The devices after does not having it.

AngularJS failed to generate dynamic menu

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...

Multiple Push Notifications Received

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...

Get _id of new Kinvey data on angular app

angularjs,kinvey

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); }); ...