2017-05-24 18:11:17 +03:00

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'
}