Search Gradle plugins

Version 1.0.0 (latest)

Created 30 June 2020.

Detect and remove unused Android resources in a given Gradle project

Using the plugins DSL:

plugins {
  id("com.tanitech.reslinter") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.tanitech.gradle:reslinter-plugin:1.0.0")
  }
}

apply(plugin = "com.tanitech.reslinter")

Using the plugins DSL:

plugins {
  id "com.tanitech.reslinter" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.tanitech.gradle:reslinter-plugin:1.0.0"
  }
}

apply plugin: "com.tanitech.reslinter"

Learn how to apply plugins to subprojects