:wave: After migrating to the kmp android library...
# android
r
👋 After migrating to the kmp android library plugin (
com.android.kotlin.multiplatform.library
), I can't find a way to make my Room DB migration tests to work because of schemas not added in test assets. It was previously done with
sourceSets["test"].assets.srcDir("$projectDir/schemas")
but I can't find an equivalent to syntax to do it. Does anyone manage to make it works?
s
getByName("androidTest").assets.srcDir("$projectDir/schemas") Try this
👀 1