Parse-SDK-Android
Parse-SDK-Android copied to clipboard
New standard way of declaring the repository settings
New Feature / Enhancement Checklist
- [X] I am not disclosing a vulnerability.
- [X] I am not just asking a question.
- [X] I have searched through existing issues.
There is a new standard way of declaring the repository settings: https://developer.android.com/studio/releases/gradle-plugin?hl=nl#settings-gradle
Following block should be removed from root's build.gradle:
repositories {
google()
mavenCentral()
}
Instead following block added to settings.gradle:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
I will add a PR based on this issue.
Thanks for opening this issue!
- ❌ Please edit your post and use the provided template when creating a new issue. This helps everyone to understand your post better and asks for essential information to quicker review the issue.