搜索 Gradle 插件

com.latch.android.gradle

所有者: 张路克

为一个简单的轻量级 Gradle 插件,用于上传所有构建变体的 APK 到 AWS S3。这可以帮助您轻松维护 S3 中每个版本的每种口味。有关使用方法,请访问使用说明文档。

https://github.com/EDLuke/gradle-plugin-s3

源码: https://github.com/EDLuke/gradle-plugin-s3.git

版本 1.1 (最新版)

1.1

创建于 2021 年 11 月 5 日。

为一个简单的轻量级 Gradle 插件,用于上传所有构建变体的 APK 到 AWS S3。这可以帮助您轻松维护 S3 中每个版本的每种口味。有关使用方法,请访问使用说明文档。

使用 插件 DSL

plugins {
  id("com.latch.android.gradle") version "1.1"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.latch.android.gradle:plugin:1.1")
  }
}

apply(plugin = "com.latch.android.gradle")

使用 插件 DSL

plugins {
  id "com.latch.android.gradle" version "1.1"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.latch.android.gradle:plugin:1.1"
  }
}

apply plugin: "com.latch.android.gradle"

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