Trouble In Using Parse
I am trying to make an app which is using parse library for push notifications.I followed the tutorials from parse.com but its not working. I am getting error: java.lang.RuntimeExc
Solution 1:
You should use your app and client keys instead of default values APP_KEY
and CLIENT_KEY
in this line:
Parse.initialize(this, "APP_KEY", "CLIENT_KEY");
which you can get after signing up at Parse.
Solution 2:
OKay thank you very much for helping I am able to send push to parse.com.The mistake was in the manifest file.I updated the menifestfile with providing android:name=."ParseActivity" under the application tag.Then I defined the initialization in the ParseActivity class. Now can anybody tell how to get the pushed data over server back on another device using the same set of keys?
Post a Comment for "Trouble In Using Parse"