com.github.fushuang.transform
Owner: fushuang
this is a plugin to insert code showing log onPause
https://github.com/fushuangdage/GradleDemo
Sources: https://github.com/fushuangdage/GradleDemo
Version 1.0.1 (latest)
1.0.1
Created 30 June 2021.
this is a plugin to insert code showing log onPause
Using the plugins DSL:
plugins {
id("com.github.fushuang.transform") version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.fushuang:frooter:1.0.1")
}
}
apply(plugin = "com.github.fushuang.transform")
Using the plugins DSL:
plugins {
id "com.github.fushuang.transform" version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.fushuang:frooter:1.0.1"
}
}
apply plugin: "com.github.fushuang.transform"