2015-11-11 18:55:24 -08:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
2017-06-20 21:45:44 -07:00
|
|
|
maven { url 'https://maven.fabric.io/public' }
|
2015-11-11 18:55:24 -08:00
|
|
|
}
|
|
|
|
dependencies {
|
2017-02-15 06:35:23 -08:00
|
|
|
classpath 'com.android.tools.build:gradle:2.2.3'
|
2017-06-20 21:45:44 -07:00
|
|
|
classpath 'io.fabric.tools:gradle:1.+'
|
2015-11-11 18:55:24 -08: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 13:33:57 -08:00
|
|
|
compileSdkVersion 23
|
2017-02-04 08:12:40 -08:00
|
|
|
buildToolsVersion "23.0.3"
|
2015-11-11 18:55:24 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|