From c7ba66df8b1633b643dd380a1a6ca9e6714ae795 Mon Sep 17 00:00:00 2001
From: shirakaba <14055146+shirakaba@users.noreply.github.com>
Date: Wed, 30 Oct 2024 13:40:10 +0900
Subject: [PATCH] Init react-native-macos@0.75 project
I temporarily renamed the "name" field in package.json to "RNSACExample", then ran `npx react-native-macos-init` to generate a project by that name.
---
example/macos/.gitignore | 2 +
example/macos/.xcode.env | 1 +
example/macos/Podfile | 24 +
example/macos/Podfile.lock | 1384 +++++++++++++++++
example/macos/PrivacyInfo.xcprivacy | 37 +
.../macos/RNSACExample-macOS/AppDelegate.h | 6 +
.../macos/RNSACExample-macOS/AppDelegate.mm | 40 +
.../AppIcon.appiconset/Contents.json | 58 +
.../Assets.xcassets/Contents.json | 6 +
.../Base.lproj/Main.storyboard | 684 ++++++++
example/macos/RNSACExample-macOS/Info.plist | 47 +
.../RNSACExample.entitlements | 12 +
example/macos/RNSACExample-macOS/main.m | 5 +
.../RNSACExample.xcodeproj/project.pbxproj | 581 +++++++
.../xcschemes/RNSACExample-macOS.xcscheme | 78 +
.../contents.xcworkspacedata | 10 +
example/package.json | 1 +
17 files changed, 2976 insertions(+)
create mode 100644 example/macos/.gitignore
create mode 100644 example/macos/.xcode.env
create mode 100644 example/macos/Podfile
create mode 100644 example/macos/Podfile.lock
create mode 100644 example/macos/PrivacyInfo.xcprivacy
create mode 100644 example/macos/RNSACExample-macOS/AppDelegate.h
create mode 100644 example/macos/RNSACExample-macOS/AppDelegate.mm
create mode 100644 example/macos/RNSACExample-macOS/Assets.xcassets/AppIcon.appiconset/Contents.json
create mode 100644 example/macos/RNSACExample-macOS/Assets.xcassets/Contents.json
create mode 100644 example/macos/RNSACExample-macOS/Base.lproj/Main.storyboard
create mode 100644 example/macos/RNSACExample-macOS/Info.plist
create mode 100644 example/macos/RNSACExample-macOS/RNSACExample.entitlements
create mode 100644 example/macos/RNSACExample-macOS/main.m
create mode 100644 example/macos/RNSACExample.xcodeproj/project.pbxproj
create mode 100644 example/macos/RNSACExample.xcodeproj/xcshareddata/xcschemes/RNSACExample-macOS.xcscheme
create mode 100644 example/macos/RNSACExample.xcworkspace/contents.xcworkspacedata
diff --git a/example/macos/.gitignore b/example/macos/.gitignore
new file mode 100644
index 00000000..daba1410
--- /dev/null
+++ b/example/macos/.gitignore
@@ -0,0 +1,2 @@
+# CocoaPods
+Pods/
diff --git a/example/macos/.xcode.env b/example/macos/.xcode.env
new file mode 100644
index 00000000..772b339b
--- /dev/null
+++ b/example/macos/.xcode.env
@@ -0,0 +1 @@
+export NODE_BINARY=$(command -v node)
diff --git a/example/macos/Podfile b/example/macos/Podfile
new file mode 100644
index 00000000..1419d2ca
--- /dev/null
+++ b/example/macos/Podfile
@@ -0,0 +1,24 @@
+require_relative '../node_modules/react-native-macos/scripts/react_native_pods'
+require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
+
+prepare_react_native_project!
+
+target 'RNSACExample-macOS' do
+ platform :macos, '10.15'
+ use_native_modules!
+
+ # Flags change depending on the env values.
+ flags = get_default_flags()
+
+ use_react_native!(
+ :path => '../node_modules/react-native-macos',
+ :hermes_enabled => false,
+ :fabric_enabled => ENV['RCT_NEW_ARCH_ENABLED'] == '1',
+ # An absolute path to your application root.
+ :app_path => "#{Pod::Config.instance.installation_root}/.."
+ )
+
+ post_install do |installer|
+ react_native_post_install(installer)
+ end
+end
diff --git a/example/macos/Podfile.lock b/example/macos/Podfile.lock
new file mode 100644
index 00000000..aa0367c8
--- /dev/null
+++ b/example/macos/Podfile.lock
@@ -0,0 +1,1384 @@
+PODS:
+ - boost (1.83.0)
+ - DoubleConversion (1.1.6)
+ - FBLazyVector (0.74.15)
+ - fmt (9.1.0)
+ - glog (0.3.5)
+ - RCT-Folly (2024.01.01.00):
+ - boost
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly/Default (= 2024.01.01.00)
+ - RCT-Folly/Default (2024.01.01.00):
+ - boost
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly/Fabric (2024.01.01.00):
+ - boost
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCTDeprecation (0.74.15)
+ - RCTRequired (0.74.15)
+ - RCTTypeSafety (0.74.15):
+ - FBLazyVector (= 0.74.15)
+ - RCTRequired (= 0.74.15)
+ - React-Core (= 0.74.15)
+ - React (0.74.15):
+ - React-Core (= 0.74.15)
+ - React-Core/DevSupport (= 0.74.15)
+ - React-Core/RCTWebSocket (= 0.74.15)
+ - React-RCTActionSheet (= 0.74.15)
+ - React-RCTAnimation (= 0.74.15)
+ - React-RCTBlob (= 0.74.15)
+ - React-RCTImage (= 0.74.15)
+ - React-RCTLinking (= 0.74.15)
+ - React-RCTNetwork (= 0.74.15)
+ - React-RCTSettings (= 0.74.15)
+ - React-RCTText (= 0.74.15)
+ - React-RCTVibration (= 0.74.15)
+ - React-callinvoker (0.74.15)
+ - React-Codegen (0.74.15):
+ - DoubleConversion
+ - glog
+ - RCT-Folly
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-FabricImage
+ - React-featureflags
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-NativeModulesApple
+ - React-rendererdebug
+ - React-utils
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - React-Core (0.74.15):
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
+ - React-Core/Default (= 0.74.15)
+ - React-cxxreact
+ - React-featureflags
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.0)
+ - Yoga
+ - React-Core/CoreModulesHeaders (0.74.15):
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.0)
+ - Yoga
+ - React-Core/Default (0.74.15):
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
+ - React-cxxreact
+ - React-featureflags
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.0)
+ - Yoga
+ - React-Core/DevSupport (0.74.15):
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
+ - React-Core/Default (= 0.74.15)
+ - React-Core/RCTWebSocket (= 0.74.15)
+ - React-cxxreact
+ - React-featureflags
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.0)
+ - Yoga
+ - React-Core/RCTActionSheetHeaders (0.74.15):
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.0)
+ - Yoga
+ - React-Core/RCTAnimationHeaders (0.74.15):
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.0)
+ - Yoga
+ - React-Core/RCTBlobHeaders (0.74.15):
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.0)
+ - Yoga
+ - React-Core/RCTImageHeaders (0.74.15):
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.0)
+ - Yoga
+ - React-Core/RCTLinkingHeaders (0.74.15):
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.0)
+ - Yoga
+ - React-Core/RCTNetworkHeaders (0.74.15):
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.0)
+ - Yoga
+ - React-Core/RCTSettingsHeaders (0.74.15):
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.0)
+ - Yoga
+ - React-Core/RCTTextHeaders (0.74.15):
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.0)
+ - Yoga
+ - React-Core/RCTVibrationHeaders (0.74.15):
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.0)
+ - Yoga
+ - React-Core/RCTWebSocket (0.74.15):
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
+ - React-Core/Default (= 0.74.15)
+ - React-cxxreact
+ - React-featureflags
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.0)
+ - Yoga
+ - React-CoreModules (0.74.15):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTTypeSafety (= 0.74.15)
+ - React-Codegen
+ - React-Core/CoreModulesHeaders (= 0.74.15)
+ - React-jsi (= 0.74.15)
+ - React-jsinspector
+ - React-NativeModulesApple
+ - React-RCTBlob
+ - React-RCTImage (= 0.74.15)
+ - ReactCommon
+ - SocketRocket (= 0.7.0)
+ - React-cxxreact (0.74.15):
+ - boost (= 1.83.0)
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - React-callinvoker (= 0.74.15)
+ - React-debug (= 0.74.15)
+ - React-jsi (= 0.74.15)
+ - React-jsinspector
+ - React-logger (= 0.74.15)
+ - React-perflogger (= 0.74.15)
+ - React-runtimeexecutor (= 0.74.15)
+ - React-debug (0.74.15)
+ - React-Fabric (0.74.15):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric/animations (= 0.74.15)
+ - React-Fabric/attributedstring (= 0.74.15)
+ - React-Fabric/componentregistry (= 0.74.15)
+ - React-Fabric/componentregistrynative (= 0.74.15)
+ - React-Fabric/components (= 0.74.15)
+ - React-Fabric/core (= 0.74.15)
+ - React-Fabric/imagemanager (= 0.74.15)
+ - React-Fabric/leakchecker (= 0.74.15)
+ - React-Fabric/mounting (= 0.74.15)
+ - React-Fabric/scheduler (= 0.74.15)
+ - React-Fabric/telemetry (= 0.74.15)
+ - React-Fabric/templateprocessor (= 0.74.15)
+ - React-Fabric/textlayoutmanager (= 0.74.15)
+ - React-Fabric/uimanager (= 0.74.15)
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/animations (0.74.15):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/attributedstring (0.74.15):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/componentregistry (0.74.15):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/componentregistrynative (0.74.15):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components (0.74.15):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric/components/inputaccessory (= 0.74.15)
+ - React-Fabric/components/legacyviewmanagerinterop (= 0.74.15)
+ - React-Fabric/components/modal (= 0.74.15)
+ - React-Fabric/components/rncore (= 0.74.15)
+ - React-Fabric/components/root (= 0.74.15)
+ - React-Fabric/components/safeareaview (= 0.74.15)
+ - React-Fabric/components/scrollview (= 0.74.15)
+ - React-Fabric/components/text (= 0.74.15)
+ - React-Fabric/components/textinput (= 0.74.15)
+ - React-Fabric/components/unimplementedview (= 0.74.15)
+ - React-Fabric/components/view (= 0.74.15)
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/inputaccessory (0.74.15):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/legacyviewmanagerinterop (0.74.15):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/modal (0.74.15):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/rncore (0.74.15):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/root (0.74.15):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/safeareaview (0.74.15):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/scrollview (0.74.15):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/text (0.74.15):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/textinput (0.74.15):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/unimplementedview (0.74.15):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/view (0.74.15):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-Fabric/core (0.74.15):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/imagemanager (0.74.15):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/leakchecker (0.74.15):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/mounting (0.74.15):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/scheduler (0.74.15):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/telemetry (0.74.15):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/templateprocessor (0.74.15):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/textlayoutmanager (0.74.15):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric/uimanager
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/uimanager (0.74.15):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-FabricImage (0.74.15):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired (= 0.74.15)
+ - RCTTypeSafety (= 0.74.15)
+ - React-Fabric
+ - React-graphics
+ - React-ImageManager
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor (= 0.74.15)
+ - React-logger
+ - React-rendererdebug
+ - React-utils
+ - ReactCommon
+ - Yoga
+ - React-featureflags (0.74.15)
+ - React-graphics (0.74.15):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - React-Core/Default (= 0.74.15)
+ - React-utils
+ - React-ImageManager (0.74.15):
+ - glog
+ - RCT-Folly/Fabric
+ - React-Core/Default
+ - React-debug
+ - React-Fabric
+ - React-graphics
+ - React-rendererdebug
+ - React-utils
+ - React-jsc (0.74.15):
+ - React-jsc/Fabric (= 0.74.15)
+ - React-jsi (= 0.74.15)
+ - React-jsc/Fabric (0.74.15):
+ - React-jsi (= 0.74.15)
+ - React-jserrorhandler (0.74.15):
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - React-debug
+ - React-jsi
+ - React-Mapbuffer
+ - React-jsi (0.74.15):
+ - boost (= 1.83.0)
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - React-jsiexecutor (0.74.15):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - React-cxxreact (= 0.74.15)
+ - React-jsi (= 0.74.15)
+ - React-jsinspector
+ - React-perflogger (= 0.74.15)
+ - React-jsinspector (0.74.15):
+ - DoubleConversion
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - React-featureflags
+ - React-jsi
+ - React-runtimeexecutor (= 0.74.15)
+ - React-jsitracing (0.74.15):
+ - React-jsi
+ - React-logger (0.74.15):
+ - glog
+ - React-Mapbuffer (0.74.15):
+ - glog
+ - React-debug
+ - react-native-safe-area-context (4.12.0):
+ - React-Core
+ - React-nativeconfig (0.74.15)
+ - React-NativeModulesApple (0.74.15):
+ - glog
+ - React-callinvoker
+ - React-Core
+ - React-cxxreact
+ - React-jsc
+ - React-jsi
+ - React-jsinspector
+ - React-runtimeexecutor
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - React-perflogger (0.74.15)
+ - React-RCTActionSheet (0.74.15):
+ - React-Core/RCTActionSheetHeaders (= 0.74.15)
+ - React-RCTAnimation (0.74.15):
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTTypeSafety
+ - React-Codegen
+ - React-Core/RCTAnimationHeaders
+ - React-jsi
+ - React-NativeModulesApple
+ - ReactCommon
+ - React-RCTAppDelegate (0.74.15):
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Codegen
+ - React-Core
+ - React-CoreModules
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsc
+ - React-nativeconfig
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-RCTImage
+ - React-RCTNetwork
+ - React-rendererdebug
+ - React-RuntimeApple
+ - React-RuntimeCore
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon
+ - React-RCTBlob (0.74.15):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - RCT-Folly (= 2024.01.01.00)
+ - React-Codegen
+ - React-Core/RCTBlobHeaders
+ - React-Core/RCTWebSocket
+ - React-jsi
+ - React-jsinspector
+ - React-NativeModulesApple
+ - React-RCTNetwork
+ - ReactCommon
+ - React-RCTFabric (0.74.15):
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-FabricImage
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsc
+ - React-jsi
+ - React-jsinspector
+ - React-nativeconfig
+ - React-RCTImage
+ - React-RCTText
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - Yoga
+ - React-RCTImage (0.74.15):
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTTypeSafety
+ - React-Codegen
+ - React-Core/RCTImageHeaders
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTNetwork
+ - ReactCommon
+ - React-RCTLinking (0.74.15):
+ - React-Codegen
+ - React-Core/RCTLinkingHeaders (= 0.74.15)
+ - React-jsi (= 0.74.15)
+ - React-NativeModulesApple
+ - ReactCommon
+ - ReactCommon/turbomodule/core (= 0.74.15)
+ - React-RCTNetwork (0.74.15):
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTTypeSafety
+ - React-Codegen
+ - React-Core/RCTNetworkHeaders
+ - React-jsi
+ - React-NativeModulesApple
+ - ReactCommon
+ - React-RCTSettings (0.74.15):
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTTypeSafety
+ - React-Codegen
+ - React-Core/RCTSettingsHeaders
+ - React-jsi
+ - React-NativeModulesApple
+ - ReactCommon
+ - React-RCTText (0.74.15):
+ - React-Core/RCTTextHeaders (= 0.74.15)
+ - Yoga
+ - React-RCTVibration (0.74.15):
+ - RCT-Folly (= 2024.01.01.00)
+ - React-Codegen
+ - React-Core/RCTVibrationHeaders
+ - React-jsi
+ - React-NativeModulesApple
+ - ReactCommon
+ - React-rendererdebug (0.74.15):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - RCT-Folly (= 2024.01.01.00)
+ - React-debug
+ - React-rncore (0.74.15)
+ - React-RuntimeApple (0.74.15):
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - React-callinvoker
+ - React-Core/Default
+ - React-CoreModules
+ - React-cxxreact
+ - React-jsc
+ - React-jserrorhandler
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-Mapbuffer
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-RuntimeCore
+ - React-runtimeexecutor
+ - React-utils
+ - React-RuntimeCore (0.74.15):
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - React-cxxreact
+ - React-featureflags
+ - React-jsc
+ - React-jserrorhandler
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - React-runtimeexecutor (0.74.15):
+ - React-jsi (= 0.74.15)
+ - React-runtimescheduler (0.74.15):
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - React-callinvoker
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-jsc
+ - React-jsi
+ - React-rendererdebug
+ - React-runtimeexecutor
+ - React-utils
+ - React-utils (0.74.15):
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - React-debug
+ - React-jsc
+ - React-jsi (= 0.74.15)
+ - ReactCommon (0.74.15):
+ - ReactCommon/turbomodule (= 0.74.15)
+ - ReactCommon/turbomodule (0.74.15):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - React-callinvoker (= 0.74.15)
+ - React-cxxreact (= 0.74.15)
+ - React-jsi (= 0.74.15)
+ - React-logger (= 0.74.15)
+ - React-perflogger (= 0.74.15)
+ - ReactCommon/turbomodule/bridging (= 0.74.15)
+ - ReactCommon/turbomodule/core (= 0.74.15)
+ - ReactCommon/turbomodule/bridging (0.74.15):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - React-callinvoker (= 0.74.15)
+ - React-cxxreact (= 0.74.15)
+ - React-jsi (= 0.74.15)
+ - React-logger (= 0.74.15)
+ - React-perflogger (= 0.74.15)
+ - ReactCommon/turbomodule/core (0.74.15):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - React-callinvoker (= 0.74.15)
+ - React-cxxreact (= 0.74.15)
+ - React-debug (= 0.74.15)
+ - React-jsi (= 0.74.15)
+ - React-logger (= 0.74.15)
+ - React-perflogger (= 0.74.15)
+ - React-utils (= 0.74.15)
+ - RNCAsyncStorage (1.23.1):
+ - React-Core
+ - RNGestureHandler (2.17.1):
+ - DoubleConversion
+ - glog
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Codegen
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - SocketRocket (0.7.0)
+ - Yoga (0.0.0)
+
+DEPENDENCIES:
+ - boost (from `../node_modules/react-native-macos/third-party-podspecs/boost.podspec`)
+ - DoubleConversion (from `../node_modules/react-native-macos/third-party-podspecs/DoubleConversion.podspec`)
+ - FBLazyVector (from `../node_modules/react-native-macos/Libraries/FBLazyVector`)
+ - fmt (from `../node_modules/react-native-macos/third-party-podspecs/fmt.podspec`)
+ - glog (from `../node_modules/react-native-macos/third-party-podspecs/glog.podspec`)
+ - RCT-Folly (from `../node_modules/react-native-macos/third-party-podspecs/RCT-Folly.podspec`)
+ - RCT-Folly/Fabric (from `../node_modules/react-native-macos/third-party-podspecs/RCT-Folly.podspec`)
+ - RCTDeprecation (from `../node_modules/react-native-macos/ReactApple/Libraries/RCTFoundation/RCTDeprecation`)
+ - RCTRequired (from `../node_modules/react-native-macos/Libraries/Required`)
+ - RCTTypeSafety (from `../node_modules/react-native-macos/Libraries/TypeSafety`)
+ - React (from `../node_modules/react-native-macos/`)
+ - React-callinvoker (from `../node_modules/react-native-macos/ReactCommon/callinvoker`)
+ - React-Codegen (from `build/generated/ios`)
+ - React-Core (from `../node_modules/react-native-macos/`)
+ - React-Core/RCTWebSocket (from `../node_modules/react-native-macos/`)
+ - React-CoreModules (from `../node_modules/react-native-macos/React/CoreModules`)
+ - React-cxxreact (from `../node_modules/react-native-macos/ReactCommon/cxxreact`)
+ - React-debug (from `../node_modules/react-native-macos/ReactCommon/react/debug`)
+ - React-Fabric (from `../node_modules/react-native-macos/ReactCommon`)
+ - React-FabricImage (from `../node_modules/react-native-macos/ReactCommon`)
+ - React-featureflags (from `../node_modules/react-native-macos/ReactCommon/react/featureflags`)
+ - React-graphics (from `../node_modules/react-native-macos/ReactCommon/react/renderer/graphics`)
+ - React-ImageManager (from `../node_modules/react-native-macos/ReactCommon/react/renderer/imagemanager/platform/ios`)
+ - React-jsc (from `../node_modules/react-native-macos/ReactCommon/jsc`)
+ - React-jserrorhandler (from `../node_modules/react-native-macos/ReactCommon/jserrorhandler`)
+ - React-jsi (from `../node_modules/react-native-macos/ReactCommon/jsi`)
+ - React-jsiexecutor (from `../node_modules/react-native-macos/ReactCommon/jsiexecutor`)
+ - React-jsinspector (from `../node_modules/react-native-macos/ReactCommon/jsinspector-modern`)
+ - React-jsitracing (from `../node_modules/react-native-macos/ReactCommon/hermes/executor/`)
+ - React-logger (from `../node_modules/react-native-macos/ReactCommon/logger`)
+ - React-Mapbuffer (from `../node_modules/react-native-macos/ReactCommon`)
+ - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
+ - React-nativeconfig (from `../node_modules/react-native-macos/ReactCommon`)
+ - React-NativeModulesApple (from `../node_modules/react-native-macos/ReactCommon/react/nativemodule/core/platform/ios`)
+ - React-perflogger (from `../node_modules/react-native-macos/ReactCommon/reactperflogger`)
+ - React-RCTActionSheet (from `../node_modules/react-native-macos/Libraries/ActionSheetIOS`)
+ - React-RCTAnimation (from `../node_modules/react-native-macos/Libraries/NativeAnimation`)
+ - React-RCTAppDelegate (from `../node_modules/react-native-macos/Libraries/AppDelegate`)
+ - React-RCTBlob (from `../node_modules/react-native-macos/Libraries/Blob`)
+ - React-RCTFabric (from `../node_modules/react-native-macos/React`)
+ - React-RCTImage (from `../node_modules/react-native-macos/Libraries/Image`)
+ - React-RCTLinking (from `../node_modules/react-native-macos/Libraries/LinkingIOS`)
+ - React-RCTNetwork (from `../node_modules/react-native-macos/Libraries/Network`)
+ - React-RCTSettings (from `../node_modules/react-native-macos/Libraries/Settings`)
+ - React-RCTText (from `../node_modules/react-native-macos/Libraries/Text`)
+ - React-RCTVibration (from `../node_modules/react-native-macos/Libraries/Vibration`)
+ - React-rendererdebug (from `../node_modules/react-native-macos/ReactCommon/react/renderer/debug`)
+ - React-rncore (from `../node_modules/react-native-macos/ReactCommon`)
+ - React-RuntimeApple (from `../node_modules/react-native-macos/ReactCommon/react/runtime/platform/ios`)
+ - React-RuntimeCore (from `../node_modules/react-native-macos/ReactCommon/react/runtime`)
+ - React-runtimeexecutor (from `../node_modules/react-native-macos/ReactCommon/runtimeexecutor`)
+ - React-runtimescheduler (from `../node_modules/react-native-macos/ReactCommon/react/renderer/runtimescheduler`)
+ - React-utils (from `../node_modules/react-native-macos/ReactCommon/react/utils`)
+ - ReactCommon/turbomodule/core (from `../node_modules/react-native-macos/ReactCommon`)
+ - "RNCAsyncStorage (from `../node_modules/@react-native-async-storage/async-storage`)"
+ - RNGestureHandler (from `../node_modules/react-native-gesture-handler`)
+ - SocketRocket (from `../node_modules/react-native-macos/third-party-podspecs/SocketRocket.podspec`)
+ - Yoga (from `../node_modules/react-native-macos/ReactCommon/yoga`)
+
+EXTERNAL SOURCES:
+ boost:
+ :podspec: "../node_modules/react-native-macos/third-party-podspecs/boost.podspec"
+ DoubleConversion:
+ :podspec: "../node_modules/react-native-macos/third-party-podspecs/DoubleConversion.podspec"
+ FBLazyVector:
+ :path: "../node_modules/react-native-macos/Libraries/FBLazyVector"
+ fmt:
+ :podspec: "../node_modules/react-native-macos/third-party-podspecs/fmt.podspec"
+ glog:
+ :podspec: "../node_modules/react-native-macos/third-party-podspecs/glog.podspec"
+ RCT-Folly:
+ :podspec: "../node_modules/react-native-macos/third-party-podspecs/RCT-Folly.podspec"
+ RCTDeprecation:
+ :path: "../node_modules/react-native-macos/ReactApple/Libraries/RCTFoundation/RCTDeprecation"
+ RCTRequired:
+ :path: "../node_modules/react-native-macos/Libraries/Required"
+ RCTTypeSafety:
+ :path: "../node_modules/react-native-macos/Libraries/TypeSafety"
+ React:
+ :path: "../node_modules/react-native-macos/"
+ React-callinvoker:
+ :path: "../node_modules/react-native-macos/ReactCommon/callinvoker"
+ React-Codegen:
+ :path: build/generated/ios
+ React-Core:
+ :path: "../node_modules/react-native-macos/"
+ React-CoreModules:
+ :path: "../node_modules/react-native-macos/React/CoreModules"
+ React-cxxreact:
+ :path: "../node_modules/react-native-macos/ReactCommon/cxxreact"
+ React-debug:
+ :path: "../node_modules/react-native-macos/ReactCommon/react/debug"
+ React-Fabric:
+ :path: "../node_modules/react-native-macos/ReactCommon"
+ React-FabricImage:
+ :path: "../node_modules/react-native-macos/ReactCommon"
+ React-featureflags:
+ :path: "../node_modules/react-native-macos/ReactCommon/react/featureflags"
+ React-graphics:
+ :path: "../node_modules/react-native-macos/ReactCommon/react/renderer/graphics"
+ React-ImageManager:
+ :path: "../node_modules/react-native-macos/ReactCommon/react/renderer/imagemanager/platform/ios"
+ React-jsc:
+ :path: "../node_modules/react-native-macos/ReactCommon/jsc"
+ React-jserrorhandler:
+ :path: "../node_modules/react-native-macos/ReactCommon/jserrorhandler"
+ React-jsi:
+ :path: "../node_modules/react-native-macos/ReactCommon/jsi"
+ React-jsiexecutor:
+ :path: "../node_modules/react-native-macos/ReactCommon/jsiexecutor"
+ React-jsinspector:
+ :path: "../node_modules/react-native-macos/ReactCommon/jsinspector-modern"
+ React-jsitracing:
+ :path: "../node_modules/react-native-macos/ReactCommon/hermes/executor/"
+ React-logger:
+ :path: "../node_modules/react-native-macos/ReactCommon/logger"
+ React-Mapbuffer:
+ :path: "../node_modules/react-native-macos/ReactCommon"
+ react-native-safe-area-context:
+ :path: "../node_modules/react-native-safe-area-context"
+ React-nativeconfig:
+ :path: "../node_modules/react-native-macos/ReactCommon"
+ React-NativeModulesApple:
+ :path: "../node_modules/react-native-macos/ReactCommon/react/nativemodule/core/platform/ios"
+ React-perflogger:
+ :path: "../node_modules/react-native-macos/ReactCommon/reactperflogger"
+ React-RCTActionSheet:
+ :path: "../node_modules/react-native-macos/Libraries/ActionSheetIOS"
+ React-RCTAnimation:
+ :path: "../node_modules/react-native-macos/Libraries/NativeAnimation"
+ React-RCTAppDelegate:
+ :path: "../node_modules/react-native-macos/Libraries/AppDelegate"
+ React-RCTBlob:
+ :path: "../node_modules/react-native-macos/Libraries/Blob"
+ React-RCTFabric:
+ :path: "../node_modules/react-native-macos/React"
+ React-RCTImage:
+ :path: "../node_modules/react-native-macos/Libraries/Image"
+ React-RCTLinking:
+ :path: "../node_modules/react-native-macos/Libraries/LinkingIOS"
+ React-RCTNetwork:
+ :path: "../node_modules/react-native-macos/Libraries/Network"
+ React-RCTSettings:
+ :path: "../node_modules/react-native-macos/Libraries/Settings"
+ React-RCTText:
+ :path: "../node_modules/react-native-macos/Libraries/Text"
+ React-RCTVibration:
+ :path: "../node_modules/react-native-macos/Libraries/Vibration"
+ React-rendererdebug:
+ :path: "../node_modules/react-native-macos/ReactCommon/react/renderer/debug"
+ React-rncore:
+ :path: "../node_modules/react-native-macos/ReactCommon"
+ React-RuntimeApple:
+ :path: "../node_modules/react-native-macos/ReactCommon/react/runtime/platform/ios"
+ React-RuntimeCore:
+ :path: "../node_modules/react-native-macos/ReactCommon/react/runtime"
+ React-runtimeexecutor:
+ :path: "../node_modules/react-native-macos/ReactCommon/runtimeexecutor"
+ React-runtimescheduler:
+ :path: "../node_modules/react-native-macos/ReactCommon/react/renderer/runtimescheduler"
+ React-utils:
+ :path: "../node_modules/react-native-macos/ReactCommon/react/utils"
+ ReactCommon:
+ :path: "../node_modules/react-native-macos/ReactCommon"
+ RNCAsyncStorage:
+ :path: "../node_modules/@react-native-async-storage/async-storage"
+ RNGestureHandler:
+ :path: "../node_modules/react-native-gesture-handler"
+ SocketRocket:
+ :podspec: "../node_modules/react-native-macos/third-party-podspecs/SocketRocket.podspec"
+ Yoga:
+ :path: "../node_modules/react-native-macos/ReactCommon/yoga"
+
+SPEC CHECKSUMS:
+ boost: 0686b6af8cbd638c784fea5afb789be66699823c
+ DoubleConversion: 5b92c4507c560bb62e7aa1acdf2785ea3ff08b3b
+ FBLazyVector: 1af115f47abb0b2d969834339ab6eb7c07829a75
+ fmt: 03574da4b7ba40de39da59677ca66610ce8c4a02
+ glog: ba31c1afa7dcf1915a109861bccdb4421be6175b
+ RCT-Folly: 2edbb9597acadc2312235c7ad6243d49852047a3
+ RCTDeprecation: 81dc5d76e38f00f2f1d3f1b2f27e690d23c468c6
+ RCTRequired: 3109916cc41b6c1d1ea17329cc7713ac9787f0e0
+ RCTTypeSafety: 62ace79d95e5b1aaca28c691b4230dcee5f09167
+ React: dfdffdd076201b6b5cfa28c704220c8c910c2bb8
+ React-callinvoker: b1be07c77e07faf6c8160b8f92b9ec968a3c92bc
+ React-Codegen: 8781a00f349a4d2adb7ca2c7643a03932593e979
+ React-Core: 43dbf7141f825c7f5cbe03a43bd58c5fffaae400
+ React-CoreModules: 05cf2d1c88d245f71a6e3b5e5f88abe3189f9ec9
+ React-cxxreact: 9837f6185a143e0ae2d6e7ee53fb2e4407b24149
+ React-debug: 26457f2663e5badf420cf7e477a124713d9aecf7
+ React-Fabric: 6ab2ce164c673865cc4841a043b638c2a171f398
+ React-FabricImage: 12e5f0e8f1158e611e1b9950cd6d391ee8bc2f47
+ React-featureflags: 01242980a57234e4f868ddcba3e49ae1ed942e85
+ React-graphics: 468fde6d190540b4663b04273bc90fd47de48cdb
+ React-ImageManager: b62c8d26c7be2ab1d5ebbc1c87c11a2773d70d19
+ React-jsc: 72cb2c416a8bb2fecb809bac63b3745f94ac476b
+ React-jserrorhandler: b33c5e0760d1f8029a30af255f3c859bf3aa2131
+ React-jsi: 65704fff81559d66a29e0cb97e5b719a0f2697c0
+ React-jsiexecutor: f9cd8afd2da0b93c735a8d4d827d2548435fb2d9
+ React-jsinspector: e1b2f779773bf379b5271238ee7b50f783afa6f2
+ React-jsitracing: 2c21d67b8c5d59bcb187f1069df249c7986d890a
+ React-logger: 5767dccdd73827e369868b02cfcac7b672e95611
+ React-Mapbuffer: 7eaf9cd8fd5aa99abaf387f9dbf6606b063c192c
+ react-native-safe-area-context: e9ad7d59486e7abda5ae8e8b7ca4da802d01cce5
+ React-nativeconfig: 92a4e4af840f84841d6d6a8cea2c41a2d9a3dca4
+ React-NativeModulesApple: d8c0d0a338c8662155e719314e84cda2d5831d1c
+ React-perflogger: 7fd816053c868844cc10c577b08fb582d8196ef2
+ React-RCTActionSheet: 01dba8e6521944a30cfecd5c99ace0de9dbfe394
+ React-RCTAnimation: 1850b80bb637cbd681876f7146b653a71b692e72
+ React-RCTAppDelegate: 8ce79575a82cde9d25f2cc47f0efe29954dac9c1
+ React-RCTBlob: 8782c5c4651f6b68d4c4ed2fc2903bc878227907
+ React-RCTFabric: f3676c3cdd8fa0b5f29a61ad1f4108e80847f07e
+ React-RCTImage: e245d1750f68d6dbfe4879460c760688979b2db4
+ React-RCTLinking: 7390d4bc6b6c50541a097c242d281dae0260751d
+ React-RCTNetwork: 60b5f8ffe4f4038e00a43936164092bf3f2d042b
+ React-RCTSettings: 72cd19ac9316751b8a5ca137d85d92edf282b10c
+ React-RCTText: b7d3c1ed9a4df0fa9278f08152fe44f8955bf315
+ React-RCTVibration: f8dac4bd5a8f52aa5b297e9f08c0050039fdea4a
+ React-rendererdebug: c2dd30dc7d75b58e3733f5391cf2fb9f36f09838
+ React-rncore: aab9536eedf0070d04f01baf84e212c750930ee2
+ React-RuntimeApple: 7c5a4c7521587a3bffabf23dace69304cb56d90a
+ React-RuntimeCore: 9684777cdbb0b837968bf14a89150146a06a95da
+ React-runtimeexecutor: 898bb06e4be721571b64b8207745c0278d333fec
+ React-runtimescheduler: f62ab80303f43dd2ca2e872e59bd36ad8b8e26d7
+ React-utils: 3391347dfd0ed62f6bc5aa1ca456d7c99e22b0f3
+ ReactCommon: dd273b875eba6ca517e81619029c86dfb4686409
+ RNCAsyncStorage: 826b603ae9c0f88b5ac4e956801f755109fa4d5c
+ RNGestureHandler: fe57e804730a6fb0f45de002df857059c15d5665
+ SocketRocket: f6c6249082c011e6de2de60ed641ef8bbe0cfac9
+ Yoga: e3f68ef1eeddd6374cd66ccb7c90c043e4502810
+
+PODFILE CHECKSUM: 862df702f25e4188767720aa401b485c0cfc71a6
+
+COCOAPODS: 1.15.2
diff --git a/example/macos/PrivacyInfo.xcprivacy b/example/macos/PrivacyInfo.xcprivacy
new file mode 100644
index 00000000..41b8317f
--- /dev/null
+++ b/example/macos/PrivacyInfo.xcprivacy
@@ -0,0 +1,37 @@
+
+
+
+
+ NSPrivacyAccessedAPITypes
+
+
+ NSPrivacyAccessedAPIType
+ NSPrivacyAccessedAPICategoryFileTimestamp
+ NSPrivacyAccessedAPITypeReasons
+
+ C617.1
+
+
+
+ NSPrivacyAccessedAPIType
+ NSPrivacyAccessedAPICategoryUserDefaults
+ NSPrivacyAccessedAPITypeReasons
+
+ CA92.1
+
+
+
+ NSPrivacyAccessedAPIType
+ NSPrivacyAccessedAPICategorySystemBootTime
+ NSPrivacyAccessedAPITypeReasons
+
+ 35F9.1
+
+
+
+ NSPrivacyCollectedDataTypes
+
+ NSPrivacyTracking
+
+
+
diff --git a/example/macos/RNSACExample-macOS/AppDelegate.h b/example/macos/RNSACExample-macOS/AppDelegate.h
new file mode 100644
index 00000000..63db9731
--- /dev/null
+++ b/example/macos/RNSACExample-macOS/AppDelegate.h
@@ -0,0 +1,6 @@
+#import
+#import
+
+@interface AppDelegate : RCTAppDelegate
+
+@end
diff --git a/example/macos/RNSACExample-macOS/AppDelegate.mm b/example/macos/RNSACExample-macOS/AppDelegate.mm
new file mode 100644
index 00000000..dfabab38
--- /dev/null
+++ b/example/macos/RNSACExample-macOS/AppDelegate.mm
@@ -0,0 +1,40 @@
+#import "AppDelegate.h"
+
+#import
+
+@implementation AppDelegate
+
+- (void)applicationDidFinishLaunching:(NSNotification *)notification
+{
+ self.moduleName = @"RNSACExample";
+ // You can add your custom initial props in the dictionary below.
+ // They will be passed down to the ViewController used by React Native.
+ self.initialProps = @{};
+
+ return [super applicationDidFinishLaunching:notification];
+}
+
+- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge
+{
+#if DEBUG
+ return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index"];
+#else
+ return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];
+#endif
+}
+
+/// This method controls whether the `concurrentRoot`feature of React18 is turned on or off.
+///
+/// @see: https://reactjs.org/blog/2022/03/29/react-v18.html
+/// @note: This requires to be rendering on Fabric (i.e. on the New Architecture).
+/// @return: `true` if the `concurrentRoot` feature is enabled. Otherwise, it returns `false`.
+- (BOOL)concurrentRootEnabled
+{
+#ifdef RN_FABRIC_ENABLED
+ return true;
+#else
+ return false;
+#endif
+}
+
+@end
diff --git a/example/macos/RNSACExample-macOS/Assets.xcassets/AppIcon.appiconset/Contents.json b/example/macos/RNSACExample-macOS/Assets.xcassets/AppIcon.appiconset/Contents.json
new file mode 100644
index 00000000..3f00db43
--- /dev/null
+++ b/example/macos/RNSACExample-macOS/Assets.xcassets/AppIcon.appiconset/Contents.json
@@ -0,0 +1,58 @@
+{
+ "images" : [
+ {
+ "idiom" : "mac",
+ "scale" : "1x",
+ "size" : "16x16"
+ },
+ {
+ "idiom" : "mac",
+ "scale" : "2x",
+ "size" : "16x16"
+ },
+ {
+ "idiom" : "mac",
+ "scale" : "1x",
+ "size" : "32x32"
+ },
+ {
+ "idiom" : "mac",
+ "scale" : "2x",
+ "size" : "32x32"
+ },
+ {
+ "idiom" : "mac",
+ "scale" : "1x",
+ "size" : "128x128"
+ },
+ {
+ "idiom" : "mac",
+ "scale" : "2x",
+ "size" : "128x128"
+ },
+ {
+ "idiom" : "mac",
+ "scale" : "1x",
+ "size" : "256x256"
+ },
+ {
+ "idiom" : "mac",
+ "scale" : "2x",
+ "size" : "256x256"
+ },
+ {
+ "idiom" : "mac",
+ "scale" : "1x",
+ "size" : "512x512"
+ },
+ {
+ "idiom" : "mac",
+ "scale" : "2x",
+ "size" : "512x512"
+ }
+ ],
+ "info" : {
+ "author" : "xcode",
+ "version" : 1
+ }
+}
diff --git a/example/macos/RNSACExample-macOS/Assets.xcassets/Contents.json b/example/macos/RNSACExample-macOS/Assets.xcassets/Contents.json
new file mode 100644
index 00000000..73c00596
--- /dev/null
+++ b/example/macos/RNSACExample-macOS/Assets.xcassets/Contents.json
@@ -0,0 +1,6 @@
+{
+ "info" : {
+ "author" : "xcode",
+ "version" : 1
+ }
+}
diff --git a/example/macos/RNSACExample-macOS/Base.lproj/Main.storyboard b/example/macos/RNSACExample-macOS/Base.lproj/Main.storyboard
new file mode 100644
index 00000000..b1d8a716
--- /dev/null
+++ b/example/macos/RNSACExample-macOS/Base.lproj/Main.storyboard
@@ -0,0 +1,684 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/example/macos/RNSACExample-macOS/Info.plist b/example/macos/RNSACExample-macOS/Info.plist
new file mode 100644
index 00000000..5c7ebb78
--- /dev/null
+++ b/example/macos/RNSACExample-macOS/Info.plist
@@ -0,0 +1,47 @@
+
+
+
+
+ CFBundleDevelopmentRegion
+ $(DEVELOPMENT_LANGUAGE)
+ CFBundleExecutable
+ $(EXECUTABLE_NAME)
+ CFBundleIconFile
+
+ CFBundleIdentifier
+ $(PRODUCT_BUNDLE_IDENTIFIER)
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundleName
+ $(PRODUCT_NAME)
+ CFBundlePackageType
+ $(PRODUCT_BUNDLE_PACKAGE_TYPE)
+ CFBundleShortVersionString
+ 1.0
+ CFBundleVersion
+ 1
+ LSMinimumSystemVersion
+ $(MACOSX_DEPLOYMENT_TARGET)
+ NSAppTransportSecurity
+
+ NSAllowsArbitraryLoads
+
+ NSExceptionDomains
+
+ localhost
+
+ NSExceptionAllowsInsecureHTTPLoads
+
+
+
+
+ NSMainStoryboardFile
+ Main
+ NSPrincipalClass
+ NSApplication
+ NSSupportsAutomaticTermination
+
+ NSSupportsSuddenTermination
+
+
+
diff --git a/example/macos/RNSACExample-macOS/RNSACExample.entitlements b/example/macos/RNSACExample-macOS/RNSACExample.entitlements
new file mode 100644
index 00000000..625af03d
--- /dev/null
+++ b/example/macos/RNSACExample-macOS/RNSACExample.entitlements
@@ -0,0 +1,12 @@
+
+
+
+
+ com.apple.security.app-sandbox
+
+ com.apple.security.files.user-selected.read-only
+
+ com.apple.security.network.client
+
+
+
diff --git a/example/macos/RNSACExample-macOS/main.m b/example/macos/RNSACExample-macOS/main.m
new file mode 100644
index 00000000..1f154fcf
--- /dev/null
+++ b/example/macos/RNSACExample-macOS/main.m
@@ -0,0 +1,5 @@
+#import
+
+int main(int argc, const char *argv[]) {
+ return NSApplicationMain(argc, argv);
+}
diff --git a/example/macos/RNSACExample.xcodeproj/project.pbxproj b/example/macos/RNSACExample.xcodeproj/project.pbxproj
new file mode 100644
index 00000000..ddba4b76
--- /dev/null
+++ b/example/macos/RNSACExample.xcodeproj/project.pbxproj
@@ -0,0 +1,581 @@
+// !$*UTF8*$!
+{
+ archiveVersion = 1;
+ classes = {
+ };
+ objectVersion = 46;
+ objects = {
+
+/* Begin PBXBuildFile section */
+ 434DC428AF014EAE998438A5 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = FC9127A43FC769703E9F3ECE /* PrivacyInfo.xcprivacy */; };
+ 4B77DB58323F1C0AFA08943C /* libPods-RNSACExample-macOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = B24E9B5DFA8B998177164D47 /* libPods-RNSACExample-macOS.a */; };
+ 5142014D2437B4B30078DB4F /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5142014C2437B4B30078DB4F /* AppDelegate.mm */; };
+ 514201522437B4B40078DB4F /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 514201512437B4B40078DB4F /* Assets.xcassets */; };
+ 514201552437B4B40078DB4F /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 514201532437B4B40078DB4F /* Main.storyboard */; };
+ 514201582437B4B40078DB4F /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 514201572437B4B40078DB4F /* main.m */; };
+ B32E1694DC5D8E1C3A2D09D1 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 6E9E80175040B192301FA1A7 /* PrivacyInfo.xcprivacy */; };
+/* End PBXBuildFile section */
+
+/* Begin PBXFileReference section */
+ 13B07F961A680F5B00A75B9A /* RNSACExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = RNSACExample.app; sourceTree = BUILT_PRODUCTS_DIR; };
+ 514201492437B4B30078DB4F /* RNSACExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = RNSACExample.app; sourceTree = BUILT_PRODUCTS_DIR; };
+ 5142014B2437B4B30078DB4F /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; };
+ 5142014C2437B4B30078DB4F /* AppDelegate.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = AppDelegate.mm; sourceTree = ""; };
+ 514201512437B4B40078DB4F /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; };
+ 514201542437B4B40078DB4F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; };
+ 514201562437B4B40078DB4F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
+ 514201572437B4B40078DB4F /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; };
+ 514201592437B4B40078DB4F /* RNSACExample.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = RNSACExample.entitlements; sourceTree = ""; };
+ 6E9E80175040B192301FA1A7 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = ../PrivacyInfo.xcprivacy; sourceTree = ""; };
+ ACF7F41001BE35F3488A81C1 /* Pods-RNSACExample-macOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RNSACExample-macOS.debug.xcconfig"; path = "Target Support Files/Pods-RNSACExample-macOS/Pods-RNSACExample-macOS.debug.xcconfig"; sourceTree = ""; };
+ B24E9B5DFA8B998177164D47 /* libPods-RNSACExample-macOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-RNSACExample-macOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
+ D065571E5BEC7F53EC3A471F /* Pods-RNSACExample-macOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RNSACExample-macOS.release.xcconfig"; path = "Target Support Files/Pods-RNSACExample-macOS/Pods-RNSACExample-macOS.release.xcconfig"; sourceTree = ""; };
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
+ FC9127A43FC769703E9F3ECE /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; path = PrivacyInfo.xcprivacy; sourceTree = ""; };
+/* End PBXFileReference section */
+
+/* Begin PBXFrameworksBuildPhase section */
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 514201462437B4B30078DB4F /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 4B77DB58323F1C0AFA08943C /* libPods-RNSACExample-macOS.a in Frameworks */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXFrameworksBuildPhase section */
+
+/* Begin PBXGroup section */
+ 138B7C9DAE255D985C03A18F /* Pods */ = {
+ isa = PBXGroup;
+ children = (
+ ACF7F41001BE35F3488A81C1 /* Pods-RNSACExample-macOS.debug.xcconfig */,
+ D065571E5BEC7F53EC3A471F /* Pods-RNSACExample-macOS.release.xcconfig */,
+ );
+ name = Pods;
+ path = Pods;
+ sourceTree = "";
+ };
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
+ isa = PBXGroup;
+ children = (
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
+ B24E9B5DFA8B998177164D47 /* libPods-RNSACExample-macOS.a */,
+ );
+ name = Frameworks;
+ sourceTree = "";
+ };
+ 5142014A2437B4B30078DB4F /* RNSACExample-macOS */ = {
+ isa = PBXGroup;
+ children = (
+ 5142014B2437B4B30078DB4F /* AppDelegate.h */,
+ 5142014C2437B4B30078DB4F /* AppDelegate.mm */,
+ 514201512437B4B40078DB4F /* Assets.xcassets */,
+ 514201532437B4B40078DB4F /* Main.storyboard */,
+ 514201562437B4B40078DB4F /* Info.plist */,
+ 514201572437B4B40078DB4F /* main.m */,
+ 514201592437B4B40078DB4F /* RNSACExample.entitlements */,
+ 6E9E80175040B192301FA1A7 /* PrivacyInfo.xcprivacy */,
+ );
+ path = "RNSACExample-macOS";
+ sourceTree = "";
+ };
+ 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
+ isa = PBXGroup;
+ children = (
+ );
+ name = Libraries;
+ sourceTree = "";
+ };
+ 83CBB9F61A601CBA00E9B192 = {
+ isa = PBXGroup;
+ children = (
+ 5142014A2437B4B30078DB4F /* RNSACExample-macOS */,
+ 832341AE1AAA6A7D00B99B32 /* Libraries */,
+ 83CBBA001A601CBA00E9B192 /* Products */,
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */,
+ FC9127A43FC769703E9F3ECE /* PrivacyInfo.xcprivacy */,
+ 138B7C9DAE255D985C03A18F /* Pods */,
+ );
+ indentWidth = 2;
+ sourceTree = "";
+ tabWidth = 2;
+ usesTabs = 0;
+ };
+ 83CBBA001A601CBA00E9B192 /* Products */ = {
+ isa = PBXGroup;
+ children = (
+ 13B07F961A680F5B00A75B9A /* RNSACExample.app */,
+ 514201492437B4B30078DB4F /* RNSACExample.app */,
+ );
+ name = Products;
+ sourceTree = "";
+ };
+/* End PBXGroup section */
+
+/* Begin PBXNativeTarget section */
+ 13B07F861A680F5B00A75B9A /* RNSACExample-iOS */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "RNSACExample-iOS" */;
+ buildPhases = (
+ 13B07F871A680F5B00A75B9A /* Sources */,
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */,
+ 13B07F8E1A680F5B00A75B9A /* Resources */,
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ );
+ name = "RNSACExample-iOS";
+ productName = RNSACExample;
+ productReference = 13B07F961A680F5B00A75B9A /* RNSACExample.app */;
+ productType = "com.apple.product-type.application";
+ };
+ 514201482437B4B30078DB4F /* RNSACExample-macOS */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 5142015A2437B4B40078DB4F /* Build configuration list for PBXNativeTarget "RNSACExample-macOS" */;
+ buildPhases = (
+ 1A938104A937498D81B3BD3B /* [CP] Check Pods Manifest.lock */,
+ 514201452437B4B30078DB4F /* Sources */,
+ 514201462437B4B30078DB4F /* Frameworks */,
+ 514201472437B4B30078DB4F /* Resources */,
+ 381D8A6E24576A4E00465D17 /* Bundle React Native code and images */,
+ 205C8FCC1903F103BAE032B2 /* [CP] Copy Pods Resources */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ );
+ name = "RNSACExample-macOS";
+ productName = RNSACExample;
+ productReference = 514201492437B4B30078DB4F /* RNSACExample.app */;
+ productType = "com.apple.product-type.application";
+ };
+/* End PBXNativeTarget section */
+
+/* Begin PBXProject section */
+ 83CBB9F71A601CBA00E9B192 /* Project object */ = {
+ isa = PBXProject;
+ attributes = {
+ LastUpgradeCheck = 1130;
+ TargetAttributes = {
+ 13B07F861A680F5B00A75B9A = {
+ LastSwiftMigration = 1120;
+ };
+ 514201482437B4B30078DB4F = {
+ CreatedOnToolsVersion = 11.4;
+ ProvisioningStyle = Automatic;
+ };
+ };
+ };
+ buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "RNSACExample" */;
+ compatibilityVersion = "Xcode 3.2";
+ developmentRegion = en;
+ hasScannedForEncodings = 0;
+ knownRegions = (
+ en,
+ Base,
+ );
+ mainGroup = 83CBB9F61A601CBA00E9B192;
+ productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
+ projectDirPath = "";
+ projectRoot = "";
+ targets = (
+ 13B07F861A680F5B00A75B9A /* RNSACExample-iOS */,
+ 514201482437B4B30078DB4F /* RNSACExample-macOS */,
+ );
+ };
+/* End PBXProject section */
+
+/* Begin PBXResourcesBuildPhase section */
+ 13B07F8E1A680F5B00A75B9A /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 434DC428AF014EAE998438A5 /* PrivacyInfo.xcprivacy in Resources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 514201472437B4B30078DB4F /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 514201522437B4B40078DB4F /* Assets.xcassets in Resources */,
+ 514201552437B4B40078DB4F /* Main.storyboard in Resources */,
+ B32E1694DC5D8E1C3A2D09D1 /* PrivacyInfo.xcprivacy in Resources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXResourcesBuildPhase section */
+
+/* Begin PBXShellScriptBuildPhase section */
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
+ isa = PBXShellScriptBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputPaths = (
+ );
+ name = "Bundle React Native code and images";
+ outputPaths = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "export NODE_BINARY=node\n../node_modules/react-native-macos/scripts/react-native-xcode.sh\n";
+ };
+ 1A938104A937498D81B3BD3B /* [CP] Check Pods Manifest.lock */ = {
+ isa = PBXShellScriptBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputFileListPaths = (
+ );
+ inputPaths = (
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
+ "${PODS_ROOT}/Manifest.lock",
+ );
+ name = "[CP] Check Pods Manifest.lock";
+ outputFileListPaths = (
+ );
+ outputPaths = (
+ "$(DERIVED_FILE_DIR)/Pods-RNSACExample-macOS-checkManifestLockResult.txt",
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
+ showEnvVarsInLog = 0;
+ };
+ 205C8FCC1903F103BAE032B2 /* [CP] Copy Pods Resources */ = {
+ isa = PBXShellScriptBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputPaths = (
+ "${PODS_ROOT}/Target Support Files/Pods-RNSACExample-macOS/Pods-RNSACExample-macOS-resources.sh",
+ "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage/RNCAsyncStorage_resources.bundle",
+ "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/RCTI18nStrings.bundle",
+ );
+ name = "[CP] Copy Pods Resources";
+ outputPaths = (
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RNCAsyncStorage_resources.bundle",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RCTI18nStrings.bundle",
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-RNSACExample-macOS/Pods-RNSACExample-macOS-resources.sh\"\n";
+ showEnvVarsInLog = 0;
+ };
+ 381D8A6E24576A4E00465D17 /* Bundle React Native code and images */ = {
+ isa = PBXShellScriptBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputFileListPaths = (
+ );
+ inputPaths = (
+ );
+ name = "Bundle React Native code and images";
+ outputFileListPaths = (
+ );
+ outputPaths = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "export NODE_BINARY=node\n../node_modules/react-native-macos/scripts/react-native-xcode.sh\n";
+ };
+/* End PBXShellScriptBuildPhase section */
+
+/* Begin PBXSourcesBuildPhase section */
+ 13B07F871A680F5B00A75B9A /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 514201452437B4B30078DB4F /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 514201582437B4B40078DB4F /* main.m in Sources */,
+ 5142014D2437B4B30078DB4F /* AppDelegate.mm in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXSourcesBuildPhase section */
+
+/* Begin PBXVariantGroup section */
+ 514201532437B4B40078DB4F /* Main.storyboard */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 514201542437B4B40078DB4F /* Base */,
+ );
+ name = Main.storyboard;
+ sourceTree = "";
+ };
+/* End PBXVariantGroup section */
+
+/* Begin XCBuildConfiguration section */
+ 13B07F941A680F5B00A75B9A /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ CLANG_ENABLE_MODULES = YES;
+ CURRENT_PROJECT_VERSION = 1;
+ ENABLE_BITCODE = NO;
+ INFOPLIST_FILE = "RNSACExample-iOS/Info.plist";
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
+ OTHER_LDFLAGS = (
+ "$(inherited)",
+ "-ObjC",
+ "-lc++",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.$(PRODUCT_NAME:rfc1034identifier)";
+ PRODUCT_NAME = RNSACExample;
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
+ SWIFT_VERSION = 5.0;
+ VERSIONING_SYSTEM = "apple-generic";
+ };
+ name = Debug;
+ };
+ 13B07F951A680F5B00A75B9A /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ CLANG_ENABLE_MODULES = YES;
+ CURRENT_PROJECT_VERSION = 1;
+ INFOPLIST_FILE = "RNSACExample-iOS/Info.plist";
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
+ OTHER_LDFLAGS = (
+ "$(inherited)",
+ "-ObjC",
+ "-lc++",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.$(PRODUCT_NAME:rfc1034identifier)";
+ PRODUCT_NAME = RNSACExample;
+ SWIFT_VERSION = 5.0;
+ VERSIONING_SYSTEM = "apple-generic";
+ };
+ name = Release;
+ };
+ 5142015B2437B4B40078DB4F /* Debug */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = ACF7F41001BE35F3488A81C1 /* Pods-RNSACExample-macOS.debug.xcconfig */;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ CLANG_ENABLE_MODULES = YES;
+ CURRENT_PROJECT_VERSION = 1;
+ DEAD_CODE_STRIPPING = NO;
+ INFOPLIST_FILE = "RNSACExample-macos/Info.plist";
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
+ MACOSX_DEPLOYMENT_TARGET = 10.15;
+ OTHER_LDFLAGS = (
+ "$(inherited)",
+ "-ObjC",
+ "-lc++",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.$(PRODUCT_NAME:rfc1034identifier)";
+ PRODUCT_NAME = RNSACExample;
+ SDKROOT = macosx;
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
+ SWIFT_VERSION = 5.0;
+ };
+ name = Debug;
+ };
+ 5142015C2437B4B40078DB4F /* Release */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = D065571E5BEC7F53EC3A471F /* Pods-RNSACExample-macOS.release.xcconfig */;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ CLANG_ENABLE_MODULES = YES;
+ CURRENT_PROJECT_VERSION = 1;
+ INFOPLIST_FILE = "RNSACExample-macos/Info.plist";
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
+ MACOSX_DEPLOYMENT_TARGET = 10.15;
+ OTHER_LDFLAGS = (
+ "$(inherited)",
+ "-ObjC",
+ "-lc++",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.$(PRODUCT_NAME:rfc1034identifier)";
+ PRODUCT_NAME = RNSACExample;
+ SDKROOT = macosx;
+ SWIFT_VERSION = 5.0;
+ };
+ name = Release;
+ };
+ 83CBBA201A601CBA00E9B192 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CC = "";
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
+ CLANG_CXX_LANGUAGE_STANDARD = "c++20";
+ CLANG_CXX_LIBRARY = "libc++";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
+ COPY_PHASE_STRIP = NO;
+ CXX = "";
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ ENABLE_TESTABILITY = YES;
+ GCC_C_LANGUAGE_STANDARD = gnu99;
+ GCC_DYNAMIC_NO_PIC = NO;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_OPTIMIZATION_LEVEL = 0;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ "DEBUG=1",
+ "$(inherited)",
+ );
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 9.0;
+ LD = "";
+ LDPLUSPLUS = "";
+ LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
+ LIBRARY_SEARCH_PATHS = (
+ "$(SDKROOT)/usr/lib/swift",
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
+ "\"$(inherited)\"",
+ );
+ MTL_ENABLE_DEBUG_INFO = YES;
+ ONLY_ACTIVE_ARCH = YES;
+ OTHER_LDFLAGS = (
+ "$(inherited)",
+ " ",
+ );
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
+ SDKROOT = iphoneos;
+ USE_HERMES = false;
+ };
+ name = Debug;
+ };
+ 83CBBA211A601CBA00E9B192 /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CC = "";
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
+ CLANG_CXX_LANGUAGE_STANDARD = "c++20";
+ CLANG_CXX_LIBRARY = "libc++";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
+ COPY_PHASE_STRIP = YES;
+ CXX = "";
+ ENABLE_NS_ASSERTIONS = NO;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ GCC_C_LANGUAGE_STANDARD = gnu99;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 9.0;
+ LD = "";
+ LDPLUSPLUS = "";
+ LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
+ LIBRARY_SEARCH_PATHS = (
+ "$(SDKROOT)/usr/lib/swift",
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
+ "\"$(inherited)\"",
+ );
+ MTL_ENABLE_DEBUG_INFO = NO;
+ OTHER_LDFLAGS = (
+ "$(inherited)",
+ " ",
+ );
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
+ SDKROOT = iphoneos;
+ USE_HERMES = false;
+ VALIDATE_PRODUCT = YES;
+ };
+ name = Release;
+ };
+/* End XCBuildConfiguration section */
+
+/* Begin XCConfigurationList section */
+ 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "RNSACExample-iOS" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 13B07F941A680F5B00A75B9A /* Debug */,
+ 13B07F951A680F5B00A75B9A /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ 5142015A2437B4B40078DB4F /* Build configuration list for PBXNativeTarget "RNSACExample-macOS" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 5142015B2437B4B40078DB4F /* Debug */,
+ 5142015C2437B4B40078DB4F /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "RNSACExample" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 83CBBA201A601CBA00E9B192 /* Debug */,
+ 83CBBA211A601CBA00E9B192 /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+/* End XCConfigurationList section */
+ };
+ rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
+}
diff --git a/example/macos/RNSACExample.xcodeproj/xcshareddata/xcschemes/RNSACExample-macOS.xcscheme b/example/macos/RNSACExample.xcodeproj/xcshareddata/xcschemes/RNSACExample-macOS.xcscheme
new file mode 100644
index 00000000..b584f792
--- /dev/null
+++ b/example/macos/RNSACExample.xcodeproj/xcshareddata/xcschemes/RNSACExample-macOS.xcscheme
@@ -0,0 +1,78 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/example/macos/RNSACExample.xcworkspace/contents.xcworkspacedata b/example/macos/RNSACExample.xcworkspace/contents.xcworkspacedata
new file mode 100644
index 00000000..675dbf64
--- /dev/null
+++ b/example/macos/RNSACExample.xcworkspace/contents.xcworkspacedata
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
diff --git a/example/package.json b/example/package.json
index b0ca3978..bcaad1e5 100644
--- a/example/package.json
+++ b/example/package.json
@@ -5,6 +5,7 @@
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
+ "macos": "react-native run-macos",
"start": "react-native start"
},
"dependencies": {