Hans-Christoph Steiner 2021-04-08 15:59:46 +02:00
parent 0fe41bfc86
commit 61441b3f2c
No known key found for this signature in database
GPG Key ID: 3E177817BA1B9BFA
1 changed files with 7 additions and 4 deletions

View File

@ -1,8 +1,7 @@
buildscript {
repositories {
mavenCentral()
maven { url 'https://maven.google.com/' } // :-| must be before jcenter()
jcenter() // download from jCenter as last resort https://blog.autsoft.hu/a-confusing-dependency
maven { url 'https://maven.google.com/' }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.3'
@ -11,7 +10,11 @@ buildscript {
allprojects {
repositories {
mavenCentral()
maven { url 'https://maven.google.com/' } // :-| must be before jcenter()
jcenter() // download from jCenter as last resort https://blog.autsoft.hu/a-confusing-dependency
maven { url 'https://maven.google.com/' }
jcenter() {
content {
includeModule("cc.mvdan.accesspoint", "library")
}
}
}
}