hello,
i try "Push notification"
var message = data.message, pageName = '';
switch(message){
case "notification 1": pageName = "checkbox_list"; break;
case "notification 2": pageName = "welcome"; break;
case "notification 3": pageName = "Screen3"; break;}
if (pageName) {
Appery.navigateTo(pageName);
}
but using above code, if i have click on push notification - open another page in my app not home screen...that's works great.But problem is if my app is open and if i send new push notification (which are opens another page) they directly redirect another page(NOT ON CLICK TO REDIRECT ANOTHER PAGE). So how to solve this problem.
Now my previous problem, using "Push initialize"- the deviceid are delete automatically that are solved.Now using "Push initialize" my deviceid are not deleted in my device collection.
Using "Push initialize" - page are not redirect ,that problem occur in "Push initialize". So how to solve this problem plz tell me any solution.