How To Add Parse to an Android Studio Project?

前端 未结 8 1681
野趣味
野趣味 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:08

    As of version 1.10.0 the Parse SDK is open source and available on Maven, so now you can just put this in gradle:

    compile 'com.parse:parse-android:1.10.0'
    

    Just replace 1.10.0 with whatever the newest verison is at the time you read this.

    Alternatively, if you like living on the edge, you can tell gradle to auto-update:

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

    EDIT: On 1/28/16 Facebook announced that they are retiring the Parse service, so if you are starting a new project I would urge you to consider using a different service.

提交回复
热议问题