com.syc.plugin.DimensPlugin
Owner: shiyucheng
android screen match
https://github.com/zcys12173/DimensPlugin
Sources: https://github.com/zcys12173/TestApp
Add this plugin to your build using the plugins DSL:
plugins {
id("com.syc.plugin.DimensPlugin") version "1.0.17"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.syc.plugin.DimensPlugin:com.syc.plugin.DimensPlugin.gradle.plugin:1.0.17") }
It can then be applied in the precompiled script plugin:plugins { id("com.syc.plugin.DimensPlugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.syc.plugin.DimensPlugin:com.syc.plugin.DimensPlugin.gradle.plugin:1.0.17") } } apply(plugin = "com.syc.plugin.DimensPlugin")
- Applying plugins to all subprojects .