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.1.0-20200120145622
Created 20 January 2020.
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.1.0-20200120145622"
}
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.1.0-20200120145622") }
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.1.0-20200120145622") } } apply(plugin = "com.commencis.android-checklist")
- Applying plugins to all subprojects .