Search Gradle plugins

Version 1.3.4-alpha02 (latest)

Created 18 December 2018.

Android componentized automatic build script

Add this plugin to your build using the plugins DSL:

plugins {
  id("calces.screen") version "1.3.4-alpha02"
}

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("calces.screen:calces.screen.gradle.plugin:1.3.4-alpha02")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("calces.screen")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("calces.screen:calces.screen.gradle.plugin:1.3.4-alpha02")
      }
    }
    
    apply(plugin = "calces.screen")
  • Applying plugins to all subprojects .