From 71dffceaa9c31d283fb74965be8ff4fce3bc0395 Mon Sep 17 00:00:00 2001 From: Danilo Bargen Date: Tue, 24 Nov 2020 00:17:36 +0100 Subject: [PATCH] Reduce severity of MissingTranslation lint to warning This allows landing PRs and releases even if not all translation files are up to date. (If a string is missing, the english string is used as fallback. That's fine, translations should be done on a best-effort basis.) --- app/build.gradle | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/build.gradle b/app/build.gradle index 408a497..b22449d 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -18,10 +18,15 @@ android { proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' } } + compileOptions { sourceCompatibility = 1.8 targetCompatibility = 1.8 } + + lintOptions { + warning 'MissingTranslation' + } } dependencies {