I'm trying to write some unit tests for my ios target but I get
No tasks available
error from Android Studio. Why does it happen?
Osman Saral
11/10/2021, 10:26 AM
here is how i set test target
Copy code
val iosArm64Test by getting
val iosX64Test by getting
val iosTest by creating {
iosArm64Test.dependsOn(this)
iosX64Test.dependsOn(this)
dependsOn(commonTest)
}
r
Rak
11/10/2021, 11:18 AM
usually because there is a compilation error somewhere. Can you try running from command line, you may see output