AndroidSVG 1.3

This commit is contained in:
Emux 2018-08-12 17:35:04 +03:00
parent ed735aea64
commit 0bb0312913
No known key found for this signature in database
GPG Key ID: 64ED9980896038C3
2 changed files with 3 additions and 11 deletions

View File

@ -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

View File

@ -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 {