Colton Idle
androidTestImplementation
jw
implementation
androidNativeTest.dependencies { implementation("androidx.compose.ui:ui-test-junit4") }
ephemient
Jeff Lockhart
androidInstrumentedTest
commonTest
kotlin { @OptIn(ExperimentalKotlinGradlePluginApi::class) androidTarget { instrumentedTestVariant.sourceSetTree.set(KotlinSourceSetTree.test) unitTestVariant.sourceSetTree.set(KotlinSourceSetTree.unitTest) } }
androidUnitTest
productFlavors { create("free") { dimension = "stage" applicationIdSuffix = ".free" } create("paid") { dimension = "stage" } }
sourceSets { sourceSets.invokeWhenCreated("androidFree") { } sourceSets.invokeWhenCreated("androidPaid") { }
A modern programming language that makes developers happier.