diff --git a/src/com/makemyandroidapp/parsenotificationexample/ParseApplication.java b/src/com/makemyandroidapp/parsenotificationexample/ParseApplication.java index b742071..056fb1a 100644 --- a/src/com/makemyandroidapp/parsenotificationexample/ParseApplication.java +++ b/src/com/makemyandroidapp/parsenotificationexample/ParseApplication.java @@ -12,7 +12,8 @@ public void onCreate() { super.onCreate(); Parse.initialize(this, Keys.applicationId, Keys.clientKey); PushService.setDefaultPushCallback(this, MainActivity.class); - ParseInstallation.getCurrentInstallation().saveInBackground(); + //ParseInstallation.getCurrentInstallation().saveInBackground(); + ParseInstallation.getCurrentInstallation().saveEventually(); } }