0.7.0 - Reader Screen

This commit is contained in:
acclorite 2024-03-01 02:11:34 +02:00
parent 03b1ef48c2
commit 0b3a31a183
63 changed files with 2475 additions and 468 deletions

View file

@ -28,34 +28,15 @@ android {
buildTypes {
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