Search Gradle plugins

Version 0.1 (latest)

Created 22 November 2016.

An Android Gradle plugin that detects added res folders and add it to the res source set

Using the plugins DSL:

plugins {
  id("com.github.r4md4c.gradle.res-folders-detector-plugin") version "0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.r4md4c.gradle:res-folders-detector:0.1")
  }
}

apply(plugin = "com.github.r4md4c.gradle.res-folders-detector-plugin")

Using the plugins DSL:

plugins {
  id "com.github.r4md4c.gradle.res-folders-detector-plugin" version "0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.r4md4c.gradle:res-folders-detector:0.1"
  }
}

apply plugin: "com.github.r4md4c.gradle.res-folders-detector-plugin"

Learn how to apply plugins to subprojects