com.github.bendezu.resourceoverride
Owner: Vlad Bendezu
A plugin that finds resource overrides in android project
https://github.com/bendezu/android-resource-override-finder
Sources: https://github.com/bendezu/android-resource-override-finder.git
Version 0.0.1 (latest)
0.0.1
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"