Search Gradle plugins

Automatically add DEBUG suffix on version and package name of Android app

https://github.com/tnj/gradle-auto-debug-suffix-plugin

Sources: https://github.com/tnj/gradle-auto-debug-suffix-plugin

Version 0.1.2 (latest)

Created 01 August 2019.

Automatically add DEBUG suffix on version and package name of Android app

Add this plugin to your build using the plugins DSL:

plugins {
  id("sh.nothing.auto-debug-suffix") version "0.1.2"
}

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("sh.nothing.auto-debug-suffix:sh.nothing.auto-debug-suffix.gradle.plugin:0.1.2")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("sh.nothing.auto-debug-suffix")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("sh.nothing.auto-debug-suffix:sh.nothing.auto-debug-suffix.gradle.plugin:0.1.2")
      }
    }
    
    apply(plugin = "sh.nothing.auto-debug-suffix")
  • Applying plugins to all subprojects .