Skip to content

Commit 9467dc4

Browse files
authored
Merge pull request #254 from joreilly/update_dependencies
update dependencies
2 parents 66b66c5 + eaf9d60 commit 9467dc4

File tree

4 files changed

+14
-12
lines changed

4 files changed

+14
-12
lines changed

Diff for: androidApp/src/main/java/dev/johnoreilly/bikeshare/ui/theme/Theme.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ fun BikeShareTheme(
106106
darkTheme: Boolean = isSystemInDarkTheme(),
107107
androidTheme: Boolean = false,
108108
disableDynamicTheming: Boolean = false,
109-
content: @Composable() () -> Unit
109+
content: @Composable () -> Unit
110110
) {
111111

112112
val colorScheme = if (androidTheme) {

Diff for: common/src/commonMain/kotlin/dev/johnoreilly/common/viewmodel/StationsViewModelShared.kt

+2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,13 @@ import com.rickclephas.kmp.observableviewmodel.stateIn
66
import com.rickclephas.kmp.nativecoroutines.NativeCoroutinesState
77
import dev.johnoreilly.common.di.Singleton
88
import dev.johnoreilly.common.repository.CityBikesRepository
9+
import kotlinx.coroutines.ExperimentalCoroutinesApi
910
import kotlinx.coroutines.flow.SharingStarted
1011
import kotlinx.coroutines.flow.filterNotNull
1112
import kotlinx.coroutines.flow.flatMapLatest
1213
import me.tatarka.inject.annotations.Inject
1314

15+
@OptIn(ExperimentalCoroutinesApi::class)
1416
@Inject @Singleton
1517
open class StationsViewModelShared(cityBikesRepository: CityBikesRepository) : ViewModel() {
1618
private val network = MutableStateFlow<String?>(viewModelScope, null)

Diff for: common/src/jvmMain/kotlin/dev/johnoreilly/common/di/DesktopApplicationComponent.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ abstract class DesktopApplicationComponent: SharedApplicationComponent {
2323

2424
fun createRoomDatabase(): AppDatabase {
2525
val dbFile = File(System.getProperty("java.io.tmpdir"), dbFileName)
26-
return Room.databaseBuilder<AppDatabase>(name = dbFile.absolutePath,)
26+
return Room.databaseBuilder<AppDatabase>(name = dbFile.absolutePath)
2727
.setDriver(BundledSQLiteDriver())
2828
.build()
2929
}

Diff for: gradle/libs.versions.toml

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
[versions]
22
kotlin = "2.0.21"
3-
ksp = "2.0.21-1.0.25"
3+
ksp = "2.0.21-1.0.26"
44

55
coroutines = "1.9.0"
66
kotlinxSerialization = "1.7.3"
77

88

9-
androidGradlePlugin = "8.7.1"
9+
androidGradlePlugin = "8.7.2"
1010
circuit = "0.24.0"
1111
kotlininject = "0.7.2"
1212
ktor = "3.0.0"
1313
slf4j = "2.0.16"
14-
kmpNativeCoroutines = "1.0.0-ALPHA-35"
15-
kmpObservableViewModel = "1.0.0-BETA-6"
14+
kmpNativeCoroutines = "1.0.0-ALPHA-37"
15+
kmpObservableViewModel = "1.0.0-BETA-7"
1616

1717
compose-multiplatform = "1.7.0"
1818
composeAdaptiveLayout = "1.0.0"
19-
androidxActivity = "1.9.2"
20-
androidxRoom = "2.7.0-alpha09"
21-
sqlite = "2.5.0-alpha09"
22-
androidxComposeBom = "2024.09.03"
23-
androidxNavigationCompose = "2.8.2"
24-
androidxLifecycle = "2.8.6"
19+
androidxActivity = "1.9.3"
20+
androidxRoom = "2.7.0-alpha11"
21+
sqlite = "2.5.0-alpha11"
22+
androidxComposeBom = "2024.10.01"
23+
androidxNavigationCompose = "2.8.3"
24+
androidxLifecycle = "2.8.7"
2525
junit = "4.13.2"
2626

2727
minSdk = "24"

0 commit comments

Comments
 (0)