com.github.saadfarooq.featuresets
Owner: Saad Farooq
Gradle plugin for adding feature based source sets to Android
https://github.com/saadfarooq/android-featuresets
Sources: https://github.com/saadfarooq/android-featuresets
Version 0.0.3
0.0.3
Created 29 October 2016.
Gradle plugin for adding feature based source sets to Android
Using the plugins DSL:
plugins {
id("com.github.saadfarooq.featuresets") version "0.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.saadfarooq:android-featuresets:0.0.3")
}
}
apply(plugin = "com.github.saadfarooq.featuresets")
Using the plugins DSL:
plugins {
id "com.github.saadfarooq.featuresets" version "0.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.saadfarooq:android-featuresets:0.0.3"
}
}
apply plugin: "com.github.saadfarooq.featuresets"