POI: SQLite Android Bindings, fix #562
This commit is contained in:
@@ -30,8 +30,8 @@ allprojects {
|
|||||||
|
|
||||||
static def androidCompileSdk() { return 28 }
|
static def androidCompileSdk() { return 28 }
|
||||||
|
|
||||||
// Minimum API Level by Support Library
|
// 14 for Support Library, 16 for sqlite-android
|
||||||
static def androidMinSdk() { return 14 }
|
static def androidMinSdk() { return 16 }
|
||||||
|
|
||||||
static def androidTargetSdk() { return 22 }
|
static def androidTargetSdk() { return 22 }
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,12 @@
|
|||||||
apply plugin: 'com.android.application'
|
apply plugin: 'com.android.application'
|
||||||
|
|
||||||
|
/*
|
||||||
|
configurations.all {
|
||||||
|
// Check latest snapshot on every build
|
||||||
|
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(':vtm-android')
|
implementation project(':vtm-android')
|
||||||
implementation project(':vtm-http')
|
implementation project(':vtm-http')
|
||||||
@@ -15,9 +22,10 @@ dependencies {
|
|||||||
implementation "com.badlogicgames.gdx:gdx-backend-android:$gdxVersion"
|
implementation "com.badlogicgames.gdx:gdx-backend-android:$gdxVersion"
|
||||||
|
|
||||||
implementation 'org.mapsforge:mapsforge-poi-android:master-SNAPSHOT'
|
implementation 'org.mapsforge:mapsforge-poi-android:master-SNAPSHOT'
|
||||||
implementation 'org.mapsforge:spatialite-android:master-SNAPSHOT:natives-armeabi'
|
implementation 'org.mapsforge:sqlite-android:master-SNAPSHOT:natives-armeabi-v7a'
|
||||||
implementation 'org.mapsforge:spatialite-android:master-SNAPSHOT:natives-armeabi-v7a'
|
implementation 'org.mapsforge:sqlite-android:master-SNAPSHOT:natives-arm64-v8a'
|
||||||
implementation 'org.mapsforge:spatialite-android:master-SNAPSHOT:natives-x86'
|
implementation 'org.mapsforge:sqlite-android:master-SNAPSHOT:natives-x86'
|
||||||
|
implementation 'org.mapsforge:sqlite-android:master-SNAPSHOT:natives-x86_64'
|
||||||
}
|
}
|
||||||
|
|
||||||
android {
|
android {
|
||||||
|
|||||||
@@ -1,5 +1,12 @@
|
|||||||
apply plugin: 'application'
|
apply plugin: 'application'
|
||||||
|
|
||||||
|
/*
|
||||||
|
configurations.all {
|
||||||
|
// Check latest snapshot on every build
|
||||||
|
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(':vtm-desktop')
|
implementation project(':vtm-desktop')
|
||||||
file("${rootDir}/vtm-desktop/natives").eachDir() { dir ->
|
file("${rootDir}/vtm-desktop/natives").eachDir() { dir ->
|
||||||
|
|||||||
Reference in New Issue
Block a user