Files
babyphone/app/build.gradle
Fabian Wiesel b339602184 Adopt settings from Android Studio
It doesn't change any functionality, only the format and
settings according to the recommendations of Android Studio
2024-02-16 20:35:48 +01:00

35 lines
822 B
Groovy

apply plugin: 'com.android.application'
android {
compileSdk 26
defaultConfig {
applicationId "de.rochefort.childmonitor"
minSdkVersion 21
//noinspection ExpiredTargetSdkVersion
targetSdkVersion 26
versionCode 11
versionName "1.1"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
dependencies {
implementation "com.android.support:support-compat:26.1.0"
}
namespace 'de.rochefort.childmonitor'
lint {
abortOnError true
warning 'MissingTranslation'
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}