Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ plugins {

configure<ApplicationExtension> {
namespace = "dev.lanthoor.spendly"
compileSdk = 36
compileSdk = 37

defaultConfig {
applicationId = "dev.lanthoor.spendly"
minSdk = 31
targetSdk = 36
minSdk = 26
targetSdk = 37
ndkVersion = "30.0.14904198"
versionCode = 98
versionName = "0.9.8"
Expand Down
3 changes: 2 additions & 1 deletion app/src/main/java/dev/lanthoor/spendly/ui/theme/Theme.kt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import androidx.compose.material3.dynamicLightColorScheme
import androidx.compose.material3.lightColorScheme
import androidx.compose.runtime.Composable
import androidx.compose.ui.platform.LocalContext
import android.os.Build
import dev.lanthoor.spendly.core.model.preferences.AppTheme

private val DarkColorScheme = darkColorScheme(
Expand Down Expand Up @@ -46,7 +47,7 @@ fun SpendlyTheme(
}

val colorScheme = when {
dynamicColor -> {
dynamicColor && Build.VERSION.SDK_INT >= Build.VERSION_CODES.S -> {
val context = LocalContext.current
if (darkTheme) dynamicDarkColorScheme(context) else dynamicLightColorScheme(context)
}
Expand Down
4 changes: 2 additions & 2 deletions core/common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ plugins {

android {
namespace = "dev.lanthoor.spendly.core.common"
compileSdk = 36
compileSdk = 37

defaultConfig {
minSdk = 31
minSdk = 26
}

compileOptions {
Expand Down
4 changes: 2 additions & 2 deletions core/model/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ plugins {

android {
namespace = "dev.lanthoor.spendly.core.model"
compileSdk = 36
compileSdk = 37

defaultConfig {
minSdk = 31
minSdk = 26
}

compileOptions {
Expand Down
4 changes: 2 additions & 2 deletions core/ui/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ plugins {

android {
namespace = "dev.lanthoor.spendly.core.ui"
compileSdk = 36
compileSdk = 37

defaultConfig {
minSdk = 31
minSdk = 26
}

compileOptions {
Expand Down
8 changes: 4 additions & 4 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
agp = "9.1.0"
agp = "9.2.1"
exifinterface = "1.4.2"
kotlin = "2.3.21"
coreKtx = "1.18.0"
Expand All @@ -8,7 +8,7 @@ junitVersion = "1.3.0"
espressoCore = "3.7.0"
lifecycleRuntimeKtx = "2.10.0"
activityCompose = "1.13.0"
composeBom = "2026.04.01"
composeBom = "2026.05.00"
orchestrator = "1.6.1"
fragment = "1.8.9"
room = "2.8.4"
Expand All @@ -18,8 +18,8 @@ hilt = "2.59.2"
hiltNavigationCompose = "1.3.0"
phosphor = "1.0.0"
turbine = "1.2.1"
coroutinesTest = "1.10.2"
camerax = "1.6.0"
coroutinesTest = "1.11.0"
camerax = "1.6.1"
coil = "2.7.0"
workManager = "2.11.2"
hiltWork = "1.3.0"
Expand Down
Loading