Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
Daniel Johnson
Courses Plus Student 505 PointsBuilding a self destructing messaging app / adding users using parse.com
Since we are using the Eclipse IDE and Parse.com has modified it's SDK for Android Studio. How do I import the Parse SDK into Eclipse?
4 Answers
Jon Kussmann
Courses Plus Student 7,254 PointsWhat happens when you drag the Parse jar file into the libs directory of your project?
Daniel Johnson
Courses Plus Student 505 PointsJon. Since Parse.com has a new design to it with how the sdk is selected this is what I am doing and what I am getting from.
I select Quick start / Data / Mobile / Android / Native / Existing Project This is what I am getting below the link for downloading the SDK
Drag the Parse-.jar you downloaded into your existing app's "libs" folder and add the following to your build.gradle dependencies { compile 'com.parse.bolts:bolts-android:1.+' compile fileTree(dir: 'libs', include: 'Parse-.jar') }
Now I'm using the Eclipse IDE not Android Studio. So this has completely stumped me.
Jon Kussmann
Courses Plus Student 7,254 PointsDaniel,
Let's try this:
Download the zip file and then drag Parse-1.9.0.jar into the libs folder of your project. (Don't worry about the second step with gradle) From there, right click on the jar file and go to Build Path, then add the Build Path.
It should be working at that point. If not, let me know.
Daniel Johnson
Courses Plus Student 505 PointsJon,
I downloaded the Parse....jar file, copy/pasted it into the libs file, build path so now it's there. I haven't had a chance to test it yet, this is as far as I have gotten in this video series. Thanks for the help so far.
Jon Kussmann
Courses Plus Student 7,254 PointsNot a problem!