Search Gradle plugins

Version 1.0.0-alpha05

1.0.0-alpha05

Created 23 May 2024.

- Using newer okhttp dependency as retrofit depends on a really old version, see https://github.com/androidx/gcp-gradle-build-cache/pull/43 - Using newer amazon bom, see https://github.com/androidx/gcp-gradle-build-cache/pull/54 - Added support for s3 express zone, see https://github.com/androidx/gcp-gradle-build-cache/pull/53 - Added support for using specific AWS profile for auth, see https://github.com/androidx/gcp-gradle-build-cache/pull/45 - Better offline support, see https://github.com/androidx/gcp-gradle-build-cache/pull/44 - Moved to a new signing key 8B39C4ACE0F448789FE19C8BAC0E2034B1389C89

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects