Search Gradle plugins

Version 1.5

Created 21 April 2020.

Reports additional information about the system accessible through Android BuildConfig

Using the plugins DSL:

plugins {
  id("com.github.tsvetilian-ty.build-extension") version "1.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.tsvetilian-ty:build-extension:1.5")
  }
}

apply(plugin = "com.github.tsvetilian-ty.build-extension")

Using the plugins DSL:

plugins {
  id "com.github.tsvetilian-ty.build-extension" version "1.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.tsvetilian-ty:build-extension:1.5"
  }
}

apply plugin: "com.github.tsvetilian-ty.build-extension"

Learn how to apply plugins to subprojects