Fix the build by listing google repo first.

Apparently jcenter() is lame and it broke our build. Listing the google
repo first fixes everything.
This commit is contained in:
Greyson Parrelli
2018-10-24 16:57:19 -07:00
parent 638012f3d0
commit fac56be499
2 changed files with 6 additions and 9 deletions

View File

@@ -2,14 +2,14 @@ import java.security.MessageDigest
buildscript {
repositories {
maven {
url "https://repo1.maven.org/maven2"
jcenter()
}
maven {
url 'https://maven.google.com/'
name 'Google'
}
maven {
url "https://repo1.maven.org/maven2"
jcenter()
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
@@ -48,12 +48,9 @@ repositories {
maven { // textdrawable
url 'https://dl.bintray.com/amulyakhare/maven'
}
google()
jcenter()
mavenLocal()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
dependencies {