搜索Gradle插件

me.jamesanto.fat-aar

所有者: James A

可以在android插件3.0.1和gradle wrapper 4.4下使用的fat-aar插件。

https://github.com/jamesanto/fat-aar

源代码: https://github.com/jamesanto/fat-aar

版本 1.0.9 (最新)

1.0.9

创建于2018年11月27日。

可以在android插件3.0.1和gradle wrapper 4.4下使用的fat-aar插件。

使用 plugins DSL

plugins {
  id("me.jamesanto.fat-aar") version "1.0.9"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.me.jamesanto:fat-aar-plugin:1.0.9")
  }
}

apply(plugin = "me.jamesanto.fat-aar")

使用 plugins DSL

plugins {
  id "me.jamesanto.fat-aar" version "1.0.9"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.me.jamesanto:fat-aar-plugin:1.0.9"
  }
}

apply plugin: "me.jamesanto.fat-aar"

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