搜索Gradle插件

com.techsign.plugin

所有者: Aktepe

Gradle插件,用于在生成的aar文件中嵌入依赖项

http://www.mobbeel.com/

来源: https://github.com/Mobbeel/fataar-gradle-plugin

版本 2.0.4-tch(最新版)

2.0.4-tch

创建于2019年5月6日。

Gradle插件,用于在生成的aar文件中嵌入依赖项

使用插件DSL

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

使用旧版插件应用

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

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

使用插件DSL

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

使用旧版插件应用

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

apply plugin: "com.techsign.plugin"

了解如何将插件应用于子项目