Fix Gradle task dependency (include lintAnalyze) #1719
+14
−14
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I had an error with a build (RN 0.73, Gradle 8.3, react-native-vector-icons 10.2.0):
After some digging, I found a similar error related to
lintVitalAnalyze
(addressed in #1515 and #1577).Notice how this error is different (
lintAnalyze
, notlintVitalAnalyze
).Related discussions: #1508 #1588
The issue was resolved by also including
lintAnalyze
in the tasks that depend on the font copy task (there were already three other similar tasks infonts.gradle
).I consolidated task names into a list and iterate through them to set dependencies. This reduces redundancy and improves maintainability. It also fixes a couple minor whitespace errors and indentation issues on those same lines.