diff options
author | Allan Wang <me@allanwang.ca> | 2021-01-11 22:06:27 -0800 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2021-01-11 22:06:27 -0800 |
commit | 278219e799e679c2ce203d1d227c6688b5288b4d (patch) | |
tree | 3014b9447218c17d2407300936d574818be7d93d | |
parent | f30e67588c49c8e7ed9af124337f67d54a372bb9 (diff) | |
download | frost-278219e799e679c2ce203d1d227c6688b5288b4d.tar.gz frost-278219e799e679c2ce203d1d227c6688b5288b4d.tar.bz2 frost-278219e799e679c2ce203d1d227c6688b5288b4d.zip |
Ignore a bunch of lint errors
-rw-r--r-- | app/build.gradle | 11 | ||||
-rw-r--r-- | app/src/main/AndroidManifest.xml | 3 |
2 files changed, 12 insertions, 2 deletions
diff --git a/app/build.gradle b/app/build.gradle index 51ac5568..c6e1aef8 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -69,7 +69,16 @@ android { 'UnusedResources', 'ContentDescription', 'RtlSymmetry', - 'MissingTranslation' + 'MissingTranslation', + 'TypographyQuotes', + 'DuplicateStrings', + 'UnusedIds', + 'SyntheticAccessor', + 'Recycle', + 'AppLinksAutoVerifyWarning', + 'AppLinksAutoVerifyError', + 'GoogleAppIndexingApiWarning', + 'SelectableText' xmlReport false textReport true diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 6faab332..b5ede813 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -18,14 +18,15 @@ <application android:name=".FrostApp" android:allowBackup="true" + android:extractNativeLibs="false" android:fullBackupContent="@xml/frost_backup_rules" android:icon="@mipmap/ic_launcher_round" android:label="@string/frost_name" + android:requestLegacyExternalStorage="true" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/FrostTheme" android:usesCleartextTraffic="true" - android:requestLegacyExternalStorage="true" tools:ignore="UnusedAttribute"> <activity |