mirror of
https://github.com/vanitasvitae/EnigmAndroid.git
synced 2024-11-12 15:32:07 +01:00
24 lines
556 B
Groovy
24 lines
556 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 21
|
|
buildToolsVersion "20.0.0"
|
|
|
|
defaultConfig {
|
|
applicationId "de.vanitasvitae.enigmandroid"
|
|
minSdkVersion 15
|
|
targetSdkVersion 21
|
|
versionCode 6
|
|
versionName "0.1.1-18.02.2015-beta"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
runProguard false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
}
|