@@ -24,14 +24,22 @@ allprojects {
2424```
2525
2626Then, add the library to your project ` build.gradle `
27-
2827``` gradle
28+ ext {
29+ parseVersion = latest.version.here
30+ }
2931dependencies {
30- implementation "com.github.parse-community.Parse-SDK-Android:parse:latest.version.here"
32+ implementation "com.github.parse-community.Parse-SDK-Android:parse:$parseVersion"
33+ // for Google login/signup support (optional)
34+ implementation "com.github.parse-community.Parse-SDK-Android:google:$parseVersion"
35+ // for Facebook login/signup support (optional)
36+ implementation "com.github.parse-community.Parse-SDK-Android:facebook:$parseVersion"
37+ // for Twitter login/signup support (optional)
38+ implementation "com.github.parse-community.Parse-SDK-Android:twitter:$parseVersion"
3139 // for FCM Push support (optional)
32- implementation "com.github.parse-community.Parse-SDK-Android:fcm:latest.version.here "
40+ implementation "com.github.parse-community.Parse-SDK-Android:fcm:$parseVersion "
3341 // for Kotlin extensions support (optional)
34- implementation "com.github.parse-community.Parse-SDK-Android:ktx:latest.version.here "
42+ implementation "com.github.parse-community.Parse-SDK-Android:ktx:$parseVersion "
3543}
3644```
3745
@@ -81,13 +89,13 @@ We want to make contributing to this project as easy and transparent as possible
8189## Other Parse Projects
8290These are other official libraries we made that can help you create your Parse app.
8391
92+ - [ ParseGoogleUtils] ( /google ) - Google login/signup.
93+ - [ ParseFacebookUtils] ( /facebook ) - Facebook login/signup.
94+ - [ ParseTwitterUtils] ( /twitter ) - Twitter login/signup.
8495- [ Parse FCM] ( /fcm ) - [ Firebase Cloud Messaging] ( https://firebase.google.com/docs/cloud-messaging ) support for sending push notifications.
8596- [ Parse KTX] ( /ktx ) - Kotlin extensions for ease of developer use.
8697- [ Parse Coroutines] ( /coroutines ) - Kotlin Coroutines support for various Parse async operations
8798- [ ParseLiveQuery] ( https://github.com/parse-community/ParseLiveQuery-Android ) - Realtime query subscription.
88- - [ ParseGoogleUtils] ( /google ) - Google login/signup.
89- - [ ParseFacebookUtils] ( /facebook ) - Facebook login/signup.
90- - [ ParseTwitterUtils] ( /twitter ) - Twitter login/signup.
9199- [ ParseUI] ( https://github.com/parse-community/ParseUI-Android ) - Prebuilt UI elements.
92100
93101## License
0 commit comments