I quit the app, relaunch it, I am getting an exception.
public void onCreate() {
-->here Parse.initialize(this, \"adfsfasdfs\",
\"asdfadfsdf\"
NEVERMIND, I've fixed it. The problem was due to a syntax error. Thanks to all for solution.
This is weird as I've followed what's given but now I'm not getting any push notifications at all? The only changes I've made:
Manifest
Application class
public class UseParse extends android.app.Application {
@Override
public void onCreate() {
super.onCreate();
Parse.initialize(this, "id", "key");
ParseInstallation.getCurrentInstallation().saveInBackground();
}