androidNativeX64Test

abstract val NamedDomainObjectContainer<KotlinSourceSet>.androidNativeX64Test: 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 androidNativeX64 target. Declare androidNativeX64 target to access this source set. If androidNativeX64 target wasn't declared, accessing this source set will cause a runtime error during configuration time.

Sample:

kotlin {
androidNativeX64() // Target is declared, androidNativeX64Test source set is created

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

Since

2.0.20