Add basic UI element as POC.

This commit is contained in:
Andres Gomez, Thomas (ITDV CC) - AF (ext) 2023-07-13 22:55:59 +02:00
parent 1afd3bc02b
commit 6876ad7052
12 changed files with 606 additions and 9 deletions

View file

@ -58,7 +58,6 @@ android {
dependencies {
implementation("androidx.core:core-ktx:1.10.1")
// implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.6.1")
implementation("androidx.activity:activity-compose:1.7.2")
// Compose
@ -66,9 +65,17 @@ dependencies {
implementation("androidx.compose.ui:ui-graphics:1.4.3")
implementation("androidx.compose.ui:ui-tooling-preview:1.4.3")
implementation("androidx.compose.material3:material3:1.1.1")
debugImplementation("androidx.compose.ui:ui-tooling:1.4.3")
// Hilt: Dependency injection
implementation("androidx.hilt:hilt-navigation-compose:1.0.0")
implementation("com.google.dagger:hilt-android:2.45")
kapt("com.google.dagger:hilt-compiler:2.45")
// Image
implementation("com.github.skydoves:landscapist-glide:2.1.11")
kapt("com.github.bumptech.glide:compiler:4.14.2") // this have to be align with landscapist-glide
// Retrofit : Network
implementation("com.squareup.retrofit2:retrofit:2.9.0")
}