How To Add Parse to an Android Studio Project?

前端 未结 8 1720
野趣味
野趣味 2020-12-24 01:22

I\'m trying to use the Parse library in Android Studio. I have used the basic example on their website and added the jar to the libs folder as well as added as a global libr

8条回答
  •  醉话见心
    2020-12-24 02:00

    1. Unzip the Parse.zip file
    2. Go to Android Studio. Change Android to Project (top left corner).
    3. Expand the folders and find "libs".
    4. Copy the "parse" folder and paste it in the "libs".
    5. Now, under the "src" open build.gradle
    6. Paste the following under dependencies- compile files('libs/Parse-1.9.4/Parse-1.9.4.jar') compile files('libs/Parse-1.9.4/bolts-android-1.2.0.jar') (give your Parse version name)
    7. Done. You gotta ready to go!!

提交回复
热议问题