Changed Minimum Android API Level to 21 (Android 5) and Code clean up

This commit is contained in:
Sebastian Seedorf
2019-10-18 17:44:01 +02:00
parent 4925943957
commit 46851a4627
63 changed files with 76 additions and 282 deletions

View File

@@ -1,19 +1,20 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
compileSdkVersion 29
buildToolsVersion '28.0.3'
defaultConfig {
applicationId "de.sebse.fuplanner"
minSdkVersion 15
targetSdkVersion 28
minSdkVersion 21
targetSdkVersion 29
versionCode 39
versionName "1.6"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}