Skip to content

Commit 81c24e3

Browse files
committed
work around dependabot gradle bug
1 parent 6a6a263 commit 81c24e3

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

build.gradle.kts

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
buildscript {
22
repositories {
3-
google()
4-
mavenCentral()
3+
// dependabot cannot handle google()
4+
maven {
5+
url = uri("https://dl.google.com/dl/android/maven2")
6+
}
7+
// dependabot cannot handle mavenCentral()
8+
maven {
9+
url = uri("https://repo.maven.apache.org/maven2")
10+
}
511
}
612
dependencies {
713
classpath("com.android.tools.build:gradle:7.2.1")

0 commit comments

Comments
 (0)