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

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.techsign.plugin:com.techsign.plugin.gradle.plugin:2.0.4-tch")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.techsign.plugin")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.techsign.plugin:com.techsign.plugin.gradle.plugin:2.0.4-tch")
      }
    }
    
    apply(plugin = "com.techsign.plugin")
  • Applying plugins to all subprojects .