com.github.Buxiaohui.fastclick
Owner: buxiaohui
A Plugin For Android projects to prevent fast clicks!
https://github.com/Buxiaohui/FastClick
Sources: https://github.com/Buxiaohui/FastClick.git
Version 1.0.0 (latest)
Created 13 April 2021.
A Plugin For Android projects to prevent fast clicks!
Add this plugin to your build using the plugins DSL:
plugins {
id("com.github.Buxiaohui.fastclick") version "1.0.0"
}
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.github.Buxiaohui.fastclick:com.github.Buxiaohui.fastclick.gradle.plugin:1.0.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.github.Buxiaohui.fastclick") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.github.Buxiaohui.fastclick:com.github.Buxiaohui.fastclick.gradle.plugin:1.0.0") } } apply(plugin = "com.github.Buxiaohui.fastclick")
- Applying plugins to all subprojects .