Skip to content

Commit cc189af

Browse files
Jawnnypooflovilmart
authored andcommitted
Update dependency links, remove out of date documentation (#539)
* Update dependency links, remove out of date documentation * Add new method description of how to sign requests via OkHttp * Add back ParseQueryAdapter documentation with deprecation notice
1 parent 4359724 commit cc189af

File tree

4 files changed

+192
-175
lines changed

4 files changed

+192
-175
lines changed

_includes/android/getting-started.md

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,29 @@
11
# Getting Started
22

3-
Note that we support Android 2.3 and higher. You can also check out our [API Reference]({{ site.apis.android }}) for more detailed information about our SDK.
3+
Note that we support Android 4.0 and higher. You can also check out our [API Reference]({{ site.apis.android }}) for more detailed information about our SDK.
44

55
## Installation
66
**Step 1:** Download `Parse-SDK-Android`
77

8-
Add dependency to the application level `build.gradle` file.
8+
## Dependency
9+
Add this in your root `build.gradle` file (**not** your module `build.gradle` file):
910

10-
[![Bintray][bintray-svg]][bintray-link]
11+
```gradle
12+
allprojects {
13+
repositories {
14+
...
15+
maven { url "https://jitpack.io" }
16+
}
17+
}
18+
```
1119

12-
```groovy
20+
Then, add the library to your project `build.gradle`
21+
```gradle
1322
dependencies {
14-
implementation 'com.parse:parse-android:latest.version.here'
23+
implementation "com.github.parse-community.Parse-SDK-Android:parse:latest.version.here"
1524
}
1625
```
26+
with the latest version being [![](https://jitpack.io/v/parse-community/Parse-SDK-Android.svg)](https://jitpack.io/#parse-community/Parse-SDK-Android)
1727

1828
**Step 2:** Setup Parse
1929
Initialize Parse using your server configuration:
@@ -27,6 +37,7 @@ public class App extends Application {
2737
super.onCreate();
2838
Parse.initialize(new Parse.Configuration.Builder(this)
2939
.applicationId("YOUR_APP_ID")
40+
// if defined
3041
.clientKey("YOUR_CLIENT_KEY")
3142
.server("http://localhost:1337/parse/")
3243
.build()
@@ -43,6 +54,3 @@ public class App extends Application {
4354
...
4455
</application>
4556
```
46-
47-
[bintray-svg]: https://api.bintray.com/packages/parse/maven/com.parse:parse-android/images/download.svg
48-
[bintray-link]: https://bintray.com/parse/maven/com.parse:parse-android

0 commit comments

Comments
 (0)