Adopt settings from Android Studio

It doesn't change any functionality, only the format and
settings according to the recommendations of Android Studio
This commit is contained in:
Fabian Wiesel
2024-02-16 20:35:48 +01:00
parent b61a6f5ba8
commit b339602184
7 changed files with 40 additions and 28 deletions

View File

@@ -1,7 +1,7 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
compileSdk 26
defaultConfig {
applicationId "de.rochefort.childmonitor"
@@ -28,4 +28,8 @@ android {
abortOnError true
warning 'MissingTranslation'
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}