@@ -2,6 +2,7 @@ plugins {
22 alias(libs.plugins.android.application)
33 alias(libs.plugins.kotlin.android)
44 alias(libs.plugins.kotlin.compose)
5+ id(" org.jetbrains.kotlin.plugin.serialization" ) version " 2.1.20"
56}
67
78android {
@@ -41,6 +42,43 @@ android {
4142
4243dependencies {
4344
45+ // ViewModel
46+ implementation(" androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.7" )
47+ // ViewModel utilities for Compose
48+ implementation(" androidx.lifecycle:lifecycle-viewmodel-compose:2.8.7" )
49+ // Lifecycle utilities for Compose
50+ implementation(" androidx.lifecycle:lifecycle-runtime-compose:2.8.7" )
51+
52+ // Koin
53+ implementation(" io.insert-koin:koin-core:4.0.3" )
54+ implementation(" io.insert-koin:koin-android:4.0.3" )
55+ implementation(" io.insert-koin:koin-androidx-compose:4.0.3" )
56+ implementation(" io.insert-koin:koin-androidx-compose-navigation:4.0.3" )
57+
58+ // Compose Navigation
59+ implementation(" androidx.navigation:navigation-compose:2.8.9" )
60+
61+ // JSON serialization library, works with the Kotlin serialization plugin
62+ implementation(" org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0" )
63+
64+ // SplashScreen
65+ implementation(" androidx.core:core-splashscreen:1.2.0-beta01" )
66+
67+ // Icon
68+ // Compose Material Icons Extended
69+ implementation(" androidx.compose.material:material-icons-extended:1.7.8" )
70+
71+ // Retrofit
72+ implementation(" com.squareup.retrofit2:retrofit:2.11.0" )
73+ implementation(" com.squareup.retrofit2:converter-gson:2.11.0" )
74+ implementation(" com.squareup.okhttp3:okhttp:4.12.0" )
75+ implementation(" com.squareup.okhttp3:logging-interceptor:4.12.0" )
76+
77+ // Material 3
78+ implementation(" androidx.compose.material3:material3:1.3.1" )
79+ implementation(" androidx.compose.material3:material3-android:1.3.1" )
80+ implementation(" androidx.compose.ui:ui:1.7.8" )
81+
4482 implementation(libs.androidx.core.ktx)
4583 implementation(libs.androidx.lifecycle.runtime.ktx)
4684 implementation(libs.androidx.activity.compose)
0 commit comments