param
param

Reputation: 493

java.lang.NoClassDefFoundError: com.parse.Parse

I'm having a problem trying to run an Android app and getting the following error

 java.lang.NoClassDefFoundError: com.parse.Parse

when I try to run the app.

Upvotes: 4

Views: 3614

Answers (3)

samm
samm

Reputation: 482

Even i was facing this same error, and solved by changing my minSdkVersion to lesser (previously it was 11 i changed to 8)

Upvotes: 0

Siddharth_Vyas
Siddharth_Vyas

Reputation: 10100

Check the answer here : NoClassDefFound solution

You need to make few changes in your project through Eclipse project/properties.

Thanks.

Upvotes: 4

Chatura Dilan
Chatura Dilan

Reputation: 1572

add Parse jar to your libs folder and add it to the buildpath

Upvotes: 0

Related Questions