Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Update setup instructions in README for current Android Studio #1198

Merged
merged 4 commits into from
May 25, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,18 +45,20 @@ The Parse Android SDK has the following Android API and [Gradle Plugin][gradle-p

## Add Dependency

Add this in your root `build.gradle` file (**not** your module `build.gradle` file):
mtrezza marked this conversation as resolved.
Show resolved Hide resolved
Add this line `maven { url 'https://www.jitpack.io' }` to your `settings.gradle` file, inside the repositories{} property. Like the example below :

```gradle
allprojects {
'''
dependencyResolutionManagement {
'''
repositories {
...
maven { url "https://jitpack.io" }
'''
maven { url 'https://www.jitpack.io' }
}
}
```

Then, add the library to your project `build.gradle`
Then, add the library to your (Module:app) `build.gradle`

```gradle
ext {
Expand Down