mirror of
https://github.com/vanitasvitae/EnigmAndroid.git
synced 2024-11-22 04:12:06 +01:00
23 lines
479 B
Groovy
23 lines
479 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 25
|
|
buildToolsVersion "25.0.3"
|
|
|
|
defaultConfig {
|
|
applicationId "de.vanitasvitae.enigmandroid"
|
|
minSdkVersion 11
|
|
targetSdkVersion 25
|
|
versionCode 16
|
|
versionName "1.0.0-05.05.2017"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
compile 'com.android.support:support-v4:25.3.1'
|
|
}
|