mirror of
https://github.com/ultrasonic/ultrasonic
synced 2025-01-24 22:18:24 +01:00
89419732ca
- No longer use submodules - Use latest SDK - Performed an entire project cleanup
23 lines
433 B
Groovy
23 lines
433 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'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile 'com.android.support:support-v4:18.0.0'
|
|
}
|