Skip to content

Commit 4039822

Browse files
authored
Add links for additional projects (#867)
1 parent 5795828 commit 4039822

File tree

1 file changed

+12
-32
lines changed

1 file changed

+12
-32
lines changed

README.md

Lines changed: 12 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Parse SDK for Android
22

3-
[![License][license-svg]][license-link] [![Build Status][build-status-svg]][build-status-link] [![Join Chat](https://img.shields.io/badge/gitter-join%20chat%20%E2%86%92-brightgreen.svg)](https://gitter.im/ParsePlatform/Chat) [![](https://jitpack.io/v/parse-community/Parse-SDK-Android.svg)](https://jitpack.io/#parse-community/Parse-SDK-Android)
3+
[![License][https://img.shields.io/badge/license-BSD-lightgrey.svg]][https://github.com/parse-community/Parse-SDK-Android/blob/master/LICENSE] [![Build Status][https://travis-ci.org/parse-community/Parse-SDK-Android.svg?branch=master]][https://travis-ci.org/parse-community/Parse-SDK-Android] [![Join Chat](https://img.shields.io/badge/gitter-join%20chat%20%E2%86%92-brightgreen.svg)](https://gitter.im/ParsePlatform/Chat) [![](https://jitpack.io/v/parse-community/Parse-SDK-Android.svg)](https://jitpack.io/#parse-community/Parse-SDK-Android)
44

55
A library that gives you access to the powerful Parse cloud platform from your Android app.
6-
For more information about Parse and its features, see [the website][parseplatform.org], [blog][blog] and [getting started][guide].
6+
For more information about Parse and its features, see [the website](https://parseplatform.org/), [getting started][guide], and [blog](https://blog.parseplatform.org/).
77

88
## Dependency
99

@@ -28,6 +28,7 @@ dependencies {
2828
implementation "com.github.parse-community.Parse-SDK-Android:ktx:latest.version.here"
2929
}
3030
```
31+
replacing `latest.version.here` with the latest released version (see JitPack badge above)
3132

3233
### Setup
3334
Initialize Parse in a custom class that extends `Application`:
@@ -40,12 +41,9 @@ public class App extends Application {
4041
public void onCreate() {
4142
super.onCreate();
4243

43-
// Remove for production, use to verify FCM is working
44-
// Look for ParseFCM: FCM registration success messages in Logcat to confirm.
45-
Parse.setLogLevel(Parse.LOG_LEVEL_DEBUG);
46-
4744
Parse.initialize(new Parse.Configuration.Builder(this)
4845
.applicationId("YOUR_APP_ID")
46+
// if desired
4947
.clientKey("YOUR_CLIENT_KEY")
5048
.server("http://localhost:1337/parse/")
5149
.build()
@@ -64,17 +62,19 @@ The custom `Application` class must be registered in `AndroidManifest.xml`:
6462
</application>
6563
```
6664

67-
See the [guide](http://docs.parseplatform.org/android/guide/) for the rest of the SDK usage.
65+
See the [guide][guide] for the rest of the SDK usage.
6866

6967
## How Do I Contribute?
70-
We want to make contributing to this project as easy and transparent as possible. Please refer to the [Contribution Guidelines][contributing].
68+
We want to make contributing to this project as easy and transparent as possible. Please refer to the [Contribution Guidelines](CONTRIBUTING.md).
7169

7270
## Other Parse Projects
7371

74-
- [ParseUI for Android][parseui-link]
75-
- [ParseLiveQuery for Android][parselivequery-link]
76-
- [ParseFacebookUtils for Android][parsefacebookutils-link]
77-
- [ParseTwitterUtils for Android][parsetwitterutils-link]
72+
- [Parse FCM](/fcm)
73+
- [Parse KTX](/ktx)
74+
- [ParseUI](https://github.com/parse-community/ParseUI-Android)
75+
- [ParseLiveQuery](https://github.com/parse-community/ParseLiveQuery-Android)
76+
- [ParseFacebookUtils](https://github.com/parse-community/ParseFacebookUtils-Android)
77+
- [ParseTwitterUtils](https://github.com/parse-community/ParseTwitterUtils-Android)
7878

7979
## License
8080
Copyright (c) 2015-present, Parse, LLC.
@@ -88,24 +88,4 @@ We want to make contributing to this project as easy and transparent as possible
8888

8989
As of April 5, 2017, Parse, LLC has transferred this code to the parse-community organization, and will no longer be contributing to or distributing this code.
9090

91-
[parseplatform.org]: http://parseplatform.org/
92-
[blog]: http://blog.parseplatform.org/
9391
[guide]: http://docs.parseplatform.org/android/guide/
94-
95-
[license-svg]: https://img.shields.io/badge/license-BSD-lightgrey.svg
96-
[license-link]: https://github.com/parse-community/Parse-SDK-Android/blob/master/LICENSE
97-
98-
[build-status-svg]: https://travis-ci.org/parse-community/Parse-SDK-Android.svg?branch=master
99-
[build-status-link]: https://travis-ci.org/parse-community/Parse-SDK-Android
100-
101-
[coverage-status-svg]: https://img.shields.io/codecov/c/github/parse-community/Parse-SDK-Android/master.svg
102-
[coverage-status-link]: https://codecov.io/github/parse-community/Parse-SDK-Android?branch=master
103-
104-
[parseui-link]: https://github.com/parse-community/ParseUI-Android
105-
[parselivequery-link]: https://github.com/parse-community/ParseLiveQuery-Android
106-
107-
[parsefacebookutils-link]: https://github.com/parse-community/ParseFacebookUtils-Android
108-
[parsetwitterutils-link]: https://github.com/parse-community/ParseTwitterUtils-Android
109-
110-
[releases]: https://github.com/parse-community/Parse-SDK-Android/releases
111-
[contributing]: CONTRIBUTING.md

0 commit comments

Comments
 (0)