搜索 Gradle 插件

版本 1.0.0-alpha06(最新版)

1.0.0-alpha06

创建于 2024年5月24日。

- 移动到以 Java 17 为目标

使用 插件 DSL

plugins {
  id("androidx.build.gradle.s3buildcache") version "1.0.0-alpha06"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("androidx.build.gradle.s3buildcache:s3buildcache:1.0.0-alpha06")
  }
}

apply(plugin = "androidx.build.gradle.s3buildcache")

使用 插件 DSL

plugins {
  id "androidx.build.gradle.s3buildcache" version "1.0.0-alpha06"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "androidx.build.gradle.s3buildcache:s3buildcache:1.0.0-alpha06"
  }
}

apply plugin: "androidx.build.gradle.s3buildcache"

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