diff options
author | Antonio Zugaldia <antonio@mapbox.com> | 2018-04-10 10:58:58 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-10 10:58:58 -0400 |
commit | 61bb9be1e3c3e290d88453ae91d7e26c9dab4009 (patch) | |
tree | 9be76057966e9af772e44a4f8169d43fc22113f1 /Makefile | |
parent | 05d24448bdea29e302f788f050829459adba8e83 (diff) | |
download | qtlocation-mapboxgl-61bb9be1e3c3e290d88453ae91d7e26c9dab4009.tar.gz |
[android] Adds gradle-dependency-graph-generator-plugin to Android project (#11603)
* adds gradle-dependency-graph-generator-plugin to the project
* keep script in sync with https://github.com/mapbox/mapbox-android-demo/pull/671
* adds a makefile rule for dependency generation
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -683,6 +683,11 @@ endif android-configuration: platform/android/gradle/configuration.gradle cat platform/android/gradle/configuration.gradle +# Creates a dependency graph using Graphviz +.PHONY: android-graph +android-graph: + cd platform/android && $(MBGL_ANDROID_GRADLE) -Pmapbox.abis=none :MapboxGLAndroidSDK:generateDependencyGraphMapboxLibraries + #### Miscellaneous targets ##################################################### .PHONY: style-code |