https://kotlinlang.org logo
#multiplatform
Title
# multiplatform
k

Kris Wong

03/25/2020, 8:35 PM
does 1.3.71 create an
iosTest
task?
i mean, i technically know the answer is yes, just surprised by, and curious about that 🙂
the interesting bit is that I am doing some manual file coyping/deletion in one of my projects as a part of this task
r

russhwolf

03/25/2020, 8:38 PM
You could probably keep your custom task if you need it, as long as you give it a different name
The built-ins are nice to have though. And it now integrates into the IDE
k

Kris Wong

03/25/2020, 8:45 PM
that's definitely nice
now if only it supported resource files
Copy code
tasks.named("iosTest") {
    doFirst {
        copyTestResourceFiles()
    }
    doLast {
        cleanupTestResourceFiles()
    }
}
4 Views