@maplibre/maplibre-react-native 11.0.0-alpha.2 → 11.0.0-alpha.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/MapLibreReactNative.podspec +1 -1
- package/README.md +8 -1
- package/android/build.gradle +3 -3
- package/android/gradle.properties +2 -2
- package/package.json +1 -1
|
@@ -3,7 +3,7 @@ require "json"
|
|
|
3
3
|
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
|
|
4
4
|
|
|
5
5
|
# Global Variable Defaults
|
|
6
|
-
$MLRN_NATIVE_VERSION ||= "6.
|
|
6
|
+
$MLRN_NATIVE_VERSION ||= "6.14.0"
|
|
7
7
|
$MLRN_SPM_SPEC ||= {
|
|
8
8
|
url: "https://github.com/maplibre/maplibre-gl-native-distribution",
|
|
9
9
|
requirement: {
|
package/README.md
CHANGED
|
@@ -9,8 +9,15 @@
|
|
|
9
9
|
_React Native library for creating maps
|
|
10
10
|
with [MapLibre Native for Android & iOS](https://github.com/maplibre/maplibre-gl-native)._
|
|
11
11
|
|
|
12
|
+
> [!IMPORTANT]
|
|
13
|
+
> Support for the new architecture with v10 is only through the interoperability layer. There are still quite a few
|
|
14
|
+
> [issues](https://github.com/maplibre/maplibre-react-native/issues?q=is%3Aissue%20state%3Aopen%20type%3ABug%20label%3A%22Architecture%3A%20New%22),
|
|
15
|
+
> when used with the new architecture. Switch to the v11 alpha releases on the
|
|
16
|
+
> [`alpha`](https://github.com/maplibre/maplibre-react-native/tree/alpha) branch for better support of the new
|
|
17
|
+
> architecture.
|
|
18
|
+
|
|
12
19
|
This project originated as a fork of [rnmapbox](https://github.com/rnmapbox/maps), a community-maintained
|
|
13
|
-
React Native library for building maps with the Mapbox iOS and Android mobile SDKs. The original
|
|
20
|
+
React Native library for building maps with the Mapbox iOS and Android mobile SDKs. The original library
|
|
14
21
|
supported both Mapbox and MapLibre for some time, but as the MapLibre and Mapbox SDKs have
|
|
15
22
|
diverged, it has become necessary to separate the projects into specific wrappers by underlying renderer.
|
|
16
23
|
|
package/android/build.gradle
CHANGED
|
@@ -107,9 +107,9 @@ dependencies {
|
|
|
107
107
|
implementation "org.maplibre.gl:android-sdk-turf:${getConfigurableExtOrDefault('turfVersion')}"
|
|
108
108
|
implementation "com.squareup.okhttp3:okhttp:${getConfigurableExtOrDefault('okhttpVersion')}"
|
|
109
109
|
implementation "com.squareup.okhttp3:okhttp-urlconnection:${getConfigurableExtOrDefault('okhttpVersion')}"
|
|
110
|
-
implementation "androidx.vectordrawable:vectordrawable:1.
|
|
111
|
-
implementation "androidx.annotation:annotation:1.
|
|
112
|
-
implementation "androidx.appcompat:appcompat:1.
|
|
110
|
+
implementation "androidx.vectordrawable:vectordrawable:1.2.0"
|
|
111
|
+
implementation "androidx.annotation:annotation:1.9.1"
|
|
112
|
+
implementation "androidx.appcompat:appcompat:1.7.1"
|
|
113
113
|
|
|
114
114
|
// Dependencies for Google Location Engine
|
|
115
115
|
if (getConfigurableExtOrDefault("locationEngine") == "google") {
|
|
@@ -5,11 +5,11 @@ org.maplibre.reactnative.compileSdkVersion=35
|
|
|
5
5
|
org.maplibre.reactnative.ndkVersion=27.1.12297006
|
|
6
6
|
|
|
7
7
|
# MapLibre React Native
|
|
8
|
-
org.maplibre.reactnative.nativeVersion=11.
|
|
8
|
+
org.maplibre.reactnative.nativeVersion=11.10.1
|
|
9
9
|
org.maplibre.reactnative.nativeVariant=opengl
|
|
10
10
|
org.maplibre.reactnative.pluginVersion=3.0.2
|
|
11
11
|
org.maplibre.reactnative.turfVersion=6.0.1
|
|
12
|
-
org.maplibre.reactnative.okhttpVersion=4.
|
|
12
|
+
org.maplibre.reactnative.okhttpVersion=4.12.0
|
|
13
13
|
# Available values: default, google
|
|
14
14
|
org.maplibre.reactnative.locationEngine=default
|
|
15
15
|
# Only applied if locationEngine=google
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maplibre/maplibre-react-native",
|
|
3
3
|
"description": "React Native library for creating maps with MapLibre Native for Android & iOS",
|
|
4
|
-
"version": "11.0.0-alpha.
|
|
4
|
+
"version": "11.0.0-alpha.3",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
7
7
|
"provenance": true
|