Search Gradle plugins

Version 1.0.0-alpha04 (latest)

Created 22 December 2023.

- Performance optimization for pulling large remote cache entries, see
https://github.com/androidx/gcp-gradle-build-cache/pull/40

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects