-
Notifications
You must be signed in to change notification settings - Fork 0
Push Notifications
"Push notifications let your application notify a user of new messages or events even when the user is not actively using your application. On Android devices, when a device receives a push notification, your application's icon and a message appear in the status bar. When the user taps the notification, they are sent to your application. Notifications can be broadcast to all users, such as for a marketing campaign, or sent to just a subset of users, to give personalized information."
--The Above (2) steps involve adjustments to the AndroidManifest.xml file--
--adjustment to the onCreate method for the activity class--
Parse.initialize(this, "YOUR_APP_ID", "YOUR_CLIENT_KEY");
PushService.setDefaultPushCallback(this, YourDefaultActivity.class);
ParseAnalytics.trackAppOpened(getIntent());