Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ dependencies {
exclude group: 'com.google.android.gms'
})
implementation dependenciesList.maplibreTurf
implementation dependenciesList.maplibreCore

// Architecture
implementation dependenciesList.lifecycleExtensions
Expand Down
8 changes: 2 additions & 6 deletions gradle/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@
]

version = [
mapLibreAndroidSdk : '11.3.0',
mapLibreJava : '5.9.0',
mapLibreTurf : '5.9.0',
mapLibreAndroidSdk : '11.13.0',
mapLibreTurf : '6.0.1',
playLocation : '16.0.0',
autoValue : '1.5.4',
autoValueParcel : '0.2.6',
Expand All @@ -32,10 +31,7 @@
dependenciesList = [
// MapLibre
mapLibreAndroidSdk : "org.maplibre.gl:android-sdk:${version.mapLibreAndroidSdk}",
maplibreGeoJson : "org.maplibre.gl:android-sdk-geojson:${version.maplibreJava}",
maplibreGeocoding : "org.maplibre.gl:android-sdk-services:${version.maplibreJava}",
maplibreTurf : "org.maplibre.gl:android-sdk-turf:${version.mapLibreTurf}",
maplibreCore : "org.maplibre.gl:android-sdk-core:${version.mapLibreJava}",

// Google Play Location
playLocation : "com.google.android.gms:play-services-location:${version.playLocation}",
Expand Down
4 changes: 4 additions & 0 deletions plugin-annotation/scripts/code-gen.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,8 @@ global.propertyType = function propertyType(property) {
return 'String';
case 'color':
return 'String';
case 'number[]':
return 'Float[]';
case 'array':
return `${propertyType({type:property.value})}[]`;
default:
Expand All @@ -132,6 +134,8 @@ global.propertyJavaType = function propertyType(property) {
return 'String';
case 'color':
return 'String';
case 'number[]':
return 'Float[]';
case 'array':
return `${propertyJavaType({type:property.value})}[]`;
default:
Expand Down
Loading