Open
Description
New Feature / Enhancement Checklist
- I am not disclosing a vulnerability.
- I am not just asking a question.
- 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.