I have done multiple kinds of troubleshooting to figure this out. To no avail. I am going mad trying to figure this out, its just not there. When I download the sdk and extract it from the zip, there is the bolt jar file, but not the regular parse jar file, however the properties file is in the sdk... just not the parse jar file..
Asked
Active
Viewed 3,280 times
1 Answers
8
why you still use the old approach, as Parse SDK become open source you could add SDK just by adding this line in build.gradle it's easier and cleaner.
dependencies {
compile 'com.parse:parse-android:1.12.0'
}
or if you prefer you can download the latest JAR.

humazed
- 74,687
- 32
- 99
- 138
-
That worked thank you. But i still have issues with it showing as "registered". I followed their tutorial, and I'm confused. – wesley franks Oct 09 '15 at 01:45
-
1they should update their https://parse.com/apps/quickstart#parse_push/android/native/existing page – Abhigyan Oct 09 '15 at 01:46
-
@wesleyfranks your code worked ? i am not able to get test push notification – Abhigyan Oct 09 '15 at 02:22
-
I can't get my test device to "register" on their website. It won't do push notifications. I haven't tried any other services yet. – wesley franks Oct 09 '15 at 03:08
-
hey @wesleyfranks see if you have got any entries in your installation table in your parse.com's app – penta Oct 09 '15 at 05:44
-
this is giving compile time error, `Execution failed for task 'app:dexDebug'`. Any ideas how to solve this? According to [this SO answer](http://stackoverflow.com/a/19022328/1708390), this error will show if "_your jar files does not compile_" – Bugs Happen Oct 28 '15 at 08:55
-
1make sure you remove the Parse Jare file if you add it before adding compile 'com.parse:parse-android:1.10.3' in Gradle because it will cause duplicated files. – humazed Oct 29 '15 at 07:25
-
Thanks, @humazed that is a good suggestion, I have since gotten my device to show as registered, and have moved on. I would suggest starting over with their tutorials, as there isn't much to do really. Using the compile method as suggested above, and removing the jar file did it for me. After starting over that is. Try it and let us know. – wesley franks Nov 15 '15 at 04:33