Marc Reichelt
07/04/2019, 1:30 PMmpp-example
up and running with Kotlin 1.3.40?louiscad
07/04/2019, 5:19 PMMarc Reichelt
07/04/2019, 7:30 PMlouiscad
07/04/2019, 8:07 PMMarc Reichelt
07/04/2019, 8:19 PMrusshwolf
07/04/2019, 9:09 PMtask iosTest {
def device = project.findProperty("iosDevice")?.toString() ?: "iPhone 8"
dependsOn 'linkDebugTestIos'
group = JavaBasePlugin.VERIFICATION_GROUP
description = "Runs tests for target 'ios' on an iOS simulator"
doLast {
def binary = kotlin.targets.ios.binaries.getTest('DEBUG').outputFile
exec {
commandLine 'xcrun', 'simctl', 'spawn', device, binary.absolutePath
}
}
}