feat(CON-168) : [SDK] - Généré et manipuler l'id unique d'installation de l'application.

This commit is contained in:
2024-12-10 15:09:08 +01:00
parent 61ad631f28
commit afb0d01afa
4 changed files with 69 additions and 3 deletions

View File

@ -14,7 +14,7 @@ appcompat = "1.7.0"
lifecycle = "2.8.7"
# Hilt
hilt = "2.50"
hilt = "2.51.1"
hiltNavigation = "1.2.0"
# Compose
@ -31,6 +31,9 @@ junit = "4.13.2"
espressoCore = "3.6.1"
junitExtVersion = "1.2.1"
# Preferences DataStore
preferencesDataStore = "1.1.1"
# Plugins
agp = "8.7.3"
kotlin = "2.0.0"
@ -51,7 +54,7 @@ androidx-lifecycle-compose = { group = "androidx.lifecycle", name = "lifecycle-r
# Hilt
hilt-android = { module = "com.google.dagger:hilt-android", version.ref = "hilt" }
hilt-compiler = { module = "com.google.dagger:hilt-compiler", version.ref = "hilt" }
hilt-compiler = { module = "com.google.dagger:hilt-android-compiler", version.ref = "hilt" }
hilt-navigation-compose = { module = "androidx.hilt:hilt-navigation-compose", version.ref = "hiltNavigation" }
# Timber
@ -67,6 +70,9 @@ compose-material3 = { group = "androidx.compose.material3", name = "material3" }
# Material
material = { group = "com.google.android.material", name = "material", version.ref = "material" }
# Preferences DataStore
preferencesDataStore = { group = "androidx.datastore", name = "datastore-preferences", version.ref = "preferencesDataStore" }
# Test
test-junit = { group = "junit", name = "junit", version.ref = "junit" }
test-androidx-junit = { group = "androidx.test.ext", name = "junit-ktx", version.ref = "junitExtVersion" }
@ -79,6 +85,7 @@ kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
kotlin-compose = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" }
android-library = { id = "com.android.library", version.ref = "agp" }
hilt = { id = "com.google.dagger.hilt.android", version.ref = "hilt" }
[bundles]
androidx = ["androidx-core-ktx", "androidx-activity-compose"]