diff --git a/android/src/main/java/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation.kt b/android/src/main/java/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation.kt index 72f84cd82..04575c0aa 100644 --- a/android/src/main/java/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation.kt +++ b/android/src/main/java/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation.kt @@ -25,6 +25,8 @@ import java.util.* import com.rnmapbox.rnmbx.v11compat.annotation.*; class RNMBXPointAnnotation(private val mContext: Context, private val mManager: RNMBXPointAnnotationManager) : AbstractMapFeature(mContext), View.OnLayoutChangeListener { + + var pointAnnotations: RNMBXPointAnnotationCoordinator? = null var annotation: PointAnnotation? = null private set private var mMap: MapboxMap? = null @@ -79,6 +81,7 @@ class RNMBXPointAnnotation(private val mContext: Context, private val mManager: override fun addToMap(mapView: RNMBXMapView) { super.addToMap(mapView) mMap = mapView.getMapboxMap() + pointAnnotations = mapView.pointAnnotations makeMarker() if (mChildView != null) { if (!mChildView!!.isAttachedToWindow) { @@ -96,16 +99,13 @@ class RNMBXPointAnnotation(private val mContext: Context, private val mManager: } override fun removeFromMap(mapView: RNMBXMapView, reason: RemovalReason): Boolean { - val map = (if (mMapView != null) mMapView else mapView) ?: return true - if (annotation != null) { - map.pointAnnotationManager?.delete(annotation!!) - } - if (mChildView != null) { - map.offscreenAnnotationViewContainer?.removeView(mChildView) - } - if (calloutView != null) { - map.offscreenAnnotationViewContainer?.removeView(calloutView) - } + val map = mMapView ?: mapView + + annotation?.let { map.pointAnnotations?.delete(it) } + + mChildView?.let { map.offscreenAnnotationViewContainer?.removeView(it) } + calloutView?.let { map.offscreenAnnotationViewContainer?.removeView(it)} + return super.removeFromMap(mapView, reason) } @@ -138,33 +138,36 @@ class RNMBXPointAnnotation(private val mContext: Context, private val mManager: val latLng: LatLng? get() = mCoordinate?.let { GeoJSONUtils.toLatLng(it) } val mapboxID: AnnotationID - get() = if (annotation == null) INVALID_ANNOTATION_ID else annotation!!.id + get() = annotation?.id ?: INVALID_ANNOTATION_ID + + val calloutMapboxID: AnnotationID + get() = mCalloutSymbol?.id ?: INVALID_ANNOTATION_ID fun setCoordinate(point: Point) { mCoordinate = point annotation?.let { it.point = point - mMapView?.pointAnnotationManager?.update(it) + pointAnnotations?.update(it) } mCalloutSymbol?.let { it.point = point - mMapView?.pointAnnotationManager?.update(it) + pointAnnotations?.update(it) } } fun setAnchor(x: Float, y: Float) { mAnchor = arrayOf(x, y) - if (annotation != null) { + annotation?.let { annotation -> updateAnchor() - mMapView?.pointAnnotationManager?.update(annotation!!) + pointAnnotations?.update(annotation) } } fun setDraggable(draggable: Boolean) { mDraggable = draggable - annotation?.let { - it.isDraggable = draggable - mMapView?.pointAnnotationManager?.update(it) + annotation?.let { annotation -> + annotation.isDraggable = draggable + pointAnnotations?.update(annotation) } } @@ -179,8 +182,8 @@ class RNMBXPointAnnotation(private val mContext: Context, private val mManager: fun doDeselect() { mManager.handleEvent(makeEvent(false)) - if (mCalloutSymbol != null) { - mMapView?.pointAnnotationManager?.delete(mCalloutSymbol!!) + mCalloutSymbol?.let { mCalloutSymbol -> + pointAnnotations?.delete(mCalloutSymbol) } } @@ -207,19 +210,18 @@ class RNMBXPointAnnotation(private val mContext: Context, private val mManager: .withIconSize(1.0) .withSymbolSortKey(10.0) } - mMapView?.pointAnnotationManager?.let { annotationManager -> - options?.let { - annotation = annotationManager.create(options) - updateOptions() - } + annotation = null + options?.let { + annotation = pointAnnotations?.create(it) + updateOptions() } } private fun updateOptions() { - if (annotation != null) { + annotation?.let { updateIconImage() updateAnchor() - mMapView?.pointAnnotationManager?.update(annotation!!) + pointAnnotations?.update(it) } } @@ -268,7 +270,7 @@ class RNMBXPointAnnotation(private val mContext: Context, private val mManager: .withDraggable(false) } } - val symbolManager = mMapView?.pointAnnotationManager + val symbolManager = pointAnnotations if (symbolManager != null && options != null) { mCalloutSymbol = symbolManager.create(options) } diff --git a/android/src/main/java/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator.kt b/android/src/main/java/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator.kt new file mode 100644 index 000000000..13b9942e2 --- /dev/null +++ b/android/src/main/java/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator.kt @@ -0,0 +1,168 @@ +package com.rnmapbox.rnmbx.components.annotation + +import com.mapbox.maps.MapView +import com.mapbox.maps.plugin.annotation.Annotation +import com.mapbox.maps.plugin.annotation.AnnotationConfig +import com.mapbox.maps.plugin.annotation.annotations +import com.mapbox.maps.plugin.annotation.generated.OnPointAnnotationClickListener +import com.mapbox.maps.plugin.annotation.generated.OnPointAnnotationDragListener +import com.mapbox.maps.plugin.annotation.generated.PointAnnotation +import com.mapbox.maps.plugin.annotation.generated.PointAnnotationManager +import com.mapbox.maps.plugin.annotation.generated.PointAnnotationOptions +import com.mapbox.maps.plugin.annotation.generated.createPointAnnotationManager +import com.rnmapbox.rnmbx.components.annotation.RNMBXPointAnnotation +import com.rnmapbox.rnmbx.utils.Logger + +class RNMBXPointAnnotationCoordinator(val mapView: MapView) { + val manager: PointAnnotationManager; + var annotationClicked = false + var annotationDragged = false + + var selected: RNMBXPointAnnotation? = null + + val annotations: MutableMap = hashMapOf() + val callouts: MutableMap = hashMapOf() + + init { + manager = mapView.annotations.createPointAnnotationManager(AnnotationConfig(layerId = "RNMBX-mapview-annotations")) + manager.addClickListener(OnPointAnnotationClickListener { pointAnnotation -> + onAnnotationClick(pointAnnotation) + false + }) + } + + fun getAndClearAnnotationClicked(): Boolean { + if (annotationClicked) { + annotationClicked = false + return true + } + return false + } + + fun getAndClearAnnotationDragged(): Boolean { + if (annotationDragged) { + annotationDragged = false + return true + } + return false + } + + fun lookupForClick(point: PointAnnotation): RNMBXPointAnnotation? { + for (annotation in annotations.values) { + if (point.id == annotation.mapboxID) { + return annotation; + } + if (point.id == annotation.calloutMapboxID) { + return null; + } + } + Logger.e(LOG_TAG, "Failed to find RNMBXPointAnnotation for ${point.id}") + return null; + } + + fun onAnnotationClick(pointAnnotation: RNMBXPointAnnotation) { + var oldSelected: RNMBXPointAnnotation? = selected + var newSelected: RNMBXPointAnnotation? = pointAnnotation + + annotationClicked = true + + if (newSelected == oldSelected) { + newSelected = null + } + + manager.addDragListener(object : OnPointAnnotationDragListener { + override fun onAnnotationDragStarted(_annotation: Annotation<*>) { + annotationDragged = true; + var reactAnnotation: RNMBXPointAnnotation? = null + for (key in annotations.keys) { + val annotation = annotations[key] + val curMarkerID = annotation?.mapboxID + if (_annotation.id == curMarkerID) { + reactAnnotation = annotation + } + } + reactAnnotation?.let { it.onDragStart() } + } + + override fun onAnnotationDrag(_annotation: Annotation<*>) { + var reactAnnotation: RNMBXPointAnnotation? = null + for (key in annotations.keys) { + val annotation = annotations[key] + val curMarkerID = annotation?.mapboxID + if (_annotation.id == curMarkerID) { + reactAnnotation = annotation + } + } + reactAnnotation?.let { it.onDrag() } + } + + override fun onAnnotationDragFinished(_annotation: Annotation<*>) { + annotationDragged = false; + var reactAnnotation: RNMBXPointAnnotation? = null + for (key in annotations.keys) { + val annotation = annotations[key] + val curMarkerID = annotation?.mapboxID + if (_annotation.id == curMarkerID) { + reactAnnotation = annotation + } + } + reactAnnotation?.let { it.onDragEnd() } + } + }) + + oldSelected?.let { deselectAnnotation(it) } + newSelected?.let { selectAnnotation(it) } + + } + + fun onAnnotationClick(point: PointAnnotation) { + lookupForClick(point)?.let { + onAnnotationClick(it) + } + } + + fun deselectSelectedAnnotation(): Boolean { + selected?.let { + deselectAnnotation(it) + return true + } + return false + } + + fun selectAnnotation(annotation: RNMBXPointAnnotation) { + selected = annotation + annotation.doSelect(true) + } + + fun deselectAnnotation(annotation: RNMBXPointAnnotation) { + selected = null + annotation.doDeselect() + } + + fun remove(annotation: RNMBXPointAnnotation) { + if (annotation == selected) { + selected = null + } + annotations.remove(annotation.iD) + } + + fun delete(annotation: PointAnnotation) { + manager.delete(annotation) + } + + fun update(annotation: PointAnnotation) { + manager.update(annotation) + } + + fun create(options: PointAnnotationOptions): PointAnnotation { + return manager.create(options) + } + + fun add(annotation: RNMBXPointAnnotation) { + annotations[annotation.iD!!] = annotation + } + + companion object { + const val LOG_TAG = "RNMBXPointAnnotationCoordinator"; + } +} diff --git a/android/src/main/java/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView.kt b/android/src/main/java/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView.kt index a463561e1..7afa9ff6f 100644 --- a/android/src/main/java/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView.kt +++ b/android/src/main/java/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView.kt @@ -34,18 +34,10 @@ import com.mapbox.maps.extension.style.layers.properties.generated.ProjectionNam import com.mapbox.maps.extension.style.layers.properties.generated.Visibility import com.mapbox.maps.extension.style.projection.generated.Projection import com.mapbox.maps.extension.style.projection.generated.setProjection -import com.mapbox.maps.plugin.annotation.Annotation -import com.mapbox.maps.plugin.annotation.AnnotationConfig -import com.mapbox.maps.plugin.annotation.annotations -import com.mapbox.maps.plugin.annotation.generated.* import com.mapbox.maps.plugin.attribution.attribution import com.mapbox.maps.plugin.compass.compass import com.mapbox.maps.plugin.delegates.listeners.* import com.mapbox.maps.plugin.gestures.* -import com.mapbox.maps.plugin.locationcomponent.DefaultLocationProvider -import com.mapbox.maps.plugin.locationcomponent.LocationConsumer -import com.mapbox.maps.plugin.locationcomponent.LocationProvider -import com.mapbox.maps.plugin.locationcomponent.location import com.mapbox.maps.plugin.logo.logo import com.mapbox.maps.plugin.scalebar.scalebar import com.mapbox.maps.viewannotation.ViewAnnotationManager @@ -72,11 +64,9 @@ import com.rnmapbox.rnmbx.events.MapClickEvent import com.rnmapbox.rnmbx.events.constants.EventTypes import com.rnmapbox.rnmbx.utils.* import com.rnmapbox.rnmbx.utils.extensions.toReadableArray -import com.rnmapbox.rnmbx.v11compat.annotation.AnnotationID -import com.rnmapbox.rnmbx.v11compat.annotation.INVALID_ANNOTATION_ID import java.util.* -import com.mapbox.maps.MapboxMap.*; +import com.rnmapbox.rnmbx.components.annotation.RNMBXPointAnnotationCoordinator import com.rnmapbox.rnmbx.components.images.ImageManager import com.rnmapbox.rnmbx.v11compat.event.* @@ -85,7 +75,6 @@ import com.rnmapbox.rnmbx.v11compat.mapboxmap.* import com.rnmapbox.rnmbx.v11compat.ornamentsettings.* import org.json.JSONException import org.json.JSONObject -import java.util.* fun MutableList.removeIf21(predicate: (T) -> Boolean): Boolean { var removed = false @@ -225,12 +214,12 @@ open class RNMBXMapView(private val mContext: Context, var mManager: RNMBXMapVie private val mSources: MutableMap> private val mImages: MutableList - public val pointAnnotationManager: RNMBXPointAnnotationManager by lazy { + public val pointAnnotations: RNMBXPointAnnotationCoordinator by lazy { val gesturesPlugin: GesturesPlugin = mapView.gestures gesturesPlugin.removeOnMapClickListener(this) gesturesPlugin.removeOnMapLongClickListener(this) - val result = RNMBXPointAnnotationManager(mapView) + val result = RNMBXPointAnnotationCoordinator(mapView) gesturesPlugin.addOnMapClickListener(this) gesturesPlugin.addOnMapLongClickListener(this) @@ -445,7 +434,7 @@ open class RNMBXMapView(private val mContext: Context, var mManager: RNMBXMapVie feature = childView } else if (childView is RNMBXPointAnnotation) { val annotation = childView - pointAnnotationManager.add(annotation) + pointAnnotations.add(annotation) feature = childView } else if (childView is RNMBXMarkerView) { feature = childView @@ -481,7 +470,7 @@ open class RNMBXMapView(private val mContext: Context, var mManager: RNMBXMapVie mSources.remove(feature.iD) } else if (feature is RNMBXPointAnnotation) { val annotation = feature - pointAnnotationManager.remove(annotation) + pointAnnotations.remove(annotation) } else if (feature is RNMBXImages) { mImages.remove(feature) } @@ -729,13 +718,15 @@ open class RNMBXMapView(private val mContext: Context, var mManager: RNMBXMapVie ) ) { features -> if (features.isValue) { - if (features.value!!.size > 0) { - val featuresList = ArrayList() - for (i in features.value!!) { - featuresList.add(i.feature) + features.value?.let { features -> + if (features.size > 0) { + val featuresList = ArrayList() + for (i in features) { + featuresList.add(i.feature) + } + hits[source.iD] = featuresList + hitTouchableSources.add(source) } - hits[source.iD] = featuresList - hitTouchableSources.add(source) } } else { Logger.e("handleTapInSources", features.error ?: "n/a") @@ -747,11 +738,11 @@ open class RNMBXMapView(private val mContext: Context, var mManager: RNMBXMapVie override fun onMapClick(point: Point): Boolean { val _this = this - if (pointAnnotationManager.getAndClearAnnotationClicked()) { + if (pointAnnotations.getAndClearAnnotationClicked()) { return true } if (deselectAnnotationOnTap) { - if (pointAnnotationManager.deselectSelectedAnnotation()) { + if (pointAnnotations.deselectSelectedAnnotation()) { return true } } @@ -783,7 +774,7 @@ open class RNMBXMapView(private val mContext: Context, var mManager: RNMBXMapVie override fun onMapLongClick(point: Point): Boolean { val _this = this - if (pointAnnotationManager.getAndClearAnnotationDragged()) { + if (pointAnnotations.getAndClearAnnotationDragged()) { return true } val screenPoint = mMap?.pixelForCoordinate(point) @@ -1565,154 +1556,5 @@ fun OrnamentSettings.setPosAndMargins(posAndMargins: ReadableMap?) { this.margins = margins } -class RNMBXPointAnnotationManager(val mapView: MapView) { - val manager: PointAnnotationManager; - var annotationClicked = false - var annotationDragged = false - - var selected: RNMBXPointAnnotation? = null - - val annotations: MutableMap = hashMapOf() - - init { - manager = mapView.annotations.createPointAnnotationManager(AnnotationConfig(layerId = "RNMBX-mapview-annotations")) - manager.addClickListener(OnPointAnnotationClickListener { pointAnnotation -> - onAnnotationClick(pointAnnotation) - false - }) - } - - fun getAndClearAnnotationClicked(): Boolean { - if (annotationClicked) { - annotationClicked = false - return true - } - return false - } - - fun getAndClearAnnotationDragged(): Boolean { - if (annotationDragged) { - annotationDragged = false - return true - } - return false - } - - fun lookup(point: PointAnnotation): RNMBXPointAnnotation? { - for (annotation in annotations.values) { - if (point.id == annotation.mapboxID) { - return annotation; - } - } - Logger.e(LOG_TAG, "Failed to find RNMBXPointAnntoation for ${point.id}") - return null; - } - - fun onAnnotationClick(pointAnnotation: RNMBXPointAnnotation) { - var oldSelected: RNMBXPointAnnotation? = selected - var newSelected: RNMBXPointAnnotation? = pointAnnotation - - annotationClicked = true - - if (newSelected == oldSelected) { - newSelected = null - } - - manager.addDragListener(object : OnPointAnnotationDragListener { - override fun onAnnotationDragStarted(_annotation: Annotation<*>) { - annotationDragged = true; - var reactAnnotation: RNMBXPointAnnotation? = null - for (key in annotations.keys) { - val annotation = annotations[key] - val curMarkerID = annotation?.mapboxID - if (_annotation.id == curMarkerID) { - reactAnnotation = annotation - } - } - reactAnnotation?.let { it.onDragStart() } - } - - override fun onAnnotationDrag(_annotation: Annotation<*>) { - var reactAnnotation: RNMBXPointAnnotation? = null - for (key in annotations.keys) { - val annotation = annotations[key] - val curMarkerID = annotation?.mapboxID - if (_annotation.id == curMarkerID) { - reactAnnotation = annotation - } - } - reactAnnotation?.let { it.onDrag() } - } - - override fun onAnnotationDragFinished(_annotation: Annotation<*>) { - annotationDragged = false; - var reactAnnotation: RNMBXPointAnnotation? = null - for (key in annotations.keys) { - val annotation = annotations[key] - val curMarkerID = annotation?.mapboxID - if (_annotation.id == curMarkerID) { - reactAnnotation = annotation - } - } - reactAnnotation?.let { it.onDragEnd() } - } - }) - - oldSelected?.let { deselectAnnotation(it) } - newSelected?.let { selectAnnotation(it) } - - } - - fun onAnnotationClick(point: PointAnnotation) { - lookup(point)?.let { - onAnnotationClick(it) - } - } - - fun deselectSelectedAnnotation(): Boolean { - selected?.let { - deselectAnnotation(it) - return true - } - return false - } - - fun selectAnnotation(annotation: RNMBXPointAnnotation) { - selected = annotation - annotation.doSelect(true) - } - - fun deselectAnnotation(annotation: RNMBXPointAnnotation) { - selected = null - annotation.doDeselect() - } - - fun remove(annotation: RNMBXPointAnnotation) { - if (annotation == selected) { - selected = null - } - annotations.remove(annotation.iD) - } - - fun delete(annotation: PointAnnotation) { - manager.delete(annotation) - } - - fun update(annotation: PointAnnotation) { - manager.update(annotation) - } - - fun create(options: PointAnnotationOptions): PointAnnotation { - return manager.create(options) - } - - fun add(annotation: RNMBXPointAnnotation) { - annotations[annotation.iD!!] = annotation - } - - companion object { - const val LOG_TAG = "RNMBXPointAnnotationManager"; - } -} diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock index 1a92870b6..5f956024d 100644 --- a/example/ios/Podfile.lock +++ b/example/ios/Podfile.lock @@ -2,14 +2,14 @@ PODS: - boost (1.83.0) - CocoaAsyncSocket (7.6.5) - DoubleConversion (1.1.6) - - FBLazyVector (0.73.0-rc.4) - - FBReactNativeSpec (0.73.0-rc.4): + - FBLazyVector (0.73.0) + - FBReactNativeSpec (0.73.0): - RCT-Folly (= 2022.05.16.00) - - RCTRequired (= 0.73.0-rc.4) - - RCTTypeSafety (= 0.73.0-rc.4) - - React-Core (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) - - ReactCommon/turbomodule/core (= 0.73.0-rc.4) + - RCTRequired (= 0.73.0) + - RCTTypeSafety (= 0.73.0) + - React-Core (= 0.73.0) + - React-jsi (= 0.73.0) + - ReactCommon/turbomodule/core (= 0.73.0) - Flipper (0.201.0): - Flipper-Folly (~> 2.6) - Flipper-Boost-iOSX (1.76.0.1.11) @@ -68,16 +68,16 @@ PODS: - FlipperKit/FlipperKitNetworkPlugin - fmt (6.2.1) - glog (0.3.5) - - hermes-engine (0.73.0-rc.4): - - hermes-engine/Pre-built (= 0.73.0-rc.4) - - hermes-engine/Pre-built (0.73.0-rc.4) + - hermes-engine (0.73.0): + - hermes-engine/Pre-built (= 0.73.0) + - hermes-engine/Pre-built (0.73.0) - libevent (2.1.12) - - MapboxCommon (23.8.3) - - MapboxCoreMaps (10.16.1): + - MapboxCommon (23.8.5) + - MapboxCoreMaps (10.16.3): - MapboxCommon (~> 23.8) - - MapboxMaps (10.16.1): - - MapboxCommon (= 23.8.3) - - MapboxCoreMaps (= 10.16.1) + - MapboxMaps (10.16.3): + - MapboxCommon (= 23.8.5) + - MapboxCoreMaps (= 10.16.3) - MapboxMobileEvents (= 1.0.10) - Turf (~> 2.0) - MapboxMobileEvents (1.0.10) @@ -104,26 +104,26 @@ PODS: - fmt (~> 6.2.1) - glog - libevent - - RCTRequired (0.73.0-rc.4) - - RCTTypeSafety (0.73.0-rc.4): - - FBLazyVector (= 0.73.0-rc.4) - - RCTRequired (= 0.73.0-rc.4) - - React-Core (= 0.73.0-rc.4) - - React (0.73.0-rc.4): - - React-Core (= 0.73.0-rc.4) - - React-Core/DevSupport (= 0.73.0-rc.4) - - React-Core/RCTWebSocket (= 0.73.0-rc.4) - - React-RCTActionSheet (= 0.73.0-rc.4) - - React-RCTAnimation (= 0.73.0-rc.4) - - React-RCTBlob (= 0.73.0-rc.4) - - React-RCTImage (= 0.73.0-rc.4) - - React-RCTLinking (= 0.73.0-rc.4) - - React-RCTNetwork (= 0.73.0-rc.4) - - React-RCTSettings (= 0.73.0-rc.4) - - React-RCTText (= 0.73.0-rc.4) - - React-RCTVibration (= 0.73.0-rc.4) - - React-callinvoker (0.73.0-rc.4) - - React-Codegen (0.73.0-rc.4): + - RCTRequired (0.73.0) + - RCTTypeSafety (0.73.0): + - FBLazyVector (= 0.73.0) + - RCTRequired (= 0.73.0) + - React-Core (= 0.73.0) + - React (0.73.0): + - React-Core (= 0.73.0) + - React-Core/DevSupport (= 0.73.0) + - React-Core/RCTWebSocket (= 0.73.0) + - React-RCTActionSheet (= 0.73.0) + - React-RCTAnimation (= 0.73.0) + - React-RCTBlob (= 0.73.0) + - React-RCTImage (= 0.73.0) + - React-RCTLinking (= 0.73.0) + - React-RCTNetwork (= 0.73.0) + - React-RCTSettings (= 0.73.0) + - React-RCTText (= 0.73.0) + - React-RCTVibration (= 0.73.0) + - React-callinvoker (0.73.0) + - React-Codegen (0.73.0): - DoubleConversion - FBReactNativeSpec - glog @@ -138,11 +138,11 @@ PODS: - React-rncore - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - React-Core (0.73.0-rc.4): + - React-Core (0.73.0): - glog - hermes-engine - RCT-Folly (= 2022.05.16.00) - - React-Core/Default (= 0.73.0-rc.4) + - React-Core/Default (= 0.73.0) - React-cxxreact - React-hermes - React-jsi @@ -152,7 +152,7 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/CoreModulesHeaders (0.73.0-rc.4): + - React-Core/CoreModulesHeaders (0.73.0): - glog - hermes-engine - RCT-Folly (= 2022.05.16.00) @@ -166,7 +166,7 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/Default (0.73.0-rc.4): + - React-Core/Default (0.73.0): - glog - hermes-engine - RCT-Folly (= 2022.05.16.00) @@ -179,23 +179,23 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/DevSupport (0.73.0-rc.4): + - React-Core/DevSupport (0.73.0): - glog - hermes-engine - RCT-Folly (= 2022.05.16.00) - - React-Core/Default (= 0.73.0-rc.4) - - React-Core/RCTWebSocket (= 0.73.0-rc.4) + - React-Core/Default (= 0.73.0) + - React-Core/RCTWebSocket (= 0.73.0) - React-cxxreact - React-hermes - React-jsi - React-jsiexecutor - - React-jsinspector (= 0.73.0-rc.4) + - React-jsinspector (= 0.73.0) - React-perflogger - React-runtimescheduler - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTActionSheetHeaders (0.73.0-rc.4): + - React-Core/RCTActionSheetHeaders (0.73.0): - glog - hermes-engine - RCT-Folly (= 2022.05.16.00) @@ -209,7 +209,7 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTAnimationHeaders (0.73.0-rc.4): + - React-Core/RCTAnimationHeaders (0.73.0): - glog - hermes-engine - RCT-Folly (= 2022.05.16.00) @@ -223,7 +223,7 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTBlobHeaders (0.73.0-rc.4): + - React-Core/RCTBlobHeaders (0.73.0): - glog - hermes-engine - RCT-Folly (= 2022.05.16.00) @@ -237,7 +237,7 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTImageHeaders (0.73.0-rc.4): + - React-Core/RCTImageHeaders (0.73.0): - glog - hermes-engine - RCT-Folly (= 2022.05.16.00) @@ -251,7 +251,7 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTLinkingHeaders (0.73.0-rc.4): + - React-Core/RCTLinkingHeaders (0.73.0): - glog - hermes-engine - RCT-Folly (= 2022.05.16.00) @@ -265,7 +265,7 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTNetworkHeaders (0.73.0-rc.4): + - React-Core/RCTNetworkHeaders (0.73.0): - glog - hermes-engine - RCT-Folly (= 2022.05.16.00) @@ -279,7 +279,7 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTSettingsHeaders (0.73.0-rc.4): + - React-Core/RCTSettingsHeaders (0.73.0): - glog - hermes-engine - RCT-Folly (= 2022.05.16.00) @@ -293,7 +293,7 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTTextHeaders (0.73.0-rc.4): + - React-Core/RCTTextHeaders (0.73.0): - glog - hermes-engine - RCT-Folly (= 2022.05.16.00) @@ -307,7 +307,7 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTVibrationHeaders (0.73.0-rc.4): + - React-Core/RCTVibrationHeaders (0.73.0): - glog - hermes-engine - RCT-Folly (= 2022.05.16.00) @@ -321,11 +321,11 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTWebSocket (0.73.0-rc.4): + - React-Core/RCTWebSocket (0.73.0): - glog - hermes-engine - RCT-Folly (= 2022.05.16.00) - - React-Core/Default (= 0.73.0-rc.4) + - React-Core/Default (= 0.73.0) - React-cxxreact - React-hermes - React-jsi @@ -335,625 +335,628 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-CoreModules (0.73.0-rc.4): + - React-CoreModules (0.73.0): - RCT-Folly (= 2022.05.16.00) - - RCTTypeSafety (= 0.73.0-rc.4) - - React-Codegen (= 0.73.0-rc.4) - - React-Core/CoreModulesHeaders (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) + - RCTTypeSafety (= 0.73.0) + - React-Codegen + - React-Core/CoreModulesHeaders (= 0.73.0) + - React-jsi (= 0.73.0) + - React-NativeModulesApple - React-RCTBlob - - React-RCTImage (= 0.73.0-rc.4) - - ReactCommon/turbomodule/core (= 0.73.0-rc.4) + - React-RCTImage (= 0.73.0) + - ReactCommon - SocketRocket (= 0.6.1) - - React-cxxreact (0.73.0-rc.4): + - React-cxxreact (0.73.0): - boost (= 1.83.0) - DoubleConversion - fmt (~> 6.2.1) - glog - hermes-engine - RCT-Folly (= 2022.05.16.00) - - React-callinvoker (= 0.73.0-rc.4) - - React-debug (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) - - React-jsinspector (= 0.73.0-rc.4) - - React-logger (= 0.73.0-rc.4) - - React-perflogger (= 0.73.0-rc.4) - - React-runtimeexecutor (= 0.73.0-rc.4) - - React-debug (0.73.0-rc.4) - - React-Fabric (0.73.0-rc.4): + - React-callinvoker (= 0.73.0) + - React-debug (= 0.73.0) + - React-jsi (= 0.73.0) + - React-jsinspector (= 0.73.0) + - React-logger (= 0.73.0) + - React-perflogger (= 0.73.0) + - React-runtimeexecutor (= 0.73.0) + - React-debug (0.73.0) + - React-Fabric (0.73.0): - DoubleConversion - fmt (~> 6.2.1) - glog - hermes-engine - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired (= 0.73.0-rc.4) - - RCTTypeSafety (= 0.73.0-rc.4) + - RCTRequired + - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-Fabric/animations (= 0.73.0-rc.4) - - React-Fabric/attributedstring (= 0.73.0-rc.4) - - React-Fabric/componentregistry (= 0.73.0-rc.4) - - React-Fabric/componentregistrynative (= 0.73.0-rc.4) - - React-Fabric/components (= 0.73.0-rc.4) - - React-Fabric/core (= 0.73.0-rc.4) - - React-Fabric/imagemanager (= 0.73.0-rc.4) - - React-Fabric/leakchecker (= 0.73.0-rc.4) - - React-Fabric/mounting (= 0.73.0-rc.4) - - React-Fabric/scheduler (= 0.73.0-rc.4) - - React-Fabric/telemetry (= 0.73.0-rc.4) - - React-Fabric/templateprocessor (= 0.73.0-rc.4) - - React-Fabric/textlayoutmanager (= 0.73.0-rc.4) - - React-Fabric/uimanager (= 0.73.0-rc.4) - - React-graphics (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) - - React-jsiexecutor (= 0.73.0-rc.4) + - React-Fabric/animations (= 0.73.0) + - React-Fabric/attributedstring (= 0.73.0) + - React-Fabric/componentregistry (= 0.73.0) + - React-Fabric/componentregistrynative (= 0.73.0) + - React-Fabric/components (= 0.73.0) + - React-Fabric/core (= 0.73.0) + - React-Fabric/imagemanager (= 0.73.0) + - React-Fabric/leakchecker (= 0.73.0) + - React-Fabric/mounting (= 0.73.0) + - React-Fabric/scheduler (= 0.73.0) + - React-Fabric/telemetry (= 0.73.0) + - React-Fabric/templateprocessor (= 0.73.0) + - React-Fabric/textlayoutmanager (= 0.73.0) + - React-Fabric/uimanager (= 0.73.0) + - React-graphics + - React-jsi + - React-jsiexecutor - React-logger - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.73.0-rc.4) - - React-Fabric/animations (0.73.0-rc.4): + - ReactCommon/turbomodule/core + - React-Fabric/animations (0.73.0): - DoubleConversion - fmt (~> 6.2.1) - glog - hermes-engine - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired (= 0.73.0-rc.4) - - RCTTypeSafety (= 0.73.0-rc.4) + - RCTRequired + - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-graphics (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) - - React-jsiexecutor (= 0.73.0-rc.4) + - React-graphics + - React-jsi + - React-jsiexecutor - React-logger - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.73.0-rc.4) - - React-Fabric/attributedstring (0.73.0-rc.4): + - ReactCommon/turbomodule/core + - React-Fabric/attributedstring (0.73.0): - DoubleConversion - fmt (~> 6.2.1) - glog - hermes-engine - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired (= 0.73.0-rc.4) - - RCTTypeSafety (= 0.73.0-rc.4) + - RCTRequired + - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-graphics (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) - - React-jsiexecutor (= 0.73.0-rc.4) + - React-graphics + - React-jsi + - React-jsiexecutor - React-logger - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.73.0-rc.4) - - React-Fabric/componentregistry (0.73.0-rc.4): + - ReactCommon/turbomodule/core + - React-Fabric/componentregistry (0.73.0): - DoubleConversion - fmt (~> 6.2.1) - glog - hermes-engine - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired (= 0.73.0-rc.4) - - RCTTypeSafety (= 0.73.0-rc.4) + - RCTRequired + - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-graphics (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) - - React-jsiexecutor (= 0.73.0-rc.4) + - React-graphics + - React-jsi + - React-jsiexecutor - React-logger - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.73.0-rc.4) - - React-Fabric/componentregistrynative (0.73.0-rc.4): + - ReactCommon/turbomodule/core + - React-Fabric/componentregistrynative (0.73.0): - DoubleConversion - fmt (~> 6.2.1) - glog - hermes-engine - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired (= 0.73.0-rc.4) - - RCTTypeSafety (= 0.73.0-rc.4) + - RCTRequired + - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-graphics (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) - - React-jsiexecutor (= 0.73.0-rc.4) + - React-graphics + - React-jsi + - React-jsiexecutor - React-logger - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.73.0-rc.4) - - React-Fabric/components (0.73.0-rc.4): + - ReactCommon/turbomodule/core + - React-Fabric/components (0.73.0): - DoubleConversion - fmt (~> 6.2.1) - glog - hermes-engine - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired (= 0.73.0-rc.4) - - RCTTypeSafety (= 0.73.0-rc.4) + - RCTRequired + - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-Fabric/components/inputaccessory (= 0.73.0-rc.4) - - React-Fabric/components/legacyviewmanagerinterop (= 0.73.0-rc.4) - - React-Fabric/components/modal (= 0.73.0-rc.4) - - React-Fabric/components/rncore (= 0.73.0-rc.4) - - React-Fabric/components/root (= 0.73.0-rc.4) - - React-Fabric/components/safeareaview (= 0.73.0-rc.4) - - React-Fabric/components/scrollview (= 0.73.0-rc.4) - - React-Fabric/components/text (= 0.73.0-rc.4) - - React-Fabric/components/textinput (= 0.73.0-rc.4) - - React-Fabric/components/unimplementedview (= 0.73.0-rc.4) - - React-Fabric/components/view (= 0.73.0-rc.4) - - React-graphics (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) - - React-jsiexecutor (= 0.73.0-rc.4) + - React-Fabric/components/inputaccessory (= 0.73.0) + - React-Fabric/components/legacyviewmanagerinterop (= 0.73.0) + - React-Fabric/components/modal (= 0.73.0) + - React-Fabric/components/rncore (= 0.73.0) + - React-Fabric/components/root (= 0.73.0) + - React-Fabric/components/safeareaview (= 0.73.0) + - React-Fabric/components/scrollview (= 0.73.0) + - React-Fabric/components/text (= 0.73.0) + - React-Fabric/components/textinput (= 0.73.0) + - React-Fabric/components/unimplementedview (= 0.73.0) + - React-Fabric/components/view (= 0.73.0) + - React-graphics + - React-jsi + - React-jsiexecutor - React-logger - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.73.0-rc.4) - - React-Fabric/components/inputaccessory (0.73.0-rc.4): + - ReactCommon/turbomodule/core + - React-Fabric/components/inputaccessory (0.73.0): - DoubleConversion - fmt (~> 6.2.1) - glog - hermes-engine - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired (= 0.73.0-rc.4) - - RCTTypeSafety (= 0.73.0-rc.4) + - RCTRequired + - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-graphics (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) - - React-jsiexecutor (= 0.73.0-rc.4) + - React-graphics + - React-jsi + - React-jsiexecutor - React-logger - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.73.0-rc.4) - - React-Fabric/components/legacyviewmanagerinterop (0.73.0-rc.4): + - ReactCommon/turbomodule/core + - React-Fabric/components/legacyviewmanagerinterop (0.73.0): - DoubleConversion - fmt (~> 6.2.1) - glog - hermes-engine - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired (= 0.73.0-rc.4) - - RCTTypeSafety (= 0.73.0-rc.4) + - RCTRequired + - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-graphics (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) - - React-jsiexecutor (= 0.73.0-rc.4) + - React-graphics + - React-jsi + - React-jsiexecutor - React-logger - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.73.0-rc.4) - - React-Fabric/components/modal (0.73.0-rc.4): + - ReactCommon/turbomodule/core + - React-Fabric/components/modal (0.73.0): - DoubleConversion - fmt (~> 6.2.1) - glog - hermes-engine - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired (= 0.73.0-rc.4) - - RCTTypeSafety (= 0.73.0-rc.4) + - RCTRequired + - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-graphics (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) - - React-jsiexecutor (= 0.73.0-rc.4) + - React-graphics + - React-jsi + - React-jsiexecutor - React-logger - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.73.0-rc.4) - - React-Fabric/components/rncore (0.73.0-rc.4): + - ReactCommon/turbomodule/core + - React-Fabric/components/rncore (0.73.0): - DoubleConversion - fmt (~> 6.2.1) - glog - hermes-engine - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired (= 0.73.0-rc.4) - - RCTTypeSafety (= 0.73.0-rc.4) + - RCTRequired + - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-graphics (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) - - React-jsiexecutor (= 0.73.0-rc.4) + - React-graphics + - React-jsi + - React-jsiexecutor - React-logger - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.73.0-rc.4) - - React-Fabric/components/root (0.73.0-rc.4): + - ReactCommon/turbomodule/core + - React-Fabric/components/root (0.73.0): - DoubleConversion - fmt (~> 6.2.1) - glog - hermes-engine - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired (= 0.73.0-rc.4) - - RCTTypeSafety (= 0.73.0-rc.4) + - RCTRequired + - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-graphics (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) - - React-jsiexecutor (= 0.73.0-rc.4) + - React-graphics + - React-jsi + - React-jsiexecutor - React-logger - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.73.0-rc.4) - - React-Fabric/components/safeareaview (0.73.0-rc.4): + - ReactCommon/turbomodule/core + - React-Fabric/components/safeareaview (0.73.0): - DoubleConversion - fmt (~> 6.2.1) - glog - hermes-engine - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired (= 0.73.0-rc.4) - - RCTTypeSafety (= 0.73.0-rc.4) + - RCTRequired + - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-graphics (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) - - React-jsiexecutor (= 0.73.0-rc.4) + - React-graphics + - React-jsi + - React-jsiexecutor - React-logger - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.73.0-rc.4) - - React-Fabric/components/scrollview (0.73.0-rc.4): + - ReactCommon/turbomodule/core + - React-Fabric/components/scrollview (0.73.0): - DoubleConversion - fmt (~> 6.2.1) - glog - hermes-engine - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired (= 0.73.0-rc.4) - - RCTTypeSafety (= 0.73.0-rc.4) + - RCTRequired + - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-graphics (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) - - React-jsiexecutor (= 0.73.0-rc.4) + - React-graphics + - React-jsi + - React-jsiexecutor - React-logger - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.73.0-rc.4) - - React-Fabric/components/text (0.73.0-rc.4): + - ReactCommon/turbomodule/core + - React-Fabric/components/text (0.73.0): - DoubleConversion - fmt (~> 6.2.1) - glog - hermes-engine - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired (= 0.73.0-rc.4) - - RCTTypeSafety (= 0.73.0-rc.4) + - RCTRequired + - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-graphics (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) - - React-jsiexecutor (= 0.73.0-rc.4) + - React-graphics + - React-jsi + - React-jsiexecutor - React-logger - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.73.0-rc.4) - - React-Fabric/components/textinput (0.73.0-rc.4): + - ReactCommon/turbomodule/core + - React-Fabric/components/textinput (0.73.0): - DoubleConversion - fmt (~> 6.2.1) - glog - hermes-engine - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired (= 0.73.0-rc.4) - - RCTTypeSafety (= 0.73.0-rc.4) + - RCTRequired + - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-graphics (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) - - React-jsiexecutor (= 0.73.0-rc.4) + - React-graphics + - React-jsi + - React-jsiexecutor - React-logger - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.73.0-rc.4) - - React-Fabric/components/unimplementedview (0.73.0-rc.4): + - ReactCommon/turbomodule/core + - React-Fabric/components/unimplementedview (0.73.0): - DoubleConversion - fmt (~> 6.2.1) - glog - hermes-engine - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired (= 0.73.0-rc.4) - - RCTTypeSafety (= 0.73.0-rc.4) + - RCTRequired + - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-graphics (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) - - React-jsiexecutor (= 0.73.0-rc.4) + - React-graphics + - React-jsi + - React-jsiexecutor - React-logger - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.73.0-rc.4) - - React-Fabric/components/view (0.73.0-rc.4): + - ReactCommon/turbomodule/core + - React-Fabric/components/view (0.73.0): - DoubleConversion - fmt (~> 6.2.1) - glog - hermes-engine - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired (= 0.73.0-rc.4) - - RCTTypeSafety (= 0.73.0-rc.4) + - RCTRequired + - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-graphics (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) - - React-jsiexecutor (= 0.73.0-rc.4) + - React-graphics + - React-jsi + - React-jsiexecutor - React-logger - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.73.0-rc.4) + - ReactCommon/turbomodule/core - Yoga - - React-Fabric/core (0.73.0-rc.4): + - React-Fabric/core (0.73.0): - DoubleConversion - fmt (~> 6.2.1) - glog - hermes-engine - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired (= 0.73.0-rc.4) - - RCTTypeSafety (= 0.73.0-rc.4) + - RCTRequired + - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-graphics (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) - - React-jsiexecutor (= 0.73.0-rc.4) + - React-graphics + - React-jsi + - React-jsiexecutor - React-logger - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.73.0-rc.4) - - React-Fabric/imagemanager (0.73.0-rc.4): + - ReactCommon/turbomodule/core + - React-Fabric/imagemanager (0.73.0): - DoubleConversion - fmt (~> 6.2.1) - glog - hermes-engine - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired (= 0.73.0-rc.4) - - RCTTypeSafety (= 0.73.0-rc.4) + - RCTRequired + - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-graphics (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) - - React-jsiexecutor (= 0.73.0-rc.4) + - React-graphics + - React-jsi + - React-jsiexecutor - React-logger - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.73.0-rc.4) - - React-Fabric/leakchecker (0.73.0-rc.4): + - ReactCommon/turbomodule/core + - React-Fabric/leakchecker (0.73.0): - DoubleConversion - fmt (~> 6.2.1) - glog - hermes-engine - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired (= 0.73.0-rc.4) - - RCTTypeSafety (= 0.73.0-rc.4) + - RCTRequired + - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-graphics (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) - - React-jsiexecutor (= 0.73.0-rc.4) + - React-graphics + - React-jsi + - React-jsiexecutor - React-logger - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.73.0-rc.4) - - React-Fabric/mounting (0.73.0-rc.4): + - ReactCommon/turbomodule/core + - React-Fabric/mounting (0.73.0): - DoubleConversion - fmt (~> 6.2.1) - glog - hermes-engine - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired (= 0.73.0-rc.4) - - RCTTypeSafety (= 0.73.0-rc.4) + - RCTRequired + - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-graphics (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) - - React-jsiexecutor (= 0.73.0-rc.4) + - React-graphics + - React-jsi + - React-jsiexecutor - React-logger - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.73.0-rc.4) - - React-Fabric/scheduler (0.73.0-rc.4): + - ReactCommon/turbomodule/core + - React-Fabric/scheduler (0.73.0): - DoubleConversion - fmt (~> 6.2.1) - glog - hermes-engine - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired (= 0.73.0-rc.4) - - RCTTypeSafety (= 0.73.0-rc.4) + - RCTRequired + - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-graphics (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) - - React-jsiexecutor (= 0.73.0-rc.4) + - React-graphics + - React-jsi + - React-jsiexecutor - React-logger - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.73.0-rc.4) - - React-Fabric/telemetry (0.73.0-rc.4): + - ReactCommon/turbomodule/core + - React-Fabric/telemetry (0.73.0): - DoubleConversion - fmt (~> 6.2.1) - glog - hermes-engine - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired (= 0.73.0-rc.4) - - RCTTypeSafety (= 0.73.0-rc.4) + - RCTRequired + - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-graphics (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) - - React-jsiexecutor (= 0.73.0-rc.4) + - React-graphics + - React-jsi + - React-jsiexecutor - React-logger - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.73.0-rc.4) - - React-Fabric/templateprocessor (0.73.0-rc.4): + - ReactCommon/turbomodule/core + - React-Fabric/templateprocessor (0.73.0): - DoubleConversion - fmt (~> 6.2.1) - glog - hermes-engine - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired (= 0.73.0-rc.4) - - RCTTypeSafety (= 0.73.0-rc.4) + - RCTRequired + - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-graphics (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) - - React-jsiexecutor (= 0.73.0-rc.4) + - React-graphics + - React-jsi + - React-jsiexecutor - React-logger - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.73.0-rc.4) - - React-Fabric/textlayoutmanager (0.73.0-rc.4): + - ReactCommon/turbomodule/core + - React-Fabric/textlayoutmanager (0.73.0): - DoubleConversion - fmt (~> 6.2.1) - glog - hermes-engine - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired (= 0.73.0-rc.4) - - RCTTypeSafety (= 0.73.0-rc.4) + - RCTRequired + - RCTTypeSafety - React-Core - React-cxxreact - React-debug - React-Fabric/uimanager - - React-graphics (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) - - React-jsiexecutor (= 0.73.0-rc.4) + - React-graphics + - React-jsi + - React-jsiexecutor - React-logger - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.73.0-rc.4) - - React-Fabric/uimanager (0.73.0-rc.4): + - ReactCommon/turbomodule/core + - React-Fabric/uimanager (0.73.0): - DoubleConversion - fmt (~> 6.2.1) - glog - hermes-engine - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired (= 0.73.0-rc.4) - - RCTTypeSafety (= 0.73.0-rc.4) + - RCTRequired + - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-graphics (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) - - React-jsiexecutor (= 0.73.0-rc.4) + - React-graphics + - React-jsi + - React-jsiexecutor - React-logger - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.73.0-rc.4) - - React-FabricImage (0.73.0-rc.4): + - ReactCommon/turbomodule/core + - React-FabricImage (0.73.0): - DoubleConversion - fmt (~> 6.2.1) - glog - hermes-engine - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired (= 0.73.0-rc.4) - - RCTTypeSafety (= 0.73.0-rc.4) + - RCTRequired (= 0.73.0) + - RCTTypeSafety (= 0.73.0) - React-Fabric - - React-graphics (= 0.73.0-rc.4) + - React-graphics - React-ImageManager - - React-jsi (= 0.73.0-rc.4) - - React-jsiexecutor (= 0.73.0-rc.4) + - React-jsi + - React-jsiexecutor (= 0.73.0) - React-logger - React-rendererdebug - React-utils - - ReactCommon/turbomodule/core (= 0.73.0-rc.4) + - ReactCommon - Yoga - - React-graphics (0.73.0-rc.4): + - React-graphics (0.73.0): - glog - RCT-Folly/Fabric (= 2022.05.16.00) - - React-Core/Default (= 0.73.0-rc.4) + - React-Core/Default (= 0.73.0) - React-utils - - React-hermes (0.73.0-rc.4): + - React-hermes (0.73.0): - DoubleConversion - fmt (~> 6.2.1) - glog - hermes-engine - RCT-Folly (= 2022.05.16.00) - RCT-Folly/Futures (= 2022.05.16.00) - - React-cxxreact (= 0.73.0-rc.4) + - React-cxxreact (= 0.73.0) - React-jsi - - React-jsiexecutor (= 0.73.0-rc.4) - - React-jsinspector (= 0.73.0-rc.4) - - React-perflogger (= 0.73.0-rc.4) - - React-ImageManager (0.73.0-rc.4): + - React-jsiexecutor (= 0.73.0) + - React-jsinspector (= 0.73.0) + - React-perflogger (= 0.73.0) + - React-ImageManager (0.73.0): - glog - RCT-Folly/Fabric - React-Core/Default - React-debug - React-Fabric - - React-RCTImage + - React-graphics - React-rendererdebug - React-utils - - React-jserrorhandler (0.73.0-rc.4): + - React-jserrorhandler (0.73.0): - RCT-Folly/Fabric (= 2022.05.16.00) - - React-jsi (= 0.73.0-rc.4) + - React-debug + - React-jsi - React-Mapbuffer - - React-jsi (0.73.0-rc.4): + - React-jsi (0.73.0): - boost (= 1.83.0) - DoubleConversion - fmt (~> 6.2.1) - glog + - hermes-engine - RCT-Folly (= 2022.05.16.00) - - React-jsiexecutor (0.73.0-rc.4): + - React-jsiexecutor (0.73.0): - DoubleConversion - fmt (~> 6.2.1) - glog - hermes-engine - RCT-Folly (= 2022.05.16.00) - - React-cxxreact (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) - - React-perflogger (= 0.73.0-rc.4) - - React-jsinspector (0.73.0-rc.4) - - React-logger (0.73.0-rc.4): + - React-cxxreact (= 0.73.0) + - React-jsi (= 0.73.0) + - React-perflogger (= 0.73.0) + - React-jsinspector (0.73.0) + - React-logger (0.73.0): - glog - - React-Mapbuffer (0.73.0-rc.4): + - React-Mapbuffer (0.73.0): - glog - React-debug - - react-native-safe-area-context (4.7.3): + - react-native-safe-area-context (4.8.0): - React-Core - - React-nativeconfig (0.73.0-rc.4) - - React-NativeModulesApple (0.73.0-rc.4): + - React-nativeconfig (0.73.0) + - React-NativeModulesApple (0.73.0): - glog - hermes-engine - React-callinvoker @@ -963,17 +966,18 @@ PODS: - React-runtimeexecutor - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - React-perflogger (0.73.0-rc.4) - - React-RCTActionSheet (0.73.0-rc.4): - - React-Core/RCTActionSheetHeaders (= 0.73.0-rc.4) - - React-RCTAnimation (0.73.0-rc.4): + - React-perflogger (0.73.0) + - React-RCTActionSheet (0.73.0): + - React-Core/RCTActionSheetHeaders (= 0.73.0) + - React-RCTAnimation (0.73.0): - RCT-Folly (= 2022.05.16.00) - - RCTTypeSafety (= 0.73.0-rc.4) - - React-Codegen (= 0.73.0-rc.4) - - React-Core/RCTAnimationHeaders (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) - - ReactCommon/turbomodule/core (= 0.73.0-rc.4) - - React-RCTAppDelegate (0.73.0-rc.4): + - RCTTypeSafety + - React-Codegen + - React-Core/RCTAnimationHeaders + - React-jsi + - React-NativeModulesApple + - ReactCommon + - React-RCTAppDelegate (0.73.0): - RCT-Folly - RCTRequired - RCTTypeSafety @@ -986,132 +990,155 @@ PODS: - React-RCTImage - React-RCTNetwork - React-runtimescheduler - - ReactCommon/turbomodule/core - - React-RCTBlob (0.73.0-rc.4): + - ReactCommon + - React-RCTBlob (0.73.0): - hermes-engine - RCT-Folly (= 2022.05.16.00) - - React-Codegen (= 0.73.0-rc.4) - - React-Core/RCTBlobHeaders (= 0.73.0-rc.4) - - React-Core/RCTWebSocket (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) - - React-RCTNetwork (= 0.73.0-rc.4) - - ReactCommon/turbomodule/core (= 0.73.0-rc.4) - - React-RCTFabric (0.73.0-rc.4): + - React-Codegen + - React-Core/RCTBlobHeaders + - React-Core/RCTWebSocket + - React-jsi + - React-NativeModulesApple + - React-RCTNetwork + - ReactCommon + - React-RCTFabric (0.73.0): - glog - hermes-engine - RCT-Folly/Fabric (= 2022.05.16.00) - - React-Core (= 0.73.0-rc.4) + - React-Core - React-debug - - React-Fabric (= 0.73.0-rc.4) + - React-Fabric - React-FabricImage - React-graphics - React-ImageManager + - React-jsi - React-nativeconfig - - React-RCTImage (= 0.73.0-rc.4) + - React-RCTImage - React-RCTText - React-rendererdebug - React-runtimescheduler - React-utils - Yoga - - React-RCTImage (0.73.0-rc.4): + - React-RCTImage (0.73.0): - RCT-Folly (= 2022.05.16.00) - - RCTTypeSafety (= 0.73.0-rc.4) - - React-Codegen (= 0.73.0-rc.4) - - React-Core/RCTImageHeaders (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) - - React-RCTNetwork (= 0.73.0-rc.4) - - ReactCommon/turbomodule/core (= 0.73.0-rc.4) - - React-RCTLinking (0.73.0-rc.4): - - React-Codegen (= 0.73.0-rc.4) - - React-Core/RCTLinkingHeaders (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) - - ReactCommon/turbomodule/core (= 0.73.0-rc.4) - - React-RCTNetwork (0.73.0-rc.4): + - RCTTypeSafety + - React-Codegen + - React-Core/RCTImageHeaders + - React-jsi + - React-NativeModulesApple + - React-RCTNetwork + - ReactCommon + - React-RCTLinking (0.73.0): + - React-Codegen + - React-Core/RCTLinkingHeaders (= 0.73.0) + - React-jsi (= 0.73.0) + - React-NativeModulesApple + - ReactCommon + - ReactCommon/turbomodule/core (= 0.73.0) + - React-RCTNetwork (0.73.0): - RCT-Folly (= 2022.05.16.00) - - RCTTypeSafety (= 0.73.0-rc.4) - - React-Codegen (= 0.73.0-rc.4) - - React-Core/RCTNetworkHeaders (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) - - ReactCommon/turbomodule/core (= 0.73.0-rc.4) - - React-RCTSettings (0.73.0-rc.4): + - RCTTypeSafety + - React-Codegen + - React-Core/RCTNetworkHeaders + - React-jsi + - React-NativeModulesApple + - ReactCommon + - React-RCTSettings (0.73.0): - RCT-Folly (= 2022.05.16.00) - - RCTTypeSafety (= 0.73.0-rc.4) - - React-Codegen (= 0.73.0-rc.4) - - React-Core/RCTSettingsHeaders (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) - - ReactCommon/turbomodule/core (= 0.73.0-rc.4) - - React-RCTText (0.73.0-rc.4): - - React-Core/RCTTextHeaders (= 0.73.0-rc.4) + - RCTTypeSafety + - React-Codegen + - React-Core/RCTSettingsHeaders + - React-jsi + - React-NativeModulesApple + - ReactCommon + - React-RCTText (0.73.0): + - React-Core/RCTTextHeaders (= 0.73.0) - Yoga - - React-RCTVibration (0.73.0-rc.4): + - React-RCTVibration (0.73.0): - RCT-Folly (= 2022.05.16.00) - - React-Codegen (= 0.73.0-rc.4) - - React-Core/RCTVibrationHeaders (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) - - ReactCommon/turbomodule/core (= 0.73.0-rc.4) - - React-rendererdebug (0.73.0-rc.4): + - React-Codegen + - React-Core/RCTVibrationHeaders + - React-jsi + - React-NativeModulesApple + - ReactCommon + - React-rendererdebug (0.73.0): - DoubleConversion - fmt (~> 6.2.1) - RCT-Folly (= 2022.05.16.00) - React-debug - - React-rncore (0.73.0-rc.4) - - React-runtimeexecutor (0.73.0-rc.4): - - React-jsi (= 0.73.0-rc.4) - - React-runtimescheduler (0.73.0-rc.4): + - React-rncore (0.73.0) + - React-runtimeexecutor (0.73.0): + - React-jsi (= 0.73.0) + - React-runtimescheduler (0.73.0): - glog - hermes-engine - RCT-Folly (= 2022.05.16.00) - React-callinvoker + - React-cxxreact - React-debug - React-jsi - React-rendererdebug - React-runtimeexecutor - React-utils - - React-utils (0.73.0-rc.4): + - React-utils (0.73.0): - glog - RCT-Folly (= 2022.05.16.00) - React-debug - - ReactCommon/turbomodule/bridging (0.73.0-rc.4): + - ReactCommon (0.73.0): + - React-logger (= 0.73.0) + - ReactCommon/turbomodule (= 0.73.0) + - ReactCommon/turbomodule (0.73.0): - DoubleConversion - fmt (~> 6.2.1) - glog - hermes-engine - RCT-Folly (= 2022.05.16.00) - - React-callinvoker (= 0.73.0-rc.4) - - React-cxxreact (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) - - React-logger (= 0.73.0-rc.4) - - React-perflogger (= 0.73.0-rc.4) - - ReactCommon/turbomodule/core (0.73.0-rc.4): + - React-callinvoker (= 0.73.0) + - React-cxxreact (= 0.73.0) + - React-jsi (= 0.73.0) + - React-logger (= 0.73.0) + - React-perflogger (= 0.73.0) + - ReactCommon/turbomodule/bridging (= 0.73.0) + - ReactCommon/turbomodule/core (= 0.73.0) + - ReactCommon/turbomodule/bridging (0.73.0): - DoubleConversion - fmt (~> 6.2.1) - glog - hermes-engine - RCT-Folly (= 2022.05.16.00) - - React-callinvoker (= 0.73.0-rc.4) - - React-cxxreact (= 0.73.0-rc.4) - - React-jsi (= 0.73.0-rc.4) - - React-logger (= 0.73.0-rc.4) - - React-perflogger (= 0.73.0-rc.4) - - RNCAsyncStorage (1.19.3): + - React-callinvoker (= 0.73.0) + - React-cxxreact (= 0.73.0) + - React-jsi (= 0.73.0) + - React-logger (= 0.73.0) + - React-perflogger (= 0.73.0) + - ReactCommon/turbomodule/core (0.73.0): + - DoubleConversion + - fmt (~> 6.2.1) + - glog + - hermes-engine + - RCT-Folly (= 2022.05.16.00) + - React-callinvoker (= 0.73.0) + - React-cxxreact (= 0.73.0) + - React-jsi (= 0.73.0) + - React-logger (= 0.73.0) + - React-perflogger (= 0.73.0) + - RNCAsyncStorage (1.19.5): - React-Core - - rnmapbox-maps (10.1.0-beta.20): - - MapboxMaps (~> 10.16.1) + - rnmapbox-maps (10.1.4): + - MapboxMaps (~> 10.16.3) - React - React-Core - - rnmapbox-maps/DynamicLibrary (= 10.1.0-beta.20) + - rnmapbox-maps/DynamicLibrary (= 10.1.4) - Turf - - rnmapbox-maps/DynamicLibrary (10.1.0-beta.20): - - MapboxMaps (~> 10.16.1) + - rnmapbox-maps/DynamicLibrary (10.1.4): + - MapboxMaps (~> 10.16.3) - React - React-Core - Turf - - RNScreens (3.27.0): + - RNScreens (3.29.0): - glog - RCT-Folly (= 2022.05.16.00) - React-Core - - RNSVG (12.5.1): - - React-Core - RNVectorIcons (9.2.0): - React-Core - SocketRocket (0.6.1) @@ -1195,7 +1222,6 @@ DEPENDENCIES: - "RNCAsyncStorage (from `../node_modules/@react-native-async-storage/async-storage`)" - rnmapbox-maps (from `../..`) - RNScreens (from `../node_modules/react-native-screens`) - - RNSVG (from `../node_modules/react-native-svg`) - RNVectorIcons (from `../node_modules/react-native-vector-icons`) - Yoga (from `../node_modules/react-native/ReactCommon/yoga`) @@ -1233,7 +1259,7 @@ EXTERNAL SOURCES: :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec" hermes-engine: :podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec" - :tag: hermes-2023-09-26-RNv0.73.0-ee2922a50fb719bdb378025d95dbd32ad93cd679 + :tag: hermes-2023-11-17-RNv0.73.0-21043a3fc062be445e56a2c10ecd8be028dd9cc5 RCT-Folly: :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec" RCTRequired: @@ -1324,8 +1350,6 @@ EXTERNAL SOURCES: :path: "../.." RNScreens: :path: "../node_modules/react-native-screens" - RNSVG: - :path: "../node_modules/react-native-svg" RNVectorIcons: :path: "../node_modules/react-native-vector-icons" Yoga: @@ -1334,9 +1358,9 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: boost: 26fad476bfa736552bbfa698a06cc530475c1505 CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99 - DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54 - FBLazyVector: c30d7c84d9d25e99f0d6832ae0849f73a4a69658 - FBReactNativeSpec: c0eeaaead2d93a2558ace9a2b2d597d053c6506b + DoubleConversion: fea03f2699887d960129cc54bba7e52542b6f953 + FBLazyVector: 39ba45baf4e398618f8b3a4bb6ba8fcdb7fc2133 + FBReactNativeSpec: 20cfca68498e27879514790359289d1df2b52c56 Flipper: c7a0093234c4bdd456e363f2f19b2e4b27652d44 Flipper-Boost-iOSX: fd1e2b8cbef7e662a122412d7ac5f5bea715403c Flipper-DoubleConversion: 2dc99b02f658daf147069aad9dbd29d8feb06d30 @@ -1346,65 +1370,64 @@ SPEC CHECKSUMS: Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9 FlipperKit: 37525a5d056ef9b93d1578e04bc3ea1de940094f fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9 - glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b - hermes-engine: c8106a2b9250a6fd1157c520ed0928cddb0bb90e + glog: c5d68082e772fa1c511173d6b30a9de2c05a69a2 + hermes-engine: 34304f8c6e8fa68f63a5fe29af82f227d817d7a7 libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913 - MapboxCommon: b2c348867dfed7d7a23545e6c2024d712bfda10f - MapboxCoreMaps: c66f482b5ea983cf873122853c4ee94c159bec43 - MapboxMaps: fdbe05e3899abd24f31a7f91789586e44e57f7fc + MapboxCommon: 677dd4449e9f7d863a4712cf271c198ed1753494 + MapboxCoreMaps: 304d4ff1de0b5873e4ce359a7ed107fe65f89bd6 + MapboxMaps: 89322569ce8b0e98ed2a84c3289e6bc402df6073 MapboxMobileEvents: de50b3a4de180dd129c326e09cd12c8adaaa46d6 OpenSSL-Universal: ebc357f1e6bc71fa463ccb2fe676756aff50e88c RCT-Folly: 7169b2b1c44399c76a47b5deaaba715eeeb476c0 - RCTRequired: 473398596b8d6758a8a37bd6ceb233fd8fd4fe2f - RCTTypeSafety: beea8b7842072402d6cd0d183bd0e6f8022c4124 - React: 84cf182a117fa49e2396786a9388de4b2ba39fa2 - React-callinvoker: b37c7b352ee1971a262ed3c14cd96845f3465238 - React-Codegen: eba751f9420ee086f48fb83ae22094617cda9974 - React-Core: ab44b04d034eeb52243f2d7355213d25bf3bed9c - React-CoreModules: 47e13b338f34d10849aa51539e4f22f346cfb48b - React-cxxreact: 4cb4dbd26b53ce851be7d1c5012c52bf3125962c - React-debug: 470ca201def3864f82982818ca639ec821189faa - React-Fabric: a34fde7a2323879ac15ea3c25f3ffd0fc6c8e2b4 - React-FabricImage: 93c55bd20e78f718e3bf424a91ced982235e6be0 - React-graphics: 9947ecac6315514eba8c7aa30bcc9292764956ac - React-hermes: 799cbe702d008535f872268527f06e7ef5037351 - React-ImageManager: 4fe632da77c07e0890a6265b36a669eed04748b6 - React-jserrorhandler: 9b2b96bbbe015c7039657794a5fdab40556e893e - React-jsi: dfdc99e55ef4464be391886a7e0b8e0841d77a2e - React-jsiexecutor: 0c0bf4687e084cf7a1da51007ca52cb61205fe7a - React-jsinspector: 5548901692ef4a1943f7f4208abbf77a35c58bc7 - React-logger: 5761d3b499c34ff905d47eba897ccb033242eb57 - React-Mapbuffer: 9bfeeae0a1637598fc6697ec674cfbecb581af7d - react-native-safe-area-context: 238cd8b619e05cb904ccad97ef42e84d1b5ae6ec - React-nativeconfig: b799490d1edf76fe53feebab3fb6385b26fcc740 - React-NativeModulesApple: 47a1d38c3b7600d989fd4b963192165ed10e7c6a - React-perflogger: 77f7f259432c197d905edcb71fecadf1f5e1e720 - React-RCTActionSheet: f7df3632f0c30e96fef8afd4adeaef8fde1f106d - React-RCTAnimation: e0b1e4aa21057e8d47cf504c1c507de58450a744 - React-RCTAppDelegate: b7f2a890ed6f97fb9ceea3bfca19cbdd7ab9be42 - React-RCTBlob: 071dd14ec9662c6b12a4757c44f80d8e7ba63df4 - React-RCTFabric: 50b8b2681e979cd4ea2d69b94786863700d21ac4 - React-RCTImage: 5be79d2ba81ff048f13c57775cf6eed070ff415b - React-RCTLinking: 01ec371c6da4d20f3f765da769ef85d9603beb4f - React-RCTNetwork: d89d00d31f7351b59b53a098940220e7b95cd17b - React-RCTSettings: a8a25b81e5fb1ecc067823bdaf0256f8c3b52a78 - React-RCTText: d1ded63ea01f97c16dc3bfbe4703b29d3155eb42 - React-RCTVibration: a8733c554c5ba80004e8e0fb27249e02fec469da - React-rendererdebug: cabb2a6d356437ee455481c749d566c617b05bb2 - React-rncore: 02fd3752861bca31322f789576f9320783c6ece5 - React-runtimeexecutor: 6e796f5a1d0b3eb513f4cbf87c5dfc41be6ce784 - React-runtimescheduler: 1c46d10f8d34f8cfb1617acbfa0dc0adbb595dae - React-utils: 90f8d89937d2e04a941b9ce91b241034f5b4115a - ReactCommon: 1be3b68d3f445d84dc3a8b10f38b1ef3a1fae6fc - RNCAsyncStorage: c913ede1fa163a71cea118ed4670bbaaa4b511bb - rnmapbox-maps: 2d4dda508f62e5f0511f62ba0b27adfc64a7727a - RNScreens: 5f4df9babb21d30723580377b5f52d9f9baf0005 - RNSVG: d7d7bc8229af3842c9cfc3a723c815a52cdd1105 + RCTRequired: 5e3631b27c08716986980ef23eed8abdee1cdcaf + RCTTypeSafety: 02a64828b0b428eb4f63de1397d44fb2d0747e85 + React: df5dbfbd10c5bd8d4bcb49bd9830551533e11c7e + React-callinvoker: dc0dff59e8d3d1fe4cd9fb5f120f82a775d2a325 + React-Codegen: 88bf5d1e29db28c1c9b88fe909f073be6c9f769d + React-Core: 276ccbbf282538138f4429313bb1200a15067c6e + React-CoreModules: 64747180c0329bebed8307ffdc97c331220277a6 + React-cxxreact: 84d98283f701bae882dcd3ad7c573a02f4c9d5c0 + React-debug: 443cf46ade52f3555dd1ec709718793490ac5edc + React-Fabric: 4c877c032b3acc07ed3f2e46ae25b5a39af89382 + React-FabricImage: c46c47ea3c672b9fadd6850795a51d3d9e5df712 + React-graphics: e1cff03acf09098513642535324432d495b6425c + React-hermes: e3356f82c76c5c41688a7e08ced2254a944501c4 + React-ImageManager: c783771479ab0bf1e3dbe711cc8b9f5b0f65972b + React-jserrorhandler: 7cd93ce5165e5d66c87b6f612f94e5642f5c5028 + React-jsi: 81b5fe94500e69051c2f3a775308afaa53e2608b + React-jsiexecutor: 4f790f865ad23fa949396c1a103d06867c0047ed + React-jsinspector: 9f6fb9ed9f03a0fb961ab8dc2e0e0ee0dc729e77 + React-logger: 008caec0d6a587abc1e71be21bfac5ba1662fe6a + React-Mapbuffer: 58fe558faf52ecde6705376700f848d0293d1cef + react-native-safe-area-context: d1c8161a1e9560f7066e8926a7d825eb57c5dab5 + React-nativeconfig: a063483672b8add47a4875b0281e202908ff6747 + React-NativeModulesApple: 169506a5fd708ab22811f76ee06a976595c367a1 + React-perflogger: b61e5db8e5167f5e70366e820766c492847c082e + React-RCTActionSheet: dcaecff7ffc1888972cd1c1935751ff3bce1e0c1 + React-RCTAnimation: 24b8ae7ebc897ba3f33a93a020bbc66ab7863f5d + React-RCTAppDelegate: 661fc59d833e6727cc8c7e36bf8664215e5c277f + React-RCTBlob: 112880abc731c5a0d8eefb5919a591ad30f630e8 + React-RCTFabric: a0289e3bf73da8c03b68b4e9733ba497b021de45 + React-RCTImage: b8065c1b51cc6c2ff58ad81001619352518dd793 + React-RCTLinking: fdf9f43f8bd763d178281a079700105674953849 + React-RCTNetwork: ad3d988e425288492510ee37c9dcdf8259566214 + React-RCTSettings: 67c3876f2775d1cf86298f657e6006afc2a2e4cf + React-RCTText: 671518da40bd548943ec12ee6a60f733a751e2e9 + React-RCTVibration: 60bc4d01d7d8ab7cff14852a195a7fa93b38e1f3 + React-rendererdebug: 6aaab394c9fefe395ef61809580a9bf63b98fd3e + React-rncore: 6680f0ebb941e256af7dc92c6a512356e77bfea7 + React-runtimeexecutor: 2ca6f02d3fd6eea5b9575eb30720cf12c5d89906 + React-runtimescheduler: 77543c74df984ce56c09d49d427149c53784aaf6 + React-utils: 42708ea436853045ef1eaff29996813d9fbbe209 + ReactCommon: 851280fb976399ca1aabc74cc2c3612069ea70a2 + RNCAsyncStorage: f2974eca860c16a3e56eea5771fda8d12e2d2057 + rnmapbox-maps: dc170ff38f6d00ce2fa489d70cb56f933994fef7 + RNScreens: b582cb834dc4133307562e930e8fa914b8c04ef2 RNVectorIcons: fcc2f6cb32f5735b586e66d14103a74ce6ad61f8 SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17 Turf: 13d1a92d969ca0311bbc26e8356cca178ce95da2 - Yoga: 3125dd507e33de31a96f0723e36fd92417844521 + Yoga: 20d6a900dcc8d61d5e3b799bbf627cc34474a8c4 -PODFILE CHECKSUM: 66263116012db7460f1a97fd1f6191f7adec9c57 +PODFILE CHECKSUM: e8746449227564eeceb4b6f3c93c930f2707aa0c COCOAPODS: 1.14.2