summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Guerra <fabian.guerra@mapbox.com>2017-08-28 15:18:20 -0400
committerFabian Guerra <fabian.guerra@mapbox.com>2017-08-28 15:18:20 -0400
commit8c020591de0f5129b9c9d6a99fcf47fdd61a2b0f (patch)
tree8b0b981bdaf14371414da40f688d6e0a4c3932c6
parentacfe485302d4356ace93b1ca4a0dcbb9554e08a5 (diff)
downloadqtlocation-mapboxgl-8c020591de0f5129b9c9d6a99fcf47fdd61a2b0f.tar.gz
[android] Diable lint check for MissingTranslation
-rw-r--r--platform/android/MapboxGLAndroidSDK/build.gradle3
-rw-r--r--platform/android/MapboxGLAndroidSDKTestApp/build.gradle3
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 {