Skip to content

Commit 28d2483

Browse files
authored
Update README.md
1 parent 11feb41 commit 28d2483

File tree

1 file changed

+15
-7
lines changed

1 file changed

+15
-7
lines changed

README.md

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,22 @@ allprojects {
2424
```
2525

2626
Then, add the library to your project `build.gradle`
27-
2827
```gradle
28+
ext {
29+
parseVersion = latest.version.here
30+
}
2931
dependencies {
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
8290
These 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

Comments
 (0)