Search Gradle plugins

Version 1.3.41 (latest)

1.3.41

Created 03 July 2019.

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.41"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.jetbrains.kotlin:kotlin-native-gradle-plugin:1.3.41")
      }
    }
    
    apply(plugin = "org.jetbrains.kotlin.platform.native")
  • Applying plugins to all subprojects .