simplify gradle repositories to fix Android plugin download error

This commit is contained in:
Hans-Christoph Steiner 2018-06-06 10:31:52 +02:00
parent 00da6080c7
commit e55b121489
1 changed files with 5 additions and 5 deletions

View File

@ -1,9 +1,6 @@
buildscript { buildscript {
repositories { repositories {
maven { jcenter()
url "https://repo1.maven.org/maven2"
jcenter()
}
maven { maven {
url 'https://maven.google.com/' url 'https://maven.google.com/'
name 'Google' name 'Google'
@ -16,6 +13,9 @@ buildscript {
allprojects { allprojects {
repositories { repositories {
jcenter() jcenter()
maven { url 'https://maven.google.com' } maven {
url 'https://maven.google.com/'
name 'Google'
}
} }
} }