0.6.0 - BookInfo Screen

This commit is contained in:
Acclorite 2024-02-23 16:44:29 +02:00
parent 090d5fc003
commit 03b1ef48c2
74 changed files with 2410 additions and 498 deletions

View file

@ -18,7 +18,7 @@ android {
minSdk = 26
targetSdk = 34
versionCode = 1
versionName = "0.5.0"
versionName = "0.6.0"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
@ -27,14 +27,35 @@ android {
}
buildTypes {
release {
isMinifyEnabled = false
getByName("release") {
// Enables code shrinking, obfuscation, and optimization for only
// your project's release build type. Make sure to use a build
// variant with `isDebuggable=false`.
isMinifyEnabled = true
// Enables resource shrinking, which is performed by the
// Android Gradle plugin.
isShrinkResources = true
// Includes the default ProGuard rules files that are packaged with
// the Android Gradle plugin. To learn more, go to the section about
// R8 configuration files.
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
signingConfig = signingConfigs.getByName("debug")
}
// release {
// isMinifyEnabled = false
// proguardFiles(
// getDefaultProguardFile("proguard-android-optimize.txt"),
// "proguard-rules.pro"
// )
// signingConfig = signingConfigs.getByName("debug")
// }
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17