This commit is contained in:
Shinokuni 2024-08-06 16:50:22 +02:00
parent 4b80cfd1c1
commit a2e2c04142
3 changed files with 8 additions and 2 deletions

View File

@ -33,7 +33,10 @@ dependencies {
implementation(platform(libs.koin.bom))
implementation(libs.bundles.koin)
androidTestImplementation(libs.bundles.kointest)
//testImplementation(libs.bundles.kointest)
// I don't know why but those dependencies are unreachable when accessed directly from version catalog
testImplementation("io.insert-koin:koin-test:${libs.versions.koin.bom.get()}")
testImplementation("io.insert-koin:koin-test-junit4:${libs.versions.koin.bom.get()}")
implementation(libs.konsumexml)
implementation(libs.kotlinxmlbuilder)

View File

@ -44,7 +44,10 @@ dependencies {
implementation(platform(libs.koin.bom))
implementation(libs.bundles.koin)
androidTestImplementation(libs.bundles.kointest)
//androidTestImplementation(libs.bundles.kointest)
// I don't know why but those dependencies are unreachable when accessed directly from version catalog
androidTestImplementation("io.insert-koin:koin-test:${libs.versions.koin.bom.get()}")
androidTestImplementation("io.insert-koin:koin-test-junit4:${libs.versions.koin.bom.get()}")
implementation(libs.bundles.coroutines)
androidTestImplementation(libs.coroutines.test)