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 {
repositories {
maven {
url "https://repo1.maven.org/maven2"
jcenter()
}
jcenter()
maven {
url 'https://maven.google.com/'
name 'Google'
@ -16,6 +13,9 @@ buildscript {
allprojects {
repositories {
jcenter()
maven { url 'https://maven.google.com' }
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
}