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