Place google() as the first priority repository

Closes #879
This commit is contained in:
Rafid Aslam 2018-10-25 22:26:49 +07:00 committed by Isaac Hutt
parent 97b77691b9
commit 6362b04a35
2 changed files with 5 additions and 5 deletions

View File

@ -2,9 +2,9 @@ import groovy.json.JsonSlurper
buildscript {
repositories {
google()
mavenCentral()
jcenter()
google()
}
dependencies {
@ -19,12 +19,12 @@ apply plugin: 'checkstyle'
apply plugin: 'testdroid'
repositories {
google()
mavenCentral()
jcenter()
maven {
url 'https://maven.google.com'
}
google()
jcenter()
}
String[] archs = ['arm64-v8a', 'armeabi', 'mips', 'mips64', 'x86', 'x86_64']

View File

@ -1,7 +1,7 @@
buildscript {
repositories {
jcenter()
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:3.1.4"
@ -36,8 +36,8 @@ ext {
allprojects {
repositories {
jcenter()
google()
jcenter()
}
}