Search Gradle plugins

Version 0.1.22

0.1.22

Created 30 October 2024.

Experimental declarative plugin for Android applications

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.gradle.experimental.android-application") version "0.1.22"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.gradle.experimental:plugin-android:0.1.22")
      }
    }
    
    apply(plugin = "org.gradle.experimental.android-application")
  • Applying plugins to all subprojects .