From 0bb031291329b74203b7b78702a5111f5da8346e Mon Sep 17 00:00:00 2001 From: Emux Date: Sun, 12 Aug 2018 17:35:04 +0300 Subject: [PATCH] AndroidSVG 1.3 --- docs/Integration.md | 12 ++---------- vtm-android/build.gradle | 2 +- 2 files changed, 3 insertions(+), 11 deletions(-) diff --git a/docs/Integration.md b/docs/Integration.md index c1f9500b..4eaf399c 100644 --- a/docs/Integration.md +++ b/docs/Integration.md @@ -15,10 +15,6 @@ implementation 'org.slf4j:slf4j-api:1.7.25' ### Android ```groovy -repositories { - maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } -} - implementation 'org.mapsforge:vtm-android:[CURRENT-VERSION]' implementation 'org.mapsforge:vtm-android:[CURRENT-VERSION]:natives-arm64-v8a' implementation 'org.mapsforge:vtm-android:[CURRENT-VERSION]:natives-armeabi' @@ -27,15 +23,11 @@ implementation 'org.mapsforge:vtm-android:[CURRENT-VERSION]:natives-mips' implementation 'org.mapsforge:vtm-android:[CURRENT-VERSION]:natives-mips64' implementation 'org.mapsforge:vtm-android:[CURRENT-VERSION]:natives-x86' implementation 'org.mapsforge:vtm-android:[CURRENT-VERSION]:natives-x86_64' -implementation 'com.caverock:androidsvg:1.3-SNAPSHOT' +implementation 'com.caverock:androidsvg:1.3' ``` ### Android (libGDX) ```groovy -repositories { - maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } -} - implementation 'org.mapsforge:vtm-android:[CURRENT-VERSION]' implementation 'org.mapsforge:vtm-android:[CURRENT-VERSION]:natives-arm64-v8a' implementation 'org.mapsforge:vtm-android:[CURRENT-VERSION]:natives-armeabi' @@ -51,7 +43,7 @@ implementation 'org.mapsforge:vtm-android-gdx:[CURRENT-VERSION]:natives-x86' implementation 'org.mapsforge:vtm-android-gdx:[CURRENT-VERSION]:natives-x86_64' implementation 'com.badlogicgames.gdx:gdx:1.9.8' implementation 'com.badlogicgames.gdx:gdx-backend-android:1.9.8' -implementation 'com.caverock:androidsvg:1.3-SNAPSHOT' +implementation 'com.caverock:androidsvg:1.3' ``` ### iOS diff --git a/vtm-android/build.gradle b/vtm-android/build.gradle index d1eb29fe..7d6b3bc7 100644 --- a/vtm-android/build.gradle +++ b/vtm-android/build.gradle @@ -3,7 +3,7 @@ apply plugin: 'com.github.dcendents.android-maven' dependencies { api project(':vtm') - api 'com.caverock:androidsvg:1.3-SNAPSHOT' + api 'com.caverock:androidsvg:1.3' } android {