Search Gradle plugins

Version 0.2.0-beta-4 (latest)

Created 27 March 2018.

Gradle plugin for adding feature based source sets (featureSets) to Android

Using the plugins DSL:

plugins {
  id("com.github.saadfarooq.featuresets") version "0.2.0-beta-4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.android-featuresets:android-featuresets:0.2.0-beta-4")
  }
}

apply(plugin = "com.github.saadfarooq.featuresets")

Using the plugins DSL:

plugins {
  id "com.github.saadfarooq.featuresets" version "0.2.0-beta-4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.android-featuresets:android-featuresets:0.2.0-beta-4"
  }
}

apply plugin: "com.github.saadfarooq.featuresets"

Learn how to apply plugins to subprojects