chore(-) : Update proguard for release

This commit is contained in:
2025-02-17 16:40:57 +01:00
parent ad08a4325f
commit 4276adaf22
10 changed files with 172 additions and 14 deletions

View File

@ -1,6 +1,7 @@
import org.gradle.language.nativeplatform.internal.BuildType
import java.io.FileInputStream
import java.util.Properties
import com.android.build.api.dsl.ManagedVirtualDevice
plugins {
alias(libs.plugins.ksp)
@ -48,6 +49,7 @@ android {
buildTypes {
debug {
isMinifyEnabled = false
isShrinkResources = false
versionNameSuffix = "-debug"
applicationIdSuffix = ".debug"
@ -91,6 +93,19 @@ android {
buildFeatures {
compose = true
}
testOptions {
animationsDisabled = true
managedDevices {
devices {
create<ManagedVirtualDevice>("pixel5") {
device = "Pixel 5"
apiLevel = 34
systemImageSource = "google"
}
}
}
}
}
dependencies {