diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2021-10-28 01:50:31 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2021-10-28 03:19:56 +0530 |
commit | 447b06ec2c7e279a94f9c6519862874298ad89ef (patch) | |
tree | 970dab950a77cfb689e34a2b124f3af10a30e937 /ui/build.gradle | |
parent | 6da1d5ed0198bfe6c93febe279b9b0f766bbcd99 (diff) |
ui: fix and silence lint errors
- The `copied_to_clipboard` translation for Farsi does not include
the placeholder, so it has been removed.
- A couple lints that are errors but we cannot particularly do anything about
were downgraded to warnings.
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to 'ui/build.gradle')
-rw-r--r-- | ui/build.gradle | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ui/build.gradle b/ui/build.gradle index f52a557b..2bbbe539 100644 --- a/ui/build.gradle +++ b/ui/build.gradle @@ -57,6 +57,8 @@ android { } lintOptions { disable('LongLogTag') + warning('MissingTranslation') + warning('ImpliedQuantity') } } |