androidNativeX86Test

abstract val NamedDomainObjectContainer<KotlinSourceSet>.androidNativeX86Test: NamedDomainObjectProvider<KotlinSourceSet>

Deprecated

Target will be removed in a future release. See: https://kotl.in/native-targets-tiers

Static accessor for the test Kotlin Source Set of androidNativeX86 target. Declare androidNativeX86 target to access this source set. If androidNativeX86 target wasn't declared, accessing this source set will cause a runtime error during configuration time.

Sample:

kotlin {
androidNativeX86() // Target is declared, androidNativeX86Test source set is created

sourceSets {
androidNativeX86Test.dependencies {
// Add androidNativeX86Test dependencies here
}
}
}

Since

2.0.20