Search Gradle plugins

Version 0.0.1 (latest)

Created 12 July 2021.

A plugin that finds resource overrides in android project

Using the plugins DSL:

plugins {
  id("com.github.bendezu.resourceoverride") version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.bendezu:plugin:0.0.1")
  }
}

apply(plugin = "com.github.bendezu.resourceoverride")

Using the plugins DSL:

plugins {
  id "com.github.bendezu.resourceoverride" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.bendezu:plugin:0.0.1"
  }
}

apply plugin: "com.github.bendezu.resourceoverride"

Learn how to apply plugins to subprojects