Search Gradle plugins

Version 0.1.17

0.1.17

Created 28 October 2024.

Experimental declarative plugin for the Android ecosystem

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.gradle.experimental.android-ecosystem") version "0.1.17"
}

See also:

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