2013-11-27 15:47:13 +01:00
|
|
|
buildscript {
|
2014-11-15 22:14:14 +01:00
|
|
|
repositories {
|
2020-01-02 19:46:54 +01:00
|
|
|
mavenCentral()
|
2018-06-08 12:11:19 +02:00
|
|
|
maven { url 'https://maven.google.com/' } // :-| must be before jcenter()
|
2020-01-02 19:46:54 +01:00
|
|
|
jcenter() // download from jCenter as last resort https://blog.autsoft.hu/a-confusing-dependency
|
2014-11-15 22:14:14 +01:00
|
|
|
}
|
|
|
|
dependencies {
|
2021-06-23 15:51:50 +01:00
|
|
|
classpath 'com.android.tools.build:gradle:4.2.1'
|
2014-11-15 22:14:14 +01:00
|
|
|
}
|
2013-11-27 15:47:13 +01:00
|
|
|
}
|
2018-04-19 12:15:37 +02:00
|
|
|
allprojects {
|
|
|
|
repositories {
|
2020-01-02 19:46:54 +01:00
|
|
|
mavenCentral()
|
2018-06-08 12:11:19 +02:00
|
|
|
maven { url 'https://maven.google.com/' } // :-| must be before jcenter()
|
2020-01-02 19:46:54 +01:00
|
|
|
jcenter() // download from jCenter as last resort https://blog.autsoft.hu/a-confusing-dependency
|
2018-04-19 12:15:37 +02:00
|
|
|
}
|
|
|
|
}
|