2014-07-24 00:15:11 +00:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
2015-05-17 16:08:59 +00:00
|
|
|
mavenCentral()
|
2014-07-24 00:15:11 +00:00
|
|
|
}
|
|
|
|
dependencies {
|
2016-12-25 12:34:39 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:2.2.3'
|
2014-07-24 00:15:11 +00:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
}
|
2015-01-06 22:52:17 +00:00
|
|
|
|
|
|
|
ext {
|
2015-08-26 20:43:00 +00:00
|
|
|
compileSdkVersion = 23
|
2016-06-12 19:45:28 +00:00
|
|
|
buildToolsVersion = "23.0.3"
|
2015-01-06 22:52:17 +00:00
|
|
|
}
|
|
|
|
subprojects { subproject ->
|
|
|
|
afterEvaluate{
|
|
|
|
if((subproject.plugins.hasPlugin('android') || subproject.plugins.hasPlugin('android-library'))) {
|
|
|
|
android {
|
|
|
|
compileSdkVersion rootProject.ext.compileSdkVersion
|
|
|
|
buildToolsVersion rootProject.ext.buildToolsVersion
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|