io.telereso.kmp
Owner: Ahmed na
Include tasks needed while working with Telereso's Kotlin multiplatform annotations also to support react native and flutter
https://kmp.telereso.io/annotations/
Sources: https://github.com/telereso/kmp-annotations
Version 0.2.1-alpha
Created 28 August 2024.
Include tasks needed while working with Telereso's Kotlin multiplatform annotations also to support react native and flutter
Add this plugin to your build using the plugins DSL:
plugins {
id("io.telereso.kmp") version "0.2.1-alpha"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("io.telereso.kmp:io.telereso.kmp.gradle.plugin:0.2.1-alpha") }
It can then be applied in the precompiled script plugin:plugins { id("io.telereso.kmp") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.telereso.kmp:io.telereso.kmp.gradle.plugin:0.2.1-alpha") } } apply(plugin = "io.telereso.kmp")
- Applying plugins to all subprojects .