com.commencis.android-checklist
Owner: Commencis
Gradle plugin for Android projects to automate final checks before publish your app.
https://github.com/Commencis/Android-Checklist-Plugin
Sources: https://github.com/Commencis/Android-Checklist-Plugin.git
Version 0.9.0-20191230161656
Created 30 December 2019.
Gradle plugin for Android projects to automate final checks before publish your app.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.commencis.android-checklist") version "0.9.0-20191230161656"
}
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.commencis.android-checklist:com.commencis.android-checklist.gradle.plugin:0.9.0-20191230161656") }
It can then be applied in the precompiled script plugin:plugins { id("com.commencis.android-checklist") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.commencis.android-checklist:com.commencis.android-checklist.gradle.plugin:0.9.0-20191230161656") } } apply(plugin = "com.commencis.android-checklist")
- Applying plugins to all subprojects .