work around dependabot gradle bug

This commit is contained in:
Daniel Micay 2022-06-06 05:03:14 -04:00
parent 6a6a263b0b
commit 22b400c68f
1 changed files with 8 additions and 2 deletions

View File

@ -1,7 +1,13 @@
buildscript {
repositories {
google()
mavenCentral()
// dependabot cannot handle google()
maven {
url = uri("https://dl.google.com/dl/android/maven2")
}
// dependabot cannot handle mavenCentral()
maven {
url = uri("https://repo.maven.apache.org/maven2")
}
}
dependencies {
classpath("com.android.tools.build:gradle:7.2.1")