Search Gradle plugins

Version 1.3.0-20220314132020

Created 14 March 2022.

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.3.0-20220314132020"
}

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.3.0-20220314132020")
    }
    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.3.0-20220314132020")
      }
    }
    
    apply(plugin = "com.commencis.android-checklist")
  • Applying plugins to all subprojects .