mirror of
https://github.com/vanitasvitae/EnigmAndroid.git
synced 2024-11-01 01:55:59 +01:00
23 lines
484 B
Groovy
Executable file
23 lines
484 B
Groovy
Executable file
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 23
|
|
buildToolsVersion "22.0.1"
|
|
|
|
defaultConfig {
|
|
applicationId "de.vanitasvitae.enigmandroid"
|
|
minSdkVersion 10
|
|
targetSdkVersion 23
|
|
versionCode 15
|
|
versionName "0.1.9-09.10.2015-beta"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
compile 'com.android.support:support-v4:23.0.1'
|
|
}
|