-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibs.versions.toml
53 lines (46 loc) · 2.78 KB
/
libs.versions.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[versions]
core-ktx = "1.7.0"
kotlin-reflection = "1.6.21"
compose = "1.1.1"
lifecylce-runtime-ktx = "2.4.1"
activity-compose = "1.4.0"
navigation = "2.4.2"
lifecycle-viewmodel-ktx = "2.4.1"
hilt-navigation-compose = "1.0.0"
dagger-hilt = "2.41"
hilt-compiler = "1.0.0"
gson = "2.9.0"
realm = "0.11.0"
room = "2.4.2"
sqldelight = "1.5.3"
objectbox = "3.1.2"
datastore = "1.0.0"
[libraries]
coreKtx = { module = "androidx.core:core-ktx", version.ref = "core-ktx" }
kotlinReflection = { module = "org.jetbrains.kotlin:kotlin-reflect", version.ref = "kotlin-reflection" }
lifecycleRuntimeKtx = { module = "androidx.lifecycle:lifecycle-runtime-ktx", version.ref = "lifecylce-runtime-ktx" }
activityCompose = { module = "androidx.activity:activity-compose", version.ref = "activity-compose" }
navigation = { module = "androidx.navigation:navigation-compose", version.ref = "navigation" }
lifecycleViewmodelKtx = { module = "androidx.lifecycle:lifecycle-viewmodel-ktx", version.ref = "lifecycle-viewmodel-ktx" }
hiltNavigationCompose = { module = "androidx.hilt:hilt-navigation-compose", version.ref = "hilt-navigation-compose" }
hiltCompiler = { module = "androidx.hilt:hilt-compiler", version.ref = "hilt-compiler" }
hiltAndroidCompiler = { module = "com.google.dagger:hilt-android-compiler", version.ref = "dagger-hilt" }
daggerHiltAndroid = { module = "com.google.dagger:hilt-android", version.ref = "dagger-hilt" }
gradlePluginHiltAndroid = { module = "com.google.dagger:hilt-android-gradle-plugin", version.ref = "dagger-hilt" }
composeUi = { module = "androidx.compose.ui:ui", version.ref = "compose" }
composeMaterial = { module = "androidx.compose.material:material", version.ref = "compose" }
composeUiToolingPreview = { module = "androidx.compose.ui:ui-tooling-preview", version.ref = "compose" }
composeUiTooling = { module = "androidx.compose.ui:ui-tooling", version.ref = "compose" }
gson = { module = "com.google.code.gson:gson", version.ref = "gson" }
realm = { module = "io.realm.kotlin:library-base", version.ref = "realm" }
roomRuntime = { module = "androidx.room:room-runtime", version.ref = "room" }
roomCompiler = { module = "androidx.room:room-compiler", version.ref = "room" }
roomKtx = { module = "androidx.room:room-ktx", version.ref = "room" }
gradlePluginSqlDelight= { module = "com.squareup.sqldelight:gradle-plugin", version.ref = "sqldelight" }
sqlDelightRuntime = { module = "com.squareup.sqldelight:android-driver", version.ref = "sqldelight" }
gradlePluginObjectBox = { module = "io.objectbox:objectbox-gradle-plugin", version.ref = "objectbox" }
datastore = { module = "androidx.datastore:datastore", version.ref = "datastore" }
[bundles]
composeDependencies = ["composeUi", "composeMaterial", "composeUiToolingPreview", "composeUiTooling"]
[plugins]
realm = { id = "io.realm.kotlin", version.ref = "realm" }