Skip to content

Commit d11d16e

Browse files
authored
Merge pull request #86 from johnjohndoe/patch-1
Fix syntax highlighting and improve Gradle snippet.
2 parents f9794d7 + 7f343c0 commit d11d16e

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,14 @@ Some Android plugin versions have issues with Gradle's build cache feature. When
1212
This plugin should be applied anywhere the `com.android.application` or `com.android.library` plugins are applied. Typically,
1313
this can just be injected from the root project's build.gradle (change '1.0.3' to the latest version of the cache fix plugin
1414
[here](https://plugins.gradle.org/plugin/org.gradle.android.cache-fix)):
15-
```$groovy
15+
16+
``` groovy
1617
plugins {
17-
id "org.gradle.android.cache-fix" version "1.0.3" apply false
18+
id "org.gradle.android.cache-fix" version "1.0.3" apply false
1819
}
1920
2021
subprojects {
21-
apply plugin: 'org.gradle.android.cache-fix`
22+
apply plugin: "org.gradle.android.cache-fix"
2223
}
2324
```
2425

0 commit comments

Comments
 (0)