Question

I am using Parse.com and I upgraded the parse SDK from 1.2.4 to 1.3.0. I have deleted the 1.2.4 files from the libs folder and pasted the 1.3.0 files to libs folder. When I am trying to run my app now it is crashing with no error. After debugging I found out that when I try to open any declaration of Parse class files it shows me this: enter image description here

Here is the build path screenshot: enter image description here

I have tried to clean the project, closed and opened eclipse.

I am stucked! Any help would be appreciated

Was it helpful?

Solution 3

I found the solution, but it was not related to the libs file or to the build path. The problem was in the manifast, had to remove android:noHistory="true" from my activity tag and the every thing worked fine.

OTHER TIPS

Please verify the BuildPath as well.

Right Click on the Project -> BuildPath -> Configure Build Path

Check to see there is .jar files or not. If there are no .jar files, Upload using "Add Jars" button from your libs directory. Once Build Path is configured, clean and run the Project. Hope this will help you.

From your figure you posted, it just that your editor cannot find source for your jar file. But in your figure i do see javadoc. In the same page you will see a button called "Attach source". You can click that button to locate manually your javadoc. With this you should be able to go to source code.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top