|
|
@ -80,31 +80,31 @@ android {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
dependencies {
|
|
|
|
implementation(project(":feature:interests"))
|
|
|
|
implementation(projects.feature.interests)
|
|
|
|
implementation(project(":feature:foryou"))
|
|
|
|
implementation(projects.feature.foryou)
|
|
|
|
implementation(project(":feature:bookmarks"))
|
|
|
|
implementation(projects.feature.bookmarks)
|
|
|
|
implementation(project(":feature:topic"))
|
|
|
|
implementation(projects.feature.topic)
|
|
|
|
implementation(project(":feature:search"))
|
|
|
|
implementation(projects.feature.search)
|
|
|
|
implementation(project(":feature:settings"))
|
|
|
|
implementation(projects.feature.settings)
|
|
|
|
|
|
|
|
|
|
|
|
implementation(project(":core:common"))
|
|
|
|
implementation(projects.core.common)
|
|
|
|
implementation(project(":core:ui"))
|
|
|
|
implementation(projects.core.ui)
|
|
|
|
implementation(project(":core:designsystem"))
|
|
|
|
implementation(projects.core.designsystem)
|
|
|
|
implementation(project(":core:data"))
|
|
|
|
implementation(projects.core.data)
|
|
|
|
implementation(project(":core:model"))
|
|
|
|
implementation(projects.core.model)
|
|
|
|
implementation(project(":core:analytics"))
|
|
|
|
implementation(projects.core.analytics)
|
|
|
|
|
|
|
|
|
|
|
|
implementation(project(":sync:work"))
|
|
|
|
implementation(projects.sync.work)
|
|
|
|
|
|
|
|
|
|
|
|
androidTestImplementation(project(":core:testing"))
|
|
|
|
androidTestImplementation(projects.core.testing)
|
|
|
|
androidTestImplementation(project(":core:datastore-test"))
|
|
|
|
androidTestImplementation(projects.core.datastoreTest)
|
|
|
|
androidTestImplementation(project(":core:data-test"))
|
|
|
|
androidTestImplementation(projects.core.dataTest)
|
|
|
|
androidTestImplementation(project(":core:network"))
|
|
|
|
androidTestImplementation(projects.core.network)
|
|
|
|
androidTestImplementation(libs.androidx.navigation.testing)
|
|
|
|
androidTestImplementation(libs.androidx.navigation.testing)
|
|
|
|
androidTestImplementation(libs.accompanist.testharness)
|
|
|
|
androidTestImplementation(libs.accompanist.testharness)
|
|
|
|
androidTestImplementation(kotlin("test"))
|
|
|
|
androidTestImplementation(kotlin("test"))
|
|
|
|
debugImplementation(libs.androidx.compose.ui.testManifest)
|
|
|
|
debugImplementation(libs.androidx.compose.ui.testManifest)
|
|
|
|
debugImplementation(project(":ui-test-hilt-manifest"))
|
|
|
|
debugImplementation(projects.uiTestHiltManifest)
|
|
|
|
|
|
|
|
|
|
|
|
implementation(libs.androidx.activity.compose)
|
|
|
|
implementation(libs.androidx.activity.compose)
|
|
|
|
implementation(libs.androidx.appcompat)
|
|
|
|
implementation(libs.androidx.appcompat)
|
|
|
@ -122,10 +122,10 @@ dependencies {
|
|
|
|
implementation(libs.coil.kt)
|
|
|
|
implementation(libs.coil.kt)
|
|
|
|
|
|
|
|
|
|
|
|
// Core functions
|
|
|
|
// Core functions
|
|
|
|
testImplementation(project(":core:testing"))
|
|
|
|
testImplementation(projects.core.testing)
|
|
|
|
testImplementation(project(":core:datastore-test"))
|
|
|
|
testImplementation(projects.core.datastoreTest)
|
|
|
|
testImplementation(project(":core:data-test"))
|
|
|
|
testImplementation(projects.core.dataTest)
|
|
|
|
testImplementation(project(":core:network"))
|
|
|
|
testImplementation(projects.core.network)
|
|
|
|
testImplementation(libs.androidx.navigation.testing)
|
|
|
|
testImplementation(libs.androidx.navigation.testing)
|
|
|
|
testImplementation(libs.accompanist.testharness)
|
|
|
|
testImplementation(libs.accompanist.testharness)
|
|
|
|
testImplementation(libs.work.testing)
|
|
|
|
testImplementation(libs.work.testing)
|
|
|
|