搜索 Gradle 插件

版本 1.5 (最新)

1.5

创建于 2021 年 1 月 12 日。

支持在构建插件 AAR 时远程发布 aar

使用 插件 DSL

plugins {
  id("com.github.ljhgithub.publish-flutter-aar") version "1.5"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.ljhgithub:publish-flutter-aar:1.0.2")
  }
}

apply(plugin = "com.github.ljhgithub.publish-flutter-aar")

使用 插件 DSL

plugins {
  id "com.github.ljhgithub.publish-flutter-aar" version "1.5"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.ljhgithub:publish-flutter-aar:1.0.2"
  }
}

apply plugin: "com.github.ljhgithub.publish-flutter-aar"

学习如何将插件应用到子项目中