Parse: send push notifications from app

android, parse-platform, parsing, push-notification

Solution

If you want to use `Parse`, Go to parse dashboard and there you will see the settings for push where you will find this client-side push setting.

ParsePush push = new ParsePush();
String message = "Client message" + Integer.toString(i++);
push.setChannel("Channel Name");
push.setMessage(message);
push.sendInBackground();

Problem

I am wondering how to send a parse push notification directly from my android app to evryone else using my app. Is it possible to do this?

Original source