cash.bdo.scalroid
Owner: Chenai Nakam
A scala-kotlin-java union compile Gradle plugin, for native Android.
https://github.com/chenakam/scalroid
Sources: https://github.com/chenakam/scalroid.git
Version 1.4.2-gradle7
Created 27 February 2023.
A scala-kotlin-java joint compilation plugin built on Gradle, for native Android.
Add this plugin to your build using the plugins DSL:
plugins {
id("cash.bdo.scalroid") version "1.4.2-gradle7"
}
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("cash.bdo.scalroid:cash.bdo.scalroid.gradle.plugin:1.4.2-gradle7") }
It can then be applied in the precompiled script plugin:plugins { id("cash.bdo.scalroid") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("cash.bdo.scalroid:cash.bdo.scalroid.gradle.plugin:1.4.2-gradle7") } } apply(plugin = "cash.bdo.scalroid")
- Applying plugins to all subprojects .