vtm-mvt module with new MVT tile decoder (#481)

This commit is contained in:
Robin
2018-01-12 10:02:04 +11:00
committed by Emux
parent 5093f292ba
commit d049d378dd
15 changed files with 484 additions and 2 deletions

View File

@@ -10,6 +10,7 @@ dependencies {
implementation project(':vtm-jeo')
implementation project(':vtm-json')
implementation project(':vtm-jts')
implementation project(':vtm-mvt')
implementation project(':vtm-themes')
implementation "org.slf4j:slf4j-android:$slf4jVersion"
@@ -35,7 +36,9 @@ android {
defaultConfig {
versionCode versionCode()
versionName versionName()
minSdkVersion androidMinSdk()
// FIXME Minimum API Level by mapbox-vector-tile
//minSdkVersion androidMinSdk()
minSdkVersion 26
targetSdkVersion androidTargetSdk()
}
@@ -64,6 +67,14 @@ android {
exclude 'META-INF/LICENSE'
exclude 'META-INF/NOTICE'
}
buildTypes {
all {
minifyEnabled true
useProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
task run(dependsOn: 'installDebug') {