Search Gradle plugins

hihex.fleamarket

Owner: kennytm

Create APKs for multiple channels quickly, and allows channel-specific resource modification

https://github.com/hihex/fleamarket

Sources: https://github.com/hihex/fleamarket

Version 0.3.0 (latest)

Created 15 December 2015.

Create APKs for multiple channels quickly, and allows channel-specific resource modification

Using the plugins DSL:

plugins {
  id("hihex.fleamarket") version "0.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.hihex.fleamarket:plugin:0.3.0")
  }
}

apply(plugin = "hihex.fleamarket")

Using the plugins DSL:

plugins {
  id "hihex.fleamarket" version "0.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.hihex.fleamarket:plugin:0.3.0"
  }
}

apply plugin: "hihex.fleamarket"

Learn how to apply plugins to subprojects