From 8c020591de0f5129b9c9d6a99fcf47fdd61a2b0f Mon Sep 17 00:00:00 2001 From: Fabian Guerra Date: Mon, 28 Aug 2017 15:18:20 -0400 Subject: [android] Diable lint check for MissingTranslation --- platform/android/MapboxGLAndroidSDK/build.gradle | 3 ++- platform/android/MapboxGLAndroidSDKTestApp/build.gradle | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/platform/android/MapboxGLAndroidSDK/build.gradle b/platform/android/MapboxGLAndroidSDK/build.gradle index 025097e756..c96587fce6 100644 --- a/platform/android/MapboxGLAndroidSDK/build.gradle +++ b/platform/android/MapboxGLAndroidSDK/build.gradle @@ -119,9 +119,10 @@ android { } lintOptions { + disable 'MissingTranslation', 'TypographyQuotes' baseline file("lint-baseline-local.xml") checkAllWarnings true - warningsAsErrors true + warningsAsErrors false } testOptions { diff --git a/platform/android/MapboxGLAndroidSDKTestApp/build.gradle b/platform/android/MapboxGLAndroidSDKTestApp/build.gradle index 360cb36067..d7b71beefd 100644 --- a/platform/android/MapboxGLAndroidSDKTestApp/build.gradle +++ b/platform/android/MapboxGLAndroidSDKTestApp/build.gradle @@ -28,7 +28,8 @@ android { baseline file("lint-baseline-local.xml") checkAllWarnings true warningsAsErrors true - disable 'MissingTranslation', 'GoogleAppIndexingWarning', 'UnpackedNativeCode', 'IconDipSize' + disable 'MissingTranslation', 'GoogleAppIndexingWarning', 'UnpackedNativeCode', 'IconDipSize', 'TypographyQuotes' + abortOnError false } buildTypes { -- cgit v1.2.1