summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobrun <tobrun.van.nuland@gmail.com>2017-11-23 09:55:19 +0100
committerTobrun <tobrun.van.nuland@gmail.com>2017-12-19 08:58:37 +0100
commit54b140d195b1b3bce6049d16a05b6834ddd503e8 (patch)
tree3d8a4dcc3fd13a1a91184fdbb6f26c9e3436b2f6
parentc3c7a49a72f7afb358d1f0aa8e0f2144ee12b2e4 (diff)
downloadqtlocation-mapboxgl-54b140d195b1b3bce6049d16a05b6834ddd503e8.tar.gz
[android] - enable java 8 language features
-rw-r--r--platform/android/MapboxGLAndroidSDKTestApp/build.gradle6
1 files changed, 3 insertions, 3 deletions
diff --git a/platform/android/MapboxGLAndroidSDKTestApp/build.gradle b/platform/android/MapboxGLAndroidSDKTestApp/build.gradle
index f45ad3dc3a..b32b2e3b0e 100644
--- a/platform/android/MapboxGLAndroidSDKTestApp/build.gradle
+++ b/platform/android/MapboxGLAndroidSDKTestApp/build.gradle
@@ -14,8 +14,8 @@ android {
}
compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_7
- targetCompatibility JavaVersion.VERSION_1_7
+ sourceCompatibility JavaVersion.VERSION_1_8
+ targetCompatibility JavaVersion.VERSION_1_8
}
packagingOptions {
@@ -28,7 +28,7 @@ android {
baseline file("lint-baseline-local.xml")
checkAllWarnings true
warningsAsErrors true
- disable 'MissingTranslation', 'GoogleAppIndexingWarning', 'UnpackedNativeCode', 'IconDipSize', 'TypographyQuotes'
+ disable 'MissingTranslation', 'GoogleAppIndexingWarning', 'UnpackedNativeCode', 'IconDipSize', 'TypographyQuotes'
abortOnError false
}