-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ANDR][dev] Run lint on every project and apply same config everywhere #7
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
worked for me with your changes, thanks!
@@ -1,7 +1,9 @@ | |||
plugins { | |||
// The rust android gradle plugin needs to go first | |||
// see: https://github.com/mozilla/rust-android-gradle/issues/147 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
// see: https://github.com/mozilla/rust-android-gradle/issues/147 | |
// see: https://github.com/mozilla/rust-android-gradle/issues/147 |
@@ -58,6 +62,8 @@ android { | |||
languageVersion = "1.9" | |||
} | |||
|
|||
// TODO(murki): Move this common configuration to a reusable buildSrc plugin once it's fully supported for kotlin DSL | |||
// see: https://github.com/gradle/kotlin-dsl-samples/issues/1287 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
// see: https://github.com/gradle/kotlin-dsl-samples/issues/1287 | |
// see: https://github.com/gradle/kotlin-dsl-samples/issues/1287 |
Simplify (and make fwd compatible) the lint gradle task configuration on the
gradle-test-app
. Also run the same configuration in all of our artifact modules (and suppress any existing warnings).In order to make this work we had to downgrade gradle from 8.3 --> 8.2 due to this open bug: https://issuetracker.google.com/issues/332755363