Conversation
jkuester
left a comment
There was a problem hiding this comment.
Is there a particular reason the linter is forcing us to be on the latest patch of gradle? Is this something we could configure in the linter so that we don't have to continuously bump this version (but instead can just update it in the same way we do the rest of the dependencies...)?
Right, it's a new check and looking into the documentation, we can disable it like other linters in build.gradle with: disable 'AndroidGradlePluginVersion'But to keep it performing the check I found a new trick that will keep it checking the version but not stopping the process with an error just for this: https://github.com/medic/cht-android/pull/209/files#diff-eefab2907910dd29e3d63b35664b4bdee63bb6b8b64d1238d8bee937f015fe9bR7. |
Upgrade to the latest Gradle plugin in order to make the linter to work again. Looks like we are going to have a PR like this each week 🤷♂️ .