0
parse.com has a very simple push service to use.
- Arrow the web permissions
Initializes the service in your application in the Oncreate method
Parse.initialize(this, "YOUR_APP_ID", "YOUR_CLIENT_KEY");
Enables to receive notification
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); } } });
Then just push through the web interface:
Follows documentation https://parse.com/tutorials/android-push-notifications
Please correct the title of your question and the description. Apparently the title has nothing to do with the description. It would be better something like "How could I send messages from the cloud to Android ? "
– Duanniston Cardoso Cabral
You’re right, you’ve been corrected
– Tiago Coelho