Skip to content

Commit 01f346f

Browse files
committed
Add versions to toml file
1 parent 6a5d253 commit 01f346f

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

gradle/libs.versions.toml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,12 @@ compiler = "4.16.0"
1212
composeBom = "2024.01.00"
1313
comSquareupRetrofit2ConverterGson2 = "2.9.0"
1414
comSquareupRetrofit2Retrofit = "2.9.0"
15+
core = "1.4.0"
1516
coreKtx = "1.12.0"
17+
coreKtxVersion = "1.4.0"
18+
coreTesting = "2.1.0"
1619
espressoCore = "3.5.1"
20+
espressoIntents = "3.4.0"
1721
glide = "4.16.0"
1822
googleServices = "4.3.14"
1923
gson = "2.10.1"
@@ -22,15 +26,22 @@ junitVersion = "1.1.5"
2226
junitKtx = "1.1.5"
2327
kotlinGradlePlugin = "1.9.25"
2428
kotlinxCoroutinesBom = "1.7.3"
29+
kotlinxCoroutinesTest = "1.6.4"
2530
ksp = "1.9.25-1.0.20"
2631
ktlint = "11.0.0"
2732
lifecycleLivedataKtxVersion = "2.7.0"
2833
lifecycleRuntimeKtx = "2.7.0"
2934
material = "1.11.0"
35+
mockitoKotlin = "4.0.0"
3036
navigationFragmentKtx = "2.7.7"
3137
navigationUiKtxVersion = "2.7.7"
3238
okhttpBom = "4.12.0"
3339
playServicesAdsIdentifier = "18.0.1"
40+
rules = "1.4.0"
41+
runner = "1.4.0"
42+
truth = "1.4.0"
43+
truthVersion = "1.1.3"
44+
uiTestJunit4 = "1.3.0"
3445

3546
[libraries]
3647
androidx-compose-bom = { module = "androidx.compose:compose-bom", version.ref = "composeBom" }
@@ -40,8 +51,11 @@ androidx-compose-runtime-livedata = { module = "androidx.compose.runtime:runtime
4051
androidx-compose-ui-tooling = { module = "androidx.compose.ui:ui-tooling" }
4152
androidx-compose-ui = { module = "androidx.compose.ui:ui" }
4253
androidx-constraintlayout = { module = "androidx.constraintlayout:constraintlayout", version.ref = "androidxConstraintlayout" }
54+
androidx-core = { module = "androidx.test:core", version.ref = "core" }
4355
androidx-core-ktx = { module = "androidx.core:core-ktx", version.ref = "coreKtx" }
56+
androidx-core-testing = { module = "androidx.arch.core:core-testing", version.ref = "coreTesting" }
4457
androidx-espresso-core = { module = "androidx.test.espresso:espresso-core", version.ref = "espressoCore" }
58+
androidx-espresso-intents = { module = "androidx.test.espresso:espresso-intents", version.ref = "espressoIntents" }
4559
androidx-fragment-ktx = { module = "androidx.fragment:fragment-ktx", version.ref = "androidxFragmentKtxVersion" }
4660
androidx-junit-ktx = { module = "androidx.test.ext:junit-ktx", version.ref = "junitKtx" }
4761
androidx-junit = { module = "androidx.test.ext:junit", version.ref = "junitVersion" }
@@ -52,24 +66,32 @@ androidx-recyclerview = { module = "androidx.recyclerview:recyclerview", version
5266
androidx-room-compiler = { module = "androidx.room:room-compiler", version.ref = "androidxRoomRoomCompiler" }
5367
androidx-room-ktx = { module = "androidx.room:room-ktx", version.ref = "androidxRoomKtxVersion" }
5468
androidx-room-runtime = { module = "androidx.room:room-runtime", version.ref = "androidxRoomRuntime" }
69+
androidx-rules = { module = "androidx.test:rules", version.ref = "rules" }
70+
androidx-runner = { module = "androidx.test:runner", version.ref = "runner" }
71+
androidx-truth = { module = "androidx.test.ext:truth", version.ref = "truth" }
72+
androidx-ui-test-junit4 = { module = "androidx.compose.ui:ui-test-junit4", version.ref = "uiTestJunit4" }
5573
appcompat = { module = "androidx.appcompat:appcompat", version.ref = "appcompatVersion" }
5674
com-squareup-retrofit-converter-gson = { module = "com.squareup.retrofit2:converter-gson", version.ref = "comSquareupRetrofit2ConverterGson2" }
5775
com-squareup-retrofit = { module = "com.squareup.retrofit2:retrofit", version.ref = "comSquareupRetrofit2Retrofit" }
5876
compiler-glide = { module = "com.github.bumptech.glide:compiler", version.ref = "compiler" }
77+
core-ktx = { module = "androidx.test:core-ktx", version.ref = "coreKtxVersion" }
5978
glide = { module = "com.github.bumptech.glide:glide", version.ref = "glide" }
6079
google-services = { module = "com.google.gms:google-services", version.ref = "googleServices" }
6180
gson = { module = "com.google.code.gson:gson", version.ref = "gson" }
6281
junit = { module = "junit:junit", version.ref = "junit" }
6382
kotlinx-coroutines-bom = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-bom", version.ref = "kotlinxCoroutinesBom" }
83+
kotlinx-coroutines-test = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-test", version.ref = "kotlinxCoroutinesTest" }
6484
lifecycle-livedata-ktx = { module = "androidx.lifecycle:lifecycle-livedata-ktx", version.ref = "lifecycleLivedataKtxVersion" }
6585
material = { module = "com.google.android.material:material", version.ref = "material" }
86+
mockito-kotlin = { module = "org.mockito.kotlin:mockito-kotlin", version.ref = "mockitoKotlin" }
6687
navigation-ui-ktx = { module = "androidx.navigation:navigation-ui-ktx", version.ref = "navigationUiKtxVersion" }
6788
okhttp-bom = { module = "com.squareup.okhttp3:okhttp-bom", version.ref = "okhttpBom" }
6889
okhttp3-okhttp = { module = "com.squareup.okhttp3:okhttp" }
6990
org-jetbrains-kotlinx-coroutines-android = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-android" }
7091
org-jetbrains-kotlinx-coroutines-core = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core" }
7192
play-services-ads-identifier = { module = "com.google.android.gms:play-services-ads-identifier", version.ref = "playServicesAdsIdentifier" }
7293
squareup-logging-interceptor = { module = "com.squareup.okhttp3:logging-interceptor" }
94+
truth = { module = "com.google.truth:truth", version.ref = "truthVersion" }
7395

7496
[plugins]
7597
ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" }

0 commit comments

Comments
 (0)