androidx.build.gradle.gcpbuildcache
Owner: Aurimas Liutikas
Implementation of Gradle Build Cache that allows to use Google Cloud Platform storage buckets as a back end.
https://github.com/androidx/gcp-gradle-build-cache
Sources: https://github.com/androidx/gcp-gradle-build-cache
Version 1.0.0-alpha01
1.0.0-alpha01
Created 15 April 2022.
Implementation of Gradle Build Cache that allows to use Google Cloud Platform
storage buckets as a back end.
Using the plugins DSL:
plugins {
id("androidx.build.gradle.gcpbuildcache") version "1.0.0-alpha01"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("androidx.build.gradle.gcpbuildcache:gcpbuildcache:1.0.0-alpha01")
}
}
apply(plugin = "androidx.build.gradle.gcpbuildcache")
Using the plugins DSL:
plugins {
id "androidx.build.gradle.gcpbuildcache" version "1.0.0-alpha01"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "androidx.build.gradle.gcpbuildcache:gcpbuildcache:1.0.0-alpha01"
}
}
apply plugin: "androidx.build.gradle.gcpbuildcache"