How to intent from parse push notification. i f anybody implemented parse push please help.
Parse.initialize(Splash.this,\"id\",\"id\");
ParseInstallation.ge
You can download complete code from here
Add Google play service lib in dependency
Initialize Parse in Application Class
Parse.initialize(this, getResources().getString(R.string.applicationid), getResources().getString(R.string.clientkey));
ParsePush.subscribeInBackground("", new SaveCallback() {
@Override
public void done(ParseException e) {
if (e == null) {
Log.d("com.parse.push", "successfully subscribed to the broadcast channel.");
} else {
Log.e("com.parse.push", "failed to subscribe for push", e);
}
}
});
Add Following Permissions in AndroidMainifest.xml
Add following things also