com.github.jamesfchen.lifecycle-plugin
拥有者: electrolytej
为捆包项目监控应用程序生命周期
https://github.com/JamesfChen/spacecraft-android-gradle-plugin
来源: https://github.com/JamesfChen/spacecraft-android-gradle-plugin
版本 1.0.0 (最新版)
1.0.0
创建于 2021年7月8日。
为捆包项目监控应用程序生命周期
使用 插件DSL
plugins {
id("com.github.jamesfchen.lifecycle-plugin") version "1.0.0"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.github.jamesfchen:lifecycle-plugin:1.0.0")
}
}
apply(plugin = "com.github.jamesfchen.lifecycle-plugin")
使用 插件DSL
plugins {
id "com.github.jamesfchen.lifecycle-plugin" version "1.0.0"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.github.jamesfchen:lifecycle-plugin:1.0.0"
}
}
apply plugin: "com.github.jamesfchen.lifecycle-plugin"