Mapsforge: use latest version (#1026)

This commit is contained in:
Emux 2023-03-31 11:39:43 +03:00 committed by GitHub
parent 151bed799f
commit 42d251e8cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 12 additions and 11 deletions

View File

@ -10,6 +10,7 @@ dependencyResolutionManagement {
repositories {
google()
mavenCentral()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
maven { url 'https://jitpack.io' }
}
}

View File

@ -16,11 +16,11 @@ dependencies {
implementation project(':vtm-gdx')
implementation project(':vtm-gdx-poi3d')
implementation 'org.mapsforge:mapsforge-poi-android:0.18.0'
runtimeOnly 'org.mapsforge:sqlite-android:0.18.0:natives-armeabi-v7a'
runtimeOnly 'org.mapsforge:sqlite-android:0.18.0:natives-arm64-v8a'
runtimeOnly 'org.mapsforge:sqlite-android:0.18.0:natives-x86'
runtimeOnly 'org.mapsforge:sqlite-android:0.18.0:natives-x86_64'
implementation 'org.mapsforge:mapsforge-poi-android:master-SNAPSHOT'
runtimeOnly 'org.mapsforge:sqlite-android:master-SNAPSHOT:natives-armeabi-v7a'
runtimeOnly 'org.mapsforge:sqlite-android:master-SNAPSHOT:natives-arm64-v8a'
runtimeOnly 'org.mapsforge:sqlite-android:master-SNAPSHOT:natives-x86'
runtimeOnly 'org.mapsforge:sqlite-android:master-SNAPSHOT:natives-x86_64'
}
android {

View File

@ -297,7 +297,7 @@ public class PoiSearchActivity extends MapsforgeActivity implements ItemizedLaye
org.mapsforge.core.model.BoundingBox bb = new org.mapsforge.core.model.BoundingBox(
params[0].getMinLatitude(), params[0].getMinLongitude(),
params[0].getMaxLatitude(), params[0].getMaxLongitude());
return mPersistenceManager.findInRect(bb, categoryFilter, patterns, Integer.MAX_VALUE);
return mPersistenceManager.findInRect(bb, categoryFilter, patterns, null, Integer.MAX_VALUE);
} catch (Throwable t) {
log.error(t.getMessage(), t);
}

View File

@ -10,11 +10,11 @@ dependencies {
implementation 'com.fifesoft:rsyntaxtextarea:2.6.1'
implementation 'com.jtattoo:JTattoo:1.6.11'
implementation 'org.mapsforge:mapsforge-core:0.18.0'
implementation 'org.mapsforge:mapsforge-map:0.18.0'
implementation 'org.mapsforge:mapsforge-map-awt:0.18.0'
implementation 'org.mapsforge:mapsforge-map-reader:0.18.0'
implementation 'org.mapsforge:mapsforge-themes:0.18.0'
implementation 'org.mapsforge:mapsforge-core:master-SNAPSHOT'
implementation 'org.mapsforge:mapsforge-map:master-SNAPSHOT'
implementation 'org.mapsforge:mapsforge-map-awt:master-SNAPSHOT'
implementation 'org.mapsforge:mapsforge-map-reader:master-SNAPSHOT'
implementation 'org.mapsforge:mapsforge-themes:master-SNAPSHOT'
implementation 'net.sf.kxml:kxml2:2.3.0'
}