Skip to content

Commit d2e2047

Browse files
authored
Update plugin version number
1 parent 8122268 commit d2e2047

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,21 @@ If you discover an issue related to the Android Gradle Plugin, please file an is
2121
## Applying the plugin
2222

2323
This plugin should be applied anywhere the `com.android.application` or `com.android.library` plugins are applied. Typically,
24-
this can just be injected from the root project's build.gradle (change '1.0.14' to the latest version of the cache fix plugin
24+
this can just be injected from the root project's build.gradle (change '2.0.0' to the latest version of the cache fix plugin
2525
[here](https://plugins.gradle.org/plugin/org.gradle.android.cache-fix)):
2626

2727
``` groovy
2828
plugins {
29-
id "org.gradle.android.cache-fix" version "1.0.14" apply false
29+
id "org.gradle.android.cache-fix" version "2.0.0" apply false
3030
}
3131
3232
subprojects {
3333
apply plugin: "org.gradle.android.cache-fix"
3434
}
3535
```
3636

37+
Note that if you are currently exporting schemas with the Room annotation processor, you will need to change how you specify the output directory according to the instructions [here](https://github.com/gradle/android-cache-fix-gradle-plugin#roomschemalocationworkaround).
38+
3739
## List of issues
3840

3941
You can take a look at the list of issues that the plugin fixes by looking at the classes in [`org.gradle.android.workarounds`](https://github.com/gradle/android-cache-fix-gradle-plugin/blob/master/src/main/groovy/org/gradle/android/workarounds). It contains a number of `Workaround` implementations annotated with `@AndroidIssue`. The Javadoc has a short description of the problem, and the annotation gives information about when the problem was introduced, what is the first version of the Android plugin that fixes it, and there's a link to the issue on Android's issue tracker:

0 commit comments

Comments
 (0)