KMP project, Compose for Android UX, unable to run tests on composables

I’m working on a new project with the current goals:

  1. Android UX will use Compose.
  2. iOS UX will use SwiftUI.
  3. All backend code is shared using Kotlin Multiplatform.

I’ve developed an initial set of features and want to now add some unit tests for the composables int he Android code. However, I’m having a hard time finding info on how to setup the project, etc.

Currently, with the code on this branch I’m able to build and run the test, but it fails with:

java.lang.RuntimeException: Intent in process org.comixedproject.variant resolved to different process org.comixedproject.variant.test: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10008000 cmp=org.comixedproject.variant.test/androidx.activity.ComponentActivity }

and I’m not sure how to fix this. Any help is greatly appreciated.