Java.lang.NoClassDefFoundError: com.parse.Parse in android

when you run my application it gives java.lang.NoClassDefFoundError: com.parse.Parse

I tried several times to change the minimum sdk level but still gave an error. please if anyone ever resolve this please help me

+3


source to share


2 answers


1) Download Parse SDK

2) Extract it somewhere (like H: / Downloads / Parse /)

3) Open Android Studio and open your project

4) Go to File> Project Structure

5) Select Libraries from the left pane



6) Click the Plus button and select Java from the dropdown menu

7) Browse to the Parse-1.2.5.jar file you downloaded and extracted and select it.

8) Add it to your project

9) Click OK

10) This is it. It should now work correctly

0


source


don't forget this line

compile 'com.parse.bolts:bolts-android:1.+'

      



Fragment quick view

0


source







All Articles