summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDK/build.gradle
diff options
context:
space:
mode:
authortobrun <tobrun.van.nuland@gmail.com>2017-11-07 12:46:15 +0100
committertobrun <tobrun.van.nuland@gmail.com>2017-11-07 12:46:15 +0100
commitff68cc738018620144f84837f3ef1c8d9837e4db (patch)
treebaba291ff8c11448ab355dcf2e6e4e6436fa3dfd /platform/android/MapboxGLAndroidSDK/build.gradle
parent823a6a0b5f77a70c816434c5acbe75524c94f92d (diff)
downloadqtlocation-mapboxgl-ff68cc738018620144f84837f3ef1c8d9837e4db.tar.gz
[android] - update gradle syntax to 4.1
Diffstat (limited to 'platform/android/MapboxGLAndroidSDK/build.gradle')
-rw-r--r--platform/android/MapboxGLAndroidSDK/build.gradle29
1 files changed, 11 insertions, 18 deletions
diff --git a/platform/android/MapboxGLAndroidSDK/build.gradle b/platform/android/MapboxGLAndroidSDK/build.gradle
index b111deb0c8..d1ac19a1a7 100644
--- a/platform/android/MapboxGLAndroidSDK/build.gradle
+++ b/platform/android/MapboxGLAndroidSDK/build.gradle
@@ -1,26 +1,19 @@
apply plugin: 'com.android.library'
dependencies {
- compile rootProject.ext.dep.supportAnnotations
- compile rootProject.ext.dep.supportFragmentV4
- compile rootProject.ext.dep.timber
- compile rootProject.ext.dep.okhttp3
- provided rootProject.ext.dep.lost
- testCompile rootProject.ext.dep.junit
- testCompile rootProject.ext.dep.mockito
-
- // Mapbox Android Services (GeoJSON support)
- compile(rootProject.ext.dep.mapboxJavaGeoJSON) {
- transitive = true
- }
+ implementation rootProject.ext.dep.supportAnnotations
+ implementation rootProject.ext.dep.supportFragmentV4
+ implementation rootProject.ext.dep.okhttp3
+ implementation rootProject.ext.dep.timber
+ implementation rootProject.ext.dep.mapboxJavaGeoJSON
- // Mapbox Android Services (Telemetry support)
- compile(rootProject.ext.dep.mapboxAndroidTelemetry) {
- transitive = true
- exclude group: 'com.android.support'
- }
+ api rootProject.ext.dep.mapboxAndroidTelemetry
+ api rootProject.ext.dep.mapboxAndroidCore
+
+ compileOnly rootProject.ext.dep.lost
- compile(rootProject.ext.dep.mapboxAndroidCore)
+ testImplementation rootProject.ext.dep.junit
+ testImplementation rootProject.ext.dep.mockito
}
android {