You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
Copy file name to clipboardExpand all lines: _includes/android/getting-started.md
+16-8Lines changed: 16 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -1,19 +1,29 @@
1
1
# Getting Started
2
2
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.
4
4
5
5
## Installation
6
6
**Step 1:** Download `Parse-SDK-Android`
7
7
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):
9
10
10
-
[![Bintray][bintray-svg]][bintray-link]
11
+
```gradle
12
+
allprojects {
13
+
repositories {
14
+
...
15
+
maven { url "https://jitpack.io" }
16
+
}
17
+
}
18
+
```
11
19
12
-
```groovy
20
+
Then, add the library to your project `build.gradle`
0 commit comments