Search Gradle plugins

Version 2.7.3

Created 03 August 2023.

- [NEW] Drop support for Kotlin 1.6.X
- [NEW] Run tests against AGP 8.2.0-alpha14
- [NEW] Run tests against AGP 8.1.0
- [NEW] Disable caching of `PackageForUnitTest` task as it does not benefit from caching.

Using the plugins DSL:

plugins {
  id("org.gradle.android.cache-fix") version "2.7.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.gradle.android:android-cache-fix-gradle-plugin:2.7.3")
  }
}

apply(plugin = "org.gradle.android.cache-fix")

Using the plugins DSL:

plugins {
  id "org.gradle.android.cache-fix" version "2.7.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.gradle.android:android-cache-fix-gradle-plugin:2.7.3"
  }
}

apply plugin: "org.gradle.android.cache-fix"

Learn how to apply plugins to subprojects