Daniel Leal d7630631b6 Extract gradle code to assemble and publish library to external gradle file
Adapted library and library-image-loader gradle files
2018-01-29 12:31:27 +01:00

28 lines
529 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
}
lintOptions {
// okio....
disable 'InvalidPackage'
}
}
dependencies {
implementation project(':library')
implementation ANDROID_SVG
implementation ANDROID_GIF
implementation OK_HTTP
}
apply from: '../artifactory-mvn-push.gradle'