Skip to content

Commit

Permalink
work around dependabot gradle bug
Browse files Browse the repository at this point in the history
  • Loading branch information
thestinger committed Jun 6, 2022
1 parent 6a6a263 commit 81c24e3
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -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")
Expand Down

0 comments on commit 81c24e3

Please sign in to comment.