Search Gradle plugins

Version 1.1.0-20200120145734

1.1.0-20200120145734

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-20200120145734"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.commencis:android-checklist:1.1.0-20200120145734")
      }
    }
    
    apply(plugin = "com.commencis.android-checklist")
  • Applying plugins to all subprojects .