-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add dependencies for the application modules
Signed-off-by: Yurii Surzhykov <yurii.surzhykov@nortekcontrol.com>
- Loading branch information
Yurii Surzhykov
committed
May 23, 2024
1 parent
2ba59b7
commit 386eef0
Showing
2 changed files
with
83 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,99 @@ | ||
[versions] | ||
agp = "8.4.1" | ||
annotation = "1.8.0" | ||
kotlin = "1.9.24" | ||
kotlin-serialization-json = "1.6.3" | ||
coreKtx = "1.13.1" | ||
junit = "4.13.2" | ||
junitVersion = "1.1.5" | ||
espressoCore = "3.5.1" | ||
lifecycleRuntimeKtx = "2.8.0" | ||
androidx-lifecycle = "2.8.0" | ||
activityCompose = "1.9.0" | ||
composeBom = "2024.05.00" | ||
androidx-compose-runtime = "1.6.7" | ||
retrofit = "2.9.0" | ||
kotlinx-coroutines = "1.8.0" | ||
retrofitAdaptersResult = "1.0.9" | ||
retrofitConverterKotlinxSerialization = "1.0.0" | ||
appcompat = "1.6.1" | ||
material = "1.12.0" | ||
room = "2.6.1" | ||
ksp = "1.9.22-1.0.17" | ||
dagger = "2.50" | ||
javax-inject = "1" | ||
okhttp = "4.12.0" | ||
coil = "2.6.0" | ||
detekt = "1.23.3" | ||
uiautomator = "2.3.0" | ||
benchmarkMacroJunit4 = "1.2.4" | ||
baselineprofile = "1.2.4" | ||
profileinstaller = "1.3.1" | ||
|
||
[libraries] | ||
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" } | ||
androidx-room-compiler = { module = "androidx.room:room-compiler", version.ref = "room" } | ||
androidx-room-ktx = { module = "androidx.room:room-ktx", version.ref = "room" } | ||
|
||
junit = { group = "junit", name = "junit", version.ref = "junit" } | ||
|
||
androidx-annotation = { module = "androidx.annotation:annotation", version.ref = "annotation" } | ||
androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" } | ||
androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" } | ||
androidx-lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "lifecycleRuntimeKtx" } | ||
androidx-activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "activityCompose" } | ||
androidx-compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "composeBom" } | ||
androidx-ui = { group = "androidx.compose.ui", name = "ui" } | ||
androidx-ui-graphics = { group = "androidx.compose.ui", name = "ui-graphics" } | ||
androidx-ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling" } | ||
androidx-ui-tooling-preview = { group = "androidx.compose.ui", name = "ui-tooling-preview" } | ||
androidx-ui-test-manifest = { group = "androidx.compose.ui", name = "ui-test-manifest" } | ||
androidx-ui-test-junit4 = { group = "androidx.compose.ui", name = "ui-test-junit4" } | ||
|
||
androidx-lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "androidx-lifecycle" } | ||
androidx-lifecycle-viewmodel-ktx = { module = "androidx.lifecycle:lifecycle-viewmodel-ktx", version.ref = "androidx-lifecycle" } | ||
androidx-lifecycle-viewmodel-compose = { module = "androidx.lifecycle:lifecycle-viewmodel-compose", version.ref = "androidx-lifecycle" } | ||
|
||
androidx-compose-ui = { group = "androidx.compose.ui", name = "ui" } | ||
androidx-compose-ui-graphics = { group = "androidx.compose.ui", name = "ui-graphics" } | ||
androidx-compose-ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling" } | ||
androidx-compose-ui-tooling-preview = { group = "androidx.compose.ui", name = "ui-tooling-preview" } | ||
androidx-compose-ui-test-manifest = { group = "androidx.compose.ui", name = "ui-test-manifest" } | ||
androidx-compose-ui-test-junit4 = { group = "androidx.compose.ui", name = "ui-test-junit4" } | ||
androidx-compose-runtime = { group = "androidx.compose.runtime", name = "runtime", version.ref = "androidx-compose-runtime" } | ||
|
||
androidx-material3 = { group = "androidx.compose.material3", name = "material3" } | ||
retrofit = { module = "com.squareup.retrofit2:retrofit", version.ref = "retrofit" } | ||
retrofit-adapters-result = { module = "com.github.skydoves:retrofit-adapters-result", version.ref = "retrofitAdaptersResult" } | ||
retrofit-converter-kotlinx-serialization = { module = "com.jakewharton.retrofit:retrofit2-kotlinx-serialization-converter", version.ref = "retrofitConverterKotlinxSerialization" } | ||
|
||
koltinx-coroutines-core = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "kotlinx-coroutines" } | ||
koltinx-coroutines-android = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-android", version.ref = "kotlinx-coroutines" } | ||
|
||
koltinx-serialization-json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version.ref = "kotlin-serialization-json" } | ||
androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" } | ||
material = { group = "com.google.android.material", name = "material", version.ref = "material" } | ||
|
||
dagger-hilt-android = { module = "com.google.dagger:hilt-android", version.ref = "dagger" } | ||
dagger-hilt-compiler = { module = "com.google.dagger:hilt-compiler", version.ref = "dagger" } | ||
dagger-compiler = { module = "com.google.dagger:dagger-compiler", version.ref = "dagger" } | ||
dagger-main = { module = "com.google.dagger:dagger", version.ref = "dagger" } | ||
|
||
okhttp = { module = "com.squareup.okhttp3:okhttp", version.ref = "okhttp" } | ||
okhttp-logging-interceptor = { module = "com.squareup.okhttp3:logging-interceptor", version.ref = "okhttp" } | ||
|
||
javax-inject = { module = "javax.inject:javax.inject", version.ref = "javax-inject" } | ||
|
||
coil-core = { module = "io.coil-kt:coil", version.ref = "coil" } | ||
coil-compose = { module = "io.coil-kt:coil-compose", version.ref = "coil" } | ||
|
||
detekt-formatting = { module = "io.gitlab.arturbosch.detekt:detekt-formatting", version.ref = "detekt" } | ||
androidx-uiautomator = { group = "androidx.test.uiautomator", name = "uiautomator", version.ref = "uiautomator" } | ||
androidx-benchmark-macro-junit4 = { group = "androidx.benchmark", name = "benchmark-macro-junit4", version.ref = "benchmarkMacroJunit4" } | ||
androidx-profileinstaller = { group = "androidx.profileinstaller", name = "profileinstaller", version.ref = "profileinstaller" } | ||
|
||
[plugins] | ||
android-application = { id = "com.android.application", version.ref = "agp" } | ||
jetbrains-kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" } | ||
|
||
jetbrains-kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" } | ||
kotlin-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" } | ||
android-library = { id = "com.android.library", version.ref = "agp" } | ||
ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" } | ||
dagger-hilt-android = { id = "com.google.dagger.hilt.android", version.ref = "dagger" } | ||
kapt = { id = "org.jetbrains.kotlin.kapt", version.ref = "kotlin" } | ||
androidx-room = { id = "androidx.room", version.ref = "room" } | ||
detekt = { id = "io.gitlab.arturbosch.detekt", version.ref = "detekt" } | ||
android-test = { id = "com.android.test", version.ref = "agp" } | ||
baseline-profile = { id = "androidx.baselineprofile", version.ref = "baselineprofile" } |