Search Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.rickclephas.kmp.nativecoroutines") version "0.12.6-new-mm"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.rickclephas.kmp:kmp-nativecoroutines-gradle-plugin:0.12.6-new-mm")
      }
    }
    
    apply(plugin = "com.rickclephas.kmp.nativecoroutines")
  • Applying plugins to all subprojects .