2015-02-04 20:51:31 +01:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2017-05-05 18:34:44 +02:00
|
|
|
compileSdkVersion 25
|
|
|
|
buildToolsVersion "25.0.3"
|
2015-02-04 20:51:31 +01:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "de.vanitasvitae.enigmandroid"
|
2017-05-05 18:34:44 +02:00
|
|
|
minSdkVersion 11
|
|
|
|
targetSdkVersion 25
|
2019-01-01 23:07:57 +01:00
|
|
|
versionCode 18
|
|
|
|
versionName "1.0.2-01.01.2019"
|
2015-02-04 20:51:31 +01:00
|
|
|
}
|
2018-01-16 17:30:08 +01:00
|
|
|
|
2015-02-04 20:51:31 +01:00
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
}
|
|
|
|
}
|
2018-01-16 17:30:08 +01:00
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
disable 'MissingTranslation'
|
|
|
|
}
|
2015-02-04 20:51:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
2017-05-05 18:34:44 +02:00
|
|
|
compile 'com.android.support:support-v4:25.3.1'
|
2015-02-04 20:51:31 +01:00
|
|
|
}
|