36 lines
753 B
Groovy
36 lines
753 B
Groovy
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:2.3.1'
|
|
}
|
|
}
|
|
|
|
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"
|
|
|
|
final def commonMarkVersion = '0.9.0'
|
|
COMMON_MARK = "com.atlassian.commonmark:commonmark:$commonMarkVersion"
|
|
COMMON_MARK_STRIKETHROUGHT = "com.atlassian.commonmark:commonmark-ext-gfm-strikethrough:$commonMarkVersion"
|
|
}
|