26 lines
492 B
Groovy
26 lines
492 B
Groovy
apply plugin: 'android'
|
|
|
|
android {
|
|
compileSdkVersion 19
|
|
buildToolsVersion '19.0.0'
|
|
|
|
defaultConfig {
|
|
minSdkVersion 9
|
|
targetSdkVersion 19
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
runProguard false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':lib')
|
|
compile 'com.android.support:appcompat-v7:+'
|
|
}
|