37 lines
758 B
Groovy
37 lines
758 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:2.3.1'
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
version = VERSION_NAME
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|
|
|
|
ext {
|
|
|
|
// Config
|
|
BUILD_TOOLS = '25.0.2'
|
|
TARGET_SDK = 25
|
|
MIN_SDK = 16
|
|
|
|
// Dependencies
|
|
final def supportVersion = '25.3.1'
|
|
SUPPORT_ANNOTATIONS = "com.android.support:support-annotations:$supportVersion"
|
|
}
|