30 lines
662 B
Groovy
30 lines
662 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 26
|
|
|
|
defaultConfig {
|
|
applicationId "de.rochefort.childmonitor"
|
|
minSdkVersion 21
|
|
//noinspection ExpiredTargetSdkVersion
|
|
targetSdkVersion 26
|
|
versionCode 5
|
|
versionName "1.0"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
}
|
|
}
|
|
|
|
lintOptions {
|
|
abortOnError true
|
|
warning "MissingTranslation"
|
|
}
|
|
|
|
dependencies {
|
|
implementation "com.android.support:support-compat:26.1.0"
|
|
}
|
|
} |