Search Gradle plugins

com.techsign.plugin

Owner: Aktepe

Gradle plugin to help embed dependencies in generated aar file

http://www.mobbeel.com/

Sources: https://github.com/Mobbeel/fataar-gradle-plugin

Version 2.0.4-tch (latest)

Created 06 May 2019.

Gradle plugin to help embed dependencies in generated aar file

Using the plugins DSL:

plugins {
  id("com.techsign.plugin") version "2.0.4-tch"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.techsign:fat-aar:2.0.4-tch")
  }
}

apply(plugin = "com.techsign.plugin")

Using the plugins DSL:

plugins {
  id "com.techsign.plugin" version "2.0.4-tch"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.techsign:fat-aar:2.0.4-tch"
  }
}

apply plugin: "com.techsign.plugin"

Learn how to apply plugins to subprojects