From c8396062aece419d61667a419737864ab74d2945 Mon Sep 17 00:00:00 2001 From: Emux Date: Wed, 15 Mar 2017 13:08:19 +0200 Subject: [PATCH] Integration guide: add Android (with libGDX) --- docs/Integration.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/docs/Integration.md b/docs/Integration.md index f02374ef..4644918e 100644 --- a/docs/Integration.md +++ b/docs/Integration.md @@ -22,6 +22,22 @@ compile 'org.mapsforge:vtm-android:[CURRENT-VERSION]:natives-x86' compile 'com.caverock:androidsvg:1.2.2-beta-1' ``` +### Android (with libGDX) +```groovy +compile 'org.mapsforge:vtm-android:[CURRENT-VERSION]' +compile 'org.mapsforge:vtm-android:[CURRENT-VERSION]:natives-armeabi' +compile 'org.mapsforge:vtm-android:[CURRENT-VERSION]:natives-armeabi-v7a' +compile 'org.mapsforge:vtm-android:[CURRENT-VERSION]:natives-x86' +compile 'org.mapsforge:vtm-gdx:[CURRENT-VERSION]' +compile 'org.mapsforge:vtm-android-gdx:[CURRENT-VERSION]' +compile 'org.mapsforge:vtm-android-gdx:[CURRENT-VERSION]:natives-armeabi' +compile 'org.mapsforge:vtm-android-gdx:[CURRENT-VERSION]:natives-armeabi-v7a' +compile 'org.mapsforge:vtm-android-gdx:[CURRENT-VERSION]:natives-x86' +compile 'com.badlogicgames.gdx:gdx:1.9.5' +compile 'com.badlogicgames.gdx:gdx-backend-android:1.9.5' +compile 'com.caverock:androidsvg:1.2.2-beta-1' +``` + ### iOS Detailed iOS instructions can be found [here](ios.md).