18 lines
584 B
Groovy
18 lines
584 B
Groovy
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
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:4.2.1'
|
|
}
|
|
}
|
|
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
|
|
}
|
|
}
|