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' }
|
2015-11-12 03:55:24 +01:00
|
|
|
}
|
|
|
|
dependencies {
|
2017-02-15 15:35:23 +01:00
|
|
|
classpath 'com.android.tools.build:gradle:2.2.3'
|
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 {
|
2016-12-11 22:33:57 +01:00
|
|
|
compileSdkVersion 23
|
2017-02-04 17:12:40 +01:00
|
|
|
buildToolsVersion "23.0.3"
|
2015-11-12 03:55:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|