24 lines
444 B
Groovy
24 lines
444 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
|
|
compileSdkVersion TARGET_SDK
|
|
buildToolsVersion BUILD_TOOLS
|
|
|
|
defaultConfig {
|
|
minSdkVersion MIN_SDK
|
|
targetSdkVersion TARGET_SDK
|
|
versionCode 1
|
|
versionName version
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile SUPPORT_ANNOTATIONS
|
|
compile COMMON_MARK
|
|
compile COMMON_MARK_STRIKETHROUGHT
|
|
compile COMMON_MARK_TABLE
|
|
|
|
compile 'ru.noties:debug:3.0.0@jar'
|
|
}
|