Issue#67 Extract MigrationTestHelper into separate module

This commit is contained in:
Gergely Hegedus 2022-04-12 14:37:39 +03:00
parent f35fe810e0
commit 4932b4b2e0
26 changed files with 249 additions and 225 deletions

View file

@ -92,9 +92,9 @@ dependencies {
implementation "io.insert-koin:koin-android:$koin_version"
implementation "io.insert-koin:koin-androidx-compose:$koin_version"
implementation "androidx.room:room-runtime:$androidx_room_version"
kapt "androidx.room:room-compiler:$androidx_room_version"
implementation "androidx.room:room-ktx:$androidx_room_version"
implementation "androidx.room:room-runtime:$room_version"
kapt "androidx.room:room-compiler:$room_version"
implementation "androidx.room:room-ktx:$room_version"
implementation "io.coil-kt:coil:$coil_version"
implementation "io.coil-kt:coil-compose:$coil_version"
@ -108,5 +108,8 @@ dependencies {
testImplementation testFixtures(project(':core'))
androidTestImplementation testFixtures(project(':core'))
implementation project(':test-util-shared-robolectric')
androidTestImplementation project(':test-util-shared-android')
}