├── .watchmanconfig ├── jest.config.js ├── .bundle └── config ├── app.json ├── .eslintrc.js ├── babel.config.js ├── android ├── app │ ├── debug.keystore │ ├── src │ │ └── main │ │ │ ├── res │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ └── drawable │ │ │ │ └── rn_edit_text_material.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── boilerplate │ │ │ │ ├── MainApplication.kt │ │ │ │ └── MainActivity.kt │ │ │ └── AndroidManifest.xml │ ├── proguard-rules.pro │ └── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── settings.gradle ├── build.gradle ├── gradle.properties ├── gradlew.bat └── gradlew ├── .prettierrc.js ├── ios ├── Boilerplate │ ├── Images.xcassets │ │ ├── Contents.json │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── PrivacyInfo.xcprivacy │ ├── AppDelegate.swift │ ├── Info.plist │ └── LaunchScreen.storyboard ├── Boilerplate.xcworkspace │ └── contents.xcworkspacedata ├── .xcode.env ├── Podfile ├── Boilerplate.xcodeproj │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── Boilerplate.xcscheme │ └── project.pbxproj └── Podfile.lock ├── tsconfig.json ├── src ├── theme │ ├── index.ts │ └── minimalist.ts ├── types │ └── navigation.ts ├── navigation │ └── index.tsx └── screens │ ├── HomeScreen.tsx │ └── SettingsScreen.tsx ├── index.js ├── __tests__ └── App.test.tsx ├── metro.config.js ├── Gemfile ├── App.tsx ├── .gitignore ├── package.json ├── Gemfile.lock └── README.md /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /.bundle/config: -------------------------------------------------------------------------------- 1 | BUNDLE_PATH: "vendor/bundle" 2 | BUNDLE_FORCE_RUBY_PLATFORM: 1 3 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Boilerplate", 3 | "displayName": "Boilerplate" 4 | } 5 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native', 4 | }; 5 | -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: ['module:@react-native/babel-preset'], 3 | }; 4 | -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarforever/jane/main/android/app/debug.keystore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | arrowParens: 'avoid', 3 | singleQuote: true, 4 | trailingComma: 'all', 5 | }; 6 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Boilerplate 3 | 4 | -------------------------------------------------------------------------------- /ios/Boilerplate/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarforever/jane/main/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarforever/jane/main/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarforever/jane/main/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarforever/jane/main/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarforever/jane/main/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarforever/jane/main/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@react-native/typescript-config", 3 | "include": ["**/*.ts", "**/*.tsx"], 4 | "exclude": ["**/node_modules", "**/Pods"] 5 | } 6 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarforever/jane/main/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarforever/jane/main/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarforever/jane/main/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarforever/jane/main/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugarforever/jane/main/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src/theme/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Theme exports 3 | * 4 | * Central export point for all theme configurations 5 | */ 6 | 7 | export { MinimalistLightTheme, MinimalistDarkTheme } from './minimalist'; 8 | export type { MinimalistTheme } from './minimalist'; 9 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @format 3 | */ 4 | 5 | import 'react-native-gesture-handler'; 6 | import { AppRegistry } from 'react-native'; 7 | import App from './App'; 8 | import { name as appName } from './app.json'; 9 | 10 | AppRegistry.registerComponent(appName, () => App); 11 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip 4 | networkTimeout=10000 5 | validateDistributionUrl=true 6 | zipStoreBase=GRADLE_USER_HOME 7 | zipStorePath=wrapper/dists 8 | -------------------------------------------------------------------------------- /ios/Boilerplate.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /__tests__/App.test.tsx: -------------------------------------------------------------------------------- 1 | /** 2 | * @format 3 | */ 4 | 5 | import React from 'react'; 6 | import ReactTestRenderer from 'react-test-renderer'; 7 | import App from '../App'; 8 | 9 | test('renders correctly', async () => { 10 | await ReactTestRenderer.act(() => { 11 | ReactTestRenderer.create(); 12 | }); 13 | }); 14 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- 1 | const { getDefaultConfig, mergeConfig } = require('@react-native/metro-config'); 2 | 3 | /** 4 | * Metro configuration 5 | * https://reactnative.dev/docs/metro 6 | * 7 | * @type {import('@react-native/metro-config').MetroConfig} 8 | */ 9 | const config = {}; 10 | 11 | module.exports = mergeConfig(getDefaultConfig(__dirname), config); 12 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | pluginManagement { includeBuild("../node_modules/@react-native/gradle-plugin") } 2 | plugins { id("com.facebook.react.settings") } 3 | extensions.configure(com.facebook.react.ReactSettingsExtension){ ex -> ex.autolinkLibrariesFromCommand() } 4 | rootProject.name = 'Boilerplate' 5 | include ':app' 6 | includeBuild('../node_modules/@react-native/gradle-plugin') 7 | -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | -------------------------------------------------------------------------------- /ios/.xcode.env: -------------------------------------------------------------------------------- 1 | # This `.xcode.env` file is versioned and is used to source the environment 2 | # used when running script phases inside Xcode. 3 | # To customize your local environment, you can create an `.xcode.env.local` 4 | # file that is not versioned. 5 | 6 | # NODE_BINARY variable contains the PATH to the node executable. 7 | # 8 | # Customize the NODE_BINARY variable here. 9 | # For example, to use nvm with brew, add the following line 10 | # . "$(brew --prefix nvm)/nvm.sh" --no-use 11 | export NODE_BINARY=$(command -v node) 12 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | # You may use http://rbenv.org/ or https://rvm.io/ to install and use this version 4 | ruby ">= 2.6.10" 5 | 6 | # Exclude problematic versions of cocoapods and activesupport that causes build failures. 7 | gem 'cocoapods', '>= 1.13', '!= 1.15.0', '!= 1.15.1' 8 | gem 'activesupport', '>= 6.1.7.5', '!= 7.1.0' 9 | gem 'xcodeproj', '< 1.26.0' 10 | gem 'concurrent-ruby', '< 1.3.4' 11 | 12 | # Ruby 3.4.0 has removed some libraries from the standard library. 13 | gem 'bigdecimal' 14 | gem 'logger' 15 | gem 'benchmark' 16 | gem 'mutex_m' 17 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | ext { 3 | buildToolsVersion = "36.0.0" 4 | minSdkVersion = 24 5 | compileSdkVersion = 36 6 | targetSdkVersion = 36 7 | ndkVersion = "27.1.12297006" 8 | kotlinVersion = "2.1.20" 9 | } 10 | repositories { 11 | google() 12 | mavenCentral() 13 | } 14 | dependencies { 15 | classpath("com.android.tools.build:gradle") 16 | classpath("com.facebook.react:react-native-gradle-plugin") 17 | classpath("org.jetbrains.kotlin:kotlin-gradle-plugin") 18 | } 19 | } 20 | 21 | apply plugin: "com.facebook.react.rootproject" 22 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/boilerplate/MainApplication.kt: -------------------------------------------------------------------------------- 1 | package com.boilerplate 2 | 3 | import android.app.Application 4 | import com.facebook.react.PackageList 5 | import com.facebook.react.ReactApplication 6 | import com.facebook.react.ReactHost 7 | import com.facebook.react.ReactNativeApplicationEntryPoint.loadReactNative 8 | import com.facebook.react.defaults.DefaultReactHost.getDefaultReactHost 9 | 10 | class MainApplication : Application(), ReactApplication { 11 | 12 | override val reactHost: ReactHost by lazy { 13 | getDefaultReactHost( 14 | context = applicationContext, 15 | packageList = 16 | PackageList(this).packages.apply { 17 | // Packages that cannot be autolinked yet can be added manually here, for example: 18 | // add(MyReactNativePackage()) 19 | }, 20 | ) 21 | } 22 | 23 | override fun onCreate() { 24 | super.onCreate() 25 | loadReactNative(this) 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/boilerplate/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.boilerplate 2 | 3 | import com.facebook.react.ReactActivity 4 | import com.facebook.react.ReactActivityDelegate 5 | import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.fabricEnabled 6 | import com.facebook.react.defaults.DefaultReactActivityDelegate 7 | 8 | class MainActivity : ReactActivity() { 9 | 10 | /** 11 | * Returns the name of the main component registered from JavaScript. This is used to schedule 12 | * rendering of the component. 13 | */ 14 | override fun getMainComponentName(): String = "Boilerplate" 15 | 16 | /** 17 | * Returns the instance of the [ReactActivityDelegate]. We use [DefaultReactActivityDelegate] 18 | * which allows you to enable New Architecture with a single boolean flags [fabricEnabled] 19 | */ 20 | override fun createReactActivityDelegate(): ReactActivityDelegate = 21 | DefaultReactActivityDelegate(this, mainComponentName, fabricEnabled) 22 | } 23 | -------------------------------------------------------------------------------- /src/types/navigation.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Navigation Type Definitions 3 | * 4 | * Type-safe navigation for React Navigation 5 | */ 6 | 7 | import type { NativeStackScreenProps } from '@react-navigation/native-stack'; 8 | 9 | // Define the route params for each screen 10 | export type RootStackParamList = { 11 | Home: undefined; 12 | Settings: undefined; 13 | }; 14 | 15 | // Screen-specific props types 16 | export type HomeScreenProps = NativeStackScreenProps; 17 | export type SettingsScreenProps = NativeStackScreenProps; 18 | 19 | // Generic navigation prop 20 | export type RootStackNavigationProp = NativeStackScreenProps['navigation']; 21 | export type RootStackRouteProp = NativeStackScreenProps['route']; 22 | 23 | // Declare global navigation types for React Navigation 24 | declare global { 25 | namespace ReactNavigation { 26 | interface RootParamList extends RootStackParamList {} 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- 1 | # Resolve react_native_pods.rb with node to allow for hoisting 2 | require Pod::Executable.execute_command('node', ['-p', 3 | 'require.resolve( 4 | "react-native/scripts/react_native_pods.rb", 5 | {paths: [process.argv[1]]}, 6 | )', __dir__]).strip 7 | 8 | platform :ios, min_ios_version_supported 9 | prepare_react_native_project! 10 | 11 | linkage = ENV['USE_FRAMEWORKS'] 12 | if linkage != nil 13 | Pod::UI.puts "Configuring Pod with #{linkage}ally linked Frameworks".green 14 | use_frameworks! :linkage => linkage.to_sym 15 | end 16 | 17 | target 'Boilerplate' do 18 | config = use_native_modules! 19 | 20 | use_react_native!( 21 | :path => config[:reactNativePath], 22 | # An absolute path to your application root. 23 | :app_path => "#{Pod::Config.instance.installation_root}/.." 24 | ) 25 | 26 | post_install do |installer| 27 | react_native_post_install( 28 | installer, 29 | config[:reactNativePath], 30 | :mac_catalyst_enabled => false, 31 | # :ccache_enabled => true 32 | ) 33 | end 34 | end 35 | -------------------------------------------------------------------------------- /ios/Boilerplate/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "scale" : "2x", 6 | "size" : "20x20" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "scale" : "3x", 11 | "size" : "20x20" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "scale" : "2x", 16 | "size" : "29x29" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "scale" : "3x", 21 | "size" : "29x29" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "scale" : "2x", 26 | "size" : "40x40" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "scale" : "3x", 31 | "size" : "40x40" 32 | }, 33 | { 34 | "idiom" : "iphone", 35 | "scale" : "2x", 36 | "size" : "60x60" 37 | }, 38 | { 39 | "idiom" : "iphone", 40 | "scale" : "3x", 41 | "size" : "60x60" 42 | }, 43 | { 44 | "idiom" : "ios-marketing", 45 | "scale" : "1x", 46 | "size" : "1024x1024" 47 | } 48 | ], 49 | "info" : { 50 | "author" : "xcode", 51 | "version" : 1 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /ios/Boilerplate/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSPrivacyAccessedAPITypes 6 | 7 | 8 | NSPrivacyAccessedAPIType 9 | NSPrivacyAccessedAPICategoryFileTimestamp 10 | NSPrivacyAccessedAPITypeReasons 11 | 12 | C617.1 13 | 14 | 15 | 16 | NSPrivacyAccessedAPIType 17 | NSPrivacyAccessedAPICategoryUserDefaults 18 | NSPrivacyAccessedAPITypeReasons 19 | 20 | CA92.1 21 | 22 | 23 | 24 | NSPrivacyAccessedAPIType 25 | NSPrivacyAccessedAPICategorySystemBootTime 26 | NSPrivacyAccessedAPITypeReasons 27 | 28 | 35F9.1 29 | 30 | 31 | 32 | NSPrivacyCollectedDataTypes 33 | 34 | NSPrivacyTracking 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- 1 | /** 2 | * Sample React Native App 3 | * https://github.com/facebook/react-native 4 | * 5 | * @format 6 | */ 7 | 8 | import React from 'react'; 9 | import { StatusBar, useColorScheme } from 'react-native'; 10 | import { SafeAreaProvider } from 'react-native-safe-area-context'; 11 | import { PaperProvider } from 'react-native-paper'; 12 | import { GestureHandlerRootView } from 'react-native-gesture-handler'; 13 | import { MinimalistLightTheme, MinimalistDarkTheme } from './src/theme'; 14 | import AppNavigator from './src/navigation'; 15 | 16 | function App() { 17 | const isDarkMode = useColorScheme() === 'dark'; 18 | const theme = isDarkMode ? MinimalistDarkTheme : MinimalistLightTheme; 19 | 20 | return ( 21 | 22 | 23 | 24 | 28 | 29 | 30 | 31 | 32 | ); 33 | } 34 | 35 | export default App; 36 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 14 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | # 3 | .DS_Store 4 | 5 | # Xcode 6 | # 7 | build/ 8 | *.pbxuser 9 | !default.pbxuser 10 | *.mode1v3 11 | !default.mode1v3 12 | *.mode2v3 13 | !default.mode2v3 14 | *.perspectivev3 15 | !default.perspectivev3 16 | xcuserdata 17 | *.xccheckout 18 | *.moved-aside 19 | DerivedData 20 | *.hmap 21 | *.ipa 22 | *.xcuserstate 23 | **/.xcode.env.local 24 | 25 | # Android/IntelliJ 26 | # 27 | build/ 28 | .idea 29 | .gradle 30 | local.properties 31 | *.iml 32 | *.hprof 33 | .cxx/ 34 | *.keystore 35 | !debug.keystore 36 | .kotlin/ 37 | 38 | # node.js 39 | # 40 | node_modules/ 41 | npm-debug.log 42 | yarn-error.log 43 | 44 | # fastlane 45 | # 46 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 47 | # screenshots whenever they are needed. 48 | # For more information about the recommended setup visit: 49 | # https://docs.fastlane.tools/best-practices/source-control/ 50 | 51 | **/fastlane/report.xml 52 | **/fastlane/Preview.html 53 | **/fastlane/screenshots 54 | **/fastlane/test_output 55 | 56 | # Bundle artifact 57 | *.jsbundle 58 | 59 | # Ruby / CocoaPods 60 | **/Pods/ 61 | /vendor/bundle/ 62 | 63 | # Temporary files created by Metro to check the health of the file watcher 64 | .metro-health-check* 65 | 66 | # testing 67 | /coverage 68 | 69 | # Yarn 70 | .yarn/* 71 | !.yarn/patches 72 | !.yarn/plugins 73 | !.yarn/releases 74 | !.yarn/sdks 75 | !.yarn/versions 76 | -------------------------------------------------------------------------------- /ios/Boilerplate/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import React 3 | import React_RCTAppDelegate 4 | import ReactAppDependencyProvider 5 | 6 | @main 7 | class AppDelegate: UIResponder, UIApplicationDelegate { 8 | var window: UIWindow? 9 | 10 | var reactNativeDelegate: ReactNativeDelegate? 11 | var reactNativeFactory: RCTReactNativeFactory? 12 | 13 | func application( 14 | _ application: UIApplication, 15 | didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil 16 | ) -> Bool { 17 | let delegate = ReactNativeDelegate() 18 | let factory = RCTReactNativeFactory(delegate: delegate) 19 | delegate.dependencyProvider = RCTAppDependencyProvider() 20 | 21 | reactNativeDelegate = delegate 22 | reactNativeFactory = factory 23 | 24 | window = UIWindow(frame: UIScreen.main.bounds) 25 | 26 | factory.startReactNative( 27 | withModuleName: "Boilerplate", 28 | in: window, 29 | launchOptions: launchOptions 30 | ) 31 | 32 | return true 33 | } 34 | } 35 | 36 | class ReactNativeDelegate: RCTDefaultReactNativeFactoryDelegate { 37 | override func sourceURL(for bridge: RCTBridge) -> URL? { 38 | self.bundleURL() 39 | } 40 | 41 | override func bundleURL() -> URL? { 42 | #if DEBUG 43 | RCTBundleURLProvider.sharedSettings().jsBundleURL(forBundleRoot: "index") 44 | #else 45 | Bundle.main.url(forResource: "main", withExtension: "jsbundle") 46 | #endif 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Boilerplate", 3 | "version": "0.0.1", 4 | "private": true, 5 | "scripts": { 6 | "android": "react-native run-android", 7 | "ios": "react-native run-ios", 8 | "lint": "eslint .", 9 | "start": "react-native start", 10 | "test": "jest" 11 | }, 12 | "dependencies": { 13 | "@react-native/new-app-screen": "0.82.1", 14 | "@react-navigation/native": "^7.1.21", 15 | "@react-navigation/native-stack": "^7.8.0", 16 | "react": "19.1.1", 17 | "react-native": "0.82.1", 18 | "react-native-gesture-handler": "^2.29.1", 19 | "react-native-paper": "^5.14.5", 20 | "react-native-safe-area-context": "^5.5.2", 21 | "react-native-screens": "^4.18.0", 22 | "react-native-vector-icons": "^10.3.0" 23 | }, 24 | "devDependencies": { 25 | "@babel/core": "^7.25.2", 26 | "@babel/preset-env": "^7.25.3", 27 | "@babel/runtime": "^7.25.0", 28 | "@react-native-community/cli": "20.0.0", 29 | "@react-native-community/cli-platform-android": "20.0.0", 30 | "@react-native-community/cli-platform-ios": "20.0.0", 31 | "@react-native/babel-preset": "0.82.1", 32 | "@react-native/eslint-config": "0.82.1", 33 | "@react-native/metro-config": "0.82.1", 34 | "@react-native/typescript-config": "0.82.1", 35 | "@types/jest": "^29.5.13", 36 | "@types/react": "^19.1.1", 37 | "@types/react-test-renderer": "^19.1.0", 38 | "eslint": "^8.19.0", 39 | "jest": "^29.6.3", 40 | "prettier": "2.8.8", 41 | "react-test-renderer": "19.1.1", 42 | "typescript": "^5.8.3" 43 | }, 44 | "engines": { 45 | "node": ">=20" 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /ios/Boilerplate/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CADisableMinimumFrameDurationOnPhone 6 | 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleDisplayName 10 | Boilerplate 11 | CFBundleExecutable 12 | $(EXECUTABLE_NAME) 13 | CFBundleIdentifier 14 | $(PRODUCT_BUNDLE_IDENTIFIER) 15 | CFBundleInfoDictionaryVersion 16 | 6.0 17 | CFBundleName 18 | $(PRODUCT_NAME) 19 | CFBundlePackageType 20 | APPL 21 | CFBundleShortVersionString 22 | $(MARKETING_VERSION) 23 | CFBundleSignature 24 | ???? 25 | CFBundleVersion 26 | $(CURRENT_PROJECT_VERSION) 27 | LSRequiresIPhoneOS 28 | 29 | NSAppTransportSecurity 30 | 31 | NSAllowsArbitraryLoads 32 | 33 | NSAllowsLocalNetworking 34 | 35 | 36 | NSLocationWhenInUseUsageDescription 37 | 38 | RCTNewArchEnabled 39 | 40 | UILaunchStoryboardName 41 | LaunchScreen 42 | UIRequiredDeviceCapabilities 43 | 44 | arm64 45 | 46 | UISupportedInterfaceOrientations 47 | 48 | UIInterfaceOrientationPortrait 49 | UIInterfaceOrientationLandscapeLeft 50 | UIInterfaceOrientationLandscapeRight 51 | 52 | UIViewControllerBasedStatusBarAppearance 53 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 22 | 23 | 24 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx512m -XX:MaxMetaspaceSize=256m 13 | org.gradle.jvmargs=-Xmx2048m -XX:MaxMetaspaceSize=512m 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true 19 | 20 | # AndroidX package structure to make it clearer which packages are bundled with the 21 | # Android operating system, and which are packaged with your app's APK 22 | # https://developer.android.com/topic/libraries/support-library/androidx-rn 23 | android.useAndroidX=true 24 | 25 | # Use this property to specify which architecture you want to build. 26 | # You can also override it from the CLI using 27 | # ./gradlew -PreactNativeArchitectures=x86_64 28 | reactNativeArchitectures=armeabi-v7a,arm64-v8a,x86,x86_64 29 | 30 | # Use this property to enable support to the new architecture. 31 | # This will allow you to use TurboModules and the Fabric render in 32 | # your application. You should enable this flag either if you want 33 | # to write custom TurboModules/Fabric components OR use libraries that 34 | # are providing them. 35 | newArchEnabled=true 36 | 37 | # Use this property to enable or disable the Hermes JS engine. 38 | # If set to false, you will be using JSC instead. 39 | hermesEnabled=true 40 | 41 | # Use this property to enable edge-to-edge display support. 42 | # This allows your app to draw behind system bars for an immersive UI. 43 | # Note: Only works with ReactActivity and should not be used with custom Activity. 44 | edgeToEdgeEnabled=false 45 | -------------------------------------------------------------------------------- /src/navigation/index.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { NavigationContainer } from '@react-navigation/native'; 3 | import { createNativeStackNavigator } from '@react-navigation/native-stack'; 4 | import { useTheme } from 'react-native-paper'; 5 | import type { RootStackParamList } from '../types/navigation'; 6 | import HomeScreen from '../screens/HomeScreen'; 7 | import SettingsScreen from '../screens/SettingsScreen'; 8 | 9 | const Stack = createNativeStackNavigator(); 10 | 11 | const AppNavigator = () => { 12 | const theme = useTheme(); 13 | 14 | // Create navigation theme based on Paper theme 15 | const navigationTheme = { 16 | dark: theme.dark, 17 | colors: { 18 | primary: theme.colors.primary, 19 | background: theme.colors.background, 20 | card: theme.colors.surface, 21 | text: theme.colors.onSurface, 22 | border: theme.colors.outline, 23 | notification: theme.colors.error, 24 | }, 25 | fonts: { 26 | regular: { 27 | fontFamily: 'System', 28 | fontWeight: '400' as const, 29 | }, 30 | medium: { 31 | fontFamily: 'System', 32 | fontWeight: '500' as const, 33 | }, 34 | bold: { 35 | fontFamily: 'System', 36 | fontWeight: '700' as const, 37 | }, 38 | heavy: { 39 | fontFamily: 'System', 40 | fontWeight: '900' as const, 41 | }, 42 | }, 43 | }; 44 | 45 | return ( 46 | 47 | 61 | 68 | 76 | 77 | 78 | ); 79 | }; 80 | 81 | export default AppNavigator; 82 | -------------------------------------------------------------------------------- /src/screens/HomeScreen.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { View, StyleSheet, ScrollView } from 'react-native'; 3 | import { 4 | Text, 5 | Button, 6 | Card, 7 | useTheme, 8 | Surface, 9 | IconButton, 10 | } from 'react-native-paper'; 11 | import type { HomeScreenProps } from '../types/navigation'; 12 | 13 | const HomeScreen = ({ navigation }: HomeScreenProps) => { 14 | const theme = useTheme(); 15 | 16 | return ( 17 | 18 | 19 | 20 | 25 | 26 | 27 | 28 | Welcome Home 29 | 30 | 31 | 32 | This is your modern React Native boilerplate powered by React Native Paper 33 | 34 | 35 | 36 | 37 | 38 | Features 39 | 40 | 41 | • Material Design 3 theming 42 | 43 | 44 | • Brown minimalist color palette 45 | 46 | 47 | • React Navigation integration 48 | 49 | 50 | • TypeScript support 51 | 52 | 53 | 54 | 55 | 63 | 64 | 65 | ); 66 | }; 67 | 68 | const styles = StyleSheet.create({ 69 | container: { 70 | flex: 1, 71 | }, 72 | content: { 73 | padding: 24, 74 | alignItems: 'center', 75 | }, 76 | iconContainer: { 77 | borderRadius: 60, 78 | marginBottom: 24, 79 | }, 80 | title: { 81 | marginBottom: 12, 82 | textAlign: 'center', 83 | }, 84 | subtitle: { 85 | marginBottom: 32, 86 | textAlign: 'center', 87 | paddingHorizontal: 16, 88 | }, 89 | card: { 90 | width: '100%', 91 | marginBottom: 24, 92 | }, 93 | cardTitle: { 94 | marginBottom: 12, 95 | }, 96 | featureText: { 97 | marginVertical: 4, 98 | }, 99 | button: { 100 | width: '100%', 101 | }, 102 | }); 103 | 104 | export default HomeScreen; 105 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: https://rubygems.org/ 3 | specs: 4 | CFPropertyList (3.0.8) 5 | activesupport (6.1.7.10) 6 | concurrent-ruby (~> 1.0, >= 1.0.2) 7 | i18n (>= 1.6, < 2) 8 | minitest (>= 5.1) 9 | tzinfo (~> 2.0) 10 | zeitwerk (~> 2.3) 11 | addressable (2.8.7) 12 | public_suffix (>= 2.0.2, < 7.0) 13 | algoliasearch (1.27.5) 14 | httpclient (~> 2.8, >= 2.8.3) 15 | json (>= 1.5.1) 16 | atomos (0.1.3) 17 | benchmark (0.5.0) 18 | bigdecimal (3.3.1) 19 | claide (1.1.0) 20 | cocoapods (1.15.2) 21 | addressable (~> 2.8) 22 | claide (>= 1.0.2, < 2.0) 23 | cocoapods-core (= 1.15.2) 24 | cocoapods-deintegrate (>= 1.0.3, < 2.0) 25 | cocoapods-downloader (>= 2.1, < 3.0) 26 | cocoapods-plugins (>= 1.0.0, < 2.0) 27 | cocoapods-search (>= 1.0.0, < 2.0) 28 | cocoapods-trunk (>= 1.6.0, < 2.0) 29 | cocoapods-try (>= 1.1.0, < 2.0) 30 | colored2 (~> 3.1) 31 | escape (~> 0.0.4) 32 | fourflusher (>= 2.3.0, < 3.0) 33 | gh_inspector (~> 1.0) 34 | molinillo (~> 0.8.0) 35 | nap (~> 1.0) 36 | ruby-macho (>= 2.3.0, < 3.0) 37 | xcodeproj (>= 1.23.0, < 2.0) 38 | cocoapods-core (1.15.2) 39 | activesupport (>= 5.0, < 8) 40 | addressable (~> 2.8) 41 | algoliasearch (~> 1.0) 42 | concurrent-ruby (~> 1.1) 43 | fuzzy_match (~> 2.0.4) 44 | nap (~> 1.0) 45 | netrc (~> 0.11) 46 | public_suffix (~> 4.0) 47 | typhoeus (~> 1.0) 48 | cocoapods-deintegrate (1.0.5) 49 | cocoapods-downloader (2.1) 50 | cocoapods-plugins (1.0.0) 51 | nap 52 | cocoapods-search (1.0.1) 53 | cocoapods-trunk (1.6.0) 54 | nap (>= 0.8, < 2.0) 55 | netrc (~> 0.11) 56 | cocoapods-try (1.2.0) 57 | colored2 (3.1.2) 58 | concurrent-ruby (1.3.3) 59 | escape (0.0.4) 60 | ethon (0.15.0) 61 | ffi (>= 1.15.0) 62 | ffi (1.17.2) 63 | fourflusher (2.3.1) 64 | fuzzy_match (2.0.4) 65 | gh_inspector (1.1.3) 66 | httpclient (2.9.0) 67 | mutex_m 68 | i18n (1.14.7) 69 | concurrent-ruby (~> 1.0) 70 | json (2.7.6) 71 | logger (1.7.0) 72 | minitest (5.25.4) 73 | molinillo (0.8.0) 74 | mutex_m (0.3.0) 75 | nanaimo (0.3.0) 76 | nap (1.1.0) 77 | netrc (0.11.0) 78 | public_suffix (4.0.7) 79 | rexml (3.4.4) 80 | ruby-macho (2.5.1) 81 | typhoeus (1.5.0) 82 | ethon (>= 0.9.0, < 0.16.0) 83 | tzinfo (2.0.6) 84 | concurrent-ruby (~> 1.0) 85 | xcodeproj (1.25.1) 86 | CFPropertyList (>= 2.3.3, < 4.0) 87 | atomos (~> 0.1.3) 88 | claide (>= 1.0.2, < 2.0) 89 | colored2 (~> 3.1) 90 | nanaimo (~> 0.3.0) 91 | rexml (>= 3.3.6, < 4.0) 92 | zeitwerk (2.6.18) 93 | 94 | PLATFORMS 95 | ruby 96 | 97 | DEPENDENCIES 98 | activesupport (>= 6.1.7.5, != 7.1.0) 99 | benchmark 100 | bigdecimal 101 | cocoapods (>= 1.13, != 1.15.1, != 1.15.0) 102 | concurrent-ruby (< 1.3.4) 103 | logger 104 | mutex_m 105 | xcodeproj (< 1.26.0) 106 | 107 | RUBY VERSION 108 | ruby 2.6.10p210 109 | 110 | BUNDLED WITH 111 | 1.17.2 112 | -------------------------------------------------------------------------------- /src/screens/SettingsScreen.tsx: -------------------------------------------------------------------------------- 1 | import React, { useState } from 'react'; 2 | import { View, StyleSheet, ScrollView } from 'react-native'; 3 | import { 4 | Text, 5 | List, 6 | Switch, 7 | Divider, 8 | useTheme, 9 | Button, 10 | Card, 11 | } from 'react-native-paper'; 12 | import type { SettingsScreenProps } from '../types/navigation'; 13 | 14 | const SettingsScreen = ({ navigation }: SettingsScreenProps) => { 15 | const theme = useTheme(); 16 | const [notificationsEnabled, setNotificationsEnabled] = useState(true); 17 | const [darkModeEnabled, setDarkModeEnabled] = useState(false); 18 | 19 | return ( 20 | 21 | 22 | 23 | 24 | Preferences 25 | 26 | 27 | } 31 | right={() => ( 32 | 36 | )} 37 | /> 38 | 39 | 40 | } 44 | right={() => ( 45 | 49 | )} 50 | /> 51 | 52 | 53 | 54 | 55 | 56 | 57 | About 58 | 59 | 60 | } 64 | /> 65 | 66 | 67 | } 70 | right={props => } 71 | onPress={() => {}} 72 | /> 73 | 74 | 75 | } 78 | right={props => } 79 | onPress={() => {}} 80 | /> 81 | 82 | 83 | 84 | 92 | 93 | ); 94 | }; 95 | 96 | const styles = StyleSheet.create({ 97 | container: { 98 | flex: 1, 99 | }, 100 | card: { 101 | margin: 16, 102 | marginBottom: 8, 103 | }, 104 | sectionTitle: { 105 | marginBottom: 8, 106 | }, 107 | button: { 108 | margin: 16, 109 | marginTop: 8, 110 | }, 111 | }); 112 | 113 | export default SettingsScreen; 114 | -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- 1 | @REM Copyright (c) Meta Platforms, Inc. and affiliates. 2 | @REM 3 | @REM This source code is licensed under the MIT license found in the 4 | @REM LICENSE file in the root directory of this source tree. 5 | 6 | @rem 7 | @rem Copyright 2015 the original author or authors. 8 | @rem 9 | @rem Licensed under the Apache License, Version 2.0 (the "License"); 10 | @rem you may not use this file except in compliance with the License. 11 | @rem You may obtain a copy of the License at 12 | @rem 13 | @rem https://www.apache.org/licenses/LICENSE-2.0 14 | @rem 15 | @rem Unless required by applicable law or agreed to in writing, software 16 | @rem distributed under the License is distributed on an "AS IS" BASIS, 17 | @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 18 | @rem See the License for the specific language governing permissions and 19 | @rem limitations under the License. 20 | @rem 21 | @rem SPDX-License-Identifier: Apache-2.0 22 | @rem 23 | 24 | @if "%DEBUG%"=="" @echo off 25 | @rem ########################################################################## 26 | @rem 27 | @rem Gradle startup script for Windows 28 | @rem 29 | @rem ########################################################################## 30 | 31 | @rem Set local scope for the variables with windows NT shell 32 | if "%OS%"=="Windows_NT" setlocal 33 | 34 | set DIRNAME=%~dp0 35 | if "%DIRNAME%"=="" set DIRNAME=. 36 | @rem This is normally unused 37 | set APP_BASE_NAME=%~n0 38 | set APP_HOME=%DIRNAME% 39 | 40 | @rem Resolve any "." and ".." in APP_HOME to make it shorter. 41 | for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi 42 | 43 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 44 | set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" 45 | 46 | @rem Find java.exe 47 | if defined JAVA_HOME goto findJavaFromJavaHome 48 | 49 | set JAVA_EXE=java.exe 50 | %JAVA_EXE% -version >NUL 2>&1 51 | if %ERRORLEVEL% equ 0 goto execute 52 | 53 | echo. 1>&2 54 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2 55 | echo. 1>&2 56 | echo Please set the JAVA_HOME variable in your environment to match the 1>&2 57 | echo location of your Java installation. 1>&2 58 | 59 | goto fail 60 | 61 | :findJavaFromJavaHome 62 | set JAVA_HOME=%JAVA_HOME:"=% 63 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 64 | 65 | if exist "%JAVA_EXE%" goto execute 66 | 67 | echo. 1>&2 68 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2 69 | echo. 1>&2 70 | echo Please set the JAVA_HOME variable in your environment to match the 1>&2 71 | echo location of your Java installation. 1>&2 72 | 73 | goto fail 74 | 75 | :execute 76 | @rem Setup the command line 77 | 78 | set CLASSPATH= 79 | 80 | 81 | @rem Execute Gradle 82 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %* 83 | 84 | :end 85 | @rem End local scope for the variables with windows NT shell 86 | if %ERRORLEVEL% equ 0 goto mainEnd 87 | 88 | :fail 89 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 90 | rem the _cmd.exe /c_ return code! 91 | set EXIT_CODE=%ERRORLEVEL% 92 | if %EXIT_CODE% equ 0 set EXIT_CODE=1 93 | if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% 94 | exit /b %EXIT_CODE% 95 | 96 | :mainEnd 97 | if "%OS%"=="Windows_NT" endlocal 98 | 99 | :omega 100 | -------------------------------------------------------------------------------- /ios/Boilerplate.xcodeproj/xcshareddata/xcschemes/Boilerplate.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 33 | 39 | 40 | 41 | 42 | 43 | 53 | 55 | 61 | 62 | 63 | 64 | 70 | 72 | 78 | 79 | 80 | 81 | 83 | 84 | 87 | 88 | 89 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | This is a new [**React Native**](https://reactnative.dev) project, bootstrapped using [`@react-native-community/cli`](https://github.com/react-native-community/cli). 2 | 3 | # Getting Started 4 | 5 | > **Note**: Make sure you have completed the [Set Up Your Environment](https://reactnative.dev/docs/set-up-your-environment) guide before proceeding. 6 | 7 | ## Step 1: Start Metro 8 | 9 | First, you will need to run **Metro**, the JavaScript build tool for React Native. 10 | 11 | To start the Metro dev server, run the following command from the root of your React Native project: 12 | 13 | ```sh 14 | # Using npm 15 | npm start 16 | 17 | # OR using Yarn 18 | yarn start 19 | ``` 20 | 21 | ## Step 2: Build and run your app 22 | 23 | With Metro running, open a new terminal window/pane from the root of your React Native project, and use one of the following commands to build and run your Android or iOS app: 24 | 25 | ### Android 26 | 27 | ```sh 28 | # Using npm 29 | npm run android 30 | 31 | # OR using Yarn 32 | yarn android 33 | ``` 34 | 35 | ### iOS 36 | 37 | For iOS, remember to install CocoaPods dependencies (this only needs to be run on first clone or after updating native deps). 38 | 39 | The first time you create a new project, run the Ruby bundler to install CocoaPods itself: 40 | 41 | ```sh 42 | bundle install 43 | ``` 44 | 45 | Then, and every time you update your native dependencies, run: 46 | 47 | ```sh 48 | bundle exec pod install 49 | ``` 50 | 51 | For more information, please visit [CocoaPods Getting Started guide](https://guides.cocoapods.org/using/getting-started.html). 52 | 53 | ```sh 54 | # Using npm 55 | npm run ios 56 | 57 | # OR using Yarn 58 | yarn ios 59 | ``` 60 | 61 | If everything is set up correctly, you should see your new app running in the Android Emulator, iOS Simulator, or your connected device. 62 | 63 | This is one way to run your app — you can also build it directly from Android Studio or Xcode. 64 | 65 | ## Step 3: Modify your app 66 | 67 | Now that you have successfully run the app, let's make changes! 68 | 69 | Open `App.tsx` in your text editor of choice and make some changes. When you save, your app will automatically update and reflect these changes — this is powered by [Fast Refresh](https://reactnative.dev/docs/fast-refresh). 70 | 71 | When you want to forcefully reload, for example to reset the state of your app, you can perform a full reload: 72 | 73 | - **Android**: Press the R key twice or select **"Reload"** from the **Dev Menu**, accessed via Ctrl + M (Windows/Linux) or Cmd ⌘ + M (macOS). 74 | - **iOS**: Press R in iOS Simulator. 75 | 76 | ## Congratulations! :tada: 77 | 78 | You've successfully run and modified your React Native App. :partying_face: 79 | 80 | ### Now what? 81 | 82 | - If you want to add this new React Native code to an existing application, check out the [Integration guide](https://reactnative.dev/docs/integration-with-existing-apps). 83 | - If you're curious to learn more about React Native, check out the [docs](https://reactnative.dev/docs/getting-started). 84 | 85 | # Troubleshooting 86 | 87 | If you're having issues getting the above steps to work, see the [Troubleshooting](https://reactnative.dev/docs/troubleshooting) page. 88 | 89 | # Learn More 90 | 91 | To learn more about React Native, take a look at the following resources: 92 | 93 | - [React Native Website](https://reactnative.dev) - learn more about React Native. 94 | - [Getting Started](https://reactnative.dev/docs/environment-setup) - an **overview** of React Native and how setup your environment. 95 | - [Learn the Basics](https://reactnative.dev/docs/getting-started) - a **guided tour** of the React Native **basics**. 96 | - [Blog](https://reactnative.dev/blog) - read the latest official React Native **Blog** posts. 97 | - [`@facebook/react-native`](https://github.com/facebook/react-native) - the Open Source; GitHub **repository** for React Native. 98 | -------------------------------------------------------------------------------- /ios/Boilerplate/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 24 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: "com.android.application" 2 | apply plugin: "org.jetbrains.kotlin.android" 3 | apply plugin: "com.facebook.react" 4 | 5 | /** 6 | * This is the configuration block to customize your React Native Android app. 7 | * By default you don't need to apply any configuration, just uncomment the lines you need. 8 | */ 9 | react { 10 | /* Folders */ 11 | // The root of your project, i.e. where "package.json" lives. Default is '../..' 12 | // root = file("../../") 13 | // The folder where the react-native NPM package is. Default is ../../node_modules/react-native 14 | // reactNativeDir = file("../../node_modules/react-native") 15 | // The folder where the react-native Codegen package is. Default is ../../node_modules/@react-native/codegen 16 | // codegenDir = file("../../node_modules/@react-native/codegen") 17 | // The cli.js file which is the React Native CLI entrypoint. Default is ../../node_modules/react-native/cli.js 18 | // cliFile = file("../../node_modules/react-native/cli.js") 19 | 20 | /* Variants */ 21 | // The list of variants to that are debuggable. For those we're going to 22 | // skip the bundling of the JS bundle and the assets. By default is just 'debug'. 23 | // If you add flavors like lite, prod, etc. you'll have to list your debuggableVariants. 24 | // debuggableVariants = ["liteDebug", "prodDebug"] 25 | 26 | /* Bundling */ 27 | // A list containing the node command and its flags. Default is just 'node'. 28 | // nodeExecutableAndArgs = ["node"] 29 | // 30 | // The command to run when bundling. By default is 'bundle' 31 | // bundleCommand = "ram-bundle" 32 | // 33 | // The path to the CLI configuration file. Default is empty. 34 | // bundleConfig = file(../rn-cli.config.js) 35 | // 36 | // The name of the generated asset file containing your JS bundle 37 | // bundleAssetName = "MyApplication.android.bundle" 38 | // 39 | // The entry file for bundle generation. Default is 'index.android.js' or 'index.js' 40 | // entryFile = file("../js/MyApplication.android.js") 41 | // 42 | // A list of extra flags to pass to the 'bundle' commands. 43 | // See https://github.com/react-native-community/cli/blob/main/docs/commands.md#bundle 44 | // extraPackagerArgs = [] 45 | 46 | /* Hermes Commands */ 47 | // The hermes compiler command to run. By default it is 'hermesc' 48 | // hermesCommand = "$rootDir/my-custom-hermesc/bin/hermesc" 49 | // 50 | // The list of flags to pass to the Hermes compiler. By default is "-O", "-output-source-map" 51 | // hermesFlags = ["-O", "-output-source-map"] 52 | 53 | /* Autolinking */ 54 | autolinkLibrariesWithApp() 55 | } 56 | 57 | /** 58 | * Set this to true to Run Proguard on Release builds to minify the Java bytecode. 59 | */ 60 | def enableProguardInReleaseBuilds = false 61 | 62 | /** 63 | * The preferred build flavor of JavaScriptCore (JSC) 64 | * 65 | * For example, to use the international variant, you can use: 66 | * `def jscFlavor = io.github.react-native-community:jsc-android-intl:2026004.+` 67 | * 68 | * The international variant includes ICU i18n library and necessary data 69 | * allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that 70 | * give correct results when using with locales other than en-US. Note that 71 | * this variant is about 6MiB larger per architecture than default. 72 | */ 73 | def jscFlavor = 'io.github.react-native-community:jsc-android:2026004.+' 74 | 75 | android { 76 | ndkVersion rootProject.ext.ndkVersion 77 | buildToolsVersion rootProject.ext.buildToolsVersion 78 | compileSdk rootProject.ext.compileSdkVersion 79 | 80 | namespace "com.boilerplate" 81 | defaultConfig { 82 | applicationId "com.boilerplate" 83 | minSdkVersion rootProject.ext.minSdkVersion 84 | targetSdkVersion rootProject.ext.targetSdkVersion 85 | versionCode 1 86 | versionName "1.0" 87 | } 88 | signingConfigs { 89 | debug { 90 | storeFile file('debug.keystore') 91 | storePassword 'android' 92 | keyAlias 'androiddebugkey' 93 | keyPassword 'android' 94 | } 95 | } 96 | buildTypes { 97 | debug { 98 | signingConfig signingConfigs.debug 99 | } 100 | release { 101 | // Caution! In production, you need to generate your own keystore file. 102 | // see https://reactnative.dev/docs/signed-apk-android. 103 | signingConfig signingConfigs.debug 104 | minifyEnabled enableProguardInReleaseBuilds 105 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 106 | } 107 | } 108 | } 109 | 110 | dependencies { 111 | // The version of react-native is set by the React Native Gradle Plugin 112 | implementation("com.facebook.react:react-android") 113 | 114 | if (hermesEnabled.toBoolean()) { 115 | implementation("com.facebook.react:hermes-android") 116 | } else { 117 | implementation jscFlavor 118 | } 119 | } 120 | -------------------------------------------------------------------------------- /src/theme/minimalist.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Minimalist Theme Configuration 3 | * 4 | * A sleek, minimal design with rich brown tones, 5 | * clean white backgrounds, and modern geometric shapes. 6 | */ 7 | 8 | import { MD3LightTheme, MD3DarkTheme } from 'react-native-paper'; 9 | import type { MD3Theme } from 'react-native-paper'; 10 | 11 | // Sleek brown color palette 12 | const minimalistColors = { 13 | light: { 14 | primary: '#3E2723', // Deep espresso brown 15 | onPrimary: '#ffffff', // White text on primary 16 | primaryContainer: '#D7CCC8', // Light warm brown 17 | onPrimaryContainer: '#3E2723', // Dark text on primary container 18 | 19 | secondary: '#5D4037', // Rich chocolate brown 20 | onSecondary: '#ffffff', // White text on secondary 21 | secondaryContainer: '#BCAAA4', // Medium warm brown 22 | onSecondaryContainer: '#3E2723', // Dark text on secondary container 23 | 24 | tertiary: '#795548', // Warm brown 25 | onTertiary: '#ffffff', // White text on tertiary 26 | tertiaryContainer: '#D7CCC8', // Light brown 27 | onTertiaryContainer: '#3E2723', // Dark text on tertiary container 28 | 29 | error: '#6D4C41', // Brown error (sleek) 30 | onError: '#ffffff', // White text on error 31 | errorContainer: '#FFCCBC', // Light error container 32 | onErrorContainer: '#3E2723', // Dark text on error container 33 | 34 | background: '#FFFFFF', // Pure white 35 | onBackground: '#3E2723', // Dark brown text 36 | 37 | surface: '#FAFAFA', // Off-white surface 38 | onSurface: '#3E2723', // Dark brown text 39 | surfaceVariant: '#F5F5F5', // Light gray surface 40 | onSurfaceVariant: '#5D4037', // Medium brown text 41 | 42 | outline: '#A1887F', // Brown outline 43 | outlineVariant: '#D7CCC8', // Light brown outline 44 | 45 | shadow: '#000000', // Black shadow 46 | scrim: '#000000', // Black scrim 47 | 48 | inverseSurface: '#3E2723', // Dark brown inverse 49 | inverseOnSurface: '#FFFFFF', // White text on inverse 50 | inversePrimary: '#BCAAA4', // Light brown inverse primary 51 | 52 | elevation: { 53 | level0: 'transparent', 54 | level1: '#FAFAFA', 55 | level2: '#F5F5F5', 56 | level3: '#EFEBE9', 57 | level4: '#EFEBE9', 58 | level5: '#EFEBE9', 59 | }, 60 | 61 | surfaceDisabled: 'rgba(62, 39, 35, 0.12)', 62 | onSurfaceDisabled: 'rgba(62, 39, 35, 0.38)', 63 | backdrop: 'rgba(62, 39, 35, 0.4)', 64 | }, 65 | dark: { 66 | primary: '#BCAAA4', // Warm light brown 67 | onPrimary: '#3E2723', // Dark brown text 68 | primaryContainer: '#5D4037', // Medium brown container 69 | onPrimaryContainer: '#EFEBE9', // Light text on container 70 | 71 | secondary: '#A1887F', // Muted brown 72 | onSecondary: '#3E2723', // Dark brown text 73 | secondaryContainer: '#4E342E', // Dark chocolate container 74 | onSecondaryContainer: '#D7CCC8', // Light text on container 75 | 76 | tertiary: '#8D6E63', // Medium warm brown 77 | onTertiary: '#FFFFFF', // White text 78 | tertiaryContainer: '#4E342E', // Dark container 79 | onTertiaryContainer: '#BCAAA4', // Light text on container 80 | 81 | error: '#FFAB91', // Light coral error 82 | onError: '#3E2723', // Dark text on error 83 | errorContainer: '#6D4C41', // Brown error container 84 | onErrorContainer: '#FFCCBC', // Light text on error container 85 | 86 | background: '#1C1B1F', // Very dark brown-black 87 | onBackground: '#E6E1E5', // Light text 88 | 89 | surface: '#1C1B1F', // Dark brown-black surface 90 | onSurface: '#E6E1E5', // Light text 91 | surfaceVariant: '#3E2723', // Dark brown variant 92 | onSurfaceVariant: '#BCAAA4', // Light brown text 93 | 94 | outline: '#6D4C41', // Dark brown outline 95 | outlineVariant: '#4E342E', // Darker outline 96 | 97 | shadow: '#000000', // Black shadow 98 | scrim: '#000000', // Black scrim 99 | 100 | inverseSurface: '#E6E1E5', // Light inverse 101 | inverseOnSurface: '#3E2723', // Dark text on inverse 102 | inversePrimary: '#5D4037', // Brown inverse primary 103 | 104 | elevation: { 105 | level0: 'transparent', 106 | level1: '#2B2930', 107 | level2: '#322F37', 108 | level3: '#38353F', 109 | level4: '#3B3841', 110 | level5: '#3F3C45', 111 | }, 112 | 113 | surfaceDisabled: 'rgba(230, 225, 229, 0.12)', 114 | onSurfaceDisabled: 'rgba(230, 225, 229, 0.38)', 115 | backdrop: 'rgba(62, 39, 35, 0.4)', 116 | }, 117 | }; 118 | 119 | // Light minimalist theme with sleek brown palette 120 | export const MinimalistLightTheme: MD3Theme = { 121 | ...MD3LightTheme, 122 | roundness: 3, 123 | colors: { 124 | ...MD3LightTheme.colors, 125 | ...minimalistColors.light, 126 | }, 127 | }; 128 | 129 | // Dark minimalist theme with sleek brown palette 130 | export const MinimalistDarkTheme: MD3Theme = { 131 | ...MD3DarkTheme, 132 | roundness: 3, 133 | colors: { 134 | ...MD3DarkTheme.colors, 135 | ...minimalistColors.dark, 136 | }, 137 | }; 138 | 139 | // Export types 140 | export type MinimalistTheme = typeof MinimalistLightTheme; 141 | -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # 4 | # Copyright © 2015 the original authors. 5 | # 6 | # Licensed under the Apache License, Version 2.0 (the "License"); 7 | # you may not use this file except in compliance with the License. 8 | # You may obtain a copy of the License at 9 | # 10 | # https://www.apache.org/licenses/LICENSE-2.0 11 | # 12 | # Unless required by applicable law or agreed to in writing, software 13 | # distributed under the License is distributed on an "AS IS" BASIS, 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | # See the License for the specific language governing permissions and 16 | # limitations under the License. 17 | # 18 | # SPDX-License-Identifier: Apache-2.0 19 | # 20 | 21 | ############################################################################## 22 | # 23 | # Gradle start up script for POSIX generated by Gradle. 24 | # 25 | # Important for running: 26 | # 27 | # (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is 28 | # noncompliant, but you have some other compliant shell such as ksh or 29 | # bash, then to run this script, type that shell name before the whole 30 | # command line, like: 31 | # 32 | # ksh Gradle 33 | # 34 | # Busybox and similar reduced shells will NOT work, because this script 35 | # requires all of these POSIX shell features: 36 | # * functions; 37 | # * expansions «$var», «${var}», «${var:-default}», «${var+SET}», 38 | # «${var#prefix}», «${var%suffix}», and «$( cmd )»; 39 | # * compound commands having a testable exit status, especially «case»; 40 | # * various built-in commands including «command», «set», and «ulimit». 41 | # 42 | # Important for patching: 43 | # 44 | # (2) This script targets any POSIX shell, so it avoids extensions provided 45 | # by Bash, Ksh, etc; in particular arrays are avoided. 46 | # 47 | # The "traditional" practice of packing multiple parameters into a 48 | # space-separated string is a well documented source of bugs and security 49 | # problems, so this is (mostly) avoided, by progressively accumulating 50 | # options in "$@", and eventually passing that to Java. 51 | # 52 | # Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, 53 | # and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; 54 | # see the in-line comments for details. 55 | # 56 | # There are tweaks for specific operating systems such as AIX, CygWin, 57 | # Darwin, MinGW, and NonStop. 58 | # 59 | # (3) This script is generated from the Groovy template 60 | # https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt 61 | # within the Gradle project. 62 | # 63 | # You can find Gradle at https://github.com/gradle/gradle/. 64 | # 65 | ############################################################################## 66 | 67 | # Attempt to set APP_HOME 68 | 69 | # Resolve links: $0 may be a link 70 | app_path=$0 71 | 72 | # Need this for daisy-chained symlinks. 73 | while 74 | APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path 75 | [ -h "$app_path" ] 76 | do 77 | ls=$( ls -ld "$app_path" ) 78 | link=${ls#*' -> '} 79 | case $link in #( 80 | /*) app_path=$link ;; #( 81 | *) app_path=$APP_HOME$link ;; 82 | esac 83 | done 84 | 85 | # This is normally unused 86 | # shellcheck disable=SC2034 87 | APP_BASE_NAME=${0##*/} 88 | # Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) 89 | APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit 90 | 91 | # Use the maximum available, or set MAX_FD != -1 to use that value. 92 | MAX_FD=maximum 93 | 94 | warn () { 95 | echo "$*" 96 | } >&2 97 | 98 | die () { 99 | echo 100 | echo "$*" 101 | echo 102 | exit 1 103 | } >&2 104 | 105 | # OS specific support (must be 'true' or 'false'). 106 | cygwin=false 107 | msys=false 108 | darwin=false 109 | nonstop=false 110 | case "$( uname )" in #( 111 | CYGWIN* ) cygwin=true ;; #( 112 | Darwin* ) darwin=true ;; #( 113 | MSYS* | MINGW* ) msys=true ;; #( 114 | NONSTOP* ) nonstop=true ;; 115 | esac 116 | 117 | CLASSPATH="\\\"\\\"" 118 | 119 | 120 | # Determine the Java command to use to start the JVM. 121 | if [ -n "$JAVA_HOME" ] ; then 122 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 123 | # IBM's JDK on AIX uses strange locations for the executables 124 | JAVACMD=$JAVA_HOME/jre/sh/java 125 | else 126 | JAVACMD=$JAVA_HOME/bin/java 127 | fi 128 | if [ ! -x "$JAVACMD" ] ; then 129 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 130 | 131 | Please set the JAVA_HOME variable in your environment to match the 132 | location of your Java installation." 133 | fi 134 | else 135 | JAVACMD=java 136 | if ! command -v java >/dev/null 2>&1 137 | then 138 | die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 139 | 140 | Please set the JAVA_HOME variable in your environment to match the 141 | location of your Java installation." 142 | fi 143 | fi 144 | 145 | # Increase the maximum file descriptors if we can. 146 | if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then 147 | case $MAX_FD in #( 148 | max*) 149 | # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. 150 | # shellcheck disable=SC2039,SC3045 151 | MAX_FD=$( ulimit -H -n ) || 152 | warn "Could not query maximum file descriptor limit" 153 | esac 154 | case $MAX_FD in #( 155 | '' | soft) :;; #( 156 | *) 157 | # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. 158 | # shellcheck disable=SC2039,SC3045 159 | ulimit -n "$MAX_FD" || 160 | warn "Could not set maximum file descriptor limit to $MAX_FD" 161 | esac 162 | fi 163 | 164 | # Collect all arguments for the java command, stacking in reverse order: 165 | # * args from the command line 166 | # * the main class name 167 | # * -classpath 168 | # * -D...appname settings 169 | # * --module-path (only if needed) 170 | # * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. 171 | 172 | # For Cygwin or MSYS, switch paths to Windows format before running java 173 | if "$cygwin" || "$msys" ; then 174 | APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) 175 | CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) 176 | 177 | JAVACMD=$( cygpath --unix "$JAVACMD" ) 178 | 179 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 180 | for arg do 181 | if 182 | case $arg in #( 183 | -*) false ;; # don't mess with options #( 184 | /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath 185 | [ -e "$t" ] ;; #( 186 | *) false ;; 187 | esac 188 | then 189 | arg=$( cygpath --path --ignore --mixed "$arg" ) 190 | fi 191 | # Roll the args list around exactly as many times as the number of 192 | # args, so each arg winds up back in the position where it started, but 193 | # possibly modified. 194 | # 195 | # NB: a `for` loop captures its iteration list before it begins, so 196 | # changing the positional parameters here affects neither the number of 197 | # iterations, nor the values presented in `arg`. 198 | shift # remove old arg 199 | set -- "$@" "$arg" # push replacement arg 200 | done 201 | fi 202 | 203 | 204 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 205 | DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' 206 | 207 | # Collect all arguments for the java command: 208 | # * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, 209 | # and any embedded shellness will be escaped. 210 | # * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be 211 | # treated as '${Hostname}' itself on the command line. 212 | 213 | set -- \ 214 | "-Dorg.gradle.appname=$APP_BASE_NAME" \ 215 | -classpath "$CLASSPATH" \ 216 | -jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \ 217 | "$@" 218 | 219 | # Stop when "xargs" is not available. 220 | if ! command -v xargs >/dev/null 2>&1 221 | then 222 | die "xargs is not available" 223 | fi 224 | 225 | # Use "xargs" to parse quoted args. 226 | # 227 | # With -n1 it outputs one arg per line, with the quotes and backslashes removed. 228 | # 229 | # In Bash we could simply go: 230 | # 231 | # readarray ARGS < <( xargs -n1 <<<"$var" ) && 232 | # set -- "${ARGS[@]}" "$@" 233 | # 234 | # but POSIX shell has neither arrays nor command substitution, so instead we 235 | # post-process each arg (as a line of input to sed) to backslash-escape any 236 | # character that might be a shell metacharacter, then use eval to reverse 237 | # that process (while maintaining the separation between arguments), and wrap 238 | # the whole thing up as a single "set" statement. 239 | # 240 | # This will of course break if any of these variables contains a newline or 241 | # an unmatched quote. 242 | # 243 | 244 | eval "set -- $( 245 | printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | 246 | xargs -n1 | 247 | sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | 248 | tr '\n' ' ' 249 | )" '"$@"' 250 | 251 | exec "$JAVACMD" "$@" 252 | -------------------------------------------------------------------------------- /ios/Boilerplate.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 54; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 0C80B921A6F3F58F76C31292 /* libPods-Boilerplate.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-Boilerplate.a */; }; 11 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 12 | 3AFF0C9EA1E33CA4F03F9C4E /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */; }; 13 | 761780ED2CA45674006654EE /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 761780EC2CA45674006654EE /* AppDelegate.swift */; }; 14 | 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; }; 15 | /* End PBXBuildFile section */ 16 | 17 | /* Begin PBXFileReference section */ 18 | 13B07F961A680F5B00A75B9A /* Boilerplate.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Boilerplate.app; sourceTree = BUILT_PRODUCTS_DIR; }; 19 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = Boilerplate/Images.xcassets; sourceTree = ""; }; 20 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = Boilerplate/Info.plist; sourceTree = ""; }; 21 | 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = PrivacyInfo.xcprivacy; path = Boilerplate/PrivacyInfo.xcprivacy; sourceTree = ""; }; 22 | 3B4392A12AC88292D35C810B /* Pods-Boilerplate.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Boilerplate.debug.xcconfig"; path = "Target Support Files/Pods-Boilerplate/Pods-Boilerplate.debug.xcconfig"; sourceTree = ""; }; 23 | 5709B34CF0A7D63546082F79 /* Pods-Boilerplate.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Boilerplate.release.xcconfig"; path = "Target Support Files/Pods-Boilerplate/Pods-Boilerplate.release.xcconfig"; sourceTree = ""; }; 24 | 5DCACB8F33CDC322A6C60F78 /* libPods-Boilerplate.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Boilerplate.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 25 | 761780EC2CA45674006654EE /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = Boilerplate/AppDelegate.swift; sourceTree = ""; }; 26 | 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = Boilerplate/LaunchScreen.storyboard; sourceTree = ""; }; 27 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; 28 | /* End PBXFileReference section */ 29 | 30 | /* Begin PBXFrameworksBuildPhase section */ 31 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 32 | isa = PBXFrameworksBuildPhase; 33 | buildActionMask = 2147483647; 34 | files = ( 35 | 0C80B921A6F3F58F76C31292 /* libPods-Boilerplate.a in Frameworks */, 36 | ); 37 | runOnlyForDeploymentPostprocessing = 0; 38 | }; 39 | /* End PBXFrameworksBuildPhase section */ 40 | 41 | /* Begin PBXGroup section */ 42 | 13B07FAE1A68108700A75B9A /* Boilerplate */ = { 43 | isa = PBXGroup; 44 | children = ( 45 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 46 | 761780EC2CA45674006654EE /* AppDelegate.swift */, 47 | 13B07FB61A68108700A75B9A /* Info.plist */, 48 | 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */, 49 | 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */, 50 | ); 51 | name = Boilerplate; 52 | sourceTree = ""; 53 | }; 54 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = { 55 | isa = PBXGroup; 56 | children = ( 57 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */, 58 | 5DCACB8F33CDC322A6C60F78 /* libPods-Boilerplate.a */, 59 | ); 60 | name = Frameworks; 61 | sourceTree = ""; 62 | }; 63 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 64 | isa = PBXGroup; 65 | children = ( 66 | ); 67 | name = Libraries; 68 | sourceTree = ""; 69 | }; 70 | 83CBB9F61A601CBA00E9B192 = { 71 | isa = PBXGroup; 72 | children = ( 73 | 13B07FAE1A68108700A75B9A /* Boilerplate */, 74 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 75 | 83CBBA001A601CBA00E9B192 /* Products */, 76 | 2D16E6871FA4F8E400B85C8A /* Frameworks */, 77 | BBD78D7AC51CEA395F1C20DB /* Pods */, 78 | ); 79 | indentWidth = 2; 80 | sourceTree = ""; 81 | tabWidth = 2; 82 | usesTabs = 0; 83 | }; 84 | 83CBBA001A601CBA00E9B192 /* Products */ = { 85 | isa = PBXGroup; 86 | children = ( 87 | 13B07F961A680F5B00A75B9A /* Boilerplate.app */, 88 | ); 89 | name = Products; 90 | sourceTree = ""; 91 | }; 92 | BBD78D7AC51CEA395F1C20DB /* Pods */ = { 93 | isa = PBXGroup; 94 | children = ( 95 | 3B4392A12AC88292D35C810B /* Pods-Boilerplate.debug.xcconfig */, 96 | 5709B34CF0A7D63546082F79 /* Pods-Boilerplate.release.xcconfig */, 97 | ); 98 | path = Pods; 99 | sourceTree = ""; 100 | }; 101 | /* End PBXGroup section */ 102 | 103 | /* Begin PBXNativeTarget section */ 104 | 13B07F861A680F5B00A75B9A /* Boilerplate */ = { 105 | isa = PBXNativeTarget; 106 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "Boilerplate" */; 107 | buildPhases = ( 108 | C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */, 109 | 13B07F871A680F5B00A75B9A /* Sources */, 110 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 111 | 13B07F8E1A680F5B00A75B9A /* Resources */, 112 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 113 | 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */, 114 | E235C05ADACE081382539298 /* [CP] Copy Pods Resources */, 115 | ); 116 | buildRules = ( 117 | ); 118 | dependencies = ( 119 | ); 120 | name = Boilerplate; 121 | productName = Boilerplate; 122 | productReference = 13B07F961A680F5B00A75B9A /* Boilerplate.app */; 123 | productType = "com.apple.product-type.application"; 124 | }; 125 | /* End PBXNativeTarget section */ 126 | 127 | /* Begin PBXProject section */ 128 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 129 | isa = PBXProject; 130 | attributes = { 131 | LastUpgradeCheck = 1210; 132 | TargetAttributes = { 133 | 13B07F861A680F5B00A75B9A = { 134 | LastSwiftMigration = 1120; 135 | }; 136 | }; 137 | }; 138 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "Boilerplate" */; 139 | compatibilityVersion = "Xcode 12.0"; 140 | developmentRegion = en; 141 | hasScannedForEncodings = 0; 142 | knownRegions = ( 143 | en, 144 | Base, 145 | ); 146 | mainGroup = 83CBB9F61A601CBA00E9B192; 147 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 148 | projectDirPath = ""; 149 | projectRoot = ""; 150 | targets = ( 151 | 13B07F861A680F5B00A75B9A /* Boilerplate */, 152 | ); 153 | }; 154 | /* End PBXProject section */ 155 | 156 | /* Begin PBXResourcesBuildPhase section */ 157 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 158 | isa = PBXResourcesBuildPhase; 159 | buildActionMask = 2147483647; 160 | files = ( 161 | 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */, 162 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 163 | 3AFF0C9EA1E33CA4F03F9C4E /* PrivacyInfo.xcprivacy in Resources */, 164 | ); 165 | runOnlyForDeploymentPostprocessing = 0; 166 | }; 167 | /* End PBXResourcesBuildPhase section */ 168 | 169 | /* Begin PBXShellScriptBuildPhase section */ 170 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 171 | isa = PBXShellScriptBuildPhase; 172 | buildActionMask = 2147483647; 173 | files = ( 174 | ); 175 | inputPaths = ( 176 | "$(SRCROOT)/.xcode.env.local", 177 | "$(SRCROOT)/.xcode.env", 178 | ); 179 | name = "Bundle React Native code and images"; 180 | outputPaths = ( 181 | ); 182 | runOnlyForDeploymentPostprocessing = 0; 183 | shellPath = /bin/sh; 184 | shellScript = "set -e\n\nWITH_ENVIRONMENT=\"$REACT_NATIVE_PATH/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"$REACT_NATIVE_PATH/scripts/react-native-xcode.sh\"\n\n/bin/sh -c \"$WITH_ENVIRONMENT $REACT_NATIVE_XCODE\"\n"; 185 | }; 186 | 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */ = { 187 | isa = PBXShellScriptBuildPhase; 188 | buildActionMask = 2147483647; 189 | files = ( 190 | ); 191 | inputFileListPaths = ( 192 | "${PODS_ROOT}/Target Support Files/Pods-Boilerplate/Pods-Boilerplate-frameworks-${CONFIGURATION}-input-files.xcfilelist", 193 | ); 194 | name = "[CP] Embed Pods Frameworks"; 195 | outputFileListPaths = ( 196 | "${PODS_ROOT}/Target Support Files/Pods-Boilerplate/Pods-Boilerplate-frameworks-${CONFIGURATION}-output-files.xcfilelist", 197 | ); 198 | runOnlyForDeploymentPostprocessing = 0; 199 | shellPath = /bin/sh; 200 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Boilerplate/Pods-Boilerplate-frameworks.sh\"\n"; 201 | showEnvVarsInLog = 0; 202 | }; 203 | C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */ = { 204 | isa = PBXShellScriptBuildPhase; 205 | buildActionMask = 2147483647; 206 | files = ( 207 | ); 208 | inputFileListPaths = ( 209 | ); 210 | inputPaths = ( 211 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 212 | "${PODS_ROOT}/Manifest.lock", 213 | ); 214 | name = "[CP] Check Pods Manifest.lock"; 215 | outputFileListPaths = ( 216 | ); 217 | outputPaths = ( 218 | "$(DERIVED_FILE_DIR)/Pods-Boilerplate-checkManifestLockResult.txt", 219 | ); 220 | runOnlyForDeploymentPostprocessing = 0; 221 | shellPath = /bin/sh; 222 | 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"; 223 | showEnvVarsInLog = 0; 224 | }; 225 | E235C05ADACE081382539298 /* [CP] Copy Pods Resources */ = { 226 | isa = PBXShellScriptBuildPhase; 227 | buildActionMask = 2147483647; 228 | files = ( 229 | ); 230 | inputFileListPaths = ( 231 | "${PODS_ROOT}/Target Support Files/Pods-Boilerplate/Pods-Boilerplate-resources-${CONFIGURATION}-input-files.xcfilelist", 232 | ); 233 | name = "[CP] Copy Pods Resources"; 234 | outputFileListPaths = ( 235 | "${PODS_ROOT}/Target Support Files/Pods-Boilerplate/Pods-Boilerplate-resources-${CONFIGURATION}-output-files.xcfilelist", 236 | ); 237 | runOnlyForDeploymentPostprocessing = 0; 238 | shellPath = /bin/sh; 239 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Boilerplate/Pods-Boilerplate-resources.sh\"\n"; 240 | showEnvVarsInLog = 0; 241 | }; 242 | /* End PBXShellScriptBuildPhase section */ 243 | 244 | /* Begin PBXSourcesBuildPhase section */ 245 | 13B07F871A680F5B00A75B9A /* Sources */ = { 246 | isa = PBXSourcesBuildPhase; 247 | buildActionMask = 2147483647; 248 | files = ( 249 | 761780ED2CA45674006654EE /* AppDelegate.swift in Sources */, 250 | ); 251 | runOnlyForDeploymentPostprocessing = 0; 252 | }; 253 | /* End PBXSourcesBuildPhase section */ 254 | 255 | /* Begin XCBuildConfiguration section */ 256 | 13B07F941A680F5B00A75B9A /* Debug */ = { 257 | isa = XCBuildConfiguration; 258 | baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-Boilerplate.debug.xcconfig */; 259 | buildSettings = { 260 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 261 | CLANG_ENABLE_MODULES = YES; 262 | CURRENT_PROJECT_VERSION = 1; 263 | ENABLE_BITCODE = NO; 264 | INFOPLIST_FILE = Boilerplate/Info.plist; 265 | IPHONEOS_DEPLOYMENT_TARGET = 15.1; 266 | LD_RUNPATH_SEARCH_PATHS = ( 267 | "$(inherited)", 268 | "@executable_path/Frameworks", 269 | ); 270 | MARKETING_VERSION = 1.0; 271 | OTHER_LDFLAGS = ( 272 | "$(inherited)", 273 | "-ObjC", 274 | "-lc++", 275 | ); 276 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 277 | PRODUCT_NAME = Boilerplate; 278 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 279 | SWIFT_VERSION = 5.0; 280 | VERSIONING_SYSTEM = "apple-generic"; 281 | }; 282 | name = Debug; 283 | }; 284 | 13B07F951A680F5B00A75B9A /* Release */ = { 285 | isa = XCBuildConfiguration; 286 | baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-Boilerplate.release.xcconfig */; 287 | buildSettings = { 288 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 289 | CLANG_ENABLE_MODULES = YES; 290 | CURRENT_PROJECT_VERSION = 1; 291 | INFOPLIST_FILE = Boilerplate/Info.plist; 292 | IPHONEOS_DEPLOYMENT_TARGET = 15.1; 293 | LD_RUNPATH_SEARCH_PATHS = ( 294 | "$(inherited)", 295 | "@executable_path/Frameworks", 296 | ); 297 | MARKETING_VERSION = 1.0; 298 | OTHER_LDFLAGS = ( 299 | "$(inherited)", 300 | "-ObjC", 301 | "-lc++", 302 | ); 303 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 304 | PRODUCT_NAME = Boilerplate; 305 | SWIFT_VERSION = 5.0; 306 | VERSIONING_SYSTEM = "apple-generic"; 307 | }; 308 | name = Release; 309 | }; 310 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 311 | isa = XCBuildConfiguration; 312 | buildSettings = { 313 | ALWAYS_SEARCH_USER_PATHS = NO; 314 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 315 | CLANG_CXX_LANGUAGE_STANDARD = "c++20"; 316 | CLANG_CXX_LIBRARY = "libc++"; 317 | CLANG_ENABLE_MODULES = YES; 318 | CLANG_ENABLE_OBJC_ARC = YES; 319 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 320 | CLANG_WARN_BOOL_CONVERSION = YES; 321 | CLANG_WARN_COMMA = YES; 322 | CLANG_WARN_CONSTANT_CONVERSION = YES; 323 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 324 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 325 | CLANG_WARN_EMPTY_BODY = YES; 326 | CLANG_WARN_ENUM_CONVERSION = YES; 327 | CLANG_WARN_INFINITE_RECURSION = YES; 328 | CLANG_WARN_INT_CONVERSION = YES; 329 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 330 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 331 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 332 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 333 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 334 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 335 | CLANG_WARN_STRICT_PROTOTYPES = YES; 336 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 337 | CLANG_WARN_UNREACHABLE_CODE = YES; 338 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 339 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 340 | COPY_PHASE_STRIP = NO; 341 | ENABLE_STRICT_OBJC_MSGSEND = YES; 342 | ENABLE_TESTABILITY = YES; 343 | "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = ""; 344 | GCC_C_LANGUAGE_STANDARD = gnu99; 345 | GCC_DYNAMIC_NO_PIC = NO; 346 | GCC_NO_COMMON_BLOCKS = YES; 347 | GCC_OPTIMIZATION_LEVEL = 0; 348 | GCC_PREPROCESSOR_DEFINITIONS = ( 349 | "DEBUG=1", 350 | "$(inherited)", 351 | ); 352 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 353 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 354 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 355 | GCC_WARN_UNDECLARED_SELECTOR = YES; 356 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 357 | GCC_WARN_UNUSED_FUNCTION = YES; 358 | GCC_WARN_UNUSED_VARIABLE = YES; 359 | IPHONEOS_DEPLOYMENT_TARGET = 15.1; 360 | LD_RUNPATH_SEARCH_PATHS = ( 361 | /usr/lib/swift, 362 | "$(inherited)", 363 | ); 364 | LIBRARY_SEARCH_PATHS = ( 365 | "\"$(SDKROOT)/usr/lib/swift\"", 366 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"", 367 | "\"$(inherited)\"", 368 | ); 369 | MTL_ENABLE_DEBUG_INFO = YES; 370 | ONLY_ACTIVE_ARCH = YES; 371 | OTHER_CPLUSPLUSFLAGS = ( 372 | "$(OTHER_CFLAGS)", 373 | "-DFOLLY_NO_CONFIG", 374 | "-DFOLLY_MOBILE=1", 375 | "-DFOLLY_USE_LIBCPP=1", 376 | "-DFOLLY_CFG_NO_COROUTINES=1", 377 | "-DFOLLY_HAVE_CLOCK_GETTIME=1", 378 | ); 379 | REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native"; 380 | SDKROOT = iphoneos; 381 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG"; 382 | USE_HERMES = true; 383 | }; 384 | name = Debug; 385 | }; 386 | 83CBBA211A601CBA00E9B192 /* Release */ = { 387 | isa = XCBuildConfiguration; 388 | buildSettings = { 389 | ALWAYS_SEARCH_USER_PATHS = NO; 390 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 391 | CLANG_CXX_LANGUAGE_STANDARD = "c++20"; 392 | CLANG_CXX_LIBRARY = "libc++"; 393 | CLANG_ENABLE_MODULES = YES; 394 | CLANG_ENABLE_OBJC_ARC = YES; 395 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 396 | CLANG_WARN_BOOL_CONVERSION = YES; 397 | CLANG_WARN_COMMA = YES; 398 | CLANG_WARN_CONSTANT_CONVERSION = YES; 399 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 400 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 401 | CLANG_WARN_EMPTY_BODY = YES; 402 | CLANG_WARN_ENUM_CONVERSION = YES; 403 | CLANG_WARN_INFINITE_RECURSION = YES; 404 | CLANG_WARN_INT_CONVERSION = YES; 405 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 406 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 407 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 408 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 409 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 410 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 411 | CLANG_WARN_STRICT_PROTOTYPES = YES; 412 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 413 | CLANG_WARN_UNREACHABLE_CODE = YES; 414 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 415 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 416 | COPY_PHASE_STRIP = YES; 417 | ENABLE_NS_ASSERTIONS = NO; 418 | ENABLE_STRICT_OBJC_MSGSEND = YES; 419 | "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = ""; 420 | GCC_C_LANGUAGE_STANDARD = gnu99; 421 | GCC_NO_COMMON_BLOCKS = YES; 422 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 423 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 424 | GCC_WARN_UNDECLARED_SELECTOR = YES; 425 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 426 | GCC_WARN_UNUSED_FUNCTION = YES; 427 | GCC_WARN_UNUSED_VARIABLE = YES; 428 | IPHONEOS_DEPLOYMENT_TARGET = 15.1; 429 | LD_RUNPATH_SEARCH_PATHS = ( 430 | /usr/lib/swift, 431 | "$(inherited)", 432 | ); 433 | LIBRARY_SEARCH_PATHS = ( 434 | "\"$(SDKROOT)/usr/lib/swift\"", 435 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"", 436 | "\"$(inherited)\"", 437 | ); 438 | MTL_ENABLE_DEBUG_INFO = NO; 439 | OTHER_CPLUSPLUSFLAGS = ( 440 | "$(OTHER_CFLAGS)", 441 | "-DFOLLY_NO_CONFIG", 442 | "-DFOLLY_MOBILE=1", 443 | "-DFOLLY_USE_LIBCPP=1", 444 | "-DFOLLY_CFG_NO_COROUTINES=1", 445 | "-DFOLLY_HAVE_CLOCK_GETTIME=1", 446 | ); 447 | REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native"; 448 | SDKROOT = iphoneos; 449 | USE_HERMES = true; 450 | VALIDATE_PRODUCT = YES; 451 | }; 452 | name = Release; 453 | }; 454 | /* End XCBuildConfiguration section */ 455 | 456 | /* Begin XCConfigurationList section */ 457 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "Boilerplate" */ = { 458 | isa = XCConfigurationList; 459 | buildConfigurations = ( 460 | 13B07F941A680F5B00A75B9A /* Debug */, 461 | 13B07F951A680F5B00A75B9A /* Release */, 462 | ); 463 | defaultConfigurationIsVisible = 0; 464 | defaultConfigurationName = Release; 465 | }; 466 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "Boilerplate" */ = { 467 | isa = XCConfigurationList; 468 | buildConfigurations = ( 469 | 83CBBA201A601CBA00E9B192 /* Debug */, 470 | 83CBBA211A601CBA00E9B192 /* Release */, 471 | ); 472 | defaultConfigurationIsVisible = 0; 473 | defaultConfigurationName = Release; 474 | }; 475 | /* End XCConfigurationList section */ 476 | }; 477 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 478 | } 479 | -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - boost (1.84.0) 3 | - DoubleConversion (1.1.6) 4 | - fast_float (8.0.0) 5 | - FBLazyVector (0.82.1) 6 | - fmt (11.0.2) 7 | - glog (0.3.5) 8 | - hermes-engine (0.82.1): 9 | - hermes-engine/Pre-built (= 0.82.1) 10 | - hermes-engine/Pre-built (0.82.1) 11 | - RCT-Folly (2024.11.18.00): 12 | - boost 13 | - DoubleConversion 14 | - fast_float (= 8.0.0) 15 | - fmt (= 11.0.2) 16 | - glog 17 | - RCT-Folly/Default (= 2024.11.18.00) 18 | - RCT-Folly/Default (2024.11.18.00): 19 | - boost 20 | - DoubleConversion 21 | - fast_float (= 8.0.0) 22 | - fmt (= 11.0.2) 23 | - glog 24 | - RCT-Folly/Fabric (2024.11.18.00): 25 | - boost 26 | - DoubleConversion 27 | - fast_float (= 8.0.0) 28 | - fmt (= 11.0.2) 29 | - glog 30 | - RCTDeprecation (0.82.1) 31 | - RCTRequired (0.82.1) 32 | - RCTTypeSafety (0.82.1): 33 | - FBLazyVector (= 0.82.1) 34 | - RCTRequired (= 0.82.1) 35 | - React-Core (= 0.82.1) 36 | - React (0.82.1): 37 | - React-Core (= 0.82.1) 38 | - React-Core/DevSupport (= 0.82.1) 39 | - React-Core/RCTWebSocket (= 0.82.1) 40 | - React-RCTActionSheet (= 0.82.1) 41 | - React-RCTAnimation (= 0.82.1) 42 | - React-RCTBlob (= 0.82.1) 43 | - React-RCTImage (= 0.82.1) 44 | - React-RCTLinking (= 0.82.1) 45 | - React-RCTNetwork (= 0.82.1) 46 | - React-RCTSettings (= 0.82.1) 47 | - React-RCTText (= 0.82.1) 48 | - React-RCTVibration (= 0.82.1) 49 | - React-callinvoker (0.82.1) 50 | - React-Core (0.82.1): 51 | - boost 52 | - DoubleConversion 53 | - fast_float 54 | - fmt 55 | - glog 56 | - hermes-engine 57 | - RCT-Folly 58 | - RCT-Folly/Fabric 59 | - RCTDeprecation 60 | - React-Core/Default (= 0.82.1) 61 | - React-cxxreact 62 | - React-featureflags 63 | - React-hermes 64 | - React-jsi 65 | - React-jsiexecutor 66 | - React-jsinspector 67 | - React-jsinspectorcdp 68 | - React-jsitooling 69 | - React-perflogger 70 | - React-runtimeexecutor 71 | - React-runtimescheduler 72 | - React-utils 73 | - SocketRocket 74 | - Yoga 75 | - React-Core/CoreModulesHeaders (0.82.1): 76 | - boost 77 | - DoubleConversion 78 | - fast_float 79 | - fmt 80 | - glog 81 | - hermes-engine 82 | - RCT-Folly 83 | - RCT-Folly/Fabric 84 | - RCTDeprecation 85 | - React-Core/Default 86 | - React-cxxreact 87 | - React-featureflags 88 | - React-hermes 89 | - React-jsi 90 | - React-jsiexecutor 91 | - React-jsinspector 92 | - React-jsinspectorcdp 93 | - React-jsitooling 94 | - React-perflogger 95 | - React-runtimeexecutor 96 | - React-runtimescheduler 97 | - React-utils 98 | - SocketRocket 99 | - Yoga 100 | - React-Core/Default (0.82.1): 101 | - boost 102 | - DoubleConversion 103 | - fast_float 104 | - fmt 105 | - glog 106 | - hermes-engine 107 | - RCT-Folly 108 | - RCT-Folly/Fabric 109 | - RCTDeprecation 110 | - React-cxxreact 111 | - React-featureflags 112 | - React-hermes 113 | - React-jsi 114 | - React-jsiexecutor 115 | - React-jsinspector 116 | - React-jsinspectorcdp 117 | - React-jsitooling 118 | - React-perflogger 119 | - React-runtimeexecutor 120 | - React-runtimescheduler 121 | - React-utils 122 | - SocketRocket 123 | - Yoga 124 | - React-Core/DevSupport (0.82.1): 125 | - boost 126 | - DoubleConversion 127 | - fast_float 128 | - fmt 129 | - glog 130 | - hermes-engine 131 | - RCT-Folly 132 | - RCT-Folly/Fabric 133 | - RCTDeprecation 134 | - React-Core/Default (= 0.82.1) 135 | - React-Core/RCTWebSocket (= 0.82.1) 136 | - React-cxxreact 137 | - React-featureflags 138 | - React-hermes 139 | - React-jsi 140 | - React-jsiexecutor 141 | - React-jsinspector 142 | - React-jsinspectorcdp 143 | - React-jsitooling 144 | - React-perflogger 145 | - React-runtimeexecutor 146 | - React-runtimescheduler 147 | - React-utils 148 | - SocketRocket 149 | - Yoga 150 | - React-Core/RCTActionSheetHeaders (0.82.1): 151 | - boost 152 | - DoubleConversion 153 | - fast_float 154 | - fmt 155 | - glog 156 | - hermes-engine 157 | - RCT-Folly 158 | - RCT-Folly/Fabric 159 | - RCTDeprecation 160 | - React-Core/Default 161 | - React-cxxreact 162 | - React-featureflags 163 | - React-hermes 164 | - React-jsi 165 | - React-jsiexecutor 166 | - React-jsinspector 167 | - React-jsinspectorcdp 168 | - React-jsitooling 169 | - React-perflogger 170 | - React-runtimeexecutor 171 | - React-runtimescheduler 172 | - React-utils 173 | - SocketRocket 174 | - Yoga 175 | - React-Core/RCTAnimationHeaders (0.82.1): 176 | - boost 177 | - DoubleConversion 178 | - fast_float 179 | - fmt 180 | - glog 181 | - hermes-engine 182 | - RCT-Folly 183 | - RCT-Folly/Fabric 184 | - RCTDeprecation 185 | - React-Core/Default 186 | - React-cxxreact 187 | - React-featureflags 188 | - React-hermes 189 | - React-jsi 190 | - React-jsiexecutor 191 | - React-jsinspector 192 | - React-jsinspectorcdp 193 | - React-jsitooling 194 | - React-perflogger 195 | - React-runtimeexecutor 196 | - React-runtimescheduler 197 | - React-utils 198 | - SocketRocket 199 | - Yoga 200 | - React-Core/RCTBlobHeaders (0.82.1): 201 | - boost 202 | - DoubleConversion 203 | - fast_float 204 | - fmt 205 | - glog 206 | - hermes-engine 207 | - RCT-Folly 208 | - RCT-Folly/Fabric 209 | - RCTDeprecation 210 | - React-Core/Default 211 | - React-cxxreact 212 | - React-featureflags 213 | - React-hermes 214 | - React-jsi 215 | - React-jsiexecutor 216 | - React-jsinspector 217 | - React-jsinspectorcdp 218 | - React-jsitooling 219 | - React-perflogger 220 | - React-runtimeexecutor 221 | - React-runtimescheduler 222 | - React-utils 223 | - SocketRocket 224 | - Yoga 225 | - React-Core/RCTImageHeaders (0.82.1): 226 | - boost 227 | - DoubleConversion 228 | - fast_float 229 | - fmt 230 | - glog 231 | - hermes-engine 232 | - RCT-Folly 233 | - RCT-Folly/Fabric 234 | - RCTDeprecation 235 | - React-Core/Default 236 | - React-cxxreact 237 | - React-featureflags 238 | - React-hermes 239 | - React-jsi 240 | - React-jsiexecutor 241 | - React-jsinspector 242 | - React-jsinspectorcdp 243 | - React-jsitooling 244 | - React-perflogger 245 | - React-runtimeexecutor 246 | - React-runtimescheduler 247 | - React-utils 248 | - SocketRocket 249 | - Yoga 250 | - React-Core/RCTLinkingHeaders (0.82.1): 251 | - boost 252 | - DoubleConversion 253 | - fast_float 254 | - fmt 255 | - glog 256 | - hermes-engine 257 | - RCT-Folly 258 | - RCT-Folly/Fabric 259 | - RCTDeprecation 260 | - React-Core/Default 261 | - React-cxxreact 262 | - React-featureflags 263 | - React-hermes 264 | - React-jsi 265 | - React-jsiexecutor 266 | - React-jsinspector 267 | - React-jsinspectorcdp 268 | - React-jsitooling 269 | - React-perflogger 270 | - React-runtimeexecutor 271 | - React-runtimescheduler 272 | - React-utils 273 | - SocketRocket 274 | - Yoga 275 | - React-Core/RCTNetworkHeaders (0.82.1): 276 | - boost 277 | - DoubleConversion 278 | - fast_float 279 | - fmt 280 | - glog 281 | - hermes-engine 282 | - RCT-Folly 283 | - RCT-Folly/Fabric 284 | - RCTDeprecation 285 | - React-Core/Default 286 | - React-cxxreact 287 | - React-featureflags 288 | - React-hermes 289 | - React-jsi 290 | - React-jsiexecutor 291 | - React-jsinspector 292 | - React-jsinspectorcdp 293 | - React-jsitooling 294 | - React-perflogger 295 | - React-runtimeexecutor 296 | - React-runtimescheduler 297 | - React-utils 298 | - SocketRocket 299 | - Yoga 300 | - React-Core/RCTSettingsHeaders (0.82.1): 301 | - boost 302 | - DoubleConversion 303 | - fast_float 304 | - fmt 305 | - glog 306 | - hermes-engine 307 | - RCT-Folly 308 | - RCT-Folly/Fabric 309 | - RCTDeprecation 310 | - React-Core/Default 311 | - React-cxxreact 312 | - React-featureflags 313 | - React-hermes 314 | - React-jsi 315 | - React-jsiexecutor 316 | - React-jsinspector 317 | - React-jsinspectorcdp 318 | - React-jsitooling 319 | - React-perflogger 320 | - React-runtimeexecutor 321 | - React-runtimescheduler 322 | - React-utils 323 | - SocketRocket 324 | - Yoga 325 | - React-Core/RCTTextHeaders (0.82.1): 326 | - boost 327 | - DoubleConversion 328 | - fast_float 329 | - fmt 330 | - glog 331 | - hermes-engine 332 | - RCT-Folly 333 | - RCT-Folly/Fabric 334 | - RCTDeprecation 335 | - React-Core/Default 336 | - React-cxxreact 337 | - React-featureflags 338 | - React-hermes 339 | - React-jsi 340 | - React-jsiexecutor 341 | - React-jsinspector 342 | - React-jsinspectorcdp 343 | - React-jsitooling 344 | - React-perflogger 345 | - React-runtimeexecutor 346 | - React-runtimescheduler 347 | - React-utils 348 | - SocketRocket 349 | - Yoga 350 | - React-Core/RCTVibrationHeaders (0.82.1): 351 | - boost 352 | - DoubleConversion 353 | - fast_float 354 | - fmt 355 | - glog 356 | - hermes-engine 357 | - RCT-Folly 358 | - RCT-Folly/Fabric 359 | - RCTDeprecation 360 | - React-Core/Default 361 | - React-cxxreact 362 | - React-featureflags 363 | - React-hermes 364 | - React-jsi 365 | - React-jsiexecutor 366 | - React-jsinspector 367 | - React-jsinspectorcdp 368 | - React-jsitooling 369 | - React-perflogger 370 | - React-runtimeexecutor 371 | - React-runtimescheduler 372 | - React-utils 373 | - SocketRocket 374 | - Yoga 375 | - React-Core/RCTWebSocket (0.82.1): 376 | - boost 377 | - DoubleConversion 378 | - fast_float 379 | - fmt 380 | - glog 381 | - hermes-engine 382 | - RCT-Folly 383 | - RCT-Folly/Fabric 384 | - RCTDeprecation 385 | - React-Core/Default (= 0.82.1) 386 | - React-cxxreact 387 | - React-featureflags 388 | - React-hermes 389 | - React-jsi 390 | - React-jsiexecutor 391 | - React-jsinspector 392 | - React-jsinspectorcdp 393 | - React-jsitooling 394 | - React-perflogger 395 | - React-runtimeexecutor 396 | - React-runtimescheduler 397 | - React-utils 398 | - SocketRocket 399 | - Yoga 400 | - React-CoreModules (0.82.1): 401 | - boost 402 | - DoubleConversion 403 | - fast_float 404 | - fmt 405 | - glog 406 | - RCT-Folly 407 | - RCT-Folly/Fabric 408 | - RCTTypeSafety (= 0.82.1) 409 | - React-Core/CoreModulesHeaders (= 0.82.1) 410 | - React-debug 411 | - React-jsi (= 0.82.1) 412 | - React-jsinspector 413 | - React-jsinspectorcdp 414 | - React-jsinspectortracing 415 | - React-NativeModulesApple 416 | - React-RCTBlob 417 | - React-RCTFBReactNativeSpec 418 | - React-RCTImage (= 0.82.1) 419 | - React-runtimeexecutor 420 | - ReactCommon 421 | - SocketRocket 422 | - React-cxxreact (0.82.1): 423 | - boost 424 | - DoubleConversion 425 | - fast_float 426 | - fmt 427 | - glog 428 | - hermes-engine 429 | - RCT-Folly 430 | - RCT-Folly/Fabric 431 | - React-callinvoker (= 0.82.1) 432 | - React-debug (= 0.82.1) 433 | - React-jsi (= 0.82.1) 434 | - React-jsinspector 435 | - React-jsinspectorcdp 436 | - React-jsinspectortracing 437 | - React-logger (= 0.82.1) 438 | - React-perflogger (= 0.82.1) 439 | - React-runtimeexecutor 440 | - React-timing (= 0.82.1) 441 | - SocketRocket 442 | - React-debug (0.82.1) 443 | - React-defaultsnativemodule (0.82.1): 444 | - boost 445 | - DoubleConversion 446 | - fast_float 447 | - fmt 448 | - glog 449 | - hermes-engine 450 | - RCT-Folly 451 | - RCT-Folly/Fabric 452 | - React-domnativemodule 453 | - React-featureflagsnativemodule 454 | - React-idlecallbacksnativemodule 455 | - React-jsi 456 | - React-jsiexecutor 457 | - React-microtasksnativemodule 458 | - React-RCTFBReactNativeSpec 459 | - React-webperformancenativemodule 460 | - SocketRocket 461 | - React-domnativemodule (0.82.1): 462 | - boost 463 | - DoubleConversion 464 | - fast_float 465 | - fmt 466 | - glog 467 | - hermes-engine 468 | - RCT-Folly 469 | - RCT-Folly/Fabric 470 | - React-Fabric 471 | - React-Fabric/bridging 472 | - React-FabricComponents 473 | - React-graphics 474 | - React-jsi 475 | - React-jsiexecutor 476 | - React-RCTFBReactNativeSpec 477 | - React-runtimeexecutor 478 | - ReactCommon/turbomodule/core 479 | - SocketRocket 480 | - Yoga 481 | - React-Fabric (0.82.1): 482 | - boost 483 | - DoubleConversion 484 | - fast_float 485 | - fmt 486 | - glog 487 | - hermes-engine 488 | - RCT-Folly 489 | - RCT-Folly/Fabric 490 | - RCTRequired 491 | - RCTTypeSafety 492 | - React-Core 493 | - React-cxxreact 494 | - React-debug 495 | - React-Fabric/animations (= 0.82.1) 496 | - React-Fabric/attributedstring (= 0.82.1) 497 | - React-Fabric/bridging (= 0.82.1) 498 | - React-Fabric/componentregistry (= 0.82.1) 499 | - React-Fabric/componentregistrynative (= 0.82.1) 500 | - React-Fabric/components (= 0.82.1) 501 | - React-Fabric/consistency (= 0.82.1) 502 | - React-Fabric/core (= 0.82.1) 503 | - React-Fabric/dom (= 0.82.1) 504 | - React-Fabric/imagemanager (= 0.82.1) 505 | - React-Fabric/leakchecker (= 0.82.1) 506 | - React-Fabric/mounting (= 0.82.1) 507 | - React-Fabric/observers (= 0.82.1) 508 | - React-Fabric/scheduler (= 0.82.1) 509 | - React-Fabric/telemetry (= 0.82.1) 510 | - React-Fabric/templateprocessor (= 0.82.1) 511 | - React-Fabric/uimanager (= 0.82.1) 512 | - React-featureflags 513 | - React-graphics 514 | - React-jsi 515 | - React-jsiexecutor 516 | - React-logger 517 | - React-rendererdebug 518 | - React-runtimeexecutor 519 | - React-runtimescheduler 520 | - React-utils 521 | - ReactCommon/turbomodule/core 522 | - SocketRocket 523 | - React-Fabric/animations (0.82.1): 524 | - boost 525 | - DoubleConversion 526 | - fast_float 527 | - fmt 528 | - glog 529 | - hermes-engine 530 | - RCT-Folly 531 | - RCT-Folly/Fabric 532 | - RCTRequired 533 | - RCTTypeSafety 534 | - React-Core 535 | - React-cxxreact 536 | - React-debug 537 | - React-featureflags 538 | - React-graphics 539 | - React-jsi 540 | - React-jsiexecutor 541 | - React-logger 542 | - React-rendererdebug 543 | - React-runtimeexecutor 544 | - React-runtimescheduler 545 | - React-utils 546 | - ReactCommon/turbomodule/core 547 | - SocketRocket 548 | - React-Fabric/attributedstring (0.82.1): 549 | - boost 550 | - DoubleConversion 551 | - fast_float 552 | - fmt 553 | - glog 554 | - hermes-engine 555 | - RCT-Folly 556 | - RCT-Folly/Fabric 557 | - RCTRequired 558 | - RCTTypeSafety 559 | - React-Core 560 | - React-cxxreact 561 | - React-debug 562 | - React-featureflags 563 | - React-graphics 564 | - React-jsi 565 | - React-jsiexecutor 566 | - React-logger 567 | - React-rendererdebug 568 | - React-runtimeexecutor 569 | - React-runtimescheduler 570 | - React-utils 571 | - ReactCommon/turbomodule/core 572 | - SocketRocket 573 | - React-Fabric/bridging (0.82.1): 574 | - boost 575 | - DoubleConversion 576 | - fast_float 577 | - fmt 578 | - glog 579 | - hermes-engine 580 | - RCT-Folly 581 | - RCT-Folly/Fabric 582 | - RCTRequired 583 | - RCTTypeSafety 584 | - React-Core 585 | - React-cxxreact 586 | - React-debug 587 | - React-featureflags 588 | - React-graphics 589 | - React-jsi 590 | - React-jsiexecutor 591 | - React-logger 592 | - React-rendererdebug 593 | - React-runtimeexecutor 594 | - React-runtimescheduler 595 | - React-utils 596 | - ReactCommon/turbomodule/core 597 | - SocketRocket 598 | - React-Fabric/componentregistry (0.82.1): 599 | - boost 600 | - DoubleConversion 601 | - fast_float 602 | - fmt 603 | - glog 604 | - hermes-engine 605 | - RCT-Folly 606 | - RCT-Folly/Fabric 607 | - RCTRequired 608 | - RCTTypeSafety 609 | - React-Core 610 | - React-cxxreact 611 | - React-debug 612 | - React-featureflags 613 | - React-graphics 614 | - React-jsi 615 | - React-jsiexecutor 616 | - React-logger 617 | - React-rendererdebug 618 | - React-runtimeexecutor 619 | - React-runtimescheduler 620 | - React-utils 621 | - ReactCommon/turbomodule/core 622 | - SocketRocket 623 | - React-Fabric/componentregistrynative (0.82.1): 624 | - boost 625 | - DoubleConversion 626 | - fast_float 627 | - fmt 628 | - glog 629 | - hermes-engine 630 | - RCT-Folly 631 | - RCT-Folly/Fabric 632 | - RCTRequired 633 | - RCTTypeSafety 634 | - React-Core 635 | - React-cxxreact 636 | - React-debug 637 | - React-featureflags 638 | - React-graphics 639 | - React-jsi 640 | - React-jsiexecutor 641 | - React-logger 642 | - React-rendererdebug 643 | - React-runtimeexecutor 644 | - React-runtimescheduler 645 | - React-utils 646 | - ReactCommon/turbomodule/core 647 | - SocketRocket 648 | - React-Fabric/components (0.82.1): 649 | - boost 650 | - DoubleConversion 651 | - fast_float 652 | - fmt 653 | - glog 654 | - hermes-engine 655 | - RCT-Folly 656 | - RCT-Folly/Fabric 657 | - RCTRequired 658 | - RCTTypeSafety 659 | - React-Core 660 | - React-cxxreact 661 | - React-debug 662 | - React-Fabric/components/legacyviewmanagerinterop (= 0.82.1) 663 | - React-Fabric/components/root (= 0.82.1) 664 | - React-Fabric/components/scrollview (= 0.82.1) 665 | - React-Fabric/components/view (= 0.82.1) 666 | - React-featureflags 667 | - React-graphics 668 | - React-jsi 669 | - React-jsiexecutor 670 | - React-logger 671 | - React-rendererdebug 672 | - React-runtimeexecutor 673 | - React-runtimescheduler 674 | - React-utils 675 | - ReactCommon/turbomodule/core 676 | - SocketRocket 677 | - React-Fabric/components/legacyviewmanagerinterop (0.82.1): 678 | - boost 679 | - DoubleConversion 680 | - fast_float 681 | - fmt 682 | - glog 683 | - hermes-engine 684 | - RCT-Folly 685 | - RCT-Folly/Fabric 686 | - RCTRequired 687 | - RCTTypeSafety 688 | - React-Core 689 | - React-cxxreact 690 | - React-debug 691 | - React-featureflags 692 | - React-graphics 693 | - React-jsi 694 | - React-jsiexecutor 695 | - React-logger 696 | - React-rendererdebug 697 | - React-runtimeexecutor 698 | - React-runtimescheduler 699 | - React-utils 700 | - ReactCommon/turbomodule/core 701 | - SocketRocket 702 | - React-Fabric/components/root (0.82.1): 703 | - boost 704 | - DoubleConversion 705 | - fast_float 706 | - fmt 707 | - glog 708 | - hermes-engine 709 | - RCT-Folly 710 | - RCT-Folly/Fabric 711 | - RCTRequired 712 | - RCTTypeSafety 713 | - React-Core 714 | - React-cxxreact 715 | - React-debug 716 | - React-featureflags 717 | - React-graphics 718 | - React-jsi 719 | - React-jsiexecutor 720 | - React-logger 721 | - React-rendererdebug 722 | - React-runtimeexecutor 723 | - React-runtimescheduler 724 | - React-utils 725 | - ReactCommon/turbomodule/core 726 | - SocketRocket 727 | - React-Fabric/components/scrollview (0.82.1): 728 | - boost 729 | - DoubleConversion 730 | - fast_float 731 | - fmt 732 | - glog 733 | - hermes-engine 734 | - RCT-Folly 735 | - RCT-Folly/Fabric 736 | - RCTRequired 737 | - RCTTypeSafety 738 | - React-Core 739 | - React-cxxreact 740 | - React-debug 741 | - React-featureflags 742 | - React-graphics 743 | - React-jsi 744 | - React-jsiexecutor 745 | - React-logger 746 | - React-rendererdebug 747 | - React-runtimeexecutor 748 | - React-runtimescheduler 749 | - React-utils 750 | - ReactCommon/turbomodule/core 751 | - SocketRocket 752 | - React-Fabric/components/view (0.82.1): 753 | - boost 754 | - DoubleConversion 755 | - fast_float 756 | - fmt 757 | - glog 758 | - hermes-engine 759 | - RCT-Folly 760 | - RCT-Folly/Fabric 761 | - RCTRequired 762 | - RCTTypeSafety 763 | - React-Core 764 | - React-cxxreact 765 | - React-debug 766 | - React-featureflags 767 | - React-graphics 768 | - React-jsi 769 | - React-jsiexecutor 770 | - React-logger 771 | - React-renderercss 772 | - React-rendererdebug 773 | - React-runtimeexecutor 774 | - React-runtimescheduler 775 | - React-utils 776 | - ReactCommon/turbomodule/core 777 | - SocketRocket 778 | - Yoga 779 | - React-Fabric/consistency (0.82.1): 780 | - boost 781 | - DoubleConversion 782 | - fast_float 783 | - fmt 784 | - glog 785 | - hermes-engine 786 | - RCT-Folly 787 | - RCT-Folly/Fabric 788 | - RCTRequired 789 | - RCTTypeSafety 790 | - React-Core 791 | - React-cxxreact 792 | - React-debug 793 | - React-featureflags 794 | - React-graphics 795 | - React-jsi 796 | - React-jsiexecutor 797 | - React-logger 798 | - React-rendererdebug 799 | - React-runtimeexecutor 800 | - React-runtimescheduler 801 | - React-utils 802 | - ReactCommon/turbomodule/core 803 | - SocketRocket 804 | - React-Fabric/core (0.82.1): 805 | - boost 806 | - DoubleConversion 807 | - fast_float 808 | - fmt 809 | - glog 810 | - hermes-engine 811 | - RCT-Folly 812 | - RCT-Folly/Fabric 813 | - RCTRequired 814 | - RCTTypeSafety 815 | - React-Core 816 | - React-cxxreact 817 | - React-debug 818 | - React-featureflags 819 | - React-graphics 820 | - React-jsi 821 | - React-jsiexecutor 822 | - React-logger 823 | - React-rendererdebug 824 | - React-runtimeexecutor 825 | - React-runtimescheduler 826 | - React-utils 827 | - ReactCommon/turbomodule/core 828 | - SocketRocket 829 | - React-Fabric/dom (0.82.1): 830 | - boost 831 | - DoubleConversion 832 | - fast_float 833 | - fmt 834 | - glog 835 | - hermes-engine 836 | - RCT-Folly 837 | - RCT-Folly/Fabric 838 | - RCTRequired 839 | - RCTTypeSafety 840 | - React-Core 841 | - React-cxxreact 842 | - React-debug 843 | - React-featureflags 844 | - React-graphics 845 | - React-jsi 846 | - React-jsiexecutor 847 | - React-logger 848 | - React-rendererdebug 849 | - React-runtimeexecutor 850 | - React-runtimescheduler 851 | - React-utils 852 | - ReactCommon/turbomodule/core 853 | - SocketRocket 854 | - React-Fabric/imagemanager (0.82.1): 855 | - boost 856 | - DoubleConversion 857 | - fast_float 858 | - fmt 859 | - glog 860 | - hermes-engine 861 | - RCT-Folly 862 | - RCT-Folly/Fabric 863 | - RCTRequired 864 | - RCTTypeSafety 865 | - React-Core 866 | - React-cxxreact 867 | - React-debug 868 | - React-featureflags 869 | - React-graphics 870 | - React-jsi 871 | - React-jsiexecutor 872 | - React-logger 873 | - React-rendererdebug 874 | - React-runtimeexecutor 875 | - React-runtimescheduler 876 | - React-utils 877 | - ReactCommon/turbomodule/core 878 | - SocketRocket 879 | - React-Fabric/leakchecker (0.82.1): 880 | - boost 881 | - DoubleConversion 882 | - fast_float 883 | - fmt 884 | - glog 885 | - hermes-engine 886 | - RCT-Folly 887 | - RCT-Folly/Fabric 888 | - RCTRequired 889 | - RCTTypeSafety 890 | - React-Core 891 | - React-cxxreact 892 | - React-debug 893 | - React-featureflags 894 | - React-graphics 895 | - React-jsi 896 | - React-jsiexecutor 897 | - React-logger 898 | - React-rendererdebug 899 | - React-runtimeexecutor 900 | - React-runtimescheduler 901 | - React-utils 902 | - ReactCommon/turbomodule/core 903 | - SocketRocket 904 | - React-Fabric/mounting (0.82.1): 905 | - boost 906 | - DoubleConversion 907 | - fast_float 908 | - fmt 909 | - glog 910 | - hermes-engine 911 | - RCT-Folly 912 | - RCT-Folly/Fabric 913 | - RCTRequired 914 | - RCTTypeSafety 915 | - React-Core 916 | - React-cxxreact 917 | - React-debug 918 | - React-featureflags 919 | - React-graphics 920 | - React-jsi 921 | - React-jsiexecutor 922 | - React-logger 923 | - React-rendererdebug 924 | - React-runtimeexecutor 925 | - React-runtimescheduler 926 | - React-utils 927 | - ReactCommon/turbomodule/core 928 | - SocketRocket 929 | - React-Fabric/observers (0.82.1): 930 | - boost 931 | - DoubleConversion 932 | - fast_float 933 | - fmt 934 | - glog 935 | - hermes-engine 936 | - RCT-Folly 937 | - RCT-Folly/Fabric 938 | - RCTRequired 939 | - RCTTypeSafety 940 | - React-Core 941 | - React-cxxreact 942 | - React-debug 943 | - React-Fabric/observers/events (= 0.82.1) 944 | - React-featureflags 945 | - React-graphics 946 | - React-jsi 947 | - React-jsiexecutor 948 | - React-logger 949 | - React-rendererdebug 950 | - React-runtimeexecutor 951 | - React-runtimescheduler 952 | - React-utils 953 | - ReactCommon/turbomodule/core 954 | - SocketRocket 955 | - React-Fabric/observers/events (0.82.1): 956 | - boost 957 | - DoubleConversion 958 | - fast_float 959 | - fmt 960 | - glog 961 | - hermes-engine 962 | - RCT-Folly 963 | - RCT-Folly/Fabric 964 | - RCTRequired 965 | - RCTTypeSafety 966 | - React-Core 967 | - React-cxxreact 968 | - React-debug 969 | - React-featureflags 970 | - React-graphics 971 | - React-jsi 972 | - React-jsiexecutor 973 | - React-logger 974 | - React-rendererdebug 975 | - React-runtimeexecutor 976 | - React-runtimescheduler 977 | - React-utils 978 | - ReactCommon/turbomodule/core 979 | - SocketRocket 980 | - React-Fabric/scheduler (0.82.1): 981 | - boost 982 | - DoubleConversion 983 | - fast_float 984 | - fmt 985 | - glog 986 | - hermes-engine 987 | - RCT-Folly 988 | - RCT-Folly/Fabric 989 | - RCTRequired 990 | - RCTTypeSafety 991 | - React-Core 992 | - React-cxxreact 993 | - React-debug 994 | - React-Fabric/observers/events 995 | - React-featureflags 996 | - React-graphics 997 | - React-jsi 998 | - React-jsiexecutor 999 | - React-logger 1000 | - React-performancecdpmetrics 1001 | - React-performancetimeline 1002 | - React-rendererdebug 1003 | - React-runtimeexecutor 1004 | - React-runtimescheduler 1005 | - React-utils 1006 | - ReactCommon/turbomodule/core 1007 | - SocketRocket 1008 | - React-Fabric/telemetry (0.82.1): 1009 | - boost 1010 | - DoubleConversion 1011 | - fast_float 1012 | - fmt 1013 | - glog 1014 | - hermes-engine 1015 | - RCT-Folly 1016 | - RCT-Folly/Fabric 1017 | - RCTRequired 1018 | - RCTTypeSafety 1019 | - React-Core 1020 | - React-cxxreact 1021 | - React-debug 1022 | - React-featureflags 1023 | - React-graphics 1024 | - React-jsi 1025 | - React-jsiexecutor 1026 | - React-logger 1027 | - React-rendererdebug 1028 | - React-runtimeexecutor 1029 | - React-runtimescheduler 1030 | - React-utils 1031 | - ReactCommon/turbomodule/core 1032 | - SocketRocket 1033 | - React-Fabric/templateprocessor (0.82.1): 1034 | - boost 1035 | - DoubleConversion 1036 | - fast_float 1037 | - fmt 1038 | - glog 1039 | - hermes-engine 1040 | - RCT-Folly 1041 | - RCT-Folly/Fabric 1042 | - RCTRequired 1043 | - RCTTypeSafety 1044 | - React-Core 1045 | - React-cxxreact 1046 | - React-debug 1047 | - React-featureflags 1048 | - React-graphics 1049 | - React-jsi 1050 | - React-jsiexecutor 1051 | - React-logger 1052 | - React-rendererdebug 1053 | - React-runtimeexecutor 1054 | - React-runtimescheduler 1055 | - React-utils 1056 | - ReactCommon/turbomodule/core 1057 | - SocketRocket 1058 | - React-Fabric/uimanager (0.82.1): 1059 | - boost 1060 | - DoubleConversion 1061 | - fast_float 1062 | - fmt 1063 | - glog 1064 | - hermes-engine 1065 | - RCT-Folly 1066 | - RCT-Folly/Fabric 1067 | - RCTRequired 1068 | - RCTTypeSafety 1069 | - React-Core 1070 | - React-cxxreact 1071 | - React-debug 1072 | - React-Fabric/uimanager/consistency (= 0.82.1) 1073 | - React-featureflags 1074 | - React-graphics 1075 | - React-jsi 1076 | - React-jsiexecutor 1077 | - React-logger 1078 | - React-rendererconsistency 1079 | - React-rendererdebug 1080 | - React-runtimeexecutor 1081 | - React-runtimescheduler 1082 | - React-utils 1083 | - ReactCommon/turbomodule/core 1084 | - SocketRocket 1085 | - React-Fabric/uimanager/consistency (0.82.1): 1086 | - boost 1087 | - DoubleConversion 1088 | - fast_float 1089 | - fmt 1090 | - glog 1091 | - hermes-engine 1092 | - RCT-Folly 1093 | - RCT-Folly/Fabric 1094 | - RCTRequired 1095 | - RCTTypeSafety 1096 | - React-Core 1097 | - React-cxxreact 1098 | - React-debug 1099 | - React-featureflags 1100 | - React-graphics 1101 | - React-jsi 1102 | - React-jsiexecutor 1103 | - React-logger 1104 | - React-rendererconsistency 1105 | - React-rendererdebug 1106 | - React-runtimeexecutor 1107 | - React-runtimescheduler 1108 | - React-utils 1109 | - ReactCommon/turbomodule/core 1110 | - SocketRocket 1111 | - React-FabricComponents (0.82.1): 1112 | - boost 1113 | - DoubleConversion 1114 | - fast_float 1115 | - fmt 1116 | - glog 1117 | - hermes-engine 1118 | - RCT-Folly 1119 | - RCT-Folly/Fabric 1120 | - RCTRequired 1121 | - RCTTypeSafety 1122 | - React-Core 1123 | - React-cxxreact 1124 | - React-debug 1125 | - React-Fabric 1126 | - React-FabricComponents/components (= 0.82.1) 1127 | - React-FabricComponents/textlayoutmanager (= 0.82.1) 1128 | - React-featureflags 1129 | - React-graphics 1130 | - React-jsi 1131 | - React-jsiexecutor 1132 | - React-logger 1133 | - React-RCTFBReactNativeSpec 1134 | - React-rendererdebug 1135 | - React-runtimescheduler 1136 | - React-utils 1137 | - ReactCommon/turbomodule/core 1138 | - SocketRocket 1139 | - Yoga 1140 | - React-FabricComponents/components (0.82.1): 1141 | - boost 1142 | - DoubleConversion 1143 | - fast_float 1144 | - fmt 1145 | - glog 1146 | - hermes-engine 1147 | - RCT-Folly 1148 | - RCT-Folly/Fabric 1149 | - RCTRequired 1150 | - RCTTypeSafety 1151 | - React-Core 1152 | - React-cxxreact 1153 | - React-debug 1154 | - React-Fabric 1155 | - React-FabricComponents/components/inputaccessory (= 0.82.1) 1156 | - React-FabricComponents/components/iostextinput (= 0.82.1) 1157 | - React-FabricComponents/components/modal (= 0.82.1) 1158 | - React-FabricComponents/components/rncore (= 0.82.1) 1159 | - React-FabricComponents/components/safeareaview (= 0.82.1) 1160 | - React-FabricComponents/components/scrollview (= 0.82.1) 1161 | - React-FabricComponents/components/switch (= 0.82.1) 1162 | - React-FabricComponents/components/text (= 0.82.1) 1163 | - React-FabricComponents/components/textinput (= 0.82.1) 1164 | - React-FabricComponents/components/unimplementedview (= 0.82.1) 1165 | - React-FabricComponents/components/virtualview (= 0.82.1) 1166 | - React-FabricComponents/components/virtualviewexperimental (= 0.82.1) 1167 | - React-featureflags 1168 | - React-graphics 1169 | - React-jsi 1170 | - React-jsiexecutor 1171 | - React-logger 1172 | - React-RCTFBReactNativeSpec 1173 | - React-rendererdebug 1174 | - React-runtimescheduler 1175 | - React-utils 1176 | - ReactCommon/turbomodule/core 1177 | - SocketRocket 1178 | - Yoga 1179 | - React-FabricComponents/components/inputaccessory (0.82.1): 1180 | - boost 1181 | - DoubleConversion 1182 | - fast_float 1183 | - fmt 1184 | - glog 1185 | - hermes-engine 1186 | - RCT-Folly 1187 | - RCT-Folly/Fabric 1188 | - RCTRequired 1189 | - RCTTypeSafety 1190 | - React-Core 1191 | - React-cxxreact 1192 | - React-debug 1193 | - React-Fabric 1194 | - React-featureflags 1195 | - React-graphics 1196 | - React-jsi 1197 | - React-jsiexecutor 1198 | - React-logger 1199 | - React-RCTFBReactNativeSpec 1200 | - React-rendererdebug 1201 | - React-runtimescheduler 1202 | - React-utils 1203 | - ReactCommon/turbomodule/core 1204 | - SocketRocket 1205 | - Yoga 1206 | - React-FabricComponents/components/iostextinput (0.82.1): 1207 | - boost 1208 | - DoubleConversion 1209 | - fast_float 1210 | - fmt 1211 | - glog 1212 | - hermes-engine 1213 | - RCT-Folly 1214 | - RCT-Folly/Fabric 1215 | - RCTRequired 1216 | - RCTTypeSafety 1217 | - React-Core 1218 | - React-cxxreact 1219 | - React-debug 1220 | - React-Fabric 1221 | - React-featureflags 1222 | - React-graphics 1223 | - React-jsi 1224 | - React-jsiexecutor 1225 | - React-logger 1226 | - React-RCTFBReactNativeSpec 1227 | - React-rendererdebug 1228 | - React-runtimescheduler 1229 | - React-utils 1230 | - ReactCommon/turbomodule/core 1231 | - SocketRocket 1232 | - Yoga 1233 | - React-FabricComponents/components/modal (0.82.1): 1234 | - boost 1235 | - DoubleConversion 1236 | - fast_float 1237 | - fmt 1238 | - glog 1239 | - hermes-engine 1240 | - RCT-Folly 1241 | - RCT-Folly/Fabric 1242 | - RCTRequired 1243 | - RCTTypeSafety 1244 | - React-Core 1245 | - React-cxxreact 1246 | - React-debug 1247 | - React-Fabric 1248 | - React-featureflags 1249 | - React-graphics 1250 | - React-jsi 1251 | - React-jsiexecutor 1252 | - React-logger 1253 | - React-RCTFBReactNativeSpec 1254 | - React-rendererdebug 1255 | - React-runtimescheduler 1256 | - React-utils 1257 | - ReactCommon/turbomodule/core 1258 | - SocketRocket 1259 | - Yoga 1260 | - React-FabricComponents/components/rncore (0.82.1): 1261 | - boost 1262 | - DoubleConversion 1263 | - fast_float 1264 | - fmt 1265 | - glog 1266 | - hermes-engine 1267 | - RCT-Folly 1268 | - RCT-Folly/Fabric 1269 | - RCTRequired 1270 | - RCTTypeSafety 1271 | - React-Core 1272 | - React-cxxreact 1273 | - React-debug 1274 | - React-Fabric 1275 | - React-featureflags 1276 | - React-graphics 1277 | - React-jsi 1278 | - React-jsiexecutor 1279 | - React-logger 1280 | - React-RCTFBReactNativeSpec 1281 | - React-rendererdebug 1282 | - React-runtimescheduler 1283 | - React-utils 1284 | - ReactCommon/turbomodule/core 1285 | - SocketRocket 1286 | - Yoga 1287 | - React-FabricComponents/components/safeareaview (0.82.1): 1288 | - boost 1289 | - DoubleConversion 1290 | - fast_float 1291 | - fmt 1292 | - glog 1293 | - hermes-engine 1294 | - RCT-Folly 1295 | - RCT-Folly/Fabric 1296 | - RCTRequired 1297 | - RCTTypeSafety 1298 | - React-Core 1299 | - React-cxxreact 1300 | - React-debug 1301 | - React-Fabric 1302 | - React-featureflags 1303 | - React-graphics 1304 | - React-jsi 1305 | - React-jsiexecutor 1306 | - React-logger 1307 | - React-RCTFBReactNativeSpec 1308 | - React-rendererdebug 1309 | - React-runtimescheduler 1310 | - React-utils 1311 | - ReactCommon/turbomodule/core 1312 | - SocketRocket 1313 | - Yoga 1314 | - React-FabricComponents/components/scrollview (0.82.1): 1315 | - boost 1316 | - DoubleConversion 1317 | - fast_float 1318 | - fmt 1319 | - glog 1320 | - hermes-engine 1321 | - RCT-Folly 1322 | - RCT-Folly/Fabric 1323 | - RCTRequired 1324 | - RCTTypeSafety 1325 | - React-Core 1326 | - React-cxxreact 1327 | - React-debug 1328 | - React-Fabric 1329 | - React-featureflags 1330 | - React-graphics 1331 | - React-jsi 1332 | - React-jsiexecutor 1333 | - React-logger 1334 | - React-RCTFBReactNativeSpec 1335 | - React-rendererdebug 1336 | - React-runtimescheduler 1337 | - React-utils 1338 | - ReactCommon/turbomodule/core 1339 | - SocketRocket 1340 | - Yoga 1341 | - React-FabricComponents/components/switch (0.82.1): 1342 | - boost 1343 | - DoubleConversion 1344 | - fast_float 1345 | - fmt 1346 | - glog 1347 | - hermes-engine 1348 | - RCT-Folly 1349 | - RCT-Folly/Fabric 1350 | - RCTRequired 1351 | - RCTTypeSafety 1352 | - React-Core 1353 | - React-cxxreact 1354 | - React-debug 1355 | - React-Fabric 1356 | - React-featureflags 1357 | - React-graphics 1358 | - React-jsi 1359 | - React-jsiexecutor 1360 | - React-logger 1361 | - React-RCTFBReactNativeSpec 1362 | - React-rendererdebug 1363 | - React-runtimescheduler 1364 | - React-utils 1365 | - ReactCommon/turbomodule/core 1366 | - SocketRocket 1367 | - Yoga 1368 | - React-FabricComponents/components/text (0.82.1): 1369 | - boost 1370 | - DoubleConversion 1371 | - fast_float 1372 | - fmt 1373 | - glog 1374 | - hermes-engine 1375 | - RCT-Folly 1376 | - RCT-Folly/Fabric 1377 | - RCTRequired 1378 | - RCTTypeSafety 1379 | - React-Core 1380 | - React-cxxreact 1381 | - React-debug 1382 | - React-Fabric 1383 | - React-featureflags 1384 | - React-graphics 1385 | - React-jsi 1386 | - React-jsiexecutor 1387 | - React-logger 1388 | - React-RCTFBReactNativeSpec 1389 | - React-rendererdebug 1390 | - React-runtimescheduler 1391 | - React-utils 1392 | - ReactCommon/turbomodule/core 1393 | - SocketRocket 1394 | - Yoga 1395 | - React-FabricComponents/components/textinput (0.82.1): 1396 | - boost 1397 | - DoubleConversion 1398 | - fast_float 1399 | - fmt 1400 | - glog 1401 | - hermes-engine 1402 | - RCT-Folly 1403 | - RCT-Folly/Fabric 1404 | - RCTRequired 1405 | - RCTTypeSafety 1406 | - React-Core 1407 | - React-cxxreact 1408 | - React-debug 1409 | - React-Fabric 1410 | - React-featureflags 1411 | - React-graphics 1412 | - React-jsi 1413 | - React-jsiexecutor 1414 | - React-logger 1415 | - React-RCTFBReactNativeSpec 1416 | - React-rendererdebug 1417 | - React-runtimescheduler 1418 | - React-utils 1419 | - ReactCommon/turbomodule/core 1420 | - SocketRocket 1421 | - Yoga 1422 | - React-FabricComponents/components/unimplementedview (0.82.1): 1423 | - boost 1424 | - DoubleConversion 1425 | - fast_float 1426 | - fmt 1427 | - glog 1428 | - hermes-engine 1429 | - RCT-Folly 1430 | - RCT-Folly/Fabric 1431 | - RCTRequired 1432 | - RCTTypeSafety 1433 | - React-Core 1434 | - React-cxxreact 1435 | - React-debug 1436 | - React-Fabric 1437 | - React-featureflags 1438 | - React-graphics 1439 | - React-jsi 1440 | - React-jsiexecutor 1441 | - React-logger 1442 | - React-RCTFBReactNativeSpec 1443 | - React-rendererdebug 1444 | - React-runtimescheduler 1445 | - React-utils 1446 | - ReactCommon/turbomodule/core 1447 | - SocketRocket 1448 | - Yoga 1449 | - React-FabricComponents/components/virtualview (0.82.1): 1450 | - boost 1451 | - DoubleConversion 1452 | - fast_float 1453 | - fmt 1454 | - glog 1455 | - hermes-engine 1456 | - RCT-Folly 1457 | - RCT-Folly/Fabric 1458 | - RCTRequired 1459 | - RCTTypeSafety 1460 | - React-Core 1461 | - React-cxxreact 1462 | - React-debug 1463 | - React-Fabric 1464 | - React-featureflags 1465 | - React-graphics 1466 | - React-jsi 1467 | - React-jsiexecutor 1468 | - React-logger 1469 | - React-RCTFBReactNativeSpec 1470 | - React-rendererdebug 1471 | - React-runtimescheduler 1472 | - React-utils 1473 | - ReactCommon/turbomodule/core 1474 | - SocketRocket 1475 | - Yoga 1476 | - React-FabricComponents/components/virtualviewexperimental (0.82.1): 1477 | - boost 1478 | - DoubleConversion 1479 | - fast_float 1480 | - fmt 1481 | - glog 1482 | - hermes-engine 1483 | - RCT-Folly 1484 | - RCT-Folly/Fabric 1485 | - RCTRequired 1486 | - RCTTypeSafety 1487 | - React-Core 1488 | - React-cxxreact 1489 | - React-debug 1490 | - React-Fabric 1491 | - React-featureflags 1492 | - React-graphics 1493 | - React-jsi 1494 | - React-jsiexecutor 1495 | - React-logger 1496 | - React-RCTFBReactNativeSpec 1497 | - React-rendererdebug 1498 | - React-runtimescheduler 1499 | - React-utils 1500 | - ReactCommon/turbomodule/core 1501 | - SocketRocket 1502 | - Yoga 1503 | - React-FabricComponents/textlayoutmanager (0.82.1): 1504 | - boost 1505 | - DoubleConversion 1506 | - fast_float 1507 | - fmt 1508 | - glog 1509 | - hermes-engine 1510 | - RCT-Folly 1511 | - RCT-Folly/Fabric 1512 | - RCTRequired 1513 | - RCTTypeSafety 1514 | - React-Core 1515 | - React-cxxreact 1516 | - React-debug 1517 | - React-Fabric 1518 | - React-featureflags 1519 | - React-graphics 1520 | - React-jsi 1521 | - React-jsiexecutor 1522 | - React-logger 1523 | - React-RCTFBReactNativeSpec 1524 | - React-rendererdebug 1525 | - React-runtimescheduler 1526 | - React-utils 1527 | - ReactCommon/turbomodule/core 1528 | - SocketRocket 1529 | - Yoga 1530 | - React-FabricImage (0.82.1): 1531 | - boost 1532 | - DoubleConversion 1533 | - fast_float 1534 | - fmt 1535 | - glog 1536 | - hermes-engine 1537 | - RCT-Folly 1538 | - RCT-Folly/Fabric 1539 | - RCTRequired (= 0.82.1) 1540 | - RCTTypeSafety (= 0.82.1) 1541 | - React-Fabric 1542 | - React-featureflags 1543 | - React-graphics 1544 | - React-ImageManager 1545 | - React-jsi 1546 | - React-jsiexecutor (= 0.82.1) 1547 | - React-logger 1548 | - React-rendererdebug 1549 | - React-utils 1550 | - ReactCommon 1551 | - SocketRocket 1552 | - Yoga 1553 | - React-featureflags (0.82.1): 1554 | - boost 1555 | - DoubleConversion 1556 | - fast_float 1557 | - fmt 1558 | - glog 1559 | - RCT-Folly 1560 | - RCT-Folly/Fabric 1561 | - SocketRocket 1562 | - React-featureflagsnativemodule (0.82.1): 1563 | - boost 1564 | - DoubleConversion 1565 | - fast_float 1566 | - fmt 1567 | - glog 1568 | - hermes-engine 1569 | - RCT-Folly 1570 | - RCT-Folly/Fabric 1571 | - React-featureflags 1572 | - React-jsi 1573 | - React-jsiexecutor 1574 | - React-RCTFBReactNativeSpec 1575 | - ReactCommon/turbomodule/core 1576 | - SocketRocket 1577 | - React-graphics (0.82.1): 1578 | - boost 1579 | - DoubleConversion 1580 | - fast_float 1581 | - fmt 1582 | - glog 1583 | - hermes-engine 1584 | - RCT-Folly 1585 | - RCT-Folly/Fabric 1586 | - React-jsi 1587 | - React-jsiexecutor 1588 | - React-utils 1589 | - SocketRocket 1590 | - React-hermes (0.82.1): 1591 | - boost 1592 | - DoubleConversion 1593 | - fast_float 1594 | - fmt 1595 | - glog 1596 | - hermes-engine 1597 | - RCT-Folly 1598 | - RCT-Folly/Fabric 1599 | - React-cxxreact (= 0.82.1) 1600 | - React-jsi 1601 | - React-jsiexecutor (= 0.82.1) 1602 | - React-jsinspector 1603 | - React-jsinspectorcdp 1604 | - React-jsinspectortracing 1605 | - React-oscompat 1606 | - React-perflogger (= 0.82.1) 1607 | - React-runtimeexecutor 1608 | - SocketRocket 1609 | - React-idlecallbacksnativemodule (0.82.1): 1610 | - boost 1611 | - DoubleConversion 1612 | - fast_float 1613 | - fmt 1614 | - glog 1615 | - hermes-engine 1616 | - RCT-Folly 1617 | - RCT-Folly/Fabric 1618 | - React-jsi 1619 | - React-jsiexecutor 1620 | - React-RCTFBReactNativeSpec 1621 | - React-runtimeexecutor 1622 | - React-runtimescheduler 1623 | - ReactCommon/turbomodule/core 1624 | - SocketRocket 1625 | - React-ImageManager (0.82.1): 1626 | - boost 1627 | - DoubleConversion 1628 | - fast_float 1629 | - fmt 1630 | - glog 1631 | - RCT-Folly 1632 | - RCT-Folly/Fabric 1633 | - React-Core/Default 1634 | - React-debug 1635 | - React-Fabric 1636 | - React-graphics 1637 | - React-rendererdebug 1638 | - React-utils 1639 | - SocketRocket 1640 | - React-jserrorhandler (0.82.1): 1641 | - boost 1642 | - DoubleConversion 1643 | - fast_float 1644 | - fmt 1645 | - glog 1646 | - hermes-engine 1647 | - RCT-Folly 1648 | - RCT-Folly/Fabric 1649 | - React-cxxreact 1650 | - React-debug 1651 | - React-featureflags 1652 | - React-jsi 1653 | - ReactCommon/turbomodule/bridging 1654 | - SocketRocket 1655 | - React-jsi (0.82.1): 1656 | - boost 1657 | - DoubleConversion 1658 | - fast_float 1659 | - fmt 1660 | - glog 1661 | - hermes-engine 1662 | - RCT-Folly 1663 | - RCT-Folly/Fabric 1664 | - SocketRocket 1665 | - React-jsiexecutor (0.82.1): 1666 | - boost 1667 | - DoubleConversion 1668 | - fast_float 1669 | - fmt 1670 | - glog 1671 | - hermes-engine 1672 | - RCT-Folly 1673 | - RCT-Folly/Fabric 1674 | - React-cxxreact 1675 | - React-debug 1676 | - React-jsi 1677 | - React-jsinspector 1678 | - React-jsinspectorcdp 1679 | - React-jsinspectortracing 1680 | - React-perflogger 1681 | - React-runtimeexecutor 1682 | - SocketRocket 1683 | - React-jsinspector (0.82.1): 1684 | - boost 1685 | - DoubleConversion 1686 | - fast_float 1687 | - fmt 1688 | - glog 1689 | - hermes-engine 1690 | - RCT-Folly 1691 | - RCT-Folly/Fabric 1692 | - React-featureflags 1693 | - React-jsi 1694 | - React-jsinspectorcdp 1695 | - React-jsinspectornetwork 1696 | - React-jsinspectortracing 1697 | - React-oscompat 1698 | - React-perflogger (= 0.82.1) 1699 | - React-runtimeexecutor 1700 | - SocketRocket 1701 | - React-jsinspectorcdp (0.82.1): 1702 | - boost 1703 | - DoubleConversion 1704 | - fast_float 1705 | - fmt 1706 | - glog 1707 | - RCT-Folly 1708 | - RCT-Folly/Fabric 1709 | - SocketRocket 1710 | - React-jsinspectornetwork (0.82.1): 1711 | - boost 1712 | - DoubleConversion 1713 | - fast_float 1714 | - fmt 1715 | - glog 1716 | - RCT-Folly 1717 | - RCT-Folly/Fabric 1718 | - React-featureflags 1719 | - React-jsinspectorcdp 1720 | - React-performancetimeline 1721 | - React-timing 1722 | - SocketRocket 1723 | - React-jsinspectortracing (0.82.1): 1724 | - boost 1725 | - DoubleConversion 1726 | - fast_float 1727 | - fmt 1728 | - glog 1729 | - RCT-Folly 1730 | - RCT-Folly/Fabric 1731 | - React-oscompat 1732 | - React-timing 1733 | - SocketRocket 1734 | - React-jsitooling (0.82.1): 1735 | - boost 1736 | - DoubleConversion 1737 | - fast_float 1738 | - fmt 1739 | - glog 1740 | - RCT-Folly 1741 | - RCT-Folly/Fabric 1742 | - React-cxxreact (= 0.82.1) 1743 | - React-debug 1744 | - React-jsi (= 0.82.1) 1745 | - React-jsinspector 1746 | - React-jsinspectorcdp 1747 | - React-jsinspectortracing 1748 | - React-runtimeexecutor 1749 | - SocketRocket 1750 | - React-jsitracing (0.82.1): 1751 | - React-jsi 1752 | - React-logger (0.82.1): 1753 | - boost 1754 | - DoubleConversion 1755 | - fast_float 1756 | - fmt 1757 | - glog 1758 | - RCT-Folly 1759 | - RCT-Folly/Fabric 1760 | - SocketRocket 1761 | - React-Mapbuffer (0.82.1): 1762 | - boost 1763 | - DoubleConversion 1764 | - fast_float 1765 | - fmt 1766 | - glog 1767 | - RCT-Folly 1768 | - RCT-Folly/Fabric 1769 | - React-debug 1770 | - SocketRocket 1771 | - React-microtasksnativemodule (0.82.1): 1772 | - boost 1773 | - DoubleConversion 1774 | - fast_float 1775 | - fmt 1776 | - glog 1777 | - hermes-engine 1778 | - RCT-Folly 1779 | - RCT-Folly/Fabric 1780 | - React-jsi 1781 | - React-jsiexecutor 1782 | - React-RCTFBReactNativeSpec 1783 | - ReactCommon/turbomodule/core 1784 | - SocketRocket 1785 | - react-native-safe-area-context (5.6.2): 1786 | - boost 1787 | - DoubleConversion 1788 | - fast_float 1789 | - fmt 1790 | - glog 1791 | - hermes-engine 1792 | - RCT-Folly 1793 | - RCT-Folly/Fabric 1794 | - RCTRequired 1795 | - RCTTypeSafety 1796 | - React-Core 1797 | - React-debug 1798 | - React-Fabric 1799 | - React-featureflags 1800 | - React-graphics 1801 | - React-ImageManager 1802 | - React-jsi 1803 | - react-native-safe-area-context/common (= 5.6.2) 1804 | - react-native-safe-area-context/fabric (= 5.6.2) 1805 | - React-NativeModulesApple 1806 | - React-RCTFabric 1807 | - React-renderercss 1808 | - React-rendererdebug 1809 | - React-utils 1810 | - ReactCodegen 1811 | - ReactCommon/turbomodule/bridging 1812 | - ReactCommon/turbomodule/core 1813 | - SocketRocket 1814 | - Yoga 1815 | - react-native-safe-area-context/common (5.6.2): 1816 | - boost 1817 | - DoubleConversion 1818 | - fast_float 1819 | - fmt 1820 | - glog 1821 | - hermes-engine 1822 | - RCT-Folly 1823 | - RCT-Folly/Fabric 1824 | - RCTRequired 1825 | - RCTTypeSafety 1826 | - React-Core 1827 | - React-debug 1828 | - React-Fabric 1829 | - React-featureflags 1830 | - React-graphics 1831 | - React-ImageManager 1832 | - React-jsi 1833 | - React-NativeModulesApple 1834 | - React-RCTFabric 1835 | - React-renderercss 1836 | - React-rendererdebug 1837 | - React-utils 1838 | - ReactCodegen 1839 | - ReactCommon/turbomodule/bridging 1840 | - ReactCommon/turbomodule/core 1841 | - SocketRocket 1842 | - Yoga 1843 | - react-native-safe-area-context/fabric (5.6.2): 1844 | - boost 1845 | - DoubleConversion 1846 | - fast_float 1847 | - fmt 1848 | - glog 1849 | - hermes-engine 1850 | - RCT-Folly 1851 | - RCT-Folly/Fabric 1852 | - RCTRequired 1853 | - RCTTypeSafety 1854 | - React-Core 1855 | - React-debug 1856 | - React-Fabric 1857 | - React-featureflags 1858 | - React-graphics 1859 | - React-ImageManager 1860 | - React-jsi 1861 | - react-native-safe-area-context/common 1862 | - React-NativeModulesApple 1863 | - React-RCTFabric 1864 | - React-renderercss 1865 | - React-rendererdebug 1866 | - React-utils 1867 | - ReactCodegen 1868 | - ReactCommon/turbomodule/bridging 1869 | - ReactCommon/turbomodule/core 1870 | - SocketRocket 1871 | - Yoga 1872 | - React-NativeModulesApple (0.82.1): 1873 | - boost 1874 | - DoubleConversion 1875 | - fast_float 1876 | - fmt 1877 | - glog 1878 | - hermes-engine 1879 | - RCT-Folly 1880 | - RCT-Folly/Fabric 1881 | - React-callinvoker 1882 | - React-Core 1883 | - React-cxxreact 1884 | - React-debug 1885 | - React-featureflags 1886 | - React-jsi 1887 | - React-jsinspector 1888 | - React-jsinspectorcdp 1889 | - React-runtimeexecutor 1890 | - ReactCommon/turbomodule/bridging 1891 | - ReactCommon/turbomodule/core 1892 | - SocketRocket 1893 | - React-oscompat (0.82.1) 1894 | - React-perflogger (0.82.1): 1895 | - boost 1896 | - DoubleConversion 1897 | - fast_float 1898 | - fmt 1899 | - glog 1900 | - RCT-Folly 1901 | - RCT-Folly/Fabric 1902 | - SocketRocket 1903 | - React-performancecdpmetrics (0.82.1): 1904 | - boost 1905 | - DoubleConversion 1906 | - fast_float 1907 | - fmt 1908 | - glog 1909 | - hermes-engine 1910 | - RCT-Folly 1911 | - RCT-Folly/Fabric 1912 | - React-jsi 1913 | - React-performancetimeline 1914 | - React-runtimeexecutor 1915 | - React-timing 1916 | - SocketRocket 1917 | - React-performancetimeline (0.82.1): 1918 | - boost 1919 | - DoubleConversion 1920 | - fast_float 1921 | - fmt 1922 | - glog 1923 | - RCT-Folly 1924 | - RCT-Folly/Fabric 1925 | - React-featureflags 1926 | - React-jsinspectortracing 1927 | - React-perflogger 1928 | - React-timing 1929 | - SocketRocket 1930 | - React-RCTActionSheet (0.82.1): 1931 | - React-Core/RCTActionSheetHeaders (= 0.82.1) 1932 | - React-RCTAnimation (0.82.1): 1933 | - boost 1934 | - DoubleConversion 1935 | - fast_float 1936 | - fmt 1937 | - glog 1938 | - RCT-Folly 1939 | - RCT-Folly/Fabric 1940 | - RCTTypeSafety 1941 | - React-Core/RCTAnimationHeaders 1942 | - React-featureflags 1943 | - React-jsi 1944 | - React-NativeModulesApple 1945 | - React-RCTFBReactNativeSpec 1946 | - ReactCommon 1947 | - SocketRocket 1948 | - React-RCTAppDelegate (0.82.1): 1949 | - boost 1950 | - DoubleConversion 1951 | - fast_float 1952 | - fmt 1953 | - glog 1954 | - hermes-engine 1955 | - RCT-Folly 1956 | - RCT-Folly/Fabric 1957 | - RCTRequired 1958 | - RCTTypeSafety 1959 | - React-Core 1960 | - React-CoreModules 1961 | - React-debug 1962 | - React-defaultsnativemodule 1963 | - React-Fabric 1964 | - React-featureflags 1965 | - React-graphics 1966 | - React-hermes 1967 | - React-jsitooling 1968 | - React-NativeModulesApple 1969 | - React-RCTFabric 1970 | - React-RCTFBReactNativeSpec 1971 | - React-RCTImage 1972 | - React-RCTNetwork 1973 | - React-RCTRuntime 1974 | - React-rendererdebug 1975 | - React-RuntimeApple 1976 | - React-RuntimeCore 1977 | - React-runtimeexecutor 1978 | - React-runtimescheduler 1979 | - React-utils 1980 | - ReactCommon 1981 | - SocketRocket 1982 | - React-RCTBlob (0.82.1): 1983 | - boost 1984 | - DoubleConversion 1985 | - fast_float 1986 | - fmt 1987 | - glog 1988 | - hermes-engine 1989 | - RCT-Folly 1990 | - RCT-Folly/Fabric 1991 | - React-Core/RCTBlobHeaders 1992 | - React-Core/RCTWebSocket 1993 | - React-jsi 1994 | - React-jsinspector 1995 | - React-jsinspectorcdp 1996 | - React-NativeModulesApple 1997 | - React-RCTFBReactNativeSpec 1998 | - React-RCTNetwork 1999 | - ReactCommon 2000 | - SocketRocket 2001 | - React-RCTFabric (0.82.1): 2002 | - boost 2003 | - DoubleConversion 2004 | - fast_float 2005 | - fmt 2006 | - glog 2007 | - hermes-engine 2008 | - RCT-Folly 2009 | - RCT-Folly/Fabric 2010 | - React-Core 2011 | - React-debug 2012 | - React-Fabric 2013 | - React-FabricComponents 2014 | - React-FabricImage 2015 | - React-featureflags 2016 | - React-graphics 2017 | - React-ImageManager 2018 | - React-jsi 2019 | - React-jsinspector 2020 | - React-jsinspectorcdp 2021 | - React-jsinspectornetwork 2022 | - React-jsinspectortracing 2023 | - React-performancecdpmetrics 2024 | - React-performancetimeline 2025 | - React-RCTAnimation 2026 | - React-RCTFBReactNativeSpec 2027 | - React-RCTImage 2028 | - React-RCTText 2029 | - React-rendererconsistency 2030 | - React-renderercss 2031 | - React-rendererdebug 2032 | - React-runtimeexecutor 2033 | - React-runtimescheduler 2034 | - React-utils 2035 | - SocketRocket 2036 | - Yoga 2037 | - React-RCTFBReactNativeSpec (0.82.1): 2038 | - boost 2039 | - DoubleConversion 2040 | - fast_float 2041 | - fmt 2042 | - glog 2043 | - hermes-engine 2044 | - RCT-Folly 2045 | - RCT-Folly/Fabric 2046 | - RCTRequired 2047 | - RCTTypeSafety 2048 | - React-Core 2049 | - React-jsi 2050 | - React-NativeModulesApple 2051 | - React-RCTFBReactNativeSpec/components (= 0.82.1) 2052 | - ReactCommon 2053 | - SocketRocket 2054 | - React-RCTFBReactNativeSpec/components (0.82.1): 2055 | - boost 2056 | - DoubleConversion 2057 | - fast_float 2058 | - fmt 2059 | - glog 2060 | - hermes-engine 2061 | - RCT-Folly 2062 | - RCT-Folly/Fabric 2063 | - RCTRequired 2064 | - RCTTypeSafety 2065 | - React-Core 2066 | - React-debug 2067 | - React-Fabric 2068 | - React-featureflags 2069 | - React-graphics 2070 | - React-jsi 2071 | - React-NativeModulesApple 2072 | - React-rendererdebug 2073 | - React-utils 2074 | - ReactCommon 2075 | - SocketRocket 2076 | - Yoga 2077 | - React-RCTImage (0.82.1): 2078 | - boost 2079 | - DoubleConversion 2080 | - fast_float 2081 | - fmt 2082 | - glog 2083 | - RCT-Folly 2084 | - RCT-Folly/Fabric 2085 | - RCTTypeSafety 2086 | - React-Core/RCTImageHeaders 2087 | - React-jsi 2088 | - React-NativeModulesApple 2089 | - React-RCTFBReactNativeSpec 2090 | - React-RCTNetwork 2091 | - ReactCommon 2092 | - SocketRocket 2093 | - React-RCTLinking (0.82.1): 2094 | - React-Core/RCTLinkingHeaders (= 0.82.1) 2095 | - React-jsi (= 0.82.1) 2096 | - React-NativeModulesApple 2097 | - React-RCTFBReactNativeSpec 2098 | - ReactCommon 2099 | - ReactCommon/turbomodule/core (= 0.82.1) 2100 | - React-RCTNetwork (0.82.1): 2101 | - boost 2102 | - DoubleConversion 2103 | - fast_float 2104 | - fmt 2105 | - glog 2106 | - RCT-Folly 2107 | - RCT-Folly/Fabric 2108 | - RCTTypeSafety 2109 | - React-Core/RCTNetworkHeaders 2110 | - React-debug 2111 | - React-featureflags 2112 | - React-jsi 2113 | - React-jsinspectorcdp 2114 | - React-jsinspectornetwork 2115 | - React-NativeModulesApple 2116 | - React-RCTFBReactNativeSpec 2117 | - ReactCommon 2118 | - SocketRocket 2119 | - React-RCTRuntime (0.82.1): 2120 | - boost 2121 | - DoubleConversion 2122 | - fast_float 2123 | - fmt 2124 | - glog 2125 | - hermes-engine 2126 | - RCT-Folly 2127 | - RCT-Folly/Fabric 2128 | - React-Core 2129 | - React-debug 2130 | - React-jsi 2131 | - React-jsinspector 2132 | - React-jsinspectorcdp 2133 | - React-jsinspectortracing 2134 | - React-jsitooling 2135 | - React-RuntimeApple 2136 | - React-RuntimeCore 2137 | - React-runtimeexecutor 2138 | - React-RuntimeHermes 2139 | - SocketRocket 2140 | - React-RCTSettings (0.82.1): 2141 | - boost 2142 | - DoubleConversion 2143 | - fast_float 2144 | - fmt 2145 | - glog 2146 | - RCT-Folly 2147 | - RCT-Folly/Fabric 2148 | - RCTTypeSafety 2149 | - React-Core/RCTSettingsHeaders 2150 | - React-jsi 2151 | - React-NativeModulesApple 2152 | - React-RCTFBReactNativeSpec 2153 | - ReactCommon 2154 | - SocketRocket 2155 | - React-RCTText (0.82.1): 2156 | - React-Core/RCTTextHeaders (= 0.82.1) 2157 | - Yoga 2158 | - React-RCTVibration (0.82.1): 2159 | - boost 2160 | - DoubleConversion 2161 | - fast_float 2162 | - fmt 2163 | - glog 2164 | - RCT-Folly 2165 | - RCT-Folly/Fabric 2166 | - React-Core/RCTVibrationHeaders 2167 | - React-jsi 2168 | - React-NativeModulesApple 2169 | - React-RCTFBReactNativeSpec 2170 | - ReactCommon 2171 | - SocketRocket 2172 | - React-rendererconsistency (0.82.1) 2173 | - React-renderercss (0.82.1): 2174 | - React-debug 2175 | - React-utils 2176 | - React-rendererdebug (0.82.1): 2177 | - boost 2178 | - DoubleConversion 2179 | - fast_float 2180 | - fmt 2181 | - glog 2182 | - RCT-Folly 2183 | - RCT-Folly/Fabric 2184 | - React-debug 2185 | - SocketRocket 2186 | - React-RuntimeApple (0.82.1): 2187 | - boost 2188 | - DoubleConversion 2189 | - fast_float 2190 | - fmt 2191 | - glog 2192 | - hermes-engine 2193 | - RCT-Folly 2194 | - RCT-Folly/Fabric 2195 | - React-callinvoker 2196 | - React-Core/Default 2197 | - React-CoreModules 2198 | - React-cxxreact 2199 | - React-featureflags 2200 | - React-jserrorhandler 2201 | - React-jsi 2202 | - React-jsiexecutor 2203 | - React-jsinspector 2204 | - React-jsitooling 2205 | - React-Mapbuffer 2206 | - React-NativeModulesApple 2207 | - React-RCTFabric 2208 | - React-RCTFBReactNativeSpec 2209 | - React-RuntimeCore 2210 | - React-runtimeexecutor 2211 | - React-RuntimeHermes 2212 | - React-runtimescheduler 2213 | - React-utils 2214 | - SocketRocket 2215 | - React-RuntimeCore (0.82.1): 2216 | - boost 2217 | - DoubleConversion 2218 | - fast_float 2219 | - fmt 2220 | - glog 2221 | - hermes-engine 2222 | - RCT-Folly 2223 | - RCT-Folly/Fabric 2224 | - React-cxxreact 2225 | - React-Fabric 2226 | - React-featureflags 2227 | - React-jserrorhandler 2228 | - React-jsi 2229 | - React-jsiexecutor 2230 | - React-jsinspector 2231 | - React-jsitooling 2232 | - React-performancetimeline 2233 | - React-runtimeexecutor 2234 | - React-runtimescheduler 2235 | - React-utils 2236 | - SocketRocket 2237 | - React-runtimeexecutor (0.82.1): 2238 | - boost 2239 | - DoubleConversion 2240 | - fast_float 2241 | - fmt 2242 | - glog 2243 | - RCT-Folly 2244 | - RCT-Folly/Fabric 2245 | - React-debug 2246 | - React-featureflags 2247 | - React-jsi (= 0.82.1) 2248 | - React-utils 2249 | - SocketRocket 2250 | - React-RuntimeHermes (0.82.1): 2251 | - boost 2252 | - DoubleConversion 2253 | - fast_float 2254 | - fmt 2255 | - glog 2256 | - hermes-engine 2257 | - RCT-Folly 2258 | - RCT-Folly/Fabric 2259 | - React-featureflags 2260 | - React-hermes 2261 | - React-jsi 2262 | - React-jsinspector 2263 | - React-jsinspectorcdp 2264 | - React-jsinspectortracing 2265 | - React-jsitooling 2266 | - React-jsitracing 2267 | - React-RuntimeCore 2268 | - React-runtimeexecutor 2269 | - React-utils 2270 | - SocketRocket 2271 | - React-runtimescheduler (0.82.1): 2272 | - boost 2273 | - DoubleConversion 2274 | - fast_float 2275 | - fmt 2276 | - glog 2277 | - hermes-engine 2278 | - RCT-Folly 2279 | - RCT-Folly/Fabric 2280 | - React-callinvoker 2281 | - React-cxxreact 2282 | - React-debug 2283 | - React-featureflags 2284 | - React-jsi 2285 | - React-jsinspectortracing 2286 | - React-performancetimeline 2287 | - React-rendererconsistency 2288 | - React-rendererdebug 2289 | - React-runtimeexecutor 2290 | - React-timing 2291 | - React-utils 2292 | - SocketRocket 2293 | - React-timing (0.82.1): 2294 | - React-debug 2295 | - React-utils (0.82.1): 2296 | - boost 2297 | - DoubleConversion 2298 | - fast_float 2299 | - fmt 2300 | - glog 2301 | - hermes-engine 2302 | - RCT-Folly 2303 | - RCT-Folly/Fabric 2304 | - React-debug 2305 | - React-jsi (= 0.82.1) 2306 | - SocketRocket 2307 | - React-webperformancenativemodule (0.82.1): 2308 | - boost 2309 | - DoubleConversion 2310 | - fast_float 2311 | - fmt 2312 | - glog 2313 | - hermes-engine 2314 | - RCT-Folly 2315 | - RCT-Folly/Fabric 2316 | - React-jsi 2317 | - React-jsiexecutor 2318 | - React-performancetimeline 2319 | - React-RCTFBReactNativeSpec 2320 | - React-runtimeexecutor 2321 | - ReactCommon/turbomodule/core 2322 | - SocketRocket 2323 | - ReactAppDependencyProvider (0.82.1): 2324 | - ReactCodegen 2325 | - ReactCodegen (0.82.1): 2326 | - boost 2327 | - DoubleConversion 2328 | - fast_float 2329 | - fmt 2330 | - glog 2331 | - hermes-engine 2332 | - RCT-Folly 2333 | - RCT-Folly/Fabric 2334 | - RCTRequired 2335 | - RCTTypeSafety 2336 | - React-Core 2337 | - React-debug 2338 | - React-Fabric 2339 | - React-FabricImage 2340 | - React-featureflags 2341 | - React-graphics 2342 | - React-jsi 2343 | - React-jsiexecutor 2344 | - React-NativeModulesApple 2345 | - React-RCTAppDelegate 2346 | - React-rendererdebug 2347 | - React-utils 2348 | - ReactCommon/turbomodule/bridging 2349 | - ReactCommon/turbomodule/core 2350 | - SocketRocket 2351 | - ReactCommon (0.82.1): 2352 | - boost 2353 | - DoubleConversion 2354 | - fast_float 2355 | - fmt 2356 | - glog 2357 | - RCT-Folly 2358 | - RCT-Folly/Fabric 2359 | - ReactCommon/turbomodule (= 0.82.1) 2360 | - SocketRocket 2361 | - ReactCommon/turbomodule (0.82.1): 2362 | - boost 2363 | - DoubleConversion 2364 | - fast_float 2365 | - fmt 2366 | - glog 2367 | - hermes-engine 2368 | - RCT-Folly 2369 | - RCT-Folly/Fabric 2370 | - React-callinvoker (= 0.82.1) 2371 | - React-cxxreact (= 0.82.1) 2372 | - React-jsi (= 0.82.1) 2373 | - React-logger (= 0.82.1) 2374 | - React-perflogger (= 0.82.1) 2375 | - ReactCommon/turbomodule/bridging (= 0.82.1) 2376 | - ReactCommon/turbomodule/core (= 0.82.1) 2377 | - SocketRocket 2378 | - ReactCommon/turbomodule/bridging (0.82.1): 2379 | - boost 2380 | - DoubleConversion 2381 | - fast_float 2382 | - fmt 2383 | - glog 2384 | - hermes-engine 2385 | - RCT-Folly 2386 | - RCT-Folly/Fabric 2387 | - React-callinvoker (= 0.82.1) 2388 | - React-cxxreact (= 0.82.1) 2389 | - React-jsi (= 0.82.1) 2390 | - React-logger (= 0.82.1) 2391 | - React-perflogger (= 0.82.1) 2392 | - SocketRocket 2393 | - ReactCommon/turbomodule/core (0.82.1): 2394 | - boost 2395 | - DoubleConversion 2396 | - fast_float 2397 | - fmt 2398 | - glog 2399 | - hermes-engine 2400 | - RCT-Folly 2401 | - RCT-Folly/Fabric 2402 | - React-callinvoker (= 0.82.1) 2403 | - React-cxxreact (= 0.82.1) 2404 | - React-debug (= 0.82.1) 2405 | - React-featureflags (= 0.82.1) 2406 | - React-jsi (= 0.82.1) 2407 | - React-logger (= 0.82.1) 2408 | - React-perflogger (= 0.82.1) 2409 | - React-utils (= 0.82.1) 2410 | - SocketRocket 2411 | - RNGestureHandler (2.29.1): 2412 | - boost 2413 | - DoubleConversion 2414 | - fast_float 2415 | - fmt 2416 | - glog 2417 | - hermes-engine 2418 | - RCT-Folly 2419 | - RCT-Folly/Fabric 2420 | - RCTRequired 2421 | - RCTTypeSafety 2422 | - React-Core 2423 | - React-debug 2424 | - React-Fabric 2425 | - React-featureflags 2426 | - React-graphics 2427 | - React-ImageManager 2428 | - React-jsi 2429 | - React-NativeModulesApple 2430 | - React-RCTFabric 2431 | - React-renderercss 2432 | - React-rendererdebug 2433 | - React-utils 2434 | - ReactCodegen 2435 | - ReactCommon/turbomodule/bridging 2436 | - ReactCommon/turbomodule/core 2437 | - SocketRocket 2438 | - Yoga 2439 | - RNScreens (4.18.0): 2440 | - boost 2441 | - DoubleConversion 2442 | - fast_float 2443 | - fmt 2444 | - glog 2445 | - hermes-engine 2446 | - RCT-Folly 2447 | - RCT-Folly/Fabric 2448 | - RCTRequired 2449 | - RCTTypeSafety 2450 | - React-Core 2451 | - React-debug 2452 | - React-Fabric 2453 | - React-featureflags 2454 | - React-graphics 2455 | - React-ImageManager 2456 | - React-jsi 2457 | - React-NativeModulesApple 2458 | - React-RCTFabric 2459 | - React-RCTImage 2460 | - React-renderercss 2461 | - React-rendererdebug 2462 | - React-utils 2463 | - ReactCodegen 2464 | - ReactCommon/turbomodule/bridging 2465 | - ReactCommon/turbomodule/core 2466 | - RNScreens/common (= 4.18.0) 2467 | - SocketRocket 2468 | - Yoga 2469 | - RNScreens/common (4.18.0): 2470 | - boost 2471 | - DoubleConversion 2472 | - fast_float 2473 | - fmt 2474 | - glog 2475 | - hermes-engine 2476 | - RCT-Folly 2477 | - RCT-Folly/Fabric 2478 | - RCTRequired 2479 | - RCTTypeSafety 2480 | - React-Core 2481 | - React-debug 2482 | - React-Fabric 2483 | - React-featureflags 2484 | - React-graphics 2485 | - React-ImageManager 2486 | - React-jsi 2487 | - React-NativeModulesApple 2488 | - React-RCTFabric 2489 | - React-RCTImage 2490 | - React-renderercss 2491 | - React-rendererdebug 2492 | - React-utils 2493 | - ReactCodegen 2494 | - ReactCommon/turbomodule/bridging 2495 | - ReactCommon/turbomodule/core 2496 | - SocketRocket 2497 | - Yoga 2498 | - RNVectorIcons (10.3.0): 2499 | - boost 2500 | - DoubleConversion 2501 | - fast_float 2502 | - fmt 2503 | - glog 2504 | - hermes-engine 2505 | - RCT-Folly 2506 | - RCT-Folly/Fabric 2507 | - RCTRequired 2508 | - RCTTypeSafety 2509 | - React-Core 2510 | - React-debug 2511 | - React-Fabric 2512 | - React-featureflags 2513 | - React-graphics 2514 | - React-ImageManager 2515 | - React-jsi 2516 | - React-NativeModulesApple 2517 | - React-RCTFabric 2518 | - React-renderercss 2519 | - React-rendererdebug 2520 | - React-utils 2521 | - ReactCodegen 2522 | - ReactCommon/turbomodule/bridging 2523 | - ReactCommon/turbomodule/core 2524 | - SocketRocket 2525 | - Yoga 2526 | - SocketRocket (0.7.1) 2527 | - Yoga (0.0.0) 2528 | 2529 | DEPENDENCIES: 2530 | - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`) 2531 | - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`) 2532 | - fast_float (from `../node_modules/react-native/third-party-podspecs/fast_float.podspec`) 2533 | - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`) 2534 | - fmt (from `../node_modules/react-native/third-party-podspecs/fmt.podspec`) 2535 | - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`) 2536 | - hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`) 2537 | - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`) 2538 | - RCTDeprecation (from `../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation`) 2539 | - RCTRequired (from `../node_modules/react-native/Libraries/Required`) 2540 | - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`) 2541 | - React (from `../node_modules/react-native/`) 2542 | - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`) 2543 | - React-Core (from `../node_modules/react-native/`) 2544 | - React-Core/RCTWebSocket (from `../node_modules/react-native/`) 2545 | - React-CoreModules (from `../node_modules/react-native/React/CoreModules`) 2546 | - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`) 2547 | - React-debug (from `../node_modules/react-native/ReactCommon/react/debug`) 2548 | - React-defaultsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/defaults`) 2549 | - React-domnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/dom`) 2550 | - React-Fabric (from `../node_modules/react-native/ReactCommon`) 2551 | - React-FabricComponents (from `../node_modules/react-native/ReactCommon`) 2552 | - React-FabricImage (from `../node_modules/react-native/ReactCommon`) 2553 | - React-featureflags (from `../node_modules/react-native/ReactCommon/react/featureflags`) 2554 | - React-featureflagsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/featureflags`) 2555 | - React-graphics (from `../node_modules/react-native/ReactCommon/react/renderer/graphics`) 2556 | - React-hermes (from `../node_modules/react-native/ReactCommon/hermes`) 2557 | - React-idlecallbacksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks`) 2558 | - React-ImageManager (from `../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios`) 2559 | - React-jserrorhandler (from `../node_modules/react-native/ReactCommon/jserrorhandler`) 2560 | - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`) 2561 | - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`) 2562 | - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector-modern`) 2563 | - React-jsinspectorcdp (from `../node_modules/react-native/ReactCommon/jsinspector-modern/cdp`) 2564 | - React-jsinspectornetwork (from `../node_modules/react-native/ReactCommon/jsinspector-modern/network`) 2565 | - React-jsinspectortracing (from `../node_modules/react-native/ReactCommon/jsinspector-modern/tracing`) 2566 | - React-jsitooling (from `../node_modules/react-native/ReactCommon/jsitooling`) 2567 | - React-jsitracing (from `../node_modules/react-native/ReactCommon/hermes/executor/`) 2568 | - React-logger (from `../node_modules/react-native/ReactCommon/logger`) 2569 | - React-Mapbuffer (from `../node_modules/react-native/ReactCommon`) 2570 | - React-microtasksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/microtasks`) 2571 | - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`) 2572 | - React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`) 2573 | - React-oscompat (from `../node_modules/react-native/ReactCommon/oscompat`) 2574 | - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`) 2575 | - React-performancecdpmetrics (from `../node_modules/react-native/ReactCommon/react/performance/cdpmetrics`) 2576 | - React-performancetimeline (from `../node_modules/react-native/ReactCommon/react/performance/timeline`) 2577 | - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`) 2578 | - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`) 2579 | - React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`) 2580 | - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`) 2581 | - React-RCTFabric (from `../node_modules/react-native/React`) 2582 | - React-RCTFBReactNativeSpec (from `../node_modules/react-native/React`) 2583 | - React-RCTImage (from `../node_modules/react-native/Libraries/Image`) 2584 | - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`) 2585 | - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`) 2586 | - React-RCTRuntime (from `../node_modules/react-native/React/Runtime`) 2587 | - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`) 2588 | - React-RCTText (from `../node_modules/react-native/Libraries/Text`) 2589 | - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`) 2590 | - React-rendererconsistency (from `../node_modules/react-native/ReactCommon/react/renderer/consistency`) 2591 | - React-renderercss (from `../node_modules/react-native/ReactCommon/react/renderer/css`) 2592 | - React-rendererdebug (from `../node_modules/react-native/ReactCommon/react/renderer/debug`) 2593 | - React-RuntimeApple (from `../node_modules/react-native/ReactCommon/react/runtime/platform/ios`) 2594 | - React-RuntimeCore (from `../node_modules/react-native/ReactCommon/react/runtime`) 2595 | - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`) 2596 | - React-RuntimeHermes (from `../node_modules/react-native/ReactCommon/react/runtime`) 2597 | - React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`) 2598 | - React-timing (from `../node_modules/react-native/ReactCommon/react/timing`) 2599 | - React-utils (from `../node_modules/react-native/ReactCommon/react/utils`) 2600 | - React-webperformancenativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/webperformance`) 2601 | - ReactAppDependencyProvider (from `build/generated/ios`) 2602 | - ReactCodegen (from `build/generated/ios`) 2603 | - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`) 2604 | - RNGestureHandler (from `../node_modules/react-native-gesture-handler`) 2605 | - RNScreens (from `../node_modules/react-native-screens`) 2606 | - RNVectorIcons (from `../node_modules/react-native-vector-icons`) 2607 | - SocketRocket (~> 0.7.1) 2608 | - Yoga (from `../node_modules/react-native/ReactCommon/yoga`) 2609 | 2610 | SPEC REPOS: 2611 | trunk: 2612 | - SocketRocket 2613 | 2614 | EXTERNAL SOURCES: 2615 | boost: 2616 | :podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec" 2617 | DoubleConversion: 2618 | :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec" 2619 | fast_float: 2620 | :podspec: "../node_modules/react-native/third-party-podspecs/fast_float.podspec" 2621 | FBLazyVector: 2622 | :path: "../node_modules/react-native/Libraries/FBLazyVector" 2623 | fmt: 2624 | :podspec: "../node_modules/react-native/third-party-podspecs/fmt.podspec" 2625 | glog: 2626 | :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec" 2627 | hermes-engine: 2628 | :podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec" 2629 | :tag: hermes-2025-09-01-RNv0.82.0-265ef62ff3eb7289d17e366664ac0da82303e101 2630 | RCT-Folly: 2631 | :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec" 2632 | RCTDeprecation: 2633 | :path: "../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation" 2634 | RCTRequired: 2635 | :path: "../node_modules/react-native/Libraries/Required" 2636 | RCTTypeSafety: 2637 | :path: "../node_modules/react-native/Libraries/TypeSafety" 2638 | React: 2639 | :path: "../node_modules/react-native/" 2640 | React-callinvoker: 2641 | :path: "../node_modules/react-native/ReactCommon/callinvoker" 2642 | React-Core: 2643 | :path: "../node_modules/react-native/" 2644 | React-CoreModules: 2645 | :path: "../node_modules/react-native/React/CoreModules" 2646 | React-cxxreact: 2647 | :path: "../node_modules/react-native/ReactCommon/cxxreact" 2648 | React-debug: 2649 | :path: "../node_modules/react-native/ReactCommon/react/debug" 2650 | React-defaultsnativemodule: 2651 | :path: "../node_modules/react-native/ReactCommon/react/nativemodule/defaults" 2652 | React-domnativemodule: 2653 | :path: "../node_modules/react-native/ReactCommon/react/nativemodule/dom" 2654 | React-Fabric: 2655 | :path: "../node_modules/react-native/ReactCommon" 2656 | React-FabricComponents: 2657 | :path: "../node_modules/react-native/ReactCommon" 2658 | React-FabricImage: 2659 | :path: "../node_modules/react-native/ReactCommon" 2660 | React-featureflags: 2661 | :path: "../node_modules/react-native/ReactCommon/react/featureflags" 2662 | React-featureflagsnativemodule: 2663 | :path: "../node_modules/react-native/ReactCommon/react/nativemodule/featureflags" 2664 | React-graphics: 2665 | :path: "../node_modules/react-native/ReactCommon/react/renderer/graphics" 2666 | React-hermes: 2667 | :path: "../node_modules/react-native/ReactCommon/hermes" 2668 | React-idlecallbacksnativemodule: 2669 | :path: "../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks" 2670 | React-ImageManager: 2671 | :path: "../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios" 2672 | React-jserrorhandler: 2673 | :path: "../node_modules/react-native/ReactCommon/jserrorhandler" 2674 | React-jsi: 2675 | :path: "../node_modules/react-native/ReactCommon/jsi" 2676 | React-jsiexecutor: 2677 | :path: "../node_modules/react-native/ReactCommon/jsiexecutor" 2678 | React-jsinspector: 2679 | :path: "../node_modules/react-native/ReactCommon/jsinspector-modern" 2680 | React-jsinspectorcdp: 2681 | :path: "../node_modules/react-native/ReactCommon/jsinspector-modern/cdp" 2682 | React-jsinspectornetwork: 2683 | :path: "../node_modules/react-native/ReactCommon/jsinspector-modern/network" 2684 | React-jsinspectortracing: 2685 | :path: "../node_modules/react-native/ReactCommon/jsinspector-modern/tracing" 2686 | React-jsitooling: 2687 | :path: "../node_modules/react-native/ReactCommon/jsitooling" 2688 | React-jsitracing: 2689 | :path: "../node_modules/react-native/ReactCommon/hermes/executor/" 2690 | React-logger: 2691 | :path: "../node_modules/react-native/ReactCommon/logger" 2692 | React-Mapbuffer: 2693 | :path: "../node_modules/react-native/ReactCommon" 2694 | React-microtasksnativemodule: 2695 | :path: "../node_modules/react-native/ReactCommon/react/nativemodule/microtasks" 2696 | react-native-safe-area-context: 2697 | :path: "../node_modules/react-native-safe-area-context" 2698 | React-NativeModulesApple: 2699 | :path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios" 2700 | React-oscompat: 2701 | :path: "../node_modules/react-native/ReactCommon/oscompat" 2702 | React-perflogger: 2703 | :path: "../node_modules/react-native/ReactCommon/reactperflogger" 2704 | React-performancecdpmetrics: 2705 | :path: "../node_modules/react-native/ReactCommon/react/performance/cdpmetrics" 2706 | React-performancetimeline: 2707 | :path: "../node_modules/react-native/ReactCommon/react/performance/timeline" 2708 | React-RCTActionSheet: 2709 | :path: "../node_modules/react-native/Libraries/ActionSheetIOS" 2710 | React-RCTAnimation: 2711 | :path: "../node_modules/react-native/Libraries/NativeAnimation" 2712 | React-RCTAppDelegate: 2713 | :path: "../node_modules/react-native/Libraries/AppDelegate" 2714 | React-RCTBlob: 2715 | :path: "../node_modules/react-native/Libraries/Blob" 2716 | React-RCTFabric: 2717 | :path: "../node_modules/react-native/React" 2718 | React-RCTFBReactNativeSpec: 2719 | :path: "../node_modules/react-native/React" 2720 | React-RCTImage: 2721 | :path: "../node_modules/react-native/Libraries/Image" 2722 | React-RCTLinking: 2723 | :path: "../node_modules/react-native/Libraries/LinkingIOS" 2724 | React-RCTNetwork: 2725 | :path: "../node_modules/react-native/Libraries/Network" 2726 | React-RCTRuntime: 2727 | :path: "../node_modules/react-native/React/Runtime" 2728 | React-RCTSettings: 2729 | :path: "../node_modules/react-native/Libraries/Settings" 2730 | React-RCTText: 2731 | :path: "../node_modules/react-native/Libraries/Text" 2732 | React-RCTVibration: 2733 | :path: "../node_modules/react-native/Libraries/Vibration" 2734 | React-rendererconsistency: 2735 | :path: "../node_modules/react-native/ReactCommon/react/renderer/consistency" 2736 | React-renderercss: 2737 | :path: "../node_modules/react-native/ReactCommon/react/renderer/css" 2738 | React-rendererdebug: 2739 | :path: "../node_modules/react-native/ReactCommon/react/renderer/debug" 2740 | React-RuntimeApple: 2741 | :path: "../node_modules/react-native/ReactCommon/react/runtime/platform/ios" 2742 | React-RuntimeCore: 2743 | :path: "../node_modules/react-native/ReactCommon/react/runtime" 2744 | React-runtimeexecutor: 2745 | :path: "../node_modules/react-native/ReactCommon/runtimeexecutor" 2746 | React-RuntimeHermes: 2747 | :path: "../node_modules/react-native/ReactCommon/react/runtime" 2748 | React-runtimescheduler: 2749 | :path: "../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler" 2750 | React-timing: 2751 | :path: "../node_modules/react-native/ReactCommon/react/timing" 2752 | React-utils: 2753 | :path: "../node_modules/react-native/ReactCommon/react/utils" 2754 | React-webperformancenativemodule: 2755 | :path: "../node_modules/react-native/ReactCommon/react/nativemodule/webperformance" 2756 | ReactAppDependencyProvider: 2757 | :path: build/generated/ios 2758 | ReactCodegen: 2759 | :path: build/generated/ios 2760 | ReactCommon: 2761 | :path: "../node_modules/react-native/ReactCommon" 2762 | RNGestureHandler: 2763 | :path: "../node_modules/react-native-gesture-handler" 2764 | RNScreens: 2765 | :path: "../node_modules/react-native-screens" 2766 | RNVectorIcons: 2767 | :path: "../node_modules/react-native-vector-icons" 2768 | Yoga: 2769 | :path: "../node_modules/react-native/ReactCommon/yoga" 2770 | 2771 | SPEC CHECKSUMS: 2772 | boost: 7e761d76ca2ce687f7cc98e698152abd03a18f90 2773 | DoubleConversion: cb417026b2400c8f53ae97020b2be961b59470cb 2774 | fast_float: b32c788ed9c6a8c584d114d0047beda9664e7cc6 2775 | FBLazyVector: 0aa6183b9afe3c31fc65b5d1eeef1f3c19b63bfa 2776 | fmt: a40bb5bd0294ea969aaaba240a927bd33d878cdd 2777 | glog: 5683914934d5b6e4240e497e0f4a3b42d1854183 2778 | hermes-engine: 273e30e7fb618279934b0b95ffab60ecedb7acf5 2779 | RCT-Folly: 846fda9475e61ec7bcbf8a3fe81edfcaeb090669 2780 | RCTDeprecation: f17e2ebc07876ca9ab8eb6e4b0a4e4647497ae3a 2781 | RCTRequired: e2c574c1b45231f7efb0834936bd609d75072b63 2782 | RCTTypeSafety: c693294e3993056955c3010eb1ebc574f1fcded6 2783 | React: aeece948ccf155182ea86a2395786ed31cf21c61 2784 | React-callinvoker: 05ad789505922d68c06cde1c8060e734df9fe182 2785 | React-Core: 956ac86b4d9b0c0fd9a14b9cc533aa297bb501c0 2786 | React-CoreModules: 3a8d39778cf9eeca40e419814e875da1a8e29855 2787 | React-cxxreact: db275765e1eb08f038599fb44114cf57ee0d18cd 2788 | React-debug: 1dfa1d1cbd93bdaffa3b140190829f9fd9e27985 2789 | React-defaultsnativemodule: 35f353ba06901fb5e374bc56e750fde05cbb05b9 2790 | React-domnativemodule: cf9e1b1b520ce0e66396c2744b3eb6d419711c13 2791 | React-Fabric: c0b0c1ad70476d354b3da9fef96094f7b37804da 2792 | React-FabricComponents: 8c6861c5233cf0d5685cee301a979313090e2f57 2793 | React-FabricImage: cef8883d2fb6c892003fefcad261d2898adbe926 2794 | React-featureflags: 0e2b969019c2b118de64a6d4c55ef7c05f2b0f1d 2795 | React-featureflagsnativemodule: e1ef619d14fe0a68d4783b32293309dbb13ef2a5 2796 | React-graphics: 0fc6b7acaff7161bda05bf8bffceacc2b0b4e38d 2797 | React-hermes: b454b9352bc26e638704d103009f659a125b86d3 2798 | React-idlecallbacksnativemodule: 35ab292f8404c469744db5a5dd5f0f27f95e5ebf 2799 | React-ImageManager: 3312c550ebcf6b7d911d9993082adcb3e1407ce8 2800 | React-jserrorhandler: 2a7f2d94566f05f8cb82288afd46bc0fd8b2ffc7 2801 | React-jsi: 7aa265cf8372d8385ccc7935729e76d27e694dfe 2802 | React-jsiexecutor: 8dd53bebfb3bc12f0541282aa4c858a433914e37 2803 | React-jsinspector: f89b9ae62a4e2f6035b452442ef20a7f98f9cb27 2804 | React-jsinspectorcdp: 44e46c1473a8deecf7b188389ed409be83fb3cc7 2805 | React-jsinspectornetwork: dc9524f6e3d7694b1b6f4bd22dedad8ccc2c0a80 2806 | React-jsinspectortracing: 0166ebbdfb125936a5d231895de3c11a19521dfc 2807 | React-jsitooling: 34692514ec8d8735938eda3677808a58f41c925b 2808 | React-jsitracing: a598dae84a87f8013635d09c5e7884023bda8501 2809 | React-logger: 500f2fa5697d224e63c33d913c8a4765319e19bf 2810 | React-Mapbuffer: 06d59c448da7e34eb05b3fb2189e12f6a30fec57 2811 | React-microtasksnativemodule: d1ee999dc9052e23f6488b730fa2d383a4ea40e5 2812 | react-native-safe-area-context: c00143b4823773bba23f2f19f85663ae89ceb460 2813 | React-NativeModulesApple: 46690a0fe94ec28fc6fc686ec797b911d251ded0 2814 | React-oscompat: 95875e81f5d4b3c7b2c888d5bd2c9d83450d8bdb 2815 | React-perflogger: 2e229bf33e42c094fd64516d89ec1187a2b79b5b 2816 | React-performancecdpmetrics: 05ba4bd83f36acf192071bb5d9c8f45faf04d140 2817 | React-performancetimeline: bfc96fcd2b79f7489dd54e3df4cba186dd8dd141 2818 | React-RCTActionSheet: 2399bb6cc8adaef2e5850878102fea2ad1788a0e 2819 | React-RCTAnimation: d1deb6946e83e22a795a7d0148b94faad8851644 2820 | React-RCTAppDelegate: 10b35d5cec3f8653f6de843ae800b3ba8050b801 2821 | React-RCTBlob: 85150378edc42862d7c13ff2502693f32b174f91 2822 | React-RCTFabric: 736f9da3ad57e2cef5fa4c132999933a89bb8378 2823 | React-RCTFBReactNativeSpec: 705ec584758966950a31fa235539b57523059837 2824 | React-RCTImage: bb6cbdc22698b3afc8eb8d81ef03ee840d24c6f6 2825 | React-RCTLinking: e8b006d101c45651925de3e82189f03449eedfe7 2826 | React-RCTNetwork: 7999731af05ec8f591cbc6ad4e29d79e209c581a 2827 | React-RCTRuntime: 99d8a2a17747866fb972561cdb205afe9b26d369 2828 | React-RCTSettings: 839f334abb92e917bc24322036081ffe15c84086 2829 | React-RCTText: 272f60e9a5dbfd14c348c85881ee7d5c7749a67c 2830 | React-RCTVibration: 1ffa30a21e2227be3afe28d657ac8e6616c91bae 2831 | React-rendererconsistency: 3c3e198aba0255524ed7126aa812d22ce750d217 2832 | React-renderercss: 6b3ce3dfadf991937ae3229112be843ef1438c32 2833 | React-rendererdebug: baf9e1daa07ac7f9aca379555126d29f963ba38b 2834 | React-RuntimeApple: 4136aee89257894955ef09e9f9ef74f0c27596be 2835 | React-RuntimeCore: e9a743d7de4bbd741b16e10b26078d815d6513ab 2836 | React-runtimeexecutor: 781e292362066af82fa2478d95c6b0e374421844 2837 | React-RuntimeHermes: 6ab3c2847516769fc860d711814f1735859cad74 2838 | React-runtimescheduler: 824c83a5fd68b35396de6d4f2f9ae995daac861b 2839 | React-timing: 1ebc7102dd52a3edcc63534686bb156e12648411 2840 | React-utils: abf37b162f560cd0e3e5d037af30bb796512246d 2841 | React-webperformancenativemodule: 50a57c713a90d27ae3ab947a6c9c8859bcb49709 2842 | ReactAppDependencyProvider: a45ef34bb22dc1c9b2ac1f74167d9a28af961176 2843 | ReactCodegen: 878add6c7d8ff8cea87697c44d29c03b79b6f2d9 2844 | ReactCommon: 804dc80944fa90b86800b43c871742ec005ca424 2845 | RNGestureHandler: e1cf8ef3f11045536eed6bd4f132b003ef5f9a5f 2846 | RNScreens: d821082c6dd1cb397cc0c98b026eeafaa68be479 2847 | RNVectorIcons: 791f13226ec4a3fd13062eda9e892159f0981fae 2848 | SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748 2849 | Yoga: 689c8e04277f3ad631e60fe2a08e41d411daf8eb 2850 | 2851 | PODFILE CHECKSUM: 38354763aa665c1a78404251eb7ebcdde12517c6 2852 | 2853 | COCOAPODS: 1.16.2 2854 | --------------------------------------------------------------------------------