├── .watchmanconfig
├── jest.config.js
├── .bundle
└── config
├── app.json
├── .eslintrc.js
├── babel.config.js
├── .prettierrc.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
├── 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 |
--------------------------------------------------------------------------------
/.prettierrc.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | arrowParens: 'avoid',
3 | singleQuote: true,
4 | trailingComma: 'all',
5 | };
6 |
--------------------------------------------------------------------------------
/android/app/debug.keystore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarforever/react-native-boilerplate/main/android/app/debug.keystore
--------------------------------------------------------------------------------
/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/react-native-boilerplate/main/android/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/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.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarforever/react-native-boilerplate/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/react-native-boilerplate/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/react-native-boilerplate/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/react-native-boilerplate/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/react-native-boilerplate/main/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sugarforever/react-native-boilerplate/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/react-native-boilerplate/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/react-native-boilerplate/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/react-native-boilerplate/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/react-native-boilerplate/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-vector-icons/material-design-icons": "^12.4.0",
14 | "@react-native/new-app-screen": "0.82.1",
15 | "@react-navigation/native": "^7.1.21",
16 | "@react-navigation/native-stack": "^7.8.0",
17 | "react": "19.1.1",
18 | "react-native": "0.82.1",
19 | "react-native-gesture-handler": "^2.29.1",
20 | "react-native-paper": "^5.14.5",
21 | "react-native-safe-area-context": "^5.5.2",
22 | "react-native-screens": "^4.18.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 | UIAppFonts
55 |
56 | MaterialDesignIcons.ttf
57 |
58 |
59 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/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 | # Renaming the App
86 |
87 | This boilerplate uses "Boilerplate" as the default app name. To rename it to your own app name (e.g., "MyApp"):
88 |
89 | ```sh
90 | npx react-native-rename@latest "MyApp" -b com.mycompany.myapp
91 | ```
92 |
93 | Where:
94 | - `"MyApp"` is your new app display name
95 | - `-b com.mycompany.myapp` is your new bundle identifier
96 |
97 | After renaming, clean and reinstall dependencies:
98 |
99 | ```sh
100 | rm -rf node_modules ios/Pods ios/Podfile.lock
101 | npm install
102 | cd ios && pod install && cd ..
103 |
104 | # Update icon fonts in Info.plist (use your new app folder name)
105 | npx rnvi-update-plist package.json ios/MyApp/Info.plist
106 |
107 | # Rebuild
108 | npm run ios
109 | npm run android
110 | ```
111 |
112 | # Troubleshooting
113 |
114 | If you're having issues getting the above steps to work, see the [Troubleshooting](https://reactnative.dev/docs/troubleshooting) page.
115 |
116 | # Learn More
117 |
118 | To learn more about React Native, take a look at the following resources:
119 |
120 | - [React Native Website](https://reactnative.dev) - learn more about React Native.
121 | - [Getting Started](https://reactnative.dev/docs/environment-setup) - an **overview** of React Native and how setup your environment.
122 | - [Learn the Basics](https://reactnative.dev/docs/getting-started) - a **guided tour** of the React Native **basics**.
123 | - [Blog](https://reactnative.dev/blog) - read the latest official React Native **Blog** posts.
124 | - [`@facebook/react-native`](https://github.com/facebook/react-native) - the Open Source; GitHub **repository** for React Native.
125 |
--------------------------------------------------------------------------------
/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-native-vector-icons-material-design-icons (12.4.0)
1873 | - React-NativeModulesApple (0.82.1):
1874 | - boost
1875 | - DoubleConversion
1876 | - fast_float
1877 | - fmt
1878 | - glog
1879 | - hermes-engine
1880 | - RCT-Folly
1881 | - RCT-Folly/Fabric
1882 | - React-callinvoker
1883 | - React-Core
1884 | - React-cxxreact
1885 | - React-debug
1886 | - React-featureflags
1887 | - React-jsi
1888 | - React-jsinspector
1889 | - React-jsinspectorcdp
1890 | - React-runtimeexecutor
1891 | - ReactCommon/turbomodule/bridging
1892 | - ReactCommon/turbomodule/core
1893 | - SocketRocket
1894 | - React-oscompat (0.82.1)
1895 | - React-perflogger (0.82.1):
1896 | - boost
1897 | - DoubleConversion
1898 | - fast_float
1899 | - fmt
1900 | - glog
1901 | - RCT-Folly
1902 | - RCT-Folly/Fabric
1903 | - SocketRocket
1904 | - React-performancecdpmetrics (0.82.1):
1905 | - boost
1906 | - DoubleConversion
1907 | - fast_float
1908 | - fmt
1909 | - glog
1910 | - hermes-engine
1911 | - RCT-Folly
1912 | - RCT-Folly/Fabric
1913 | - React-jsi
1914 | - React-performancetimeline
1915 | - React-runtimeexecutor
1916 | - React-timing
1917 | - SocketRocket
1918 | - React-performancetimeline (0.82.1):
1919 | - boost
1920 | - DoubleConversion
1921 | - fast_float
1922 | - fmt
1923 | - glog
1924 | - RCT-Folly
1925 | - RCT-Folly/Fabric
1926 | - React-featureflags
1927 | - React-jsinspectortracing
1928 | - React-perflogger
1929 | - React-timing
1930 | - SocketRocket
1931 | - React-RCTActionSheet (0.82.1):
1932 | - React-Core/RCTActionSheetHeaders (= 0.82.1)
1933 | - React-RCTAnimation (0.82.1):
1934 | - boost
1935 | - DoubleConversion
1936 | - fast_float
1937 | - fmt
1938 | - glog
1939 | - RCT-Folly
1940 | - RCT-Folly/Fabric
1941 | - RCTTypeSafety
1942 | - React-Core/RCTAnimationHeaders
1943 | - React-featureflags
1944 | - React-jsi
1945 | - React-NativeModulesApple
1946 | - React-RCTFBReactNativeSpec
1947 | - ReactCommon
1948 | - SocketRocket
1949 | - React-RCTAppDelegate (0.82.1):
1950 | - boost
1951 | - DoubleConversion
1952 | - fast_float
1953 | - fmt
1954 | - glog
1955 | - hermes-engine
1956 | - RCT-Folly
1957 | - RCT-Folly/Fabric
1958 | - RCTRequired
1959 | - RCTTypeSafety
1960 | - React-Core
1961 | - React-CoreModules
1962 | - React-debug
1963 | - React-defaultsnativemodule
1964 | - React-Fabric
1965 | - React-featureflags
1966 | - React-graphics
1967 | - React-hermes
1968 | - React-jsitooling
1969 | - React-NativeModulesApple
1970 | - React-RCTFabric
1971 | - React-RCTFBReactNativeSpec
1972 | - React-RCTImage
1973 | - React-RCTNetwork
1974 | - React-RCTRuntime
1975 | - React-rendererdebug
1976 | - React-RuntimeApple
1977 | - React-RuntimeCore
1978 | - React-runtimeexecutor
1979 | - React-runtimescheduler
1980 | - React-utils
1981 | - ReactCommon
1982 | - SocketRocket
1983 | - React-RCTBlob (0.82.1):
1984 | - boost
1985 | - DoubleConversion
1986 | - fast_float
1987 | - fmt
1988 | - glog
1989 | - hermes-engine
1990 | - RCT-Folly
1991 | - RCT-Folly/Fabric
1992 | - React-Core/RCTBlobHeaders
1993 | - React-Core/RCTWebSocket
1994 | - React-jsi
1995 | - React-jsinspector
1996 | - React-jsinspectorcdp
1997 | - React-NativeModulesApple
1998 | - React-RCTFBReactNativeSpec
1999 | - React-RCTNetwork
2000 | - ReactCommon
2001 | - SocketRocket
2002 | - React-RCTFabric (0.82.1):
2003 | - boost
2004 | - DoubleConversion
2005 | - fast_float
2006 | - fmt
2007 | - glog
2008 | - hermes-engine
2009 | - RCT-Folly
2010 | - RCT-Folly/Fabric
2011 | - React-Core
2012 | - React-debug
2013 | - React-Fabric
2014 | - React-FabricComponents
2015 | - React-FabricImage
2016 | - React-featureflags
2017 | - React-graphics
2018 | - React-ImageManager
2019 | - React-jsi
2020 | - React-jsinspector
2021 | - React-jsinspectorcdp
2022 | - React-jsinspectornetwork
2023 | - React-jsinspectortracing
2024 | - React-performancecdpmetrics
2025 | - React-performancetimeline
2026 | - React-RCTAnimation
2027 | - React-RCTFBReactNativeSpec
2028 | - React-RCTImage
2029 | - React-RCTText
2030 | - React-rendererconsistency
2031 | - React-renderercss
2032 | - React-rendererdebug
2033 | - React-runtimeexecutor
2034 | - React-runtimescheduler
2035 | - React-utils
2036 | - SocketRocket
2037 | - Yoga
2038 | - React-RCTFBReactNativeSpec (0.82.1):
2039 | - boost
2040 | - DoubleConversion
2041 | - fast_float
2042 | - fmt
2043 | - glog
2044 | - hermes-engine
2045 | - RCT-Folly
2046 | - RCT-Folly/Fabric
2047 | - RCTRequired
2048 | - RCTTypeSafety
2049 | - React-Core
2050 | - React-jsi
2051 | - React-NativeModulesApple
2052 | - React-RCTFBReactNativeSpec/components (= 0.82.1)
2053 | - ReactCommon
2054 | - SocketRocket
2055 | - React-RCTFBReactNativeSpec/components (0.82.1):
2056 | - boost
2057 | - DoubleConversion
2058 | - fast_float
2059 | - fmt
2060 | - glog
2061 | - hermes-engine
2062 | - RCT-Folly
2063 | - RCT-Folly/Fabric
2064 | - RCTRequired
2065 | - RCTTypeSafety
2066 | - React-Core
2067 | - React-debug
2068 | - React-Fabric
2069 | - React-featureflags
2070 | - React-graphics
2071 | - React-jsi
2072 | - React-NativeModulesApple
2073 | - React-rendererdebug
2074 | - React-utils
2075 | - ReactCommon
2076 | - SocketRocket
2077 | - Yoga
2078 | - React-RCTImage (0.82.1):
2079 | - boost
2080 | - DoubleConversion
2081 | - fast_float
2082 | - fmt
2083 | - glog
2084 | - RCT-Folly
2085 | - RCT-Folly/Fabric
2086 | - RCTTypeSafety
2087 | - React-Core/RCTImageHeaders
2088 | - React-jsi
2089 | - React-NativeModulesApple
2090 | - React-RCTFBReactNativeSpec
2091 | - React-RCTNetwork
2092 | - ReactCommon
2093 | - SocketRocket
2094 | - React-RCTLinking (0.82.1):
2095 | - React-Core/RCTLinkingHeaders (= 0.82.1)
2096 | - React-jsi (= 0.82.1)
2097 | - React-NativeModulesApple
2098 | - React-RCTFBReactNativeSpec
2099 | - ReactCommon
2100 | - ReactCommon/turbomodule/core (= 0.82.1)
2101 | - React-RCTNetwork (0.82.1):
2102 | - boost
2103 | - DoubleConversion
2104 | - fast_float
2105 | - fmt
2106 | - glog
2107 | - RCT-Folly
2108 | - RCT-Folly/Fabric
2109 | - RCTTypeSafety
2110 | - React-Core/RCTNetworkHeaders
2111 | - React-debug
2112 | - React-featureflags
2113 | - React-jsi
2114 | - React-jsinspectorcdp
2115 | - React-jsinspectornetwork
2116 | - React-NativeModulesApple
2117 | - React-RCTFBReactNativeSpec
2118 | - ReactCommon
2119 | - SocketRocket
2120 | - React-RCTRuntime (0.82.1):
2121 | - boost
2122 | - DoubleConversion
2123 | - fast_float
2124 | - fmt
2125 | - glog
2126 | - hermes-engine
2127 | - RCT-Folly
2128 | - RCT-Folly/Fabric
2129 | - React-Core
2130 | - React-debug
2131 | - React-jsi
2132 | - React-jsinspector
2133 | - React-jsinspectorcdp
2134 | - React-jsinspectortracing
2135 | - React-jsitooling
2136 | - React-RuntimeApple
2137 | - React-RuntimeCore
2138 | - React-runtimeexecutor
2139 | - React-RuntimeHermes
2140 | - SocketRocket
2141 | - React-RCTSettings (0.82.1):
2142 | - boost
2143 | - DoubleConversion
2144 | - fast_float
2145 | - fmt
2146 | - glog
2147 | - RCT-Folly
2148 | - RCT-Folly/Fabric
2149 | - RCTTypeSafety
2150 | - React-Core/RCTSettingsHeaders
2151 | - React-jsi
2152 | - React-NativeModulesApple
2153 | - React-RCTFBReactNativeSpec
2154 | - ReactCommon
2155 | - SocketRocket
2156 | - React-RCTText (0.82.1):
2157 | - React-Core/RCTTextHeaders (= 0.82.1)
2158 | - Yoga
2159 | - React-RCTVibration (0.82.1):
2160 | - boost
2161 | - DoubleConversion
2162 | - fast_float
2163 | - fmt
2164 | - glog
2165 | - RCT-Folly
2166 | - RCT-Folly/Fabric
2167 | - React-Core/RCTVibrationHeaders
2168 | - React-jsi
2169 | - React-NativeModulesApple
2170 | - React-RCTFBReactNativeSpec
2171 | - ReactCommon
2172 | - SocketRocket
2173 | - React-rendererconsistency (0.82.1)
2174 | - React-renderercss (0.82.1):
2175 | - React-debug
2176 | - React-utils
2177 | - React-rendererdebug (0.82.1):
2178 | - boost
2179 | - DoubleConversion
2180 | - fast_float
2181 | - fmt
2182 | - glog
2183 | - RCT-Folly
2184 | - RCT-Folly/Fabric
2185 | - React-debug
2186 | - SocketRocket
2187 | - React-RuntimeApple (0.82.1):
2188 | - boost
2189 | - DoubleConversion
2190 | - fast_float
2191 | - fmt
2192 | - glog
2193 | - hermes-engine
2194 | - RCT-Folly
2195 | - RCT-Folly/Fabric
2196 | - React-callinvoker
2197 | - React-Core/Default
2198 | - React-CoreModules
2199 | - React-cxxreact
2200 | - React-featureflags
2201 | - React-jserrorhandler
2202 | - React-jsi
2203 | - React-jsiexecutor
2204 | - React-jsinspector
2205 | - React-jsitooling
2206 | - React-Mapbuffer
2207 | - React-NativeModulesApple
2208 | - React-RCTFabric
2209 | - React-RCTFBReactNativeSpec
2210 | - React-RuntimeCore
2211 | - React-runtimeexecutor
2212 | - React-RuntimeHermes
2213 | - React-runtimescheduler
2214 | - React-utils
2215 | - SocketRocket
2216 | - React-RuntimeCore (0.82.1):
2217 | - boost
2218 | - DoubleConversion
2219 | - fast_float
2220 | - fmt
2221 | - glog
2222 | - hermes-engine
2223 | - RCT-Folly
2224 | - RCT-Folly/Fabric
2225 | - React-cxxreact
2226 | - React-Fabric
2227 | - React-featureflags
2228 | - React-jserrorhandler
2229 | - React-jsi
2230 | - React-jsiexecutor
2231 | - React-jsinspector
2232 | - React-jsitooling
2233 | - React-performancetimeline
2234 | - React-runtimeexecutor
2235 | - React-runtimescheduler
2236 | - React-utils
2237 | - SocketRocket
2238 | - React-runtimeexecutor (0.82.1):
2239 | - boost
2240 | - DoubleConversion
2241 | - fast_float
2242 | - fmt
2243 | - glog
2244 | - RCT-Folly
2245 | - RCT-Folly/Fabric
2246 | - React-debug
2247 | - React-featureflags
2248 | - React-jsi (= 0.82.1)
2249 | - React-utils
2250 | - SocketRocket
2251 | - React-RuntimeHermes (0.82.1):
2252 | - boost
2253 | - DoubleConversion
2254 | - fast_float
2255 | - fmt
2256 | - glog
2257 | - hermes-engine
2258 | - RCT-Folly
2259 | - RCT-Folly/Fabric
2260 | - React-featureflags
2261 | - React-hermes
2262 | - React-jsi
2263 | - React-jsinspector
2264 | - React-jsinspectorcdp
2265 | - React-jsinspectortracing
2266 | - React-jsitooling
2267 | - React-jsitracing
2268 | - React-RuntimeCore
2269 | - React-runtimeexecutor
2270 | - React-utils
2271 | - SocketRocket
2272 | - React-runtimescheduler (0.82.1):
2273 | - boost
2274 | - DoubleConversion
2275 | - fast_float
2276 | - fmt
2277 | - glog
2278 | - hermes-engine
2279 | - RCT-Folly
2280 | - RCT-Folly/Fabric
2281 | - React-callinvoker
2282 | - React-cxxreact
2283 | - React-debug
2284 | - React-featureflags
2285 | - React-jsi
2286 | - React-jsinspectortracing
2287 | - React-performancetimeline
2288 | - React-rendererconsistency
2289 | - React-rendererdebug
2290 | - React-runtimeexecutor
2291 | - React-timing
2292 | - React-utils
2293 | - SocketRocket
2294 | - React-timing (0.82.1):
2295 | - React-debug
2296 | - React-utils (0.82.1):
2297 | - boost
2298 | - DoubleConversion
2299 | - fast_float
2300 | - fmt
2301 | - glog
2302 | - hermes-engine
2303 | - RCT-Folly
2304 | - RCT-Folly/Fabric
2305 | - React-debug
2306 | - React-jsi (= 0.82.1)
2307 | - SocketRocket
2308 | - React-webperformancenativemodule (0.82.1):
2309 | - boost
2310 | - DoubleConversion
2311 | - fast_float
2312 | - fmt
2313 | - glog
2314 | - hermes-engine
2315 | - RCT-Folly
2316 | - RCT-Folly/Fabric
2317 | - React-jsi
2318 | - React-jsiexecutor
2319 | - React-performancetimeline
2320 | - React-RCTFBReactNativeSpec
2321 | - React-runtimeexecutor
2322 | - ReactCommon/turbomodule/core
2323 | - SocketRocket
2324 | - ReactAppDependencyProvider (0.82.1):
2325 | - ReactCodegen
2326 | - ReactCodegen (0.82.1):
2327 | - boost
2328 | - DoubleConversion
2329 | - fast_float
2330 | - fmt
2331 | - glog
2332 | - hermes-engine
2333 | - RCT-Folly
2334 | - RCT-Folly/Fabric
2335 | - RCTRequired
2336 | - RCTTypeSafety
2337 | - React-Core
2338 | - React-debug
2339 | - React-Fabric
2340 | - React-FabricImage
2341 | - React-featureflags
2342 | - React-graphics
2343 | - React-jsi
2344 | - React-jsiexecutor
2345 | - React-NativeModulesApple
2346 | - React-RCTAppDelegate
2347 | - React-rendererdebug
2348 | - React-utils
2349 | - ReactCommon/turbomodule/bridging
2350 | - ReactCommon/turbomodule/core
2351 | - SocketRocket
2352 | - ReactCommon (0.82.1):
2353 | - boost
2354 | - DoubleConversion
2355 | - fast_float
2356 | - fmt
2357 | - glog
2358 | - RCT-Folly
2359 | - RCT-Folly/Fabric
2360 | - ReactCommon/turbomodule (= 0.82.1)
2361 | - SocketRocket
2362 | - ReactCommon/turbomodule (0.82.1):
2363 | - boost
2364 | - DoubleConversion
2365 | - fast_float
2366 | - fmt
2367 | - glog
2368 | - hermes-engine
2369 | - RCT-Folly
2370 | - RCT-Folly/Fabric
2371 | - React-callinvoker (= 0.82.1)
2372 | - React-cxxreact (= 0.82.1)
2373 | - React-jsi (= 0.82.1)
2374 | - React-logger (= 0.82.1)
2375 | - React-perflogger (= 0.82.1)
2376 | - ReactCommon/turbomodule/bridging (= 0.82.1)
2377 | - ReactCommon/turbomodule/core (= 0.82.1)
2378 | - SocketRocket
2379 | - ReactCommon/turbomodule/bridging (0.82.1):
2380 | - boost
2381 | - DoubleConversion
2382 | - fast_float
2383 | - fmt
2384 | - glog
2385 | - hermes-engine
2386 | - RCT-Folly
2387 | - RCT-Folly/Fabric
2388 | - React-callinvoker (= 0.82.1)
2389 | - React-cxxreact (= 0.82.1)
2390 | - React-jsi (= 0.82.1)
2391 | - React-logger (= 0.82.1)
2392 | - React-perflogger (= 0.82.1)
2393 | - SocketRocket
2394 | - ReactCommon/turbomodule/core (0.82.1):
2395 | - boost
2396 | - DoubleConversion
2397 | - fast_float
2398 | - fmt
2399 | - glog
2400 | - hermes-engine
2401 | - RCT-Folly
2402 | - RCT-Folly/Fabric
2403 | - React-callinvoker (= 0.82.1)
2404 | - React-cxxreact (= 0.82.1)
2405 | - React-debug (= 0.82.1)
2406 | - React-featureflags (= 0.82.1)
2407 | - React-jsi (= 0.82.1)
2408 | - React-logger (= 0.82.1)
2409 | - React-perflogger (= 0.82.1)
2410 | - React-utils (= 0.82.1)
2411 | - SocketRocket
2412 | - RNGestureHandler (2.29.1):
2413 | - boost
2414 | - DoubleConversion
2415 | - fast_float
2416 | - fmt
2417 | - glog
2418 | - hermes-engine
2419 | - RCT-Folly
2420 | - RCT-Folly/Fabric
2421 | - RCTRequired
2422 | - RCTTypeSafety
2423 | - React-Core
2424 | - React-debug
2425 | - React-Fabric
2426 | - React-featureflags
2427 | - React-graphics
2428 | - React-ImageManager
2429 | - React-jsi
2430 | - React-NativeModulesApple
2431 | - React-RCTFabric
2432 | - React-renderercss
2433 | - React-rendererdebug
2434 | - React-utils
2435 | - ReactCodegen
2436 | - ReactCommon/turbomodule/bridging
2437 | - ReactCommon/turbomodule/core
2438 | - SocketRocket
2439 | - Yoga
2440 | - RNScreens (4.18.0):
2441 | - boost
2442 | - DoubleConversion
2443 | - fast_float
2444 | - fmt
2445 | - glog
2446 | - hermes-engine
2447 | - RCT-Folly
2448 | - RCT-Folly/Fabric
2449 | - RCTRequired
2450 | - RCTTypeSafety
2451 | - React-Core
2452 | - React-debug
2453 | - React-Fabric
2454 | - React-featureflags
2455 | - React-graphics
2456 | - React-ImageManager
2457 | - React-jsi
2458 | - React-NativeModulesApple
2459 | - React-RCTFabric
2460 | - React-RCTImage
2461 | - React-renderercss
2462 | - React-rendererdebug
2463 | - React-utils
2464 | - ReactCodegen
2465 | - ReactCommon/turbomodule/bridging
2466 | - ReactCommon/turbomodule/core
2467 | - RNScreens/common (= 4.18.0)
2468 | - SocketRocket
2469 | - Yoga
2470 | - RNScreens/common (4.18.0):
2471 | - boost
2472 | - DoubleConversion
2473 | - fast_float
2474 | - fmt
2475 | - glog
2476 | - hermes-engine
2477 | - RCT-Folly
2478 | - RCT-Folly/Fabric
2479 | - RCTRequired
2480 | - RCTTypeSafety
2481 | - React-Core
2482 | - React-debug
2483 | - React-Fabric
2484 | - React-featureflags
2485 | - React-graphics
2486 | - React-ImageManager
2487 | - React-jsi
2488 | - React-NativeModulesApple
2489 | - React-RCTFabric
2490 | - React-RCTImage
2491 | - React-renderercss
2492 | - React-rendererdebug
2493 | - React-utils
2494 | - ReactCodegen
2495 | - ReactCommon/turbomodule/bridging
2496 | - ReactCommon/turbomodule/core
2497 | - SocketRocket
2498 | - Yoga
2499 | - SocketRocket (0.7.1)
2500 | - Yoga (0.0.0)
2501 |
2502 | DEPENDENCIES:
2503 | - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
2504 | - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
2505 | - fast_float (from `../node_modules/react-native/third-party-podspecs/fast_float.podspec`)
2506 | - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
2507 | - fmt (from `../node_modules/react-native/third-party-podspecs/fmt.podspec`)
2508 | - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
2509 | - hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`)
2510 | - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
2511 | - RCTDeprecation (from `../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation`)
2512 | - RCTRequired (from `../node_modules/react-native/Libraries/Required`)
2513 | - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
2514 | - React (from `../node_modules/react-native/`)
2515 | - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
2516 | - React-Core (from `../node_modules/react-native/`)
2517 | - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
2518 | - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
2519 | - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
2520 | - React-debug (from `../node_modules/react-native/ReactCommon/react/debug`)
2521 | - React-defaultsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/defaults`)
2522 | - React-domnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/dom`)
2523 | - React-Fabric (from `../node_modules/react-native/ReactCommon`)
2524 | - React-FabricComponents (from `../node_modules/react-native/ReactCommon`)
2525 | - React-FabricImage (from `../node_modules/react-native/ReactCommon`)
2526 | - React-featureflags (from `../node_modules/react-native/ReactCommon/react/featureflags`)
2527 | - React-featureflagsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/featureflags`)
2528 | - React-graphics (from `../node_modules/react-native/ReactCommon/react/renderer/graphics`)
2529 | - React-hermes (from `../node_modules/react-native/ReactCommon/hermes`)
2530 | - React-idlecallbacksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks`)
2531 | - React-ImageManager (from `../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios`)
2532 | - React-jserrorhandler (from `../node_modules/react-native/ReactCommon/jserrorhandler`)
2533 | - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
2534 | - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
2535 | - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector-modern`)
2536 | - React-jsinspectorcdp (from `../node_modules/react-native/ReactCommon/jsinspector-modern/cdp`)
2537 | - React-jsinspectornetwork (from `../node_modules/react-native/ReactCommon/jsinspector-modern/network`)
2538 | - React-jsinspectortracing (from `../node_modules/react-native/ReactCommon/jsinspector-modern/tracing`)
2539 | - React-jsitooling (from `../node_modules/react-native/ReactCommon/jsitooling`)
2540 | - React-jsitracing (from `../node_modules/react-native/ReactCommon/hermes/executor/`)
2541 | - React-logger (from `../node_modules/react-native/ReactCommon/logger`)
2542 | - React-Mapbuffer (from `../node_modules/react-native/ReactCommon`)
2543 | - React-microtasksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/microtasks`)
2544 | - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
2545 | - "react-native-vector-icons-material-design-icons (from `../node_modules/@react-native-vector-icons/material-design-icons`)"
2546 | - React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
2547 | - React-oscompat (from `../node_modules/react-native/ReactCommon/oscompat`)
2548 | - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
2549 | - React-performancecdpmetrics (from `../node_modules/react-native/ReactCommon/react/performance/cdpmetrics`)
2550 | - React-performancetimeline (from `../node_modules/react-native/ReactCommon/react/performance/timeline`)
2551 | - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
2552 | - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
2553 | - React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`)
2554 | - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
2555 | - React-RCTFabric (from `../node_modules/react-native/React`)
2556 | - React-RCTFBReactNativeSpec (from `../node_modules/react-native/React`)
2557 | - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
2558 | - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
2559 | - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
2560 | - React-RCTRuntime (from `../node_modules/react-native/React/Runtime`)
2561 | - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
2562 | - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
2563 | - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
2564 | - React-rendererconsistency (from `../node_modules/react-native/ReactCommon/react/renderer/consistency`)
2565 | - React-renderercss (from `../node_modules/react-native/ReactCommon/react/renderer/css`)
2566 | - React-rendererdebug (from `../node_modules/react-native/ReactCommon/react/renderer/debug`)
2567 | - React-RuntimeApple (from `../node_modules/react-native/ReactCommon/react/runtime/platform/ios`)
2568 | - React-RuntimeCore (from `../node_modules/react-native/ReactCommon/react/runtime`)
2569 | - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
2570 | - React-RuntimeHermes (from `../node_modules/react-native/ReactCommon/react/runtime`)
2571 | - React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`)
2572 | - React-timing (from `../node_modules/react-native/ReactCommon/react/timing`)
2573 | - React-utils (from `../node_modules/react-native/ReactCommon/react/utils`)
2574 | - React-webperformancenativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/webperformance`)
2575 | - ReactAppDependencyProvider (from `build/generated/ios`)
2576 | - ReactCodegen (from `build/generated/ios`)
2577 | - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
2578 | - RNGestureHandler (from `../node_modules/react-native-gesture-handler`)
2579 | - RNScreens (from `../node_modules/react-native-screens`)
2580 | - SocketRocket (~> 0.7.1)
2581 | - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
2582 |
2583 | SPEC REPOS:
2584 | trunk:
2585 | - SocketRocket
2586 |
2587 | EXTERNAL SOURCES:
2588 | boost:
2589 | :podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
2590 | DoubleConversion:
2591 | :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
2592 | fast_float:
2593 | :podspec: "../node_modules/react-native/third-party-podspecs/fast_float.podspec"
2594 | FBLazyVector:
2595 | :path: "../node_modules/react-native/Libraries/FBLazyVector"
2596 | fmt:
2597 | :podspec: "../node_modules/react-native/third-party-podspecs/fmt.podspec"
2598 | glog:
2599 | :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
2600 | hermes-engine:
2601 | :podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec"
2602 | :tag: hermes-2025-09-01-RNv0.82.0-265ef62ff3eb7289d17e366664ac0da82303e101
2603 | RCT-Folly:
2604 | :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
2605 | RCTDeprecation:
2606 | :path: "../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation"
2607 | RCTRequired:
2608 | :path: "../node_modules/react-native/Libraries/Required"
2609 | RCTTypeSafety:
2610 | :path: "../node_modules/react-native/Libraries/TypeSafety"
2611 | React:
2612 | :path: "../node_modules/react-native/"
2613 | React-callinvoker:
2614 | :path: "../node_modules/react-native/ReactCommon/callinvoker"
2615 | React-Core:
2616 | :path: "../node_modules/react-native/"
2617 | React-CoreModules:
2618 | :path: "../node_modules/react-native/React/CoreModules"
2619 | React-cxxreact:
2620 | :path: "../node_modules/react-native/ReactCommon/cxxreact"
2621 | React-debug:
2622 | :path: "../node_modules/react-native/ReactCommon/react/debug"
2623 | React-defaultsnativemodule:
2624 | :path: "../node_modules/react-native/ReactCommon/react/nativemodule/defaults"
2625 | React-domnativemodule:
2626 | :path: "../node_modules/react-native/ReactCommon/react/nativemodule/dom"
2627 | React-Fabric:
2628 | :path: "../node_modules/react-native/ReactCommon"
2629 | React-FabricComponents:
2630 | :path: "../node_modules/react-native/ReactCommon"
2631 | React-FabricImage:
2632 | :path: "../node_modules/react-native/ReactCommon"
2633 | React-featureflags:
2634 | :path: "../node_modules/react-native/ReactCommon/react/featureflags"
2635 | React-featureflagsnativemodule:
2636 | :path: "../node_modules/react-native/ReactCommon/react/nativemodule/featureflags"
2637 | React-graphics:
2638 | :path: "../node_modules/react-native/ReactCommon/react/renderer/graphics"
2639 | React-hermes:
2640 | :path: "../node_modules/react-native/ReactCommon/hermes"
2641 | React-idlecallbacksnativemodule:
2642 | :path: "../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks"
2643 | React-ImageManager:
2644 | :path: "../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios"
2645 | React-jserrorhandler:
2646 | :path: "../node_modules/react-native/ReactCommon/jserrorhandler"
2647 | React-jsi:
2648 | :path: "../node_modules/react-native/ReactCommon/jsi"
2649 | React-jsiexecutor:
2650 | :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
2651 | React-jsinspector:
2652 | :path: "../node_modules/react-native/ReactCommon/jsinspector-modern"
2653 | React-jsinspectorcdp:
2654 | :path: "../node_modules/react-native/ReactCommon/jsinspector-modern/cdp"
2655 | React-jsinspectornetwork:
2656 | :path: "../node_modules/react-native/ReactCommon/jsinspector-modern/network"
2657 | React-jsinspectortracing:
2658 | :path: "../node_modules/react-native/ReactCommon/jsinspector-modern/tracing"
2659 | React-jsitooling:
2660 | :path: "../node_modules/react-native/ReactCommon/jsitooling"
2661 | React-jsitracing:
2662 | :path: "../node_modules/react-native/ReactCommon/hermes/executor/"
2663 | React-logger:
2664 | :path: "../node_modules/react-native/ReactCommon/logger"
2665 | React-Mapbuffer:
2666 | :path: "../node_modules/react-native/ReactCommon"
2667 | React-microtasksnativemodule:
2668 | :path: "../node_modules/react-native/ReactCommon/react/nativemodule/microtasks"
2669 | react-native-safe-area-context:
2670 | :path: "../node_modules/react-native-safe-area-context"
2671 | react-native-vector-icons-material-design-icons:
2672 | :path: "../node_modules/@react-native-vector-icons/material-design-icons"
2673 | React-NativeModulesApple:
2674 | :path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
2675 | React-oscompat:
2676 | :path: "../node_modules/react-native/ReactCommon/oscompat"
2677 | React-perflogger:
2678 | :path: "../node_modules/react-native/ReactCommon/reactperflogger"
2679 | React-performancecdpmetrics:
2680 | :path: "../node_modules/react-native/ReactCommon/react/performance/cdpmetrics"
2681 | React-performancetimeline:
2682 | :path: "../node_modules/react-native/ReactCommon/react/performance/timeline"
2683 | React-RCTActionSheet:
2684 | :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
2685 | React-RCTAnimation:
2686 | :path: "../node_modules/react-native/Libraries/NativeAnimation"
2687 | React-RCTAppDelegate:
2688 | :path: "../node_modules/react-native/Libraries/AppDelegate"
2689 | React-RCTBlob:
2690 | :path: "../node_modules/react-native/Libraries/Blob"
2691 | React-RCTFabric:
2692 | :path: "../node_modules/react-native/React"
2693 | React-RCTFBReactNativeSpec:
2694 | :path: "../node_modules/react-native/React"
2695 | React-RCTImage:
2696 | :path: "../node_modules/react-native/Libraries/Image"
2697 | React-RCTLinking:
2698 | :path: "../node_modules/react-native/Libraries/LinkingIOS"
2699 | React-RCTNetwork:
2700 | :path: "../node_modules/react-native/Libraries/Network"
2701 | React-RCTRuntime:
2702 | :path: "../node_modules/react-native/React/Runtime"
2703 | React-RCTSettings:
2704 | :path: "../node_modules/react-native/Libraries/Settings"
2705 | React-RCTText:
2706 | :path: "../node_modules/react-native/Libraries/Text"
2707 | React-RCTVibration:
2708 | :path: "../node_modules/react-native/Libraries/Vibration"
2709 | React-rendererconsistency:
2710 | :path: "../node_modules/react-native/ReactCommon/react/renderer/consistency"
2711 | React-renderercss:
2712 | :path: "../node_modules/react-native/ReactCommon/react/renderer/css"
2713 | React-rendererdebug:
2714 | :path: "../node_modules/react-native/ReactCommon/react/renderer/debug"
2715 | React-RuntimeApple:
2716 | :path: "../node_modules/react-native/ReactCommon/react/runtime/platform/ios"
2717 | React-RuntimeCore:
2718 | :path: "../node_modules/react-native/ReactCommon/react/runtime"
2719 | React-runtimeexecutor:
2720 | :path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
2721 | React-RuntimeHermes:
2722 | :path: "../node_modules/react-native/ReactCommon/react/runtime"
2723 | React-runtimescheduler:
2724 | :path: "../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler"
2725 | React-timing:
2726 | :path: "../node_modules/react-native/ReactCommon/react/timing"
2727 | React-utils:
2728 | :path: "../node_modules/react-native/ReactCommon/react/utils"
2729 | React-webperformancenativemodule:
2730 | :path: "../node_modules/react-native/ReactCommon/react/nativemodule/webperformance"
2731 | ReactAppDependencyProvider:
2732 | :path: build/generated/ios
2733 | ReactCodegen:
2734 | :path: build/generated/ios
2735 | ReactCommon:
2736 | :path: "../node_modules/react-native/ReactCommon"
2737 | RNGestureHandler:
2738 | :path: "../node_modules/react-native-gesture-handler"
2739 | RNScreens:
2740 | :path: "../node_modules/react-native-screens"
2741 | Yoga:
2742 | :path: "../node_modules/react-native/ReactCommon/yoga"
2743 |
2744 | SPEC CHECKSUMS:
2745 | boost: 7e761d76ca2ce687f7cc98e698152abd03a18f90
2746 | DoubleConversion: cb417026b2400c8f53ae97020b2be961b59470cb
2747 | fast_float: b32c788ed9c6a8c584d114d0047beda9664e7cc6
2748 | FBLazyVector: 0aa6183b9afe3c31fc65b5d1eeef1f3c19b63bfa
2749 | fmt: a40bb5bd0294ea969aaaba240a927bd33d878cdd
2750 | glog: 5683914934d5b6e4240e497e0f4a3b42d1854183
2751 | hermes-engine: 273e30e7fb618279934b0b95ffab60ecedb7acf5
2752 | RCT-Folly: 846fda9475e61ec7bcbf8a3fe81edfcaeb090669
2753 | RCTDeprecation: f17e2ebc07876ca9ab8eb6e4b0a4e4647497ae3a
2754 | RCTRequired: e2c574c1b45231f7efb0834936bd609d75072b63
2755 | RCTTypeSafety: c693294e3993056955c3010eb1ebc574f1fcded6
2756 | React: aeece948ccf155182ea86a2395786ed31cf21c61
2757 | React-callinvoker: 05ad789505922d68c06cde1c8060e734df9fe182
2758 | React-Core: 727a48090292599bda380e05c9f1318e21578837
2759 | React-CoreModules: b26015efc6c222479e6939c0d7497cfac08a1a24
2760 | React-cxxreact: 1e6640d1e9a36744c4ce861bf2a5c8cee4abe9cf
2761 | React-debug: 1dfa1d1cbd93bdaffa3b140190829f9fd9e27985
2762 | React-defaultsnativemodule: 5a7a0b2575032cd1ce8fac5d5e0611cf55d3bf2c
2763 | React-domnativemodule: 9e86dc9883b569f169e1e9da8c0e34292c469014
2764 | React-Fabric: bc78d9349f6385cb619e901911be752fb076730b
2765 | React-FabricComponents: 74412b4e4f29cfa8057edaf59fb3d7fc8d082b46
2766 | React-FabricImage: e5f1599f50d2c122c220744ed00ef1a271619938
2767 | React-featureflags: 773391abff0339af3697f8a987890191c122b320
2768 | React-featureflagsnativemodule: 4ffcace380a76af8982bdcf64ed29a02cea4fb75
2769 | React-graphics: 5d44b20c935d17bea4712edf5ce4834c4dead85d
2770 | React-hermes: 5c2453ae5a3c2f34a15eaefb229375998e365810
2771 | React-idlecallbacksnativemodule: e2b63f28f0b14a8ab01ba922b1611426b3999301
2772 | React-ImageManager: c50c501798a2bb89109db71ce74345bd9d6671d1
2773 | React-jserrorhandler: f773f1866064afd558506f9cd4cac19e6fcf9147
2774 | React-jsi: 389d2e9fe9bd935bdaff38e0d72eb2cad1ad3071
2775 | React-jsiexecutor: 0821fa7695e1a6a868aa47a40a0fc5036552128b
2776 | React-jsinspector: 9040cfa67dcaefbc856d8c79ab42e9be92736935
2777 | React-jsinspectorcdp: bf0403947b41a3fccab67cb11fd54f39a6d85351
2778 | React-jsinspectornetwork: f06ebe5a22316242b0f7b2b9514f03f3732306c5
2779 | React-jsinspectortracing: 6e22744e791cde5b4cd91343946dfa536f49f795
2780 | React-jsitooling: e9a0bab6a6ca8a0a5ee700d19e067bdb214eb5b5
2781 | React-jsitracing: af2ee8a89f5aa7495aae1f27edc422e00f5a6880
2782 | React-logger: fceaaedb9c715923a1900af68a7534e9b3a601a1
2783 | React-Mapbuffer: 7e7ca4c53288117e7e0406e9eaa804bf259b4b30
2784 | React-microtasksnativemodule: 885bebe5c5f25035e1fd0920776078840a0e3a76
2785 | react-native-safe-area-context: 54d812805f3c4e08a4580ad086cbde1d8780c2e4
2786 | react-native-vector-icons-material-design-icons: 76cd460b3540b80527b4a80fb7f867f7deedb498
2787 | React-NativeModulesApple: c4bee6aa736092cd347456488a4f97a8e7517604
2788 | React-oscompat: 95875e81f5d4b3c7b2c888d5bd2c9d83450d8bdb
2789 | React-perflogger: d5b5677902d23a6611b700601634271b29356ac6
2790 | React-performancecdpmetrics: f20287f906b00a05070fce0bc400ea492991f13e
2791 | React-performancetimeline: c1f898134defda04623db379d57d9024d52ef63d
2792 | React-RCTActionSheet: 2399bb6cc8adaef2e5850878102fea2ad1788a0e
2793 | React-RCTAnimation: a7e596bacb4706501556dcaaa8cd4062c8858d40
2794 | React-RCTAppDelegate: 40a84753dc9d7c2535b9e748c30bae50d39c6580
2795 | React-RCTBlob: e3264ae55b1b856db8e654bb7066b8343e030a67
2796 | React-RCTFabric: e5bf005693c6edd581657979624bd33db479b008
2797 | React-RCTFBReactNativeSpec: 3984efab208a7d570cb2a5a8b94921ff61189307
2798 | React-RCTImage: fb1d64345bb2e26af63e06e1ffc2cf99d572e2e1
2799 | React-RCTLinking: cb91127e75ee2d081f1abffd08d63db185805439
2800 | React-RCTNetwork: f38a98b030faedf2dc5c9061d6ed0074b3513c72
2801 | React-RCTRuntime: fb2eb8fd62a7b9b3e8a29ad0ecf000b453070cb0
2802 | React-RCTSettings: 00cc62efb88ec24608cefaa7db4ad04461a511b4
2803 | React-RCTText: 2b963648a99f49875349bd18c0dd7f2a4acf50c1
2804 | React-RCTVibration: 16e31c7f90f13bec10385aeb5cc61e8a45e591e4
2805 | React-rendererconsistency: 3c3e198aba0255524ed7126aa812d22ce750d217
2806 | React-renderercss: d07e645ab9f2b411513c9d3947ad627a1ef3bec7
2807 | React-rendererdebug: 79ba04c9662222da80b140e75550e050c0520630
2808 | React-RuntimeApple: ab93dc2863d621b085788dc3781d141fd4d410f7
2809 | React-RuntimeCore: 301320b1d544ba82e8edb8c5e57f245cbc8bb2c0
2810 | React-runtimeexecutor: aa09562cd04c048b4246ef3997806df0ce0e7ff2
2811 | React-RuntimeHermes: e5b85c57ffd7d2913b4c85e96e133428ac6cb46d
2812 | React-runtimescheduler: 15a7e3d5b5d18d2e4def7c7cd937be2085fe9245
2813 | React-timing: 5d765a145ac47783de0bf116d4dd9cfa0c498819
2814 | React-utils: a9abebe9dc25642955b5d2cec8c16bbf55a1bc52
2815 | React-webperformancenativemodule: 85dce57a9e73457a3686aee0d8e929518713fc05
2816 | ReactAppDependencyProvider: cc2795efe30a023c3a505676b9c748b664b9c0a1
2817 | ReactCodegen: 897bad2d2f722ff4dc46fc144f9cc018db0e2ce4
2818 | ReactCommon: c5803af00bd3737dc1631749b1f1da5beba5b049
2819 | RNGestureHandler: 927ba2c590c8973f24624f1c1279be08a22ec58d
2820 | RNScreens: 3693ec4bbc0065151b843269e50e9807644e9918
2821 | SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748
2822 | Yoga: 8e01cef9947ca77f0477a098f0b32848a8e448c6
2823 |
2824 | PODFILE CHECKSUM: 38354763aa665c1a78404251eb7ebcdde12517c6
2825 |
2826 | COCOAPODS: 1.15.2
2827 |
--------------------------------------------------------------------------------