mirror of
https://github.com/ultrasonic/ultrasonic
synced 2025-01-23 05:33:12 +01:00
19 lines
363 B
Groovy
19 lines
363 B
Groovy
|
apply plugin: 'com.android.library'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 22
|
||
|
buildToolsVersion "22.0.1"
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdkVersion 7
|
||
|
targetSdkVersion 22
|
||
|
}
|
||
|
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
||
|
}
|
||
|
}
|
||
|
}
|