Aperture: Suppress unimportant lint warnings with config

* Translations are done by volunteer, not a requirement to have them

Change-Id: I3c2ef0e8ec64528a7ad69e88f57c5d0a864c7d7f
Signed-off-by: Aayush Gupta <aayushgupta219@gmail.com>
diff --git a/app/build.gradle.kts b/app/build.gradle.kts
index de193e2..a66fd39 100644
--- a/app/build.gradle.kts
+++ b/app/build.gradle.kts
@@ -68,6 +68,10 @@
     kotlinOptions {
         jvmTarget = "1.8"
     }
+
+    lint {
+        lintConfig = file("lint.xml")
+    }
 }
 
 dependencies {
diff --git a/app/lint.xml b/app/lint.xml
new file mode 100644
index 0000000..a18d665
--- /dev/null
+++ b/app/lint.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+     SPDX-FileCopyrightText: 2024 The LineageOS Project
+     SPDX-License-Identifier: Apache-2.0
+-->
+<lint>
+    <issue id="MissingTranslation" severity="ignore" />
+</lint>