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 1.2.0-20210303101345
Created 03 March 2021.
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 "1.2.0-20210303101345"
}
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:1.2.0-20210303101345") }
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:1.2.0-20210303101345") } } apply(plugin = "com.commencis.android-checklist")
- Applying plugins to all subprojects .