2015-11-12 03:55:24 +01:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
2017-06-21 06:45:44 +02:00
|
|
|
maven { url 'https://maven.fabric.io/public' }
|
2018-05-06 23:33:10 +02:00
|
|
|
google()
|
2015-11-12 03:55:24 +01:00
|
|
|
}
|
|
|
|
dependencies {
|
2018-05-06 23:33:10 +02:00
|
|
|
classpath 'com.android.tools.build:gradle:3.1.2'
|
2017-06-21 06:45:44 +02:00
|
|
|
classpath 'io.fabric.tools:gradle:1.+'
|
2015-11-12 03:55:24 +01:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|
|
|
|
|
|
|
|
subprojects {
|
|
|
|
afterEvaluate {project ->
|
|
|
|
if (project.hasProperty("android")) {
|
|
|
|
android {
|
2018-07-27 04:16:50 +02:00
|
|
|
compileSdkVersion 26
|
2015-11-12 03:55:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|