Search Gradle plugins

Version 1.1.0 (latest)

1.1.0

Created 05 March 2022.

monitor app lifecycle for bundle project

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.jamesfchen.lifecycle-plugin") version "1.1.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.jamesfchen:lifecycle-plugin:1.1.0")
      }
    }
    
    apply(plugin = "io.github.jamesfchen.lifecycle-plugin")
  • Applying plugins to all subprojects .