mirror of
https://github.com/ultrasonic/ultrasonic
synced 2024-12-11 16:35:38 +01:00
95b20b486d
This allows better and easier versioning management across modules Signed-off-by: Yahor Berdnikau <egorr.berd@gmail.com>
23 lines
474 B
Groovy
23 lines
474 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion versions.compileSdk
|
|
buildToolsVersion versions.buildTools
|
|
|
|
defaultConfig {
|
|
minSdkVersion versions.minSdk
|
|
targetSdkVersion versions.targetSdk
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile androidSupport.support
|
|
}
|