Skip to content

Commit

Permalink
Merge pull request #37 from robert-muriithi/dev
Browse files Browse the repository at this point in the history
  • Loading branch information
robert-muriithi authored Aug 26, 2024
2 parents 3619c03 + c2ba8f1 commit 91a9c5a
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 11 deletions.
16 changes: 15 additions & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,22 @@ android {
}

buildTypes {
release {
debug {
signingConfig = signingConfigs.getByName("debug")
// applicationIdSuffix = ".debug"
isDebuggable = true
multiDexEnabled = false
isMinifyEnabled = false
isShrinkResources = false
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro",
)
}
release {
isMinifyEnabled = true
isShrinkResources = true
isDebuggable = false
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro",
Expand Down
1 change: 1 addition & 0 deletions app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
# Don't print notes about potential mistakes or omissions in the configuration for kotlinx-serialization classes
# See also https://github.com/Kotlin/kotlinx.serialization/issues/1900
-dontnote kotlinx.serialization.**
-dontobfuscate

# Serialization core uses `java.lang.ClassValue` for caching inside these specified classes.
# If there is no `java.lang.ClassValue` (for example, in Android), then R8/ProGuard will print a warning.
Expand Down
20 changes: 10 additions & 10 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,28 @@ agp = "8.4.1"
coilCompose = "2.7.0"
coreKtx = "1.13.1"
coreSplashscreen = "1.0.1"
firebaseBom = "33.1.0"
firebaseBom = "33.2.0"
gson = "2.10.1"
kotlin = "2.0.0"
ksp = "2.0.0-1.0.21"
junit = "4.13.2"
junitVersion = "1.1.5"
espressoCore = "3.5.1"
lifecycleRuntimeKtx = "2.8.1"
activityCompose = "1.9.0"
composeBom = "2024.06.00"
junitVersion = "1.2.1"
espressoCore = "3.6.1"
lifecycleRuntimeKtx = "2.8.4"
activityCompose = "1.9.1"
composeBom = "2024.08.00"
appcompat = "1.7.0"
material = "1.12.0"
hilt = "2.49"
hilt = "2.51.1"
playServicesAuth = "21.2.0"
roomRuntime = "2.6.1"
ktlint = "12.1.0"
googleServices = "4.4.2"
threetenabp = "1.2.1"
timber = "5.0.1"
uiTextGoogleFonts = "1.6.7"
navVersion = "2.8.0-beta06"
kotlinx-json = "1.6.3"
uiTextGoogleFonts = "1.6.8"
navVersion = "2.8.0-rc01"
kotlinx-json = "1.7.1"
hiltExt = "1.2.0"
kotlin-serialization = "2.0.0"
datastore = "1.1.1"
Expand Down

0 comments on commit 91a9c5a

Please sign in to comment.