Search Gradle plugins

Version 0.0.5 (latest)

0.0.5

Created 03 January 2024.

Configures all Android modules, the Maven release and the Versions plugin

Add this plugin to your build using the plugins DSL:

plugins {
  id("xyz.tynn.convention.project") version "0.0.5"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("xyz.tynn.buildsrc:convention:0.0.5")
      }
    }
    
    apply(plugin = "xyz.tynn.convention.project")
  • Applying plugins to all subprojects .