Search Gradle plugins

Version 1.0

1.0

Created 26 January 2023.

A scala-kotlin-java union compile Gradle plugin, for native Android.

Add this plugin to your build using the plugins DSL:

plugins {
  id("cash.bdo.scalroid") version "1.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("cash.bdo.dev:buildSrc:1.0")
      }
    }
    
    apply(plugin = "cash.bdo.scalroid")
  • Applying plugins to all subprojects .