Search Gradle plugins

Version 3.0.5 (latest)

Created 31 December 2020.

Set of APIs for enrich Gradle DSL ( Android only )

Add this plugin to your build using the plugins DSL:

plugins {
  id("studio.forface.easygradle-android") version "3.0.5"
}

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