Add UI for custom lists feature #10226
Annotations
1 error and 1 warning
Run gradle task
Execution failed for task ':lib:resource:lintDebug'.
> Lint found errors in the project; aborting build.
Fix the issues identified by lint, or add the issues to the lint baseline via `gradlew updateLintBaseline`.
For more details, see https://developer.android.com/studio/write/lint#snapshot
Lint found 1 errors, 0 warnings (8 errors filtered by baseline lint-baseline.xml). First failure:
/__w/mullvadvpn-app/mullvadvpn-app/android/lib/resource/src/main/res/values/strings.xml:295: Error: Formatting %d followed by words ("locations"): This should probably be a plural rather than a string [PluralsCandidate]
<string name="number_of_locations">%d locations</string>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Explanation for issues of type "PluralsCandidate":
This lint check looks for potential errors in internationalization where
you have translated a message which involves a quantity and it looks like
other parts of the string may need grammatical changes.
For example, rather than something like this:
<string name="try_again">Try again in %d seconds.</string>
you should be using a plural:
<plurals name="try_again">
<item quantity="one">Try again in %d second</item>
<item quantity="other">Try again in %d seconds</item>
</plurals>
This will ensure that in other languages the right set of translations are
provided for the different quantity classes.
(This check depends on some heuristics, so it may not accurately determine
whether a string really should be a quantity. You can use tools:ignore to
filter out false positives.
https://developer.android.com/guide/topics/resources/string-resource.html#Plurals
The full lint text report is located at:
/__w/mullvadvpn-app/mullvadvpn-app/android/lib/resource/build/intermediates/lint_intermediate_text_report/debug/lint-results-debug.txt
|
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: burrunan/gradle-cache-action@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
The logs for this run have expired and are no longer available.
Loading