org.jetbrains.kotlin.platform.native
Owner: Kotlin Team
Kotlin/Native plugin for multiplatform development
Sources: https://github.com/JetBrains/kotlin-native/tree/master/tools/kotlin-native-gradle-plugin
Version 1.3.0-rc-190
1.3.0-rc-190
Created 23 October 2018.
An experimental Kotlin/Native plugin integrated with Gradle support for native languages and
providing a new DSL which is much closer to the DSL of Kotlin/JVM and Kotlin/JS plugins.
The plugin is intended for native parts of multiplatform projects.
Add this plugin to your build using the plugins DSL:
plugins {
id("org.jetbrains.kotlin.platform.native") version "1.3.0-rc-190"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.jetbrains.kotlin:kotlin-native-gradle-plugin:1.3.0-rc-190") } } apply(plugin = "org.jetbrains.kotlin.platform.native")
- Applying plugins to all subprojects .