25 lines
456 B
Groovy
25 lines
456 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 project(':library-renderer')
|
|
compile ANDROID_SVG
|
|
compile ANDROID_GIF
|
|
compile OK_HTTP
|
|
|
|
// todo, debugging only
|
|
compile 'ru.noties:debug:3.0.0@jar'
|
|
} |