Skip to content
Abdus-Salaam Muwwakkil edited this page Aug 19, 2014 · 6 revisions

Registering for the Push Service (1)

Setting Permissions(2)

--The Above (2) steps involve adjustments to the AndroidManifest.xml file--

Adding Parse API Keys

--adjustment to the onCreate method for the activity class-- Parse.initialize(this, "YOUR_APP_ID", "YOUR_CLIENT_KEY");

Enable Push Notifications

PushService.setDefaultPushCallback(this, YourDefaultActivity.class); ParseAnalytics.trackAppOpened(getIntent());

Detailed Steps Can Be Found Here

Clone this wiki locally