diff --git a/.circleci/config.yml b/.circleci/config.yml index 9d45d8c18..7277eef8c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,7 +3,8 @@ defaults: &defaults macos: &macos macos: - xcode: "12.5.0" + xcode: "12.5.0" + resource_class: large bash-env: &bash-env BASH_ENV: "~/.nvm/nvm.sh" @@ -143,15 +144,6 @@ commands: fi working_directory: android/app - - run: - name: Config variables - command: | - if [[ $CIRCLE_JOB == "android-build-official" ]]; then - echo -e "export default { BUGSNAG_API_KEY: '$BUGSNAG_KEY_OFFICIAL' };" > ./config.js - else - echo -e "export default { BUGSNAG_API_KEY: '$BUGSNAG_KEY' };" > ./config.js - fi - - run: name: Build App command: | @@ -170,22 +162,20 @@ commands: name: Upload sourcemaps to Bugsnag command: | if [[ $CIRCLE_JOB == "android-build-official" ]]; then - yarn generate-source-maps-android upload \ + npx bugsnag-source-maps upload-react-native \ --api-key=$BUGSNAG_KEY_OFFICIAL \ - --app-version=$CIRCLE_BUILD_NUM \ - --minifiedFile=android/app/build/generated/assets/react/officialPlay/release/app.bundle \ + --app-version-code=$CIRCLE_BUILD_NUM \ + --platform android \ --source-map=android/app/build/generated/sourcemaps/react/officialPlay/release/app.bundle.map \ - --minified-url=app.bundle \ - --upload-sources + --bundle android/app/build/generated/assets/react/officialPlay/release/app.bundle fi if [[ $CIRCLE_JOB == "android-build-experimental" ]]; then - yarn generate-source-maps-android upload \ + npx bugsnag-source-maps upload-react-native \ --api-key=$BUGSNAG_KEY \ - --app-version=$CIRCLE_BUILD_NUM \ - --minifiedFile=android/app/build/generated/assets/react/experimentalPlay/release/app.bundle \ + --app-version-code=$CIRCLE_BUILD_NUM \ + --platform android \ --source-map=android/app/build/generated/sourcemaps/react/experimentalPlay/release/app.bundle.map \ - --minified-url=app.bundle \ - --upload-sources + --bundle android/app/build/generated/assets/react/experimentalPlay/release/app.bundle fi - store_artifacts: @@ -216,41 +206,20 @@ commands: echo $GOOGLE_SERVICES_IOS | base64 --decode > GoogleService-Info.plist fi working_directory: ios - - run: - name: Upload sourcemaps to Bugsnag - command: | - if [[ $CIRCLE_JOB == "ios-build-official" ]]; then - yarn generate-source-maps-ios - curl https://upload.bugsnag.com/react-native-source-map \ - -F apiKey=$BUGSNAG_KEY_OFFICIAL \ - -F appBundleVersion=$CIRCLE_BUILD_NUM \ - -F dev=false \ - -F platform=ios \ - -F sourceMap=@ios-release.bundle.map \ - -F bundle=@ios-release.bundle - fi - if [[ $CIRCLE_JOB == "ios-build-experimental" ]]; then - yarn generate-source-maps-ios - curl https://upload.bugsnag.com/react-native-source-map \ - -F apiKey=$BUGSNAG_KEY \ - -F appBundleVersion=$CIRCLE_BUILD_NUM \ - -F dev=false \ - -F platform=ios \ - -F sourceMap=@ios-release.bundle.map \ - -F bundle=@ios-release.bundle - fi - run: name: Fastlane Build no_output_timeout: 40m command: | agvtool new-version -all $CIRCLE_BUILD_NUM if [[ $CIRCLE_JOB == "ios-build-official" ]]; then - /usr/libexec/PlistBuddy -c "Set BugsnagAPIKey $BUGSNAG_KEY_OFFICIAL" ./RocketChatRN/Info.plist + /usr/libexec/PlistBuddy -c "Set :bugsnag:apiKey $BUGSNAG_KEY_OFFICIAL" ./RocketChatRN/Info.plist + /usr/libexec/PlistBuddy -c "Set :bugsnag:apiKey $BUGSNAG_KEY_OFFICIAL" ./ShareRocketChatRN/Info.plist /usr/libexec/PlistBuddy -c "Set IS_OFFICIAL YES" ./RocketChatRN/Info.plist /usr/libexec/PlistBuddy -c "Set IS_OFFICIAL YES" ./ShareRocketChatRN/Info.plist /usr/libexec/PlistBuddy -c "Set IS_OFFICIAL YES" ./NotificationService/Info.plist else - /usr/libexec/PlistBuddy -c "Set BugsnagAPIKey $BUGSNAG_KEY" ./RocketChatRN/Info.plist + /usr/libexec/PlistBuddy -c "Set :bugsnag:apiKey $BUGSNAG_KEY" ./RocketChatRN/Info.plist + /usr/libexec/PlistBuddy -c "Set :bugsnag:apiKey $BUGSNAG_KEY" ./ShareRocketChatRN/Info.plist /usr/libexec/PlistBuddy -c "Set IS_OFFICIAL NO" ./RocketChatRN/Info.plist /usr/libexec/PlistBuddy -c "Set IS_OFFICIAL NO" ./ShareRocketChatRN/Info.plist /usr/libexec/PlistBuddy -c "Set IS_OFFICIAL NO" ./NotificationService/Info.plist diff --git a/__mocks__/@bugsnag/react-native.js b/__mocks__/@bugsnag/react-native.js new file mode 100644 index 000000000..ecf2f5a4e --- /dev/null +++ b/__mocks__/@bugsnag/react-native.js @@ -0,0 +1,5 @@ +export default { + start: () => '', + leaveBreadcrumb: () => '', + notify: () => '' +}; diff --git a/__mocks__/bugsnag-react-native.js b/__mocks__/bugsnag-react-native.js deleted file mode 100644 index 637b8e450..000000000 --- a/__mocks__/bugsnag-react-native.js +++ /dev/null @@ -1,8 +0,0 @@ -export class Client { } - -export default { - bugsnag: () => '', - leaveBreadcrumb: () => '', - notify: () => '', - loggerConfig: () => '' -}; diff --git a/android/app/build.gradle b/android/app/build.gradle index 95628ac2f..b25b12f7c 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -144,7 +144,7 @@ android { minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion versionCode VERSIONCODE as Integer - versionName "4.18.0" + versionName "4.19.0" vectorDrawables.useSupportLibrary = true if (!isFoss) { manifestPlaceholders = [BugsnagAPIKey: BugsnagAPIKey as String] diff --git a/android/app/src/play/java/chat/rocket/reactnative/MainPlayApplication.java b/android/app/src/play/java/chat/rocket/reactnative/MainPlayApplication.java index b78dd0ea5..608d24f3a 100644 --- a/android/app/src/play/java/chat/rocket/reactnative/MainPlayApplication.java +++ b/android/app/src/play/java/chat/rocket/reactnative/MainPlayApplication.java @@ -8,8 +8,15 @@ import com.wix.reactnativenotifications.core.AppLifecycleFacade; import com.wix.reactnativenotifications.core.JsIOHelper; import com.wix.reactnativenotifications.core.notification.INotificationsApplication; import com.wix.reactnativenotifications.core.notification.IPushNotification; +import com.bugsnag.android.Bugsnag; public class MainPlayApplication extends MainApplication implements INotificationsApplication { + @Override + public void onCreate() { + super.onCreate(); + Bugsnag.start(this); + } + @Override public IPushNotification getPushNotification(Context context, Bundle bundle, AppLifecycleFacade defaultFacade, AppLaunchHelper defaultAppLaunchHelper) { return new CustomPushNotification( diff --git a/app/containers/Loading.js b/app/containers/Loading.js index 656e476af..76ca8a3f2 100644 --- a/app/containers/Loading.js +++ b/app/containers/Loading.js @@ -1,15 +1,16 @@ import React from 'react'; import PropTypes from 'prop-types'; import { - StyleSheet, View, Modal, Animated + StyleSheet, Modal, Animated, View } from 'react-native'; +import { withTheme } from '../theme'; +import { themes } from '../constants/colors'; const styles = StyleSheet.create({ container: { flex: 1, alignItems: 'center', - justifyContent: 'center', - backgroundColor: 'rgba(0, 0, 0, 0.25)' + justifyContent: 'center' }, image: { width: 100, @@ -18,9 +19,10 @@ const styles = StyleSheet.create({ } }); -export default class Loading extends React.PureComponent { +class Loading extends React.PureComponent { static propTypes = { - visible: PropTypes.bool.isRequired + visible: PropTypes.bool, + theme: PropTypes.string } state = { @@ -36,7 +38,7 @@ export default class Loading extends React.PureComponent { opacity, { toValue: 1, - duration: 1000, + duration: 200, useNativeDriver: true } ); @@ -91,23 +93,39 @@ export default class Loading extends React.PureComponent { render() { const { opacity, scale } = this.state; - const { visible } = this.props; + const { visible, theme } = this.props; const scaleAnimation = scale.interpolate({ inputRange: [0, 0.5, 1], outputRange: [1, 1.1, 1] }); + + const opacityAnimation = opacity.interpolate({ + inputRange: [0, 1], + outputRange: [0, themes[theme].backdropOpacity], + extrapolate: 'clamp' + }); + return ( {}} > - + + { try { if (!isFDroidBuild) { analytics().logEvent(eventName, payload); - leaveBreadcrumb(eventName, payload); + bugsnag.leaveBreadcrumb(eventName, payload); } } catch { // Do nothing @@ -40,18 +38,14 @@ export const logEvent = (eventName, payload) => { export const setCurrentScreen = (currentScreen) => { if (!isFDroidBuild) { analytics().setCurrentScreen(currentScreen); - leaveBreadcrumb(currentScreen, { type: 'navigation' }); + bugsnag.leaveBreadcrumb(currentScreen, { type: 'navigation' }); } }; export default (e) => { if (e instanceof Error && bugsnag && e.message !== 'Aborted' && !__DEV__) { - bugsnag.notify(e, (report) => { - report.metadata = { - details: { - ...metadata - } - }; + bugsnag.notify(e, (event) => { + event.addMetadata('details', { ...metadata }); }); if (!isFDroidBuild) { crashlytics().recordError(e); diff --git a/app/views/RoomInfoEditView/index.js b/app/views/RoomInfoEditView/index.js index 28666b2ca..8dd7e0865 100644 --- a/app/views/RoomInfoEditView/index.js +++ b/app/views/RoomInfoEditView/index.js @@ -415,11 +415,6 @@ class RoomInfoEditView extends React.Component { return permissions[PERMISSION_DELETE_C]; } - hasArchivePermission = () => { - const { permissions } = this.state; - return (permissions[PERMISSION_ARCHIVE] || permissions[PERMISSION_UNARCHIVE]); - }; - renderSystemMessages = () => { const { systemMessages, enableSysMes } = this.state; const { theme } = this.props; @@ -691,11 +686,11 @@ class RoomInfoEditView extends React.Component { style={[ styles.buttonInverted, styles.buttonContainer_inverted, - !this.hasArchivePermission() && sharedStyles.opacity5, + archived ? !permissions[PERMISSION_UNARCHIVE] && sharedStyles.opacity5 : !permissions[PERMISSION_ARCHIVE] && sharedStyles.opacity5, { flex: 1, marginLeft: 10, borderColor: dangerColor } ]} onPress={this.toggleArchive} - disabled={!this.hasArchivePermission()} + disabled={archived ? !permissions[PERMISSION_UNARCHIVE] : !permissions[PERMISSION_ARCHIVE]} testID={archived ? 'room-info-edit-view-unarchive' : 'room-info-edit-view-archive'} > = 1.13.0, < 2.0.0) xcpretty (~> 0.3.0) xcpretty-travis-formatter (>= 0.0.3) + fastlane-plugin-bugsnag (2.1.0) + git + xml-simple ffi (1.15.3) fourflusher (2.3.1) fuzzy_match (2.0.4) gh_inspector (1.1.3) + git (1.9.1) + rchardet (~> 1.8) google-apis-androidpublisher_v3 (0.8.0) google-apis-core (>= 0.4, < 2.a) google-apis-core (0.4.0) @@ -212,6 +217,7 @@ GEM plist (3.6.0) public_suffix (4.0.6) rake (13.0.6) + rchardet (1.8.0) representable (3.1.1) declarative (< 0.1.0) trailblazer-option (>= 0.1.1, < 0.2.0) @@ -262,6 +268,7 @@ GEM rouge (~> 2.0.7) xcpretty-travis-formatter (1.0.1) xcpretty (~> 0.2, >= 0.0.7) + xml-simple (1.1.8) PLATFORMS ruby @@ -269,6 +276,7 @@ PLATFORMS DEPENDENCIES cocoapods fastlane + fastlane-plugin-bugsnag BUNDLED WITH 2.1.4 diff --git a/ios/Podfile b/ios/Podfile index d523f00c3..40be1ede6 100644 --- a/ios/Podfile +++ b/ios/Podfile @@ -21,49 +21,8 @@ abstract_target 'defaults' do target 'RocketChatRN' # Experimental app target 'Rocket.Chat' # Official app -end - -target 'ShareRocketChatRN' do - pod 'EXAppleAuthentication', :path=> "../node_modules/expo-apple-authentication/ios" - pod 'EXAV', :path=> "../node_modules/expo-av/ios" - pod 'EXFileSystem', :path=> "../node_modules/expo-file-system/ios" - pod 'EXHaptics', :path=> "../node_modules/expo-haptics/ios" - pod 'EXImageLoader', :path=> "../node_modules/expo-image-loader/ios" - pod 'UMCore', :path=> "../node_modules/@unimodules/core/ios" - pod 'UMImageLoaderInterface', :path=> "../node_modules/unimodules-image-loader-interface/ios" - pod 'UMReactNativeAdapter', :path=> "../node_modules/@unimodules/react-native-adapter/ios" - - use_react_native!(:path => '../node_modules/react-native', :hermes_enabled => true) - - pod 'RNFBApp', :path => '../node_modules/@react-native-firebase/app' - pod 'RNFBAnalytics', :path => '../node_modules/@react-native-firebase/analytics' - pod 'RNFBCrashlytics', :path => '../node_modules/@react-native-firebase/crashlytics' - pod 'RNCAsyncStorage', :path => '../node_modules/@react-native-community/async-storage' - pod 'RNCMaskedView', :path => '../node_modules/@react-native-community/masked-view' - pod 'RNFastImage', :path => '../node_modules/@rocket.chat/react-native-fast-image' - pod 'BugsnagReactNative', :path => '../node_modules/bugsnag-react-native' - pod 'react-native-appearance', :path => '../node_modules/react-native-appearance' - pod 'RNConfigReader', :path => '../node_modules/react-native-config-reader' - pod 'RNDeviceInfo', :path => '../node_modules/react-native-device-info' - pod 'react-native-document-picker', :path => '../node_modules/react-native-document-picker' - pod 'RNGestureHandler', :path => '../node_modules/react-native-gesture-handler' - pod 'RNLocalize', :path => '../node_modules/react-native-localize' - pod 'react-native-mmkv-storage', :path => '../node_modules/react-native-mmkv-storage' - pod 'RNReanimated', :path => '../node_modules/react-native-reanimated' - pod 'react-native-safe-area-context', :path => '../node_modules/react-native-safe-area-context' - pod 'RNScreens', :path => '../node_modules/react-native-screens' - pod 'react-native-simple-crypto', :path => '../node_modules/react-native-simple-crypto' - pod 'ReactNativeUiLib', :path => '../node_modules/react-native-ui-lib/lib' - pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons' - pod 'rn-extensions-share', :path => '../node_modules/rn-extensions-share' - pod 'rn-fetch-blob', :path => '../node_modules/rn-fetch-blob' - pod 'RNRootView', :path => '../node_modules/rn-root-view' - pod 'react-native-orientation-locker', :path => '../node_modules/react-native-orientation-locker' -end - -# used to get user credentials -target 'NotificationService' do - all_pods + target 'ShareRocketChatRN' + target 'NotificationService' end post_install do |installer| @@ -74,4 +33,4 @@ post_install do |installer| end end react_native_post_install(installer) -end \ No newline at end of file +end diff --git a/ios/Podfile.lock b/ios/Podfile.lock index ed41c1f44..d0be9e6da 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -1,10 +1,7 @@ PODS: - boost-for-react-native (1.63.0) - - BugsnagReactNative (2.23.10): - - BugsnagReactNative/Core (= 2.23.10) - - React - - BugsnagReactNative/Core (2.23.10): - - React + - BugsnagReactNative (7.10.5): + - React-Core - CocoaAsyncSocket (7.6.5) - DoubleConversion (1.1.6) - EXAppleAuthentication (2.2.1): @@ -581,7 +578,7 @@ PODS: - Yoga (~> 1.14) DEPENDENCIES: - - BugsnagReactNative (from `../node_modules/bugsnag-react-native`) + - "BugsnagReactNative (from `../node_modules/@bugsnag/react-native`)" - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`) - EXAppleAuthentication (from `../node_modules/expo-apple-authentication/ios`) - EXAV (from `../node_modules/expo-av/ios`) @@ -735,7 +732,7 @@ SPEC REPOS: EXTERNAL SOURCES: BugsnagReactNative: - :path: "../node_modules/bugsnag-react-native" + :path: "../node_modules/@bugsnag/react-native" DoubleConversion: :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec" EXAppleAuthentication: @@ -928,7 +925,7 @@ CHECKOUT OPTIONS: SPEC CHECKSUMS: boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c - BugsnagReactNative: 98fb350df4bb0c94cce903023531a1a5cc11fa51 + BugsnagReactNative: a97b3132c1854fd7bf92350fabd505e3ebdd7829 CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99 DoubleConversion: cf9b38bf0b2d048436d9a82ad2abe1404f11e7de EXAppleAuthentication: 5b3da71bada29e2423d8ea27e5538ef0d75aba62 @@ -1052,6 +1049,6 @@ SPEC CHECKSUMS: Yoga: 575c581c63e0d35c9a83f4b46d01d63abc1100ac YogaKit: f782866e155069a2cca2517aafea43200b01fd5a -PODFILE CHECKSUM: 784270f077e63099481c48111a86847b85a91b32 +PODFILE CHECKSUM: 2cb6f38193d69310b4dfc466be3cf4ff7a5e98d3 COCOAPODS: 1.10.1 diff --git a/ios/Pods/Manifest.lock b/ios/Pods/Manifest.lock index ed41c1f44..d0be9e6da 100644 --- a/ios/Pods/Manifest.lock +++ b/ios/Pods/Manifest.lock @@ -1,10 +1,7 @@ PODS: - boost-for-react-native (1.63.0) - - BugsnagReactNative (2.23.10): - - BugsnagReactNative/Core (= 2.23.10) - - React - - BugsnagReactNative/Core (2.23.10): - - React + - BugsnagReactNative (7.10.5): + - React-Core - CocoaAsyncSocket (7.6.5) - DoubleConversion (1.1.6) - EXAppleAuthentication (2.2.1): @@ -581,7 +578,7 @@ PODS: - Yoga (~> 1.14) DEPENDENCIES: - - BugsnagReactNative (from `../node_modules/bugsnag-react-native`) + - "BugsnagReactNative (from `../node_modules/@bugsnag/react-native`)" - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`) - EXAppleAuthentication (from `../node_modules/expo-apple-authentication/ios`) - EXAV (from `../node_modules/expo-av/ios`) @@ -735,7 +732,7 @@ SPEC REPOS: EXTERNAL SOURCES: BugsnagReactNative: - :path: "../node_modules/bugsnag-react-native" + :path: "../node_modules/@bugsnag/react-native" DoubleConversion: :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec" EXAppleAuthentication: @@ -928,7 +925,7 @@ CHECKOUT OPTIONS: SPEC CHECKSUMS: boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c - BugsnagReactNative: 98fb350df4bb0c94cce903023531a1a5cc11fa51 + BugsnagReactNative: a97b3132c1854fd7bf92350fabd505e3ebdd7829 CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99 DoubleConversion: cf9b38bf0b2d048436d9a82ad2abe1404f11e7de EXAppleAuthentication: 5b3da71bada29e2423d8ea27e5538ef0d75aba62 @@ -1052,6 +1049,6 @@ SPEC CHECKSUMS: Yoga: 575c581c63e0d35c9a83f4b46d01d63abc1100ac YogaKit: f782866e155069a2cca2517aafea43200b01fd5a -PODFILE CHECKSUM: 784270f077e63099481c48111a86847b85a91b32 +PODFILE CHECKSUM: 2cb6f38193d69310b4dfc466be3cf4ff7a5e98d3 COCOAPODS: 1.10.1 diff --git a/ios/Pods/Pods.xcodeproj/project.pbxproj b/ios/Pods/Pods.xcodeproj/project.pbxproj index 8a7a8f9e5..437552939 100644 --- a/ios/Pods/Pods.xcodeproj/project.pbxproj +++ b/ios/Pods/Pods.xcodeproj/project.pbxproj @@ -22,9 +22,9 @@ buildPhases = ( ); dependencies = ( - 9192DE8E38EC162E6570D79E5E192736 /* PBXTargetDependency */, - 8F1DC60588AD89569AD5FCA966B67E45 /* PBXTargetDependency */, - 835A2FBC82DDD44A2FEFE9AA39024A5A /* PBXTargetDependency */, + 2246D412BFC6EB0B857907F1CEAD64F4 /* PBXTargetDependency */, + 6BA0035CBC2B320BBBB15C5DA34DD454 /* PBXTargetDependency */, + 001AC04A479D814F4CCE8E3D34034BA8 /* PBXTargetDependency */, ); name = Firebase; }; @@ -39,30 +39,30 @@ }; 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */ = { isa = PBXAggregateTarget; - buildConfigurationList = 9C3DD76B6642B03F5EA5E1D99CD58CFF /* Build configuration list for PBXAggregateTarget "React-RCTActionSheet" */; + buildConfigurationList = A1E19287E281B95FD3C66F2D35581831 /* Build configuration list for PBXAggregateTarget "React-RCTActionSheet" */; buildPhases = ( ); dependencies = ( - ECB4580AF73F805A80A814736DF9983C /* PBXTargetDependency */, + B82726A83F1CCF7C0BCEA7D3AC1E9664 /* PBXTargetDependency */, ); name = "React-RCTActionSheet"; }; 1BEE828C124E6416179B904A9F66D794 /* React */ = { isa = PBXAggregateTarget; - buildConfigurationList = 14F9DA9BC4C27ED4063A5AD4DEDE156A /* Build configuration list for PBXAggregateTarget "React" */; + buildConfigurationList = A6BBC7A61E7747180BD7A53B1047BBD2 /* Build configuration list for PBXAggregateTarget "React" */; buildPhases = ( ); dependencies = ( - F1086EC156C3C8DF59F023472E1EBB64 /* PBXTargetDependency */, - 6E537014224A4A7842B83DE4B9B49148 /* PBXTargetDependency */, - 9EA7E5EF0C31BAD1F035B25240682948 /* PBXTargetDependency */, - 64E5254053FD60AFDA100C1EC8EC9F32 /* PBXTargetDependency */, - 6F6A6608D6B0C9D442961C97CCCAC540 /* PBXTargetDependency */, - 7B30F642E214EBA215DF9411CE1D51A5 /* PBXTargetDependency */, - 226D1F5D279B21007B171B773BC19F20 /* PBXTargetDependency */, - 126A1E144375591119888D394776949C /* PBXTargetDependency */, - 01E9F6D4D86AA460605313DB382C87B7 /* PBXTargetDependency */, - 91F6420BA7844EA3737AA22335553C85 /* PBXTargetDependency */, + 68332619AD3B10B577470306479C1DDB /* PBXTargetDependency */, + 2C44119EBBF4AB542F25C7101E3C5DAF /* PBXTargetDependency */, + AE40D65B456FBF41DACA3C8B1E7D7BE5 /* PBXTargetDependency */, + 8A31414293B6B202C7388DF679DB86EF /* PBXTargetDependency */, + 4140BEEF702F1C5D47AA4757117E7258 /* PBXTargetDependency */, + 695424830158DE3C35802A391DF2AA47 /* PBXTargetDependency */, + 129652D306D189128AF6BC637F73E631 /* PBXTargetDependency */, + D2D86912571D9FDEF7A8550C5202ED68 /* PBXTargetDependency */, + D87EA1472409EDFED2143495D441AB9B /* PBXTargetDependency */, + 1317CE4B1006CB56E7934B0214C8EC66 /* PBXTargetDependency */, ); name = React; }; @@ -77,7 +77,7 @@ }; 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */ = { isa = PBXAggregateTarget; - buildConfigurationList = 2D0E05AB2170E0E290B69A089D84598A /* Build configuration list for PBXAggregateTarget "UMFileSystemInterface" */; + buildConfigurationList = A0BBF36949B72ED82119D118CF74BFFE /* Build configuration list for PBXAggregateTarget "UMFileSystemInterface" */; buildPhases = ( ); dependencies = ( @@ -86,7 +86,7 @@ }; 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */ = { isa = PBXAggregateTarget; - buildConfigurationList = 50AE4A26C92271A51A8264CABFAB7554 /* Build configuration list for PBXAggregateTarget "React-callinvoker" */; + buildConfigurationList = 6A869BE11760AA6BD7778AF7BB9CF550 /* Build configuration list for PBXAggregateTarget "React-callinvoker" */; buildPhases = ( ); dependencies = ( @@ -122,11 +122,11 @@ }; 54EB12219122432FA744088BC5A680D2 /* React-runtimeexecutor */ = { isa = PBXAggregateTarget; - buildConfigurationList = A60E62E0682BD4AC0C9C58D38A841DAB /* Build configuration list for PBXAggregateTarget "React-runtimeexecutor" */; + buildConfigurationList = 3940DE503717146C344D49DFBBC2E324 /* Build configuration list for PBXAggregateTarget "React-runtimeexecutor" */; buildPhases = ( ); dependencies = ( - C3EDFF495742B0C7EABB48B19DD27A38 /* PBXTargetDependency */, + F35B2988DC12A724442BAF127E55D025 /* PBXTargetDependency */, ); name = "React-runtimeexecutor"; }; @@ -141,7 +141,7 @@ }; 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */ = { isa = PBXAggregateTarget; - buildConfigurationList = D93C52C30BBDDF1F15C67FF8C7138E01 /* Build configuration list for PBXAggregateTarget "FBLazyVector" */; + buildConfigurationList = 611882B4FC76DDB90E3FE11E69E82A1D /* Build configuration list for PBXAggregateTarget "FBLazyVector" */; buildPhases = ( ); dependencies = ( @@ -150,7 +150,7 @@ }; 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */ = { isa = PBXAggregateTarget; - buildConfigurationList = 49D711C36AC1691002769D0B1A9C547E /* Build configuration list for PBXAggregateTarget "UMConstantsInterface" */; + buildConfigurationList = 81B64538349FC5A3C516F0D5F664C2AF /* Build configuration list for PBXAggregateTarget "UMConstantsInterface" */; buildPhases = ( ); dependencies = ( @@ -159,7 +159,7 @@ }; 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */ = { isa = PBXAggregateTarget; - buildConfigurationList = 32D28D474BF2257FDF91F7BB8ABBCA0A /* Build configuration list for PBXAggregateTarget "UMImageLoaderInterface" */; + buildConfigurationList = 0AABDF923994A94E2CCCDF04227D1FC1 /* Build configuration list for PBXAggregateTarget "UMImageLoaderInterface" */; buildPhases = ( ); dependencies = ( @@ -168,9 +168,9 @@ }; 985FEA01F314F3C00F0C1E1181E6C4A5 /* hermes-engine */ = { isa = PBXAggregateTarget; - buildConfigurationList = F98CF8D71C332AD8EB636CE7476EDC0D /* Build configuration list for PBXAggregateTarget "hermes-engine" */; + buildConfigurationList = 699EEC181B5ABAC70976EAC0EE5824A6 /* Build configuration list for PBXAggregateTarget "hermes-engine" */; buildPhases = ( - 8A457D31C71892981F1B9D17D2EAAD44 /* [CP] Copy dSYMs */, + B2DB92034D1C262AA0075292C432E764 /* [CP] Copy dSYMs */, ); dependencies = ( ); @@ -178,20 +178,20 @@ }; B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */ = { isa = PBXAggregateTarget; - buildConfigurationList = 14779BC0C147F0700B48B799577A1ECB /* Build configuration list for PBXAggregateTarget "GoogleAppMeasurement" */; + buildConfigurationList = 15212B07F35C5F6654E6F0BDF16B637A /* Build configuration list for PBXAggregateTarget "GoogleAppMeasurement" */; buildPhases = ( ); dependencies = ( - E079079B587B287BBB051747E4B97742 /* PBXTargetDependency */, - 8182D095CD4CCF7BFB431BF3E1E11282 /* PBXTargetDependency */, + 5C5EB908DA10E04B3099DDCCF58DEA2F /* PBXTargetDependency */, + 8DF63E30C8A336EE49EC922DB675AC18 /* PBXTargetDependency */, ); name = GoogleAppMeasurement; }; B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */ = { isa = PBXAggregateTarget; - buildConfigurationList = 01EC4E06B86D8BDFE491AB9FEB23832B /* Build configuration list for PBXAggregateTarget "OpenSSL-Universal" */; + buildConfigurationList = 030D368A423358C520F7DDA2C5015898 /* Build configuration list for PBXAggregateTarget "OpenSSL-Universal" */; buildPhases = ( - 1126CC5B0FFEFD83641F0C13987585FC /* [CP] Copy XCFrameworks */, + 3E210BA784CEBA16D1C0882FF8BA30F7 /* [CP] Copy XCFrameworks */, ); dependencies = ( ); @@ -199,21 +199,21 @@ }; C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */ = { isa = PBXAggregateTarget; - buildConfigurationList = FC9DE96E59948C07ACCD9736300F2B4F /* Build configuration list for PBXAggregateTarget "FirebaseAnalytics" */; + buildConfigurationList = 6D884301DED0299AE60DDAF0DD950B7E /* Build configuration list for PBXAggregateTarget "FirebaseAnalytics" */; buildPhases = ( ); dependencies = ( - B64BDCA6FD8E396AC66634B2555F8C07 /* PBXTargetDependency */, - DA862CC309538C47A0939B69BC99ECB7 /* PBXTargetDependency */, - 263B812D1DFF6E8F87DA8C6114F27E4D /* PBXTargetDependency */, - 9A2E2AB504D61B1FB52CC96BA5C6901F /* PBXTargetDependency */, - ED0F1E442CFE22AFDDAD0E6AE3AA4870 /* PBXTargetDependency */, + 0D160D84F558E5F16EACA16E408D9300 /* PBXTargetDependency */, + 312C7FC6C8F84F5206ED075DB5AF6740 /* PBXTargetDependency */, + 9A05CE0E659953558AEBA7E4A2E35071 /* PBXTargetDependency */, + 694BC02A956ABD1A22E5ADD40FC5C69C /* PBXTargetDependency */, + AFDAC57A40B074A1717CCBF48DB490F4 /* PBXTargetDependency */, ); name = FirebaseAnalytics; }; E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */ = { isa = PBXAggregateTarget; - buildConfigurationList = 0357FABA07617EF5CCF21E4A7BE91244 /* Build configuration list for PBXAggregateTarget "RCTRequired" */; + buildConfigurationList = B6C6F9EC13A16CC1312D410ADE27FA7E /* Build configuration list for PBXAggregateTarget "RCTRequired" */; buildPhases = ( ); dependencies = ( @@ -222,7 +222,7 @@ }; ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */ = { isa = PBXAggregateTarget; - buildConfigurationList = 48E01AB6A69B13A64CE17E7500D442A1 /* Build configuration list for PBXAggregateTarget "boost-for-react-native" */; + buildConfigurationList = CE8EBC2CD2134951C91930F7FA1AC270 /* Build configuration list for PBXAggregateTarget "boost-for-react-native" */; buildPhases = ( ); dependencies = ( @@ -232,8756 +232,9130 @@ /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ - 000328BDE9B2DEE106D86A0146F94B43 /* json_patch.h in Headers */ = {isa = PBXBuildFile; fileRef = E51E3D93489327FBA7B49801806BF032 /* json_patch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 000B12094CFEBD27FB23F00C1D9000C4 /* AsyncServerSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 79045EA0EA1525B86D20B46C46E39329 /* AsyncServerSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 000CCE12F4D744D77140E0D1A5A68AE8 /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 67C5FAE32BEA89A9F629CED076CF7F99 /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00144175691C5B89046458173A83E4FF /* FIRCLSNetworkClient.h in Headers */ = {isa = PBXBuildFile; fileRef = FB93C116608C7D0893D4BF7038D99D1F /* FIRCLSNetworkClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0027ACB25A453EC52DEDC36640BCC044 /* RCTPbkdf2.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AE36BD42B59F23DB7879CEBF3950A5D /* RCTPbkdf2.m */; }; - 0028B33CFD58D134D7F27DC7007C149B /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F56E28417CCFCCEE48F22DBCCC87198 /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0030976BE1EC04E4A7B1471E03E60365 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7343CA8A9C7528DFE57EC1F85F33C409 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0042AE6747562B1F63E7C156F78BDAD4 /* BSG_KSCrashSentry_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BA82A9C11131F58A6147B3E57966BEA /* BSG_KSCrashSentry_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0051B7B57DEE302D13FBF9BE0FA106E8 /* AtomicIntrusiveLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E6BB66DD78A86120B879D7FAFC4D31C /* AtomicIntrusiveLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 005E3C2FA8D42941AC7D0F192A2712E0 /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E738E13503F37112DFBF1804F7416C8F /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0064B236332CFBC00BFAB76B001AFC2F /* FIRCLSURLSessionDownloadTask.m in Sources */ = {isa = PBXBuildFile; fileRef = AB3C3EBE83825F847588B9C5EFE94821 /* FIRCLSURLSessionDownloadTask.m */; }; - 006B1133FAB6724ED1D5E52D148520BB /* StringKeyedCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = B9E52071A61994BF47D9A3698EB8E196 /* StringKeyedCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00794B821B7DBFFC85E213F958E7EF27 /* GlobalExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D0C14BFCFF30C61341F3F7AF0BE77AC /* GlobalExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00970C26F813B29A6F37E7A396A1F863 /* RNCPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BE75A7226F3962DC3F1ABEF524466230 /* RNCPicker-dummy.m */; }; - 00BD4A29CDAADDDA3FAFAD7A6BC05C9D /* YGLayout+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 48703AABCD31CFFBC91011A16BF55EEC /* YGLayout+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00F3231C27C5105BE24A6A8951319E92 /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A749218B06B95BF1C8412194242EEB0 /* React-RCTAnimation-dummy.m */; }; - 00F6E7AC074DBD1178E71C414E19B33A /* RSocketTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 997BBF1F370A66F6EAD822AE43E3E6F0 /* RSocketTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 013D04BA39E994F22EB1A90D1B964D9A /* GDTCORLifecycle.m in Sources */ = {isa = PBXBuildFile; fileRef = F96321D27807E501875E9B7AD050A2D2 /* GDTCORLifecycle.m */; }; - 01423B34E89D3848E08AD1172B613E39 /* FIRCLSHost.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0DB699138E7ADD7B50FBB90AF68DDE /* FIRCLSHost.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 014619C78FEA3B365DD03F3CAA8496F8 /* SpookyHashV2.h in Headers */ = {isa = PBXBuildFile; fileRef = 50261AF3C745BB3A0CDFA2344529F574 /* SpookyHashV2.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 016FB189E6D8FA58D61358EB57472A87 /* GDTCCTCompressionHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = B44CE495171BBFB5DACBAF704180480D /* GDTCCTCompressionHelper.m */; }; - 01782AE3BB6C014FB7658BABDCDC126D /* muxinternal.c in Sources */ = {isa = PBXBuildFile; fileRef = 1C846DAFD37C35A25F692FCE7C6E93F9 /* muxinternal.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 017F62D5A617EDF06647FEDBAEA533EA /* REAEventNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD51F3BD4B05027FEAB1550BB1E9136 /* REAEventNode.m */; }; - 0182B2365A0EF97DB8F4AA3FCE7A0795 /* RangeSse42.h in Headers */ = {isa = PBXBuildFile; fileRef = DD0660AC75549E78737B5FC624874D50 /* RangeSse42.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0191298D8B56273B4DF2F74D2254ED63 /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = B9E7C0F46BA86AB4C5BB3DE295013623 /* RCTInputAccessoryViewContent.m */; }; - 01970A63C0994AAD745E1AF2B206352F /* FIRErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 67D5F573B6CFD6FF0723A26620D16C35 /* FIRErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 01975E822DBD1E23C44C65C2566F7D98 /* GDTCORAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B1D16C4FA2EE254799289AADD10A332 /* GDTCORAssert.m */; }; - 019A789A0E8194E78824FB50628A681D /* ExecutorWithPriority-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B7ACB1294CE1C97BF683629EF603AB7 /* ExecutorWithPriority-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 01AC24EC2184E06E61D6F6F8381D3FE8 /* FrameFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = 950A7E73159E8A8BE072290647F86D8C /* FrameFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 01B5E83605163939447E23FA6A4A49C1 /* StorageSetters.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B565AFDEDD7825DA21E918E71D547E8 /* StorageSetters.m */; }; - 01C11E90B3E1014462521C1C1CDBA9E5 /* Promise.h in Headers */ = {isa = PBXBuildFile; fileRef = BD083BEA419C7DF1EB778B933C9AEA62 /* Promise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 01D0FD1AA12501DD8BBDA4CF52907868 /* FlowableConcatOperators.h in Headers */ = {isa = PBXBuildFile; fileRef = F87FD82161211A08881DC52942907F6B /* FlowableConcatOperators.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 01D5E90249AE4DFA53798839771B2A77 /* EXSessionTaskDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = AF27FB11110981F488457F0EE5BADBCB /* EXSessionTaskDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 01EDAE9EBF8DF30E2E318B3E68AD485A /* RNBootSplash-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CEE182B391F292975C9C32DFC07250FE /* RNBootSplash-dummy.m */; }; - 01EEB05CAE544467B80ED4E75FCFEDE2 /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 42E07FEF574DA0ECD1BC7F643A4EC7CE /* json_pointer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 021A5F62E0DEF0BB92FC032662D7C713 /* ReactNativeVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = B0FEACC0CB1FB92340BA8E160A2C2E6A /* ReactNativeVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0226013C2846F8364B6A135641F44A9C /* NamedThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = CEC466FD202E23F29881E8BEB39E7530 /* NamedThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 025249E331C0206911E92BDB42BB0FF5 /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 794E673F0C3BE71ED6B7DD19CAB7EB7B /* SDImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0283EFFFE173A65A36B3EB13739EA931 /* RequestResponseRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A7FDCF8B52F0218F9B22DA685FFF3FD /* RequestResponseRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 028EECF978355B6FA675E133F8C29B8A /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 12300C8AB123C4788168C1E3F9C417D6 /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 02B1D90F9A8BB4D5D7281C8CF4453985 /* UIResponder+FirstResponderTemp.m in Sources */ = {isa = PBXBuildFile; fileRef = 341A8F3B44712151883651FEB5C6CC66 /* UIResponder+FirstResponderTemp.m */; }; - 02CD8DF60C9214B70F1DED7CAA72EA36 /* ARTShadow.h in Headers */ = {isa = PBXBuildFile; fileRef = E7981AA33A978B0FAAF656BAABE1D59A /* ARTShadow.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02CF88CDB941857E9C9EDA145E89C749 /* BSGConnectivity.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FB196E790FA568772298C408B335F2E /* BSGConnectivity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02D143C910E4DE62858364D82BCF0F39 /* Instructions.h in Headers */ = {isa = PBXBuildFile; fileRef = 61BC42558FD1A68292D50CDD2D1E6983 /* Instructions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02DAE424FDDFF1A69DF81CEA0AE15118 /* RCTVibrationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2468288ADCF7AA8E3E71292644C5676D /* RCTVibrationPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 02E196B05996FA3627989B9F1F70A48B /* Flipper-DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CBD7F32DD3F52D110764E7A7679E3C64 /* Flipper-DoubleConversion-dummy.m */; }; - 02F83AFC31A83AA3D22CC67C4AC6818E /* Benchmark.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A2F80DEFE681CACE159542DB9E6A231 /* Benchmark.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 031B575BF959DF695AC109D97F3BB647 /* Stdlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 974A52EA9574697A6D4F84ABF5566E6E /* Stdlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 031CED41E155F6368D950FC90813B919 /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 73BE7F7E69A8E5DF009A8FD8C3FE67B6 /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 032C419251F76A26A865FA15E764A110 /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 35042220C6CA8DB45EBC39D294E7A366 /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0331477A73C98188DAB7AF688879A915 /* RSocketConnectionEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = A93E8BB7D84136FC86255E9EA99F0019 /* RSocketConnectionEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0342242B01A0E6EADA167A93942CFE20 /* FIRCLSRecordHost.h in Headers */ = {isa = PBXBuildFile; fileRef = 6469A47D128F2A11EBBF60DD1195B115 /* FIRCLSRecordHost.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 035426C824C10582B594CBE3C9B820FB /* HeterogeneousAccess-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 8371C3FBE908131FE0B4BAAE1E6D2F52 /* HeterogeneousAccess-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00048DD9E1C1F01D7AA8052B56E7431E /* IPAddressV4.h in Headers */ = {isa = PBXBuildFile; fileRef = 02C991DF0D290846DE19F8CA80AD4354 /* IPAddressV4.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0009B56E3DB9193A3673C64B5D69DF5F /* BSG_KSSystemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 72D924B8236E2AF165F6D5F8354A471D /* BSG_KSSystemInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0021ADEDCC7BDF2873BCAA2932A94973 /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 291A3EF93026735D4A371473E47296C4 /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0027ACB25A453EC52DEDC36640BCC044 /* RCTPbkdf2.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E567830E7845629D2196E6C4E1652B9 /* RCTPbkdf2.m */; }; + 0028B33CFD58D134D7F27DC7007C149B /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = 55D918DA09C748DE14493F55B5EF6DFB /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0040F8F0DD9089286364F8385B3299EF /* F14Table.h in Headers */ = {isa = PBXBuildFile; fileRef = 289FAC143E9FC44F43C2C9F3BFD11E1C /* F14Table.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0046ADBA078ACE2D5DB447D46CCC1899 /* FIRCLSFABAsyncOperation_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = C08376657BF0FFD85723248EA8D3C3D1 /* FIRCLSFABAsyncOperation_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0057FBC361C696065C2ABEFB2556A2F4 /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = AE60EBEF10EB410D6454E9435714035A /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 005D1B6FD0CAF94B962756F3647CC582 /* ConcurrentSkipList.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C99E44EFF703AFF54FB84284C85BEFC /* ConcurrentSkipList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 005FDB5737EFC91525B5B3A06BFAD6A9 /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 9363660B9A66C416940A5ED430891623 /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 006424C155BE0EC47CE00FA3AECED4BF /* alpha_processing_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = AAE7C3A7CFA89498E2F31CD466E8BD1F /* alpha_processing_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 007D63251D200645B5FADAF36DED156C /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F969AB07C5F0F86647AD40EF77FD8A5B /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00807FAA7AEECF6ED98F32666568B370 /* TcpConnectionFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B1CC5F300C379D9AFF7A7F9E68C4BC16 /* TcpConnectionFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 008E846E81F794C720EABB3FF9C1764C /* AsyncTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 077F291B3D51FC13039F9019F22DEA24 /* AsyncTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 009339B67D32BCE08D732F434B0A34EF /* RCTNetworkTask.mm in Sources */ = {isa = PBXBuildFile; fileRef = 411C5D3090597F745A84709D99C44A6B /* RCTNetworkTask.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 00970C26F813B29A6F37E7A396A1F863 /* RNCPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 60D442A392DA9A7A6DD57F6D01D72702 /* RNCPicker-dummy.m */; }; + 00A7B48C3E8BA90F90E4F1F4E7389C7A /* Time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0499D4D0215385E03992B5E8D6EEB000 /* Time.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 00BB8F2C7C8AC2C604A8652297AF5813 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = C6047C5622988513A77CF76E8BE0CD9F /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00BC87DFA9ECECAA97E66236315A0E42 /* GDTCORPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 08593D01040FC8FE0D5E332C14128C19 /* GDTCORPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00BDCD58EA8B54F256C20B5BB191BE69 /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 31E6E9ED526B2A75CD508972807E3085 /* RCTPackagerConnection.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 00F3CECFF5B5C71FCA22A87DC5BA9543 /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 803652DA292561BA0F2B796EB01CC231 /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00F8647BB6E8A787410FB25342A5BE20 /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 304AD9DD746227D7CFF1D49EE52759C2 /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 010ACD40A3FB0E1CDA8CB693E0C25AC2 /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = B50DE8C8F2A19864483D8FC8DD07475B /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 010D56C7627B65E6EFD47D9261944763 /* SocketOptionMap.h in Headers */ = {isa = PBXBuildFile; fileRef = A09AB235098FCF4BFA9D0D5B5E22A857 /* SocketOptionMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01278CABBFDB29756042EB6FF836EB74 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F93F61A90764C0E78C82A039657A0C8 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 014BF8C7B22928C76013CA44AE2DCD41 /* Unistd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0381BAB37FB5527EC89A3772A617850D /* Unistd.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 0151086FDFF81B6CA8D219F670CAA428 /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = AB338D3DE7775EC9A3A7A5C6C8EF8871 /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 015E62A1FD23178A45DA6E92823C5F9F /* HeterogeneousAccess.h in Headers */ = {isa = PBXBuildFile; fileRef = 3663947E78F78F183D279D27C650548D /* HeterogeneousAccess.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 017F62D5A617EDF06647FEDBAEA533EA /* REAEventNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 93FC45CC18820A048275DA3BBE31FD89 /* REAEventNode.m */; }; + 0182157BF7C1F8A5D720A72DA9371BD4 /* Futex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D6853AA624FC5A933BB11FA7D0A0A67 /* Futex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01A939FDFDE549EFCEEC007A543C4CC8 /* IOObjectCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B2797F574294906070F7BE48ECC1B64 /* IOObjectCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01B0032031EA54F2A019BB496A57F963 /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E9D737AD88368ED3A2F1A00D90666BE /* SDWebImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01B5E83605163939447E23FA6A4A49C1 /* StorageSetters.m in Sources */ = {isa = PBXBuildFile; fileRef = 7EE4C717F5E2017DF21EF0ED8ED107E1 /* StorageSetters.m */; }; + 01D5E90249AE4DFA53798839771B2A77 /* EXSessionTaskDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 398D18514E2FEAC75960BF69A0DCC236 /* EXSessionTaskDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01EDAE9EBF8DF30E2E318B3E68AD485A /* RNBootSplash-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C27817BEBD0764AAA5531522DE8E09A3 /* RNBootSplash-dummy.m */; }; + 0205426B1CB4A12EA5EE5707B0E0B23A /* ExceptionString.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A3BF570E94C8640895966EC47D8ABFD /* ExceptionString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02118F981B7C0DD618C919479E33B173 /* Random.h in Headers */ = {isa = PBXBuildFile; fileRef = 6526F41ECBDF99585387BFDC5787A33B /* Random.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 025FE47C3B60B30BA35774977653BB78 /* small_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = D36ACE68BB8264C4141B635EA0BD695D /* small_vector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 027429AF288C5AF3C5B78ABB422A882F /* Unicode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7594BECDFBA4190D7EF60C88EB269846 /* Unicode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 028D89356A953848F9B55822B92BA1F8 /* analysis_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 6E28EDF634FF6ECE4803956901A890EB /* analysis_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 02A6D160F23F2906666849BB8CE6C735 /* SDImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C822944916997393C83B0CF3310A16B /* SDImageGIFCoder.m */; }; + 02ADEABAF9B955E505BA66F7ADCD0667 /* FIRCLSInternalLogging.c in Sources */ = {isa = PBXBuildFile; fileRef = 62B73A440AD7CB767A967E0875089085 /* FIRCLSInternalLogging.c */; }; + 02B1D90F9A8BB4D5D7281C8CF4453985 /* UIResponder+FirstResponderTemp.m in Sources */ = {isa = PBXBuildFile; fileRef = E32F0ADDAD67DE6FFAEA3592A5620057 /* UIResponder+FirstResponderTemp.m */; }; + 02C03E39B31B42E2FFBF8245C47771B3 /* Parallel.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F12146FE27561032F8D4B3189081660 /* Parallel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02CD8DF60C9214B70F1DED7CAA72EA36 /* ARTShadow.h in Headers */ = {isa = PBXBuildFile; fileRef = EC51DD54CD0EED9344522EB545B298B3 /* ARTShadow.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02F3FAEE0F8AD772ED88F9CC03E0D4FB /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 759E76BF4E0BCEEDF0710C73EE7060A9 /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02FE15B62E349ED13458EAF358D75B35 /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 237391D445AE6C2688DAFAFABEDE9202 /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0346C6562507A40267EA3305185E192B /* RCTImagePlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E320D828713423902FF9737F8D8B1DF /* RCTImagePlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; 035ABDBD827EF6B667B0A81C4BC891BE /* FlipperConnectionImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FF999F8D3575678E2BA9D8CCC594E46 /* FlipperConnectionImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0371AE0DBF8C2E0D32ABA52509F6415B /* AtomicNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AA7D6C7EE116FB089F092288EDD2DDB /* AtomicNotification.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 037AA7D98E4705B36AD6DA948F2C99DF /* Hazptr.h in Headers */ = {isa = PBXBuildFile; fileRef = A3E40312392D7D79909DD9D28107B2D5 /* Hazptr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 037C957FDE25B5F43759C4F0BA107AF8 /* RSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45819A60A49C114E82122B36C16F91E0 /* RSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 0383250E9997F99EECCC20594F9507B4 /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 87D361A17427A801DBF47CD2D9BFCC01 /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 038E2DBE07A1E347E75CDCA8AD1D1AB2 /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8571823AA5D946194320312B28D9AEEF /* JSIDynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 038EC993E3CC0E6730C944D1FD535132 /* ThreadCachedArena.h in Headers */ = {isa = PBXBuildFile; fileRef = E658D0B87F376A26ECCE7D29B51CB804 /* ThreadCachedArena.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03B4B5F630ED44205E4E7C4A6403A863 /* BSG_KSCrashIdentifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EC9214E320BBD039409478C85CB3D4E /* BSG_KSCrashIdentifier.m */; }; + 03C2C9D9DE037EB91239D7C7E88BF9D2 /* MMKVLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 552390FE19CFD6F5D5586884FACFD5C0 /* MMKVLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; 03C9FDF164D46EE142863B39C3ED3353 /* FlipperClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 55E5F67EF246FFC6CAC577A6181668C0 /* FlipperClient.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - 03D523D8E6DCFCEC361C7D587DDE1207 /* DynamicParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 48040670F59DBB3F85B5BDCCA8100CAC /* DynamicParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 03DAEAE5FAE0256DA943CDD2F2F3EEB0 /* FIRInstallationsIDController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5ED3A731B84B5126546C42978C09FCD0 /* FIRInstallationsIDController.m */; }; 03E82591072A50A5DED71EF03E95E245 /* SKTouch.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A8C62FBCBEE317E39083D803E58E73E /* SKTouch.h */; settings = {ATTRIBUTES = (Project, ); }; }; 03F8BCE3228A9B43553B52224F80D2E6 /* SKEnvironmentVariables.h in Headers */ = {isa = PBXBuildFile; fileRef = A95BDCA70C13B92DD2B92AAFC48B3CA2 /* SKEnvironmentVariables.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0414E184855BF08FAA8FFF8A6EE7CA6C /* Function.h in Headers */ = {isa = PBXBuildFile; fileRef = C2DA9F23FE8526DB70B1265FB9EDB63B /* Function.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 043C1344B2F1C46B67292123A1F166E1 /* Enumerate.h in Headers */ = {isa = PBXBuildFile; fileRef = B69368CC35C431BE1843055E90E0E6C7 /* Enumerate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04C87F2B3F3470B213ED12446936FBBC /* Access.h in Headers */ = {isa = PBXBuildFile; fileRef = D698A54C40003FD1EE0618F5FCF5A4ED /* Access.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04CB9F8199F86C78E46D815EF6A11CF9 /* GlobalThreadPoolList.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C6E28B05FDE1F1220AB6DE4481E0C48 /* GlobalThreadPoolList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04DD5F982496C3A9BCEBF3F75745CA52 /* FIRCLSDwarfUnwind.c in Sources */ = {isa = PBXBuildFile; fileRef = 2C1FABDEA357FDEA4376B5426958FB0D /* FIRCLSDwarfUnwind.c */; }; - 04F045B490F9C7F78B268E7DD64B3391 /* SerialExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = E43D0C392A379945AB4092E47E7E0531 /* SerialExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04F3B10864E750C0C491AA274AE5C768 /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E238C762DDC2AD8C15960A05BAA2352 /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0507A533AA018FE4584D1BFADC39E1BC /* ThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 144FCDDA6C4928F6C6EC8F1864CEE384 /* ThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 050B6A1F36D337A7719911102490B273 /* FBLPromise+Delay.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A749AD6FFFE36A24DFDAD2619EB68F7 /* FBLPromise+Delay.m */; }; - 05158B9A06722A88CA817BDBC814F5B2 /* CPortability.h in Headers */ = {isa = PBXBuildFile; fileRef = DF6F68824D610DAD329C4F8A043CE87E /* CPortability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0524CD83E5473C16A5E3A9FA502A2994 /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1D0833EFB29C9DBA18B45BB7E8104330 /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 0524D12E76C8A25E9297604C91B3E220 /* RNBootSplash.m in Sources */ = {isa = PBXBuildFile; fileRef = B78438139966D602FB55C96C0171935E /* RNBootSplash.m */; }; - 05280FD32E2555459430F52D27BD516E /* ConnectionDemux.h in Headers */ = {isa = PBXBuildFile; fileRef = 3114A72307B3DFA9225E53CFB22E2F3A /* ConnectionDemux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05282169F07BA97A51AA0BDB5A81FFEA /* SocketFileDescriptorMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 655295FC2D10FA8D103EC75D8A0C884B /* SocketFileDescriptorMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 054374D14159D2074EF75CFCFEC04E7F /* CachelinePadded.h in Headers */ = {isa = PBXBuildFile; fileRef = E509FD956BD9317B6C7E872F35A42704 /* CachelinePadded.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05448C9630CF8479D6D35D7E271FF8F4 /* ScopedTraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 2276E935AF07959AB2B1F1212BD9EF3F /* ScopedTraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 054523ED1FDCE6BE115A4F4A1664F1D8 /* FBLPromise+Retry.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C3AE8AB82104DA1D57947D5F350DF05 /* FBLPromise+Retry.m */; }; - 055B4D27C2659219838D1257DD8AE550 /* RNNotificationCenterMulticast.h in Headers */ = {isa = PBXBuildFile; fileRef = 7075F2303111FFA440AA3570F1AED4E7 /* RNNotificationCenterMulticast.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 055FEA3660B954098A3C81D245086510 /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 99B4E282439969483EF0BDCB2C15EC8E /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 056151BD567E738A40A0E980DFFD15F9 /* FIRCLSApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = A99D740C046DC693B8C279E9906F5ED3 /* FIRCLSApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 056910EB649DC2F7516A0A9D7CC213F3 /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = 37BED821BCAC65D707441E38B19A810D /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 057BF600E57868CF3F1DB507EFD4236E /* StreamThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89F8DA17B84406296466CA0BD7774307 /* StreamThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 057D0607602940D1E8964B1C5B64D3F3 /* FIRInstallationsVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DB1D8FE765BE7361DB47698214C8827 /* FIRInstallationsVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05891FDB283D491B2A2E3365D181C23B /* VirtualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = B6256683A3DCE9CB6912C1017947136B /* VirtualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05BAAED191FCC45A5C65B45B23797F92 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = 350DD9B6FE8FD8B0CC9BC694C7DF881F /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 05D5F9C20063FD381C22CC5EECBE37BA /* LockTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = C27DC7AE4DE697B574D21F7A3A57FB75 /* LockTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05E2FB64E5433702EC3048962AF37278 /* Uri.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C8477445D129B95B0123B10B04C8B2A /* Uri.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05E77B648246D77D11F8487FE79AD0DD /* RCTLinkingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 43786C2D8AFD12763D9DC05696BC9EC0 /* RCTLinkingManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 0616164C2E1DE7848A52F5822D01BB6A /* ReentrantAllocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E3873CDFC6CC882995CB4188C6285B5 /* ReentrantAllocator.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 0621D295D9184C531FB0DCCAA5BEAD14 /* SynchronizedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = E5337603B78A222B6B5B57618DB6080B /* SynchronizedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 063388AC0E8F8B1D26EC0A1CA73E2E40 /* SoftRealTimeExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CB5A4488DD9C1D73C063B5AF6E4F7D2 /* SoftRealTimeExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0645B0CC8E0E65A2A398EED0A171435E /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DA06A75A3E5419934A4FD58166B2332 /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06496A4DAD1093C4889AD3425DF6A3B4 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3CBF266631DC8FAE9338AB776552C3E2 /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0408D4F196CE6FEF759EB3C4F80CFF03 /* SDWebImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = D5CAFDCB85306D5AFD07084BA1737101 /* SDWebImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 040C2CC1E0708C8B9BA00967505E4020 /* SDImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = A1676AAC61EFA3771E2E5B301AC959E0 /* SDImageCoder.m */; }; + 04310196A7DE34EE6C10BACBB7BA0A07 /* SingletonStackTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EFC7499F43B3972E69F26C8E148364C0 /* SingletonStackTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 043891E5F78B305EBB1317A30836A8CC /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = CB67C93D6401F212FFF1E5EE7D0106B9 /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0443589566EC27782B2D8A322A5C48B5 /* FIRCLSFile.m in Sources */ = {isa = PBXBuildFile; fileRef = C6485B3A9CFDBF4692BD579F07E4A983 /* FIRCLSFile.m */; }; + 044B767FF1D713F3352E021519FD4646 /* InlineExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E43323A34806A9BD3B6B4CB4A2FB27BD /* InlineExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 045000FCEB1B5F5CB4B35EEA57AF018C /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB84C45CEDAAB1F8403BCE7ACC59018C /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 04545590A52007AF2C55B090579D5DAB /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = F6FE7555EDE359A14D2F715534F474C8 /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0461C37B5061FC3BFC24BA4EBA892F17 /* TypeInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = C8A8E750D6EB315BBAD13D52C36D1C35 /* TypeInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 046CFA6EA2183A2D8EA5270C76CA64CA /* STTimerFDTimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EC1FD54A43DE7F6BA21F2B42197B5B6 /* STTimerFDTimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0472E6B2EC2DD1701437FE1EEE67EF7F /* GDTCOREvent+GDTCCTSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 58FDB347CF2505169C6622AA7F6B1624 /* GDTCOREvent+GDTCCTSupport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 049F3641ED0F4A2C70A5A6E13D2218E9 /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A2E31F1D554AB0E4ED50E5806B88B3E /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04CC1236424016C5C170EF8366AAB196 /* Cursor-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4719575195AD664C0B7ABD653A1ABDB6 /* Cursor-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04D1BE328D5841C7FDF3E301C5CF2B9D /* Fingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E4F334248833C97B3656DE81F2B2778 /* Fingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0524D12E76C8A25E9297604C91B3E220 /* RNBootSplash.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BEC1860957320D1CF2C90CF1F9595DB /* RNBootSplash.m */; }; + 055B4D27C2659219838D1257DD8AE550 /* RNNotificationCenterMulticast.h in Headers */ = {isa = PBXBuildFile; fileRef = 50E9BC19608F331299520F4A34F93BD0 /* RNNotificationCenterMulticast.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0562BFEC36491B2EA18AC761FD989375 /* BugsnagClient+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AD22713EE6E7C846525A656A9999E89 /* BugsnagClient+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 056E754644E170E76B219204CA58C492 /* GDTCCTNanopbHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = D9891CE4FDE6F86E8136EB0A7555C8DD /* GDTCCTNanopbHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05768EFA810692190DA64DA76EBC0BE8 /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = B4A669AEE4E790FB79D3AFC1B3EF5C78 /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 058B10DA26839788148504E6F6E66221 /* SDWebImageDownloaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 849B5400332E67CB49AB4618ABFE2341 /* SDWebImageDownloaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05956957EEDC4C7CB77438B32F3F2A27 /* HardwareConcurrency.h in Headers */ = {isa = PBXBuildFile; fileRef = EC939FB768D3C5B9EEC1D46DB5A0FC4D /* HardwareConcurrency.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0595DABEC9675204C4E322CB29A3E29C /* Atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = 38BBE2CA9186650AFBC919E763904BBD /* Atomic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0598F7186665FCE2EFAADE1F54C739D6 /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = B315AC002517DB5B0E4BB7730C693375 /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05C2E0DB9C8CC79205ED5446A7BA7D72 /* MMKV_OSX.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F40785B36761D40360CCF0B7D0E1C43 /* MMKV_OSX.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05DDD47A2C554C681F329F08C81CC89E /* cost_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = C297EEB29D530D2065D16CD01752FEB2 /* cost_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 05E1F59E2BB7A27A16D0A159585E953D /* FIRCLSReportManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DBBEB9B5D2777C75E5E5B2DAE9212D52 /* FIRCLSReportManager.m */; }; + 05E8768ADFF5C698243A41CE2CF7437E /* MRCCanary.m in Sources */ = {isa = PBXBuildFile; fileRef = 557C06D43567F388267AB80BAAF2CCCA /* MRCCanary.m */; }; + 05EC7EFB420CDEA0D13DA075C985FFDA /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = 79B29BED9BBCAA461C6D59F27D7BADC4 /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 060A7EC0A2054D3378BA7ACA6385A33E /* NotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E610DED409BEE9089F49167DE8A5A3F /* NotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0618DAD253EDE3B3EC9FF32A7AE290EF /* BugsnagFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ED60785E613974940745804A80CF521 /* BugsnagFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0634D6318459F5C1F29408B3FB71DBED /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 494B50D5D5537B2B9842B43BE6116BEE /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 064607851859163A371F8B63692DF256 /* GULNetworkConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 920923E2DB170384DABDA9E8EC651393 /* GULNetworkConstants.m */; }; + 064AC196394C411BE28F19DDF9B0C08F /* CppAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 932D6A4AAAE1FBAB7EE894FC1698E905 /* CppAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 06514FD84CC576BCCE44F89EE61A7F68 /* GCDAsyncSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = E3A107D1CA871E2270BFC3B29210E99B /* GCDAsyncSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0655480ED2629B321F809A2453E1465C /* SDAssociatedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B4CE6901EC9E33F4A67CF767719781D /* SDAssociatedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 066047ABB9A27063B409C533B72812C2 /* SecureStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A5525F3F6FF25A9058B2CB012A330B2 /* SecureStorage.m */; }; - 0668ED294BF6B4AC9BDFB4C8574B1444 /* FixedString.h in Headers */ = {isa = PBXBuildFile; fileRef = 860239C88599BC26C8132EA2A3B02158 /* FixedString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06790325DF359DC61EAC515295D64139 /* RNEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = DB69D1D9A4730E68494B03AD7056A429 /* RNEventEmitter.m */; }; + 066047ABB9A27063B409C533B72812C2 /* SecureStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F72487A94BB4E252CC7309942D924D3 /* SecureStorage.m */; }; + 06790325DF359DC61EAC515295D64139 /* RNEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = EA4C93D56FE5D85A1A138AC0E69C8862 /* RNEventEmitter.m */; }; + 067E292CEC4E08787006F729EF7D5639 /* FIRCLSDataParsing.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E862EF5EF45C3A65DC568F4D8060AAC /* FIRCLSDataParsing.h */; settings = {ATTRIBUTES = (Project, ); }; }; 068AFEE58D6A906D9F47BD5F0AD3D391 /* SKIOSNetworkAdapter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 657C2BB6771EEDE6789A18E1920992B2 /* SKIOSNetworkAdapter.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 06AB0279D15839BE8B9B98CC40BF8444 /* Benchmarks.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AF153272AA59E892E9EAFBABC890E928 /* Benchmarks.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 06D20036ADAEBDE62611FBD3D6AD6E6C /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4AEFBA708B946901C44245DDCCD8A15D /* TurboModuleUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 06D97C8B36C2AE44145C31A35B1D2F3A /* Codel.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A4213B6882D8C685BE04A8787BC1E6A /* Codel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06DA47B5D10153D2AD9BE1D3EA133676 /* BugsnagPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 502B24EF1B75489596F123D9A8BDFB7D /* BugsnagPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06FCF862CE04E06F2731B612C2477CDE /* BugsnagSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ABF947D7DE03BD959BAC26A2E9A7FF8 /* BugsnagSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06FF94C81F7719846CFCA15E7AC0C5A8 /* OpenSSLHash.h in Headers */ = {isa = PBXBuildFile; fileRef = D55EECDF82319E1B43BAC813BD004C14 /* OpenSSLHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06FFE0F8419E3521E01DD52D6ACE4451 /* StreamRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CE1A3BE870187D9779BD588E99A4BA1E /* StreamRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 0702DE9B5D10A6DED6C78854EAD198A3 /* IOThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AE40EC74114F2FFBD6CF82143D0C4A4 /* IOThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 070A618F1A86583E0F56C8265134FAD4 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5412CD0E31F34E9F3702381C037BA9DC /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 070DCFEE3F8AAB5103BD17C0ACF80B52 /* GDTCORFlatFileStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = A1F1A4CF23D301F5E48F1A6FF632D891 /* GDTCORFlatFileStorage.m */; }; - 070EFC6EE3294185C658FF996856CFBD /* F14IntrinsicsAvailability.h in Headers */ = {isa = PBXBuildFile; fileRef = B23643BC6130F9372FAFC59EED9BF7DA /* F14IntrinsicsAvailability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 07245ACD0FF8044A77CCCDC3CD78B618 /* KeyboardTrackingViewTempManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 07D3FE071A8980AB0AB4CE7B82276EAF /* KeyboardTrackingViewTempManager.m */; }; - 0752BBE6B0BC96F73C47F7FCC16C3C4A /* color_cache_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A418F3C1CC849FB2AF5C76D1273ABA1 /* color_cache_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 075CDC4189D947C1386933C65EF9CE11 /* BugsnagSessionTrackingPayload.m in Sources */ = {isa = PBXBuildFile; fileRef = 85A2BAA8D45A771F937588ADB880E6B0 /* BugsnagSessionTrackingPayload.m */; }; - 0770A96449257D8A83944EE3FE30A3BC /* ARTTextManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B8FB3CA62BC13185F8B7FB56E71D1507 /* ARTTextManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0791A4939F03B2D8EFDB92F6EFDF4FA4 /* ShutdownSocketSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B145BBC0D222D042C25563A552C7B1F1 /* ShutdownSocketSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 079AEACD210AB47D3B989F7E01628EC7 /* RCTImagePlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = F72017B1E553A1F1E141A83638C9F120 /* RCTImagePlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 07A83EC3703B316877E8907D4E724B18 /* SpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 43BA4D2D3218ED77C5BA9CB2D3F81FD1 /* SpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 07B28C2E3DE2C299E177DF5250D57BE0 /* IPAddressSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A22E60D5FD59C685BF2A17BFE1C94FB /* IPAddressSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 07CA76F75690AE09E4BA7AE4FD32BB84 /* UMModuleRegistryHolderReactModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 67DE76349AA2DBFCB1AE91B38BFB8E78 /* UMModuleRegistryHolderReactModule.m */; }; - 07E36C7776368CEF133937A3D8725481 /* CodedInputDataCrypt.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EA1B57C073AC14B20B5E5905D1131EA /* CodedInputDataCrypt.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 07F64DD5D211443DA7AFC5B7F6927944 /* SSLSessionImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 1336466C47E2463B99D3F5FB5F02507F /* SSLSessionImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08002E5A2BA7AADE22C2820964D5A28C /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 995123302D746D255CA852321EFDA0FC /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0821B88E2D3F823BFD969C7324F871F5 /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 916E87C269F0E0ED71FE8D913352EBB6 /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 083349C7F69D059373F7694D0B12FDFC /* BSG_KSSingleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E7ADCD71BB9688CCDFA43D505366187 /* BSG_KSSingleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08480CE58BD618A3856B2AA4143B7ABD /* BlurView.m in Sources */ = {isa = PBXBuildFile; fileRef = F260606E5399E019816C05F8D9C28BEE /* BlurView.m */; }; - 0856BA8A5FAC0E6F2A9789590A444037 /* ColdResumeHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = A30625DAC877C1D1E7E335916E73632A /* ColdResumeHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 088E883D44288D220ED32814F79EE1A6 /* Frame.h in Headers */ = {isa = PBXBuildFile; fileRef = 37988D45D75D810E145A28997B557A81 /* Frame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 088FC53E263BBFEA6D69134BABF9BE32 /* FIRCoreDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CBCC34DEE63E69D64899C43FD54A785 /* FIRCoreDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08901F5E15324C69D35F24E22EDD4101 /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 85EFD9F3442332557D08D6F064A12543 /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 089E4D9F3C8C908CBEA1E912133E73DF /* lossless_enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = BFF4279A327AF0457A60C98234BFA95B /* lossless_enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 08AF4F521D6883336EFEDBA6BF7C8C45 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 98A731332702597251BBD92A7E2EE9E7 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08BF8286A50E6B3F5229F415F5F046F9 /* GULHeartbeatDateStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = E815744FFA2710E1B7D0A4B6EED45E59 /* GULHeartbeatDateStorage.m */; }; - 08DCC550F2AF1AFB525E5637947A651E /* GDTCCTCompressionHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = AEA69030E785D72A0C0CC8E9C51F1A44 /* GDTCCTCompressionHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08EFB49D9BBCF7DF2247F5F8A5DF2250 /* SDWebImageTransitionInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C5953F908AA69045DC18DFE62C0EB9E /* SDWebImageTransitionInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08FE01E6E385043DD42A42D4C111A425 /* RNCSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4235868962C8D8DEF5EAE9896B79E6CB /* RNCSafeAreaView.m */; }; - 08FFF06065F981F224B0C9066D0286B1 /* AsymmetricMemoryBarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9761F3CC3B223CD48DD9834FAD2DB33B /* AsymmetricMemoryBarrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 090CFBE4406371D791D2FBB837A032B9 /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = B6743FEDDF72DFBF09FBCB4FA3768AA3 /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 090D7A939BD0E4141C321406BD304C0A /* RNCMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = D5DE52F7D4DD68D70A1E463D13E2AC5E /* RNCMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 06B0565E90F2E675B6119EA4CFD9581A /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = D0E13984E0A2C4736083DC35869FC7C2 /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 06C9A25AC4DC7A39AB08FCBAE8362B45 /* ht-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 453EE913EAEECD3E8429629404148DE5 /* ht-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 06D5DBF1E9E955ED20FB07B829C42A34 /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B919A05E9213379A4D71D1D3ADF05F89 /* Format.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 06D66457A9DCD30BC0265FE278C1D00B /* RNFBJSON.h in Headers */ = {isa = PBXBuildFile; fileRef = 68D9357F6B530E418ECB4089AF8372A5 /* RNFBJSON.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 06EEA7CC0CAE7BD60BE91A9D8A980D84 /* BSGSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B707ED67B4BB2FCDC42FE3B71683C3D /* BSGSerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 06EFE2E466BB6FA26C078AE7F59312F7 /* UMPermissionsInterface-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F8A34C931F8875081A4EE2BB1B802E30 /* UMPermissionsInterface-dummy.m */; }; + 06FC02991FEF45A778E94EEF63F75941 /* HazptrUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = A0E317BA0618B3CF6CE687522449B03C /* HazptrUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0705C20C343C509BFF1B5CA41BDE05B1 /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1849D9626394B1D952A744349A6634B7 /* React-jsinspector-dummy.m */; }; + 07093C761C6CC9644CB5C2EDFD2F00A3 /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EDA77D1B8F449421DC2532D38292393 /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 070DF6CDF8168079D67DD94D4CEB1D2D /* Assume.h in Headers */ = {isa = PBXBuildFile; fileRef = 03AE25503118EA1D4DE028BBCADCAEF1 /* Assume.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 07245ACD0FF8044A77CCCDC3CD78B618 /* KeyboardTrackingViewTempManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C8BDECB59759E467E4BA207CDA35DA99 /* KeyboardTrackingViewTempManager.m */; }; + 0727B31AF6A686D215A1D79044CC7EF6 /* BSG_KSFileUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 330CD7BDA80EE0DACB19C7498C4FDF00 /* BSG_KSFileUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 075085477BB67B9628BCD463435B7425 /* GULHeartbeatDateStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 41FA13DF57954BD5E585AB26E68DE195 /* GULHeartbeatDateStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0770A96449257D8A83944EE3FE30A3BC /* ARTTextManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 788A40ED01BB50ABD4F04BF4036D602E /* ARTTextManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 07AFE129202F2514C8261BD85F4F9870 /* NSImage+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = D5E8E5688B76AA91CD7061A0CF7F37A9 /* NSImage+Compatibility.m */; }; + 07CA76F75690AE09E4BA7AE4FD32BB84 /* UMModuleRegistryHolderReactModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CF2196A1EE0D95E00B03D669456756F /* UMModuleRegistryHolderReactModule.m */; }; + 07D433A912EDD1208E6C857BFDAAAA46 /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 0200F4C529843FA559B3B7EAFBDCA3B7 /* es.lproj */; }; + 07E12D7FCC5284401B91040F1F61E8FD /* ApplyTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F2ABF8C2BEA2939B53F3C2267EF8A0A /* ApplyTuple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 07F09290FE59F32D9775E507056C06C1 /* MMKV_IO.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E31156F425D164A2ED4E39B2E9028DD3 /* MMKV_IO.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + 07F56F01327AA18E32704E5E53BB55C2 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = C1CAC101D574B1469EE2EDF35A0FB67B /* UIImage+MultiFormat.m */; }; + 07F9FC2A0F2CF7D7BF484E7E8C8626AA /* SDWebImageDownloaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 31539C38D495B50907FA4BBE5334CBCD /* SDWebImageDownloaderConfig.m */; }; + 081D3EF79DD7B27C1031948FA9C72D1E /* Core-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A190983119A82156CA0B4A385EE69BB /* Core-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0829F9FE8178E4FF1669D596D77B0993 /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 33F8B614EDDB6B06EC53096D867D5B46 /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0839370ACB3C1AF71FD30BA8119B5C2B /* DistributedMutexSpecializations.h in Headers */ = {isa = PBXBuildFile; fileRef = 675E5ADC3EACC082F3B1BAAA56677263 /* DistributedMutexSpecializations.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08480CE58BD618A3856B2AA4143B7ABD /* BlurView.m in Sources */ = {isa = PBXBuildFile; fileRef = D3B33FD155FD295BAA0410C2986FCA37 /* BlurView.m */; }; + 085C6C6788B855289DCC9D625CCD502D /* GroupVarint.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F67315E7880925AA24F1ADCA8867579 /* GroupVarint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 087327627D5E0EC8C8012550EBA962EF /* InlineExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = FA78E89356894AB05B1E6C451A83D8CB /* InlineExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 088006BBBCF81B9958053C61DDB6C3C6 /* PicoSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 00F6CAA287AF03669BD8E004E864BFD2 /* PicoSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 089B447701AB39595BD258FD7E389B7E /* Future.h in Headers */ = {isa = PBXBuildFile; fileRef = BCC1146DC641696C5D12F3D1EA347D6C /* Future.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08CC00DC6F526AAF0A9121114A369342 /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6ED44C6E2CAA76255A8A8349F38A9EC4 /* RCTAdditionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 08DC66360C319586D994B46451C4CFA2 /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EBDF38D772E501B8DDFAD480A0A8439 /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 08FE01E6E385043DD42A42D4C111A425 /* RNCSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = DFFB7BE862EB42E833249ED655B2CAC7 /* RNCSafeAreaView.m */; }; + 090CFBE4406371D791D2FBB837A032B9 /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 591FA607D74A59DECE40C10AAE8667E7 /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 090D7A939BD0E4141C321406BD304C0A /* RNCMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9683279A137FDD94EBCEC25771038803 /* RNCMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0911B0BF6C7F9D3671AAA712CBB7AF1B /* evrpc.h in Headers */ = {isa = PBXBuildFile; fileRef = 72F272903FFBC94B4E4612A594A555FF /* evrpc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 091A8294C62AC3AEC7AFD5DBD735EC8B /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = D84AD1D3232B0FAF8CBACB1950484819 /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 091B32DC9B35A27D260CB658F65DBB73 /* FlipperKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B6184996055D56D26C8211166775FE1 /* FlipperKit-dummy.m */; }; - 091D3B6C5B4BF7EA8A9F5CF1FC98F3A0 /* EXVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C68AE5A211322F449FB9B9AD3849EED0 /* EXVideoManager.m */; }; - 0923356973828D67642076F74E2FB2B5 /* Launder.h in Headers */ = {isa = PBXBuildFile; fileRef = EBEF24FFE00373397C3BD58477679B7D /* Launder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 093492410D1092DF7E465408CDCE1180 /* REAStyleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = CC2E2316D9B46A4AFE64A3079C8523B7 /* REAStyleNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0940F0F6BA3852CC2F799EEAB3D95E89 /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 83A0F06909DE94E788633152B76B7A4B /* React-RCTNetwork-dummy.m */; }; - 0957F7734FC4DEA4948D194333A4558E /* FIRCLSBinaryImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 302BF3C74637C7DB351858B047839178 /* FIRCLSBinaryImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 095F43DCADE91D7938E598F215DF8317 /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 644E133CF3831EA6989CE8834B6575E6 /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 095F93E0AD4C9CF6CDCC4A9CF07CAB8F /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = 97D8DC1607DCE53508DE8A2DF929757A /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 097133FE733C3956B95D1C73D9A125EC /* evbuffer-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = D567A3C8BCF2DBFD5392F80573BD4FB4 /* evbuffer-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 09724AFECBA67030CCBDDEC111AA7381 /* RCTSha.h in Headers */ = {isa = PBXBuildFile; fileRef = 0379CBA89CCA780FC442513CCEE5FA2E /* RCTSha.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 097D9BB45C7C6A9F07E194B5B62ECC62 /* RNPushKitEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 058B2CCF1D86628F70EEB3EC7A7F4DCC /* RNPushKitEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0986D5F8022086EB9FCDAC3C042340D5 /* RCTVibrationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 96EC8C9375C6ADC92D478742206AAC57 /* RCTVibrationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 09894495865BFCC23069E0779689DD3A /* ConnectionSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 37F4A35654D7581640A4041759FD1C2B /* ConnectionSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 09B01B874E2141854A99A70A4FA1D223 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 491C51CD28536CB3C58BBB9969764C6F /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 09C483DDC8AB541C9248630838533DB5 /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F90D76EB274756CD3EE07685241DA074 /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 09DF8B0D21F85FB2888497D2CE59B278 /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A552EA0DAD600DBEB49BE6B472DB0684 /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 09EB11F972206499481C2687DC199725 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 71FC4AB86EE39074E96E5C28674EA949 /* UIView+WebCacheOperation.m */; }; - 09F3D38C2BAD56F608FD7A7F26E29DF7 /* BSG_KSJSONCodecObjC.m in Sources */ = {isa = PBXBuildFile; fileRef = C4BE8D653EE12AA7F06AD08C458C07DC /* BSG_KSJSONCodecObjC.m */; }; - 09F5CCBCA7FAD50EC7F8252E63B59261 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = E99B73487DA7D10636D3E972B48C58CC /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 09F98E709A07E4F5D97533B5A158268A /* TimekeeperScheduledExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D9104C131E539E312ABC6D17CDBFF06A /* TimekeeperScheduledExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 09FC09117EA772F49ADC815B15E000C9 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A6137257B711159FD4012D79C20BD1F9 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A00BDC4B550C100E6E2C3439C5359F8 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BB11E12080EF34974D669D1BB3054263 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 091D3B6C5B4BF7EA8A9F5CF1FC98F3A0 /* EXVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2845AE37505E17E13FB2C18225966C08 /* EXVideoManager.m */; }; + 093492410D1092DF7E465408CDCE1180 /* REAStyleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 463FD6CE5E4650310F45D38D814546AB /* REAStyleNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0948B68B74CC84944BBF2F9B3120F86C /* EventCount.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A11F134BC882C7D27091A2C96946962 /* EventCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 095F489B200D86C5BFB9B9ECD73E6B07 /* dec_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = B46F8DE0AECDD9DFDBD2A2738BE7B127 /* dec_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 096047FD8389C5BE0B025F398B679E98 /* AutoTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B79F9D35FD7D0A9CC6EEA2FC0B28D87 /* AutoTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 09724AFECBA67030CCBDDEC111AA7381 /* RCTSha.h in Headers */ = {isa = PBXBuildFile; fileRef = 838CB3AD58AAF778C3820188C89DEAE7 /* RCTSha.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0975C6685CDEE822B3B40F222F717F78 /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = CC30D68C227093DD75664F5A4F39836F /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 097954AC10D18CE8B5141F94DF890D16 /* CacheLocality.h in Headers */ = {isa = PBXBuildFile; fileRef = 8784FBC1C5E137B83281BBDA13166A55 /* CacheLocality.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 097D9BB45C7C6A9F07E194B5B62ECC62 /* RNPushKitEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F6999E1FA5D1118E99918E215C000A6E /* RNPushKitEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 09877537A9682B55FACFAFD040F97A87 /* SDImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 0632EB5F7E65E53CB0E9FB0623CE095F /* SDImageIOCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0988E9C96CEEC77F442AF2B15DAF1E44 /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C54F02D722B48B0AA6F0F2997F6DC92 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 098C6B57113697D5362AFB0B9E7C5834 /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = F8B921051AB4FF0A77981EF9913F6E3F /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 09AEC5DEC14AB7D111C1DF36DFD7A1AD /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FE1D3B427082E6E61CC0FE1559311CE /* RCTAnimatedImage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 09C38BBB9DF1A26387E7925892790C42 /* RNFBSharedUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BDD0D0B1D3BA5FD4C57167273A37400 /* RNFBSharedUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 09DCC90A46B1FFF80ACBB457F48AE773 /* bufferevent_filter.c in Sources */ = {isa = PBXBuildFile; fileRef = 31BE77BA970F0F9CE3CADED50681A14F /* bufferevent_filter.c */; }; + 09F15827B9B30D7FAFB16A3ADF53557B /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 607B3D72F1D65F0541F6A67178F50A0C /* RCTResizeMode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 0A0F924BEDB66B36140C0412B7C28B07 /* libMMKV.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2E73A9322BBB7C6B2CE667F4A5619F30 /* libMMKV.mm */; }; - 0A13B293A6840C406C5D0C69CEB6CF18 /* TurboModulePerfLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = F0EECECDE308A45C7EDB48B47585FC99 /* TurboModulePerfLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A1C6AC8ED95B39137F3F749D2FE7C6F /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2FB913EDB37F8913760401CA81068BD /* SpookyHashV2.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 0A2152A57FD363FE1E02BFC9155A2BAE /* FBLPromise+Do.h in Headers */ = {isa = PBXBuildFile; fileRef = ED81A5EB12FE3E918B3DCFFEBF9AE754 /* FBLPromise+Do.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0A279C3E604AF38251E0B139CAC0972A /* FLEXUtility.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1DF5C4EEFBC2F3A09EB6CB6F3EDA71FD /* FLEXUtility.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 0A2B583B1426132EE06162774F03440F /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F93F61A90764C0E78C82A039657A0C8 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A40D41AD57C88B2C685CE506829C7F1 /* Partial.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A77F6EE9A506C325B1356B3440C8FF4 /* Partial.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A6EAF5A2D903AFE5E24E54C1F675D56 /* BaselinesTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 180D1B18482573ABC89BFE48788B6AAC /* BaselinesTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 0A7FA90FD1E33BBF5707B0C26F71309C /* PolyDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 52BC7916B2B7B219EB6FC9CC2A5AB472 /* PolyDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A8A63C5910D8280E0F142BF75F5AA83 /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = 502DF41673D24551D1053C75EA17F96D /* RCTProfileTrampoline-x86_64.S */; }; - 0AAAD956D306A4A8AC302CA1E65E71D4 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EB34A2FB4CEB74806B9886BC1034D7F6 /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 0AAC4811F9B3A30F6F3A18F3695697BA /* SysStat.h in Headers */ = {isa = PBXBuildFile; fileRef = 876DB1F6D29925E73C087F2C3AB36795 /* SysStat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A2FD3B0870061C168D1DBB7FFF3685E /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F6F8104994F8DC0891F5424518527FF /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A4CAA92A38F6F359915AF868EDD3F0E /* FIRCLSSerializeSymbolicatedFramesOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F5467A50B2433558AF81A19C71F11A9 /* FIRCLSSerializeSymbolicatedFramesOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A6E2C66791B2BF331A358B7F6E92483 /* BugsnagDeviceWithState.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A52E65AEAC493527C07E619FAACD214 /* BugsnagDeviceWithState.m */; }; + 0AA2C42953DBAC4F4F9D86F6F5497720 /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = F07D2F18E27AAD4431AA0C119A2B18A2 /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 0AACF9DA2E1B6C7D74CBFC897EC87F9F /* DuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = D26852D1F256C76D2220095D278152DF /* DuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0AB0058593030C3B0EAD62529088458B /* SKHiddenWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = 83015F74B9F4F8612DBA0CD2A7132244 /* SKHiddenWindow.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0ABD3FEA5D8430E668FEB117D07C6755 /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 608CD4F8E082098759CAC66864BF63FA /* RCTUIManagerUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0ACB9F91C4B14FFE164A7B5C9286EE72 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F85C401E9C6B0AA8C57171AEB77C93D /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0AE6357276EDDA7DB2700FEC47086CC4 /* VirtualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = CC10DEE2E7D3DEC467AC54EDE7E1CDED /* VirtualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0AE99F347A382B2E6F625FD689D4AAC0 /* SDImageWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = E737CD50AB9187B1427A4BE435D43ED7 /* SDImageWebPCoder.m */; }; - 0AEF68125FF4241E616130EBD1E3BCA2 /* Ordering.h in Headers */ = {isa = PBXBuildFile; fileRef = 9388BB3EF820E441837B5478F65B29FC /* Ordering.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0AF31585CCF99402287770F6B492C3D9 /* RCTImageURLLoaderWithAttribution.mm in Sources */ = {isa = PBXBuildFile; fileRef = 26A0D7C490FBD2800D290929CCA897BD /* RCTImageURLLoaderWithAttribution.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 0AF9CD5704D29D0A2BE0B7FCD20487B4 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 71AE22565DA82EAA87D9FBFEE7C353B9 /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0B02CB1E18FE16FC56EFA77FEA870535 /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = A2F936255FEB6E23D6C4AC199858E081 /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0B088EE7C11C5BF8BCCBBA6C52779525 /* FIRCLSURLSessionConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BC2C2D517C3AAECFF85699B7FA6FB09 /* FIRCLSURLSessionConfiguration.m */; }; - 0B4DB9690F07C3AE8D04316C33070468 /* HazptrThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7230FD2897AE4D58AEFEA90FAF377284 /* HazptrThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 0B7F07355F38F8E907267EE490E54673 /* FiberIOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 990A00178717052F257E58B288D15A84 /* FiberIOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B822B9B67207AE5947DE538B2E30DE0 /* FIRCLSReport_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 454E9EA0FB4C60C3075490BC8A0DE5D9 /* FIRCLSReport_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0BB15A644CE886364413CE066543D647 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 331FC717C92873188CC5A657D146E0CA /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0BB2E79C262053EBD06EE4DAEA1CA5EE /* pt.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 83DC996CF00F18599135A2312BD308E7 /* pt.lproj */; }; - 0BBDAD03EF08CA1EDDE9FBBA70BFD9F9 /* RCTCustomInputControllerTemp.h in Headers */ = {isa = PBXBuildFile; fileRef = 96541F00E230E1C55C513E2FBEE5AE99 /* RCTCustomInputControllerTemp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0BC8480BB7062F05FE8DAB9397701E28 /* RCTRsaUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 581A7309AEB5386F083C9E89EC8CE4DF /* RCTRsaUtils.swift */; }; - 0BD68F11D82D4F8C6E98D2241A4FF77B /* PThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CE71E32B1F316D819469B576AFFD0199 /* PThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 0BD940244A1B09E2FE71D2ACA9ECE4EE /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F4507DC98B551726ECCA52B6828D8CE /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0BE6E778463AA90562E4B30C789B4D63 /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = B37A5E9ECD5A7DA22C3BE71712F77862 /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0BEA360D6A5C0877EB830E77AC58FE5A /* Merge.h in Headers */ = {isa = PBXBuildFile; fileRef = 47C84FA9DBDB8034B972C27156F21F00 /* Merge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C122089B7B3F3207EE5F3BAE0BB7D15 /* yuv_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = AF5285E913D9C8AD1A6810470E198466 /* yuv_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 0C1D6EF62CA3626B9577FFE548FD46E9 /* FIRCLSInternalReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E92081CF67467605D8B96788527E441 /* FIRCLSInternalReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C1DA4769BF825F6F459A065355AF7D2 /* Futex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F21DE85C6358409AE64C374D0EC91C2 /* Futex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0C26C9518BC55F88DA71C4696E5FA681 /* SDImageCachesManagerOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F4C353ED5FA2A9612D4901DA4A0899F8 /* SDImageCachesManagerOperation.m */; }; - 0C57146D6AF92B467A677450A6B54F00 /* BlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = EC1DE8EA926E548E11AF410E548B8716 /* BlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C820F383E00CC85AC49837B6F751FB4 /* Benchmark.h in Headers */ = {isa = PBXBuildFile; fileRef = B0465C015983248F32D4F2E83D69D8D1 /* Benchmark.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0AB0E18EE74D192587F41B96143C012A /* BugsnagLastRunInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = B0B15E0495BCA939F82E3999573D2DFB /* BugsnagLastRunInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0AC1BC9FB4F553C79F4B4B142862308E /* EnableSharedFromThis.h in Headers */ = {isa = PBXBuildFile; fileRef = A3F2CA03CD6CE2779AC3B2571F1888FD /* EnableSharedFromThis.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0AD210E18C425316C4AF682A50FFEA56 /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1886BD93D7B131F8DBADECC1AA9B654F /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 0AD6A7B831E3569F6D7C5B1EE02A1191 /* GDTCORUploadPackage.h in Headers */ = {isa = PBXBuildFile; fileRef = E92ABFDAB203180947FBEDCB9BC3B942 /* GDTCORUploadPackage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B01B5A30237F905FAA426B720C73146 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FFAD7ACA0EE339C6FAE4005EA9B3FC7 /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B089ED105A2ABBA13BB1CB7BFA957E4 /* small_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 2571DDCDB2652412E88CCFE7FFF135B1 /* small_vector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B2AE46A2D31D608587776AC93C04926 /* Throughput.h in Headers */ = {isa = PBXBuildFile; fileRef = E21871B529EE14E91E52A27A8D1D1F13 /* Throughput.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B2E0DE809E106E5EA77ADB7FD1B786A /* GDTCORReachability.h in Headers */ = {isa = PBXBuildFile; fileRef = 885292AF47B79C9F9792145F265F4642 /* GDTCORReachability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B3A750D51632C3862C135538908444C /* Random.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49223835FFBCC772834BC23A41BF7AE6 /* Random.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 0B47DBFDB0527287B0F70B3A82A83B38 /* BugsnagSessionFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B459DE3753ACF65B3EE6005C011ABAA /* BugsnagSessionFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B522BA25D8DA45B1F683E2BD478AA3C /* RecordIO.h in Headers */ = {isa = PBXBuildFile; fileRef = F8858511AF37F8A3D53D4FE0D621D8F9 /* RecordIO.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B5A737B18094E1088257B7A1BDA859D /* lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = A79DEA6FB66798FDB09A6F59CFE1E257 /* lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 0B5D6E4F52F253DB4C51AF1BC0C17C78 /* ThreadLocalDetail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8403A2E98112F59D3BAF6617AECA11EC /* ThreadLocalDetail.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 0B8C12CC05B220BE94F3319EAEAF6083 /* SDImageAPNGCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = A82E8AA0A350E86E661EF7349E03E7EE /* SDImageAPNGCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0BA710712CA13C1B9D15CC6616C17A18 /* TOCropViewControllerTransitioning.h in Headers */ = {isa = PBXBuildFile; fileRef = 495EB46C90284196792D3BC2F73D02C9 /* TOCropViewControllerTransitioning.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0BA74AA382F7CC48CE4D2D08C970987A /* MemoryIdler.h in Headers */ = {isa = PBXBuildFile; fileRef = 103D85709FAEBE30EE0B816C9B015B9C /* MemoryIdler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0BBDAD03EF08CA1EDDE9FBBA70BFD9F9 /* RCTCustomInputControllerTemp.h in Headers */ = {isa = PBXBuildFile; fileRef = C191067ED21FA9A8C57AE29B73488327 /* RCTCustomInputControllerTemp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0BC8480BB7062F05FE8DAB9397701E28 /* RCTRsaUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 712977A45BF435F5FBBB354F1236B801 /* RCTRsaUtils.swift */; }; + 0BD0332EF081BC071AC1592D998F8712 /* TOCropToolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 4835786E04114DA8AC9459D9771373BF /* TOCropToolbar.m */; }; + 0BE18DE9E3405BED1A98DCC821F18E1A /* SDAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 632154CA99C3395F324D6E8391E97CD6 /* SDAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0BFA5DDABBF0AFF8F2A011E4BD9CD4B6 /* Hazptr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 40B967F7C56A728EEBFFF403E70495A0 /* Hazptr.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0BFABFC5DFB416EBB3B2D399F54F6D73 /* quant_levels_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = DEAFDDB7B183EBCD227325CE5F4B9AE5 /* quant_levels_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 0C02CF57A76237685AD6A8C3EF701A6F /* RCTVibrationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = B2B0C2B2DA9D3780174162903F4E336E /* RCTVibrationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C1C34168DFB6335025F3571DE0990C0 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = D9B8B92F24A47BEF9C95B210D292BA64 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C25A34F69506C1703FA93EB30B244FD /* CPUThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = C52CF47231E5F2DD0870D298922E99E8 /* CPUThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C2E7DC258AE40F7DCFD9BF97E0CE7BD /* AtomicNotification.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD5CC643B7659D611CA418FB5BC4A3C4 /* AtomicNotification.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 0C5297F5FF538496FC9F5A4061017320 /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = 631870C24E6FF50FFE8421AB36226223 /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C9592D63976BC9282601AFCF81F19EF /* FIRInstallationsAPIService.m in Sources */ = {isa = PBXBuildFile; fileRef = A92471AA2B82BDB11D3DB2938A92C154 /* FIRInstallationsAPIService.m */; }; 0CA8037128DBC7C6B80D9DFBFDEE0249 /* SKSwizzle.mm in Sources */ = {isa = PBXBuildFile; fileRef = 62A93AAB3B73950E2B5F76E03DE1FD0F /* SKSwizzle.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 0CAD225F88342B218A38A95A7D076557 /* AutoAttachUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 517393F305886AC6D84CBFC78CB2A91E /* AutoAttachUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0CCEB45200EE8BD59F2F89A3F1DC0507 /* Assume.h in Headers */ = {isa = PBXBuildFile; fileRef = C86DF7EF0D2DB8F15D67CAB2D5C16B89 /* Assume.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0CECDBECDE9E83AC0C87B84416398BD3 /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = C04327EB36D86E879F8C07676C4A3C0A /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0CF2D9782C0E2282B9A54A0384E3F4FC /* SDImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BBC9D9225EE71E347821C2095E8B0833 /* SDImageCodersManager.m */; }; - 0CF7970F3F985342BDCB63319A493A18 /* GULSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 073A0F73F0D948124331D5ED633FED78 /* GULSwizzler.m */; }; - 0CFE2BD29D4C9407C3ED97D4F74D17E3 /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 92568FDF28118EA53C8947A0124C1273 /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D055DD08681E620B11ED2072BE971F9 /* FIRInstallationsStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 13D532F8576952B1731BD9017ABEF549 /* FIRInstallationsStatus.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D59CADE581AE17769A41A12EC6E127E /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 01730D3643EF7DB9F11DD5CEE761D216 /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D93B2A675CD91FC2355DE9D7EAE9EF0 /* FIRCLSHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 43169030F1ECA77C243FA88624499E18 /* FIRCLSHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0DC63C2CC017114CD2873F9972960335 /* cost_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DAB026597DCEA620D82C5772AAF6B91 /* cost_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0DDA42B55AC582E90AFA18C9F991A177 /* thread_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B70EDFA652908C411936321ADE7A72C /* thread_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0DFB77BC01A7C3CC91ED646FE2A0A02C /* FIRCLSUserLogging.m in Sources */ = {isa = PBXBuildFile; fileRef = BF6EEDE5D31E9583322CA71355AE74EB /* FIRCLSUserLogging.m */; }; - 0E007318F430B309E38C0D74CEAFA5F0 /* ScheduledRSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EF77B45DE1171993B31D40830A5CB5B4 /* ScheduledRSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 0E21A14DBF0A9BF3C1CECA355C32D968 /* Util.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E7A67F3728F9137FBCE4D5B6613BAEE /* Util.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E2E2C6FF5241928DEBD933F4B74BA08 /* RNJitsiMeetViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B96FBD3F084B25C0C52E865813E4690 /* RNJitsiMeetViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E2E52A87704C8683BDAC64C6FF5D8F0 /* TimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CE6DA0E0588B8854385C4C0A03DAB96E /* TimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E2F6B6DF3AC30092AB41AA2A052C8EA /* IntrusiveList.h in Headers */ = {isa = PBXBuildFile; fileRef = 1859134AD65C65ED5257C915403A0415 /* IntrusiveList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E2F80D2A8897E789F6CA4501536A629 /* AsyncTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 39209F2A8F1496454A4AE88A288F0C42 /* AsyncTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 0E35144A2D079A1D20357D472A864EE2 /* Hazptr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 40B967F7C56A728EEBFFF403E70495A0 /* Hazptr.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0E3749FBF85802FC247E2FBDDD633E15 /* FIRInstallationsAuthTokenResult.h in Headers */ = {isa = PBXBuildFile; fileRef = D492EF8863AEA098B6A3F3255B3F8CB9 /* FIRInstallationsAuthTokenResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E3A1CE14025EC8215B26F702F4A712B /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = D5B2355CC35954E9C49262D1C805126D /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0E3A4E959AA8CA7A107C93DE4DED996A /* DefaultKeepAliveExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = D275BB6BB5DDB9ADBCA034837339D4E6 /* DefaultKeepAliveExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E4F17D4B1E440C16FFB4BA56B1C3793 /* quant_levels_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D15D4485815571BD58306D43BF2AB9E /* quant_levels_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E5D20F170500F1669CEB861B9867B61 /* TcpConnectionAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = F83F91B2D05DD47B50B966F30439E031 /* TcpConnectionAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E71BCEC64B7C77F4DD0FC4AB4300ADF /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 9572A0E17A29F17FD5B5BA89C0AB5DE0 /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E8539BA59891CA41F54DCDFF578CD1B /* strlcpy-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 666D07CFFA0543E74260EBDA643C53E5 /* strlcpy-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E9F8CFDDE24EAE742C04BB4256D27B0 /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = B57234370441A1188CC4B57867664254 /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0EA1525619FE43F84E9F7504FF9F9017 /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = B8861BD54155CF886F44EE104B6E00F2 /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0EA3F40D75B6BA84B356D22DAF0768A7 /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 250BB41F6D26242C3F01BC339EAFF55A /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0EB42F45C1E67B504CA51B328966E12E /* small_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 2571DDCDB2652412E88CCFE7FFF135B1 /* small_vector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0EB6FEE08A8FBAE5267ED2621E0333F2 /* NetOps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6B13A8544A674349A2B8685A22CF4DA5 /* NetOps.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 0ED07F1E06CCD572E91918A933D8B1D3 /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = AA1CE850DABF13336CBFD5E65D11A5E8 /* RCTBaseTextShadowView.m */; }; - 0ED1E076C0680B70E6448FF3B8E659B1 /* HazptrObjLinked.h in Headers */ = {isa = PBXBuildFile; fileRef = 556022F0512FB062A96153D84CAD318B /* HazptrObjLinked.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0ED2FDAFD92EB55ACB6FD22F49F8558B /* BSG_KSCrash.h in Headers */ = {isa = PBXBuildFile; fileRef = 827446B595DC3D7EE069CAA8799A49CC /* BSG_KSCrash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0EF01228C083C969CB7C5CD0AFE17D1D /* AsyncSocketBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 86DB9FF8A5FF212C97C3C37B038AAD4A /* AsyncSocketBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F029D5EEC0458A1AD8329700E92D6F6 /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE0AAD6D3B91A89C70E627CE69C9836B /* TurboModuleBinding.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0F2AAE10F9BA1DED4E711A3FBA2E1649 /* RNRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 28210BC2AA287948C474FC4DE7C13526 /* RNRotationHandler.m */; }; - 0F2B4915D36BF1173E7CC15B017BED0B /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = EFFA369D0A99F61C59AC66A7809A1D45 /* ja.lproj */; }; - 0F408DCEF4F770F4812064E1B58A6078 /* openssl_aes-armv4.S in Sources */ = {isa = PBXBuildFile; fileRef = 7EA857DA8A2209FA98D02BE1E40ADEC8 /* openssl_aes-armv4.S */; }; + 0CADF1F6BBA5D799CEAD99DA2FEAC140 /* KeyValueHolder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 32D640516510CD6D98C1762D93D29598 /* KeyValueHolder.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + 0CB383EBBE7DE8793C3DAE97B376906D /* AsyncTransportCertificate.h in Headers */ = {isa = PBXBuildFile; fileRef = E49150825E7B7233D0DF10044CFF560C /* AsyncTransportCertificate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CC3D1EBC4B98E88BA86BFE488146684 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 35092844B0028488DE18CCC8D155D32B /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 0CD96A4E2677F7983EE8E5193C1AB2BD /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AA602DCBEEDEA49A0A583EEDCF0ACFC /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CE3278495A8CAFC7A47D2E1CC3376CF /* time-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = C9DF09F69040AFECB8B414130D0B901C /* time-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CF2B0DB3189A0CC369D43D152544F22 /* FIRErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 67D5F573B6CFD6FF0723A26620D16C35 /* FIRErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D0B0FC02320C284BC292CCB6DCDF10E /* BSG_KSObjCApple.h in Headers */ = {isa = PBXBuildFile; fileRef = A7F3286AAEC755CDF16E674143494868 /* BSG_KSObjCApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D1494C60977D90B4EF701937DCA2D41 /* AtFork.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DB376A59FEDEFFDE68EA4CA8C8D80F4 /* AtFork.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D1704056A0737B8445048529611C1DA /* MemoryMapping.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8645C0A09204F941254F04AFF321631B /* MemoryMapping.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 0D28E4B29E5AEED3111CEAF1219ABADB /* BugsnagCollections.h in Headers */ = {isa = PBXBuildFile; fileRef = D6FA4F6C91F2A4BED4534715D40E0D1F /* BugsnagCollections.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D4033D5C3933CE042605CE73AEC6F2A /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 73ECF13767B57DEF145AD8A4E935C77C /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D46A258DC75D21C32E1EE87F82A5679 /* FIRCLSPackageReportOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = C335D0C23B2DA8C1FF4D4D1B65B1F207 /* FIRCLSPackageReportOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D57F7DD6E0CB299B21247D3A60391CA /* ProducerConsumerQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = A4AC4A18649390E71529D211141C6CF9 /* ProducerConsumerQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D66A6F156E3003BF80656EBF866FB24 /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BD45D297B804D133CC7BF454757DF21 /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D6873742750ADEF4D505AE59C78F02E /* DistributedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F02EE84B34FF166699B9607FA173C25A /* DistributedMutex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 0D6B2CE35D231D542AD7E1ADCC961B7C /* GULReachabilityChecker+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E531E7D2B3ED3E5A8881EEFD0CC0A77B /* GULReachabilityChecker+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D75B9D576357B83D4357CB7250F21C2 /* WaitOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BAB895311E1541DB93B0995E28ABA13F /* WaitOptions.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 0D85A62F967954499B5879445363004F /* ThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A56B007166F99AFBC7ED5B55A6B28B0 /* ThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D8940FEA44203FDE17C495A5A3A04AA /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = DA9882DBA3E80B8310FB0D89D0130D4B /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0DAD7A8B645904C334FE6DD725DC39EC /* FBLPromise+Timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = B167633F9DF72ADB205A2AECBB9C05A5 /* FBLPromise+Timeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0DEA069FF88127C8E375366F7C8177BC /* RSocketErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = B0FCCFB255C5A631079CFB219A9AB261 /* RSocketErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0DEAE518FDBB5DD5A873E01195A4462E /* ThreadLocalDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B691F81785E6B2010292AA5926E20DD /* ThreadLocalDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E03ED4005DD6655E3DFC600FEF385FA /* FIRCLSFABNetworkClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 341F4134AE669A7FD76D0685541CEAAF /* FIRCLSFABNetworkClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E11052DFA9B41FBC16674C954577139 /* Uri-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 450830B6145DACC4C6D5A7DC4011A9DB /* Uri-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E147C9D63E0EC905C4E458392D377F2 /* SDWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = CFADAE6600C315D4EFB5CC5D47467A27 /* SDWeakProxy.m */; }; + 0E15DB2C9F2CE2F0E86FC42C7668D03E /* Dirent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0BCE31A8D64EFB8D1E1ADDB316355ADA /* Dirent.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 0E1CDAD5AD31BADAD35669CA00758F72 /* PicoSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 32C09F0FA9D8B1AFE6F4D9994E4B577C /* PicoSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E20698DEA1CA8991DE22CAB3880CC54 /* AsyncSignalHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C7C93169AF188C480F80B2DB487D1E57 /* AsyncSignalHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 0E234EE5851EF999F8969F927AD25F6D /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = B8596D6EBD7AD819A94AE4D14F360601 /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E25FC030131787A144DF21878B8B00E /* Cast.h in Headers */ = {isa = PBXBuildFile; fileRef = EB7484EC228A3F3928B29F2172BFC923 /* Cast.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E2E2C6FF5241928DEBD933F4B74BA08 /* RNJitsiMeetViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 98E57AADE4A8D369C30FBB97722F8FB5 /* RNJitsiMeetViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E39E30826C84D175DAD1DB562D03E70 /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EFD4EBBD38CDFD28C3A24C71E03FB0D2 /* React-jsiexecutor-dummy.m */; }; + 0E42668C70E847678AFFBE1C8C9D2860 /* muxedit.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D9E65506D61DF8C18A834C7563C7C8D /* muxedit.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 0E44DFF7A0B30F4FE6A10615FE0FB471 /* GDTCORConsoleLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = ED59A322A00B63535E5F9FE1CC01764D /* GDTCORConsoleLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E48D6CF3A56778E613A4D8FA47E7180 /* IPAddressSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A22E60D5FD59C685BF2A17BFE1C94FB /* IPAddressSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E4F2F8E81779EB7E92527D8A48ACAAE /* FIRCLSReport.m in Sources */ = {isa = PBXBuildFile; fileRef = B93E72F5981D76CB887E4C865D7B3A1E /* FIRCLSReport.m */; }; + 0E67453BFB0635F64536D04BEB572DAC /* AsyncPipe.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 300B9EB55C9B47A2297C2359CE720EA5 /* AsyncPipe.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 0E75A51375C4953BB8691BF8B6359CD3 /* BSGEventUploadFileOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 94A96617407F7DDFF6A60E846D25757B /* BSGEventUploadFileOperation.m */; }; + 0E7B97ACEBDF484ACAA61916D907A119 /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 168E250D320FDE86CCB24E146A6487D0 /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E7ECDC6B6EC7025AE39E85209C03639 /* RCTConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 99E3822B579F39D825E4D810F4C4351F /* RCTConstants.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0E8135CA2F60E1532E6FD995BCE3A2A6 /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 50CC8B1CF4B75396D57F35580E672455 /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E975B760052C9632F66B2F4DB4388E0 /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E739090C6C03C989B43BF82B69633336 /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0E9CBDAECA6866FFD03AD07254334712 /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = 58A9B9AC86A3C640CA3F1826C1B01A7E /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E9D3660817D729B205D8A6BF9F41C63 /* Types.h in Headers */ = {isa = PBXBuildFile; fileRef = 86DBDB5227F92345841DF5233237B253 /* Types.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0EB4F2CD7C83F53EE8507A549B82376F /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5A8A6223D3018087503ED099D20C803 /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 0EC8C2ED9AE8572B3AF3E760EB1853F3 /* lossless.c in Sources */ = {isa = PBXBuildFile; fileRef = 84C6B17C8D76B76582EE0FA44BC1C73B /* lossless.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 0ECABF3238BC16C0456A9A55D13E78C7 /* BugsnagEventDeserializer.m in Sources */ = {isa = PBXBuildFile; fileRef = 73F9C5FBFBBC5A005A4AE1FE0927089F /* BugsnagEventDeserializer.m */; }; + 0EEA702D30D384D33244ABFEB10689C4 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 075FCEEF9548E5D0153233C7A55D489D /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F14CAC101861D13A1B71E08CB3C109A /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 2617B3D90DC123054065DC048C392F4B /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F2AAE10F9BA1DED4E711A3FBA2E1649 /* RNRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A89A78A49C5BA532B42B922603F10D5 /* RNRotationHandler.m */; }; + 0F2C447A8B2E00B012ED4BA187C11448 /* BugsnagThread.m in Sources */ = {isa = PBXBuildFile; fileRef = 581DB7D061A947F37F56A814CD0A96F3 /* BugsnagThread.m */; }; 0F49A2E9D56B8E78B5A453E9F7A788D9 /* FlipperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 521AD8BDBE37B570B725AD6291946FEC /* FlipperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F5E9ECC5E6943F852F867A054E10DC0 /* IOS7Polyfill.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CC587454BD6B008658D1F81D5C7D43F /* IOS7Polyfill.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F6932B9BD897BB2ECB873A1A98922B9 /* filters_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = FA3D6C41645AC0376301D491D6A72F1B /* filters_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 0F5E9ECC5E6943F852F867A054E10DC0 /* IOS7Polyfill.h in Headers */ = {isa = PBXBuildFile; fileRef = C25717694583716545F087E9F69CADB0 /* IOS7Polyfill.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F77C1E509E3104168A71A86B936A8CF /* SKApplicationDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 3751C8EE9A818AABDBD2B0660FC9FF6E /* SKApplicationDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 0F97F14B33B0CF23E8A388FD5985BE8C /* mm-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 62241FF2F74F1894A38653432A83E2DB /* mm-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F991D549006E82642609CAD4D4878AB /* FIRCLSFile.m in Sources */ = {isa = PBXBuildFile; fileRef = C6485B3A9CFDBF4692BD579F07E4A983 /* FIRCLSFile.m */; }; - 0FA6C8EA06B48480E3E1CCEC2654D523 /* AtomicNotification-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E37DC15B8F6DE03E03EB0C7D0597E83 /* AtomicNotification-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0FBFB578749017B777308BD5BD537C51 /* SafeAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 65C750CF4B56A5F3925533462CABEC7A /* SafeAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0FCA12B4C557F434DCEC8B1A6EDBEF7E /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E1E6921B5EAEF59ADC52E24F87AEF537 /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0FE3CE36E2841FFEA0D34CD4E14C488A /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = E20EED0B1AAB0CFFCBB04D7C9B2BE920 /* RCTSurfaceHostingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1011E4925DDDA75245F62F5EE0128E23 /* Hardware.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 681A1AB2EE91831DCFF815571703FE6D /* Hardware.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 102673DCA0F0A63413AD805D0D1FD5A7 /* ApplyTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = F0DD32790BF0B2290C451608FE612652 /* ApplyTuple.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 10292FF65AB64E249B2D1D74E2BEFB8F /* Shared.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CB793653BD41D8635C7E424363F51FB /* Shared.m */; }; - 103A73088A86D47E2746BAC11340FEA7 /* ThreadedExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6791FB3EDD564BD9752FDCCF60CA3EBA /* ThreadedExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0F7CC1A3FD78376CE863CBFC09ED9F28 /* SDImageCachesManagerOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F4C353ED5FA2A9612D4901DA4A0899F8 /* SDImageCachesManagerOperation.m */; }; + 0F7CF5403ADB08D9D9C0EE0A5CEF0194 /* TurnSequencer.h in Headers */ = {isa = PBXBuildFile; fileRef = E8A76263AAF9CD26313B2E6488D9987E /* TurnSequencer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F9130F61FA3B645FE44EFAD1A479346 /* token_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = D375D0FFEF2CAE4C446E135EF0E4CEC6 /* token_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 0F9BFE9CF36FA0EF856FBCFD9350F5EE /* defer-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 30D81A3D660D3599BC10A49C1F29EEE0 /* defer-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 101F0262D022C0B35AF8F8C7B4A91D8A /* AESCrypt.h in Headers */ = {isa = PBXBuildFile; fileRef = 8788C27754B696BDA8DD6600A957E14B /* AESCrypt.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10292FF65AB64E249B2D1D74E2BEFB8F /* Shared.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BF3A3327FE1B27155736ADEAAC66603 /* Shared.m */; }; + 102EAE87B33FDA5963921950F00222C8 /* RCTAlertController.h in Headers */ = {isa = PBXBuildFile; fileRef = ED66E2553655F4848CEB00B46D764060 /* RCTAlertController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1043542EFBACD82404025754B2B8C645 /* SKNodeDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = AE8CA691F749AEA3C9AE791BCF1E2D3B /* SKNodeDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 1064B8538599B96726A044D7BE89B1A6 /* FIRCLSUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F25DD195E34542EF84D539694EAD5F0 /* FIRCLSUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 108E3CCDC1A5A6233022CA74C99584D4 /* StringKeyedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = A56FDAA3345D4565EECAADA887F4A7EE /* StringKeyedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 10A94B6AE2715EA75E0F81A1DF0C3565 /* BugsnagFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 71615F7EFCD256976D549E99131A859E /* BugsnagFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 10BFD52B0129013FE1E0D708F1E55AE5 /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 7AE36C604CCE170F098593FC34F96AAF /* QBImagePicker.storyboard */; }; - 10BFF1ECC1F244483DBA8BFE191024E1 /* FIRCLSExecutionIdentifierModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 24E802A44DA54111432497AF0EBADE6C /* FIRCLSExecutionIdentifierModel.m */; }; - 10C9516F6633D6B558B24F5F7036E9E1 /* BugsnagHandledState.m in Sources */ = {isa = PBXBuildFile; fileRef = 99D7200E4ABF689DF78C94B4A6B70A6C /* BugsnagHandledState.m */; }; - 10E5CE8FF7243C340BCBA6C838907300 /* FIRCLSFABHost.h in Headers */ = {isa = PBXBuildFile; fileRef = D6367FCCF442159AB5CD62FC726DC2DA /* FIRCLSFABHost.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 10EAF8905E33CE571CF463C2EB4136E0 /* IPAddressV6.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BFF647876CB7C31171CD68C2B2688E5 /* IPAddressV6.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11231378DFABBFD74020590AA4BFDFDF /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 90C9392F71893D253F3FE57198C7DD13 /* RNSScreenStackHeaderConfig.m */; }; - 1140E514032830C21BB98AEA6DAE74E5 /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 89D4F729E6BD5C757B99E718C8D3BD70 /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1143E9B2F9D14CEE1AD30F3AB7BB6C4C /* PThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 42E3DD27E3C62F7A40FD2F65470B1589 /* PThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 115A492F47B539969042CA67C9E17BBA /* F14Set-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 69B07D62B4420F1F79859BE4CEBE6317 /* F14Set-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 115FB99DCF4F54742E1486737402469E /* AtFork.h in Headers */ = {isa = PBXBuildFile; fileRef = D03E0BDAF9B99DCFE7142FA24C3753B9 /* AtFork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 117C53D847311CAB0F119B12C42E22A6 /* DistributedMutexSpecializations.h in Headers */ = {isa = PBXBuildFile; fileRef = 675E5ADC3EACC082F3B1BAAA56677263 /* DistributedMutexSpecializations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 119B3C5DF0CF4E60FD3C1DD298001D7A /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B639B2586982125945AC60AB08159B6D /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 119B535602C981FBDD6F81F088F3CA2E /* HazptrDomain.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EF736721F771CE99651D129AB365263 /* HazptrDomain.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11BFFDEEEC04B6604C5752290DABE8DA /* GULLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = BC1B59FA7B55DBD9453B1CDEE536A836 /* GULLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11C5E1A4A88619EED93BD7F56D35071D /* MallctlHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = F968A99F776F201893FF2E12F10DC872 /* MallctlHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11C7FA4D922C7532EB525D748A5FD51D /* RCTImageViewManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7930696DB31D929DB6B53E5603372CEE /* RCTImageViewManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 11CDE5A8658EE24F6B1D10A6C129D27E /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AD14B53656A77114A33E2075E243ACF /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11EDB89697B133D10F3C346D5B352C5D /* DistributedMutex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 53BC247758C79B3738AB7B8F4964FCEE /* DistributedMutex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11F5D6BFBE2DF5D3C59E1A8AB6A0DC38 /* SDImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = B1FF6B2CA1B1140675F34754AA1FAC9C /* SDImageIOCoder.m */; }; - 1223CCC3161B6A19FAD9F7EFFE14E801 /* RSocketClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FF00494CCECEB92C703520915AF2DF03 /* RSocketClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 124941F23E2953A46052A68B72738A5B /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 40213F7ED9829D61A078FF57E8BFA506 /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12549937CBB2355022E2BD0F409A3347 /* EDFThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C25265491BA05D7DA07E73525B2E5ADE /* EDFThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1269D4C0ED48C68E928D7F77536B0416 /* RNCSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 93163867AB8AD2240DD1C0CD1472D38A /* RNCSafeAreaViewManager.m */; }; - 1297EBA70554372883595F79E1663C02 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 38EAEB2D222B886728E65358EA8E3B4E /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12990CE669624274E82B9CCA98067722 /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 67FED35915516D004344018E4837E98B /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 129B08449A437897C74DB78F744F4D81 /* RangeCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 65F1AC1A3944F25FB966B24E6E90882F /* RangeCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12A2647DE110D3553C71CF88BB9BA45C /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = CCEEA28921CC882E7F2C4CD6B212EA3A /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12C19F6FC5C7DF8E07C0BA61CEA6BAF0 /* GDTCORTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = FAD97A42DFA849596624DD41A3ACE426 /* GDTCORTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12CD71CE972D957C297A8DA7E00F6D88 /* SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EF4B6BBDDA951ECBADDA983E7E93BAB /* SDWebImage-dummy.m */; }; - 12D8142AAF65EE8A115784DB981CBA55 /* KeyCommands-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AA109362559D1809F0DEFF014204370E /* KeyCommands-dummy.m */; }; - 12DEBADC2E799B3CCA1CAE4A2F128950 /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 695FAE585C90D54BF4B116FF4A349829 /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12DF37A4361405B5CC83D25B70B9E5D3 /* Optional.h in Headers */ = {isa = PBXBuildFile; fileRef = B1F5D075BFE910A7152B6F26241607C1 /* Optional.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 130CDC13AC3777E90950D2DC81F91165 /* Libgen.h in Headers */ = {isa = PBXBuildFile; fileRef = D7BEB610C4B614A30006C73B615D4BD0 /* Libgen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1323D58287DCC0F2562FB80D6D44D498 /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = DAF5C3428E135893FDC0417576139FCF /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 132ED3CB6ED90E07C21BCAB683F19E24 /* SDImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C822944916997393C83B0CF3310A16B /* SDImageGIFCoder.m */; }; - 1375C364771948036CE6F81332BA2106 /* BugsnagErrorReportApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FE2345DFF9467DC1D23782D9AA4FFEA /* BugsnagErrorReportApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 138108B7FF971F96315F32DDF6EBB726 /* RCTNetworkPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 917C78FCEB2E4F1F066CA0F230EA38EB /* RCTNetworkPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1382733393A672B19C4790FAB075FB8E /* FIRCoreDiagnostics.m in Sources */ = {isa = PBXBuildFile; fileRef = 99CDE89A9ABDA7BAFFE28A851DB55DB9 /* FIRCoreDiagnostics.m */; }; - 13ADE9E2C0ADDDB8C1F5771855C7E8C6 /* TimeoutQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 51C259A9824478DE5643E9C5F2A26E91 /* TimeoutQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13B8268C29E02F9FD4F499283BBCF8F8 /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = FFA02D8B27A90553671499D9101EC88A /* RCTResizeMode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 13BC0A6DFE5852B5290DB68AFFF8C2AD /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 221C3F9BE44D57ECB192722A4047F545 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13BC94F0ACAA7972E91589EB80D2CEC3 /* RCTConvert+RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FC0225CC3853B5DABF6CFEF92183314 /* RCTConvert+RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13C49D179AAA45A99480B7D5F86E4FC7 /* Replaceable.h in Headers */ = {isa = PBXBuildFile; fileRef = 53418337E874FD7F99613A3D213BEA32 /* Replaceable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13C6C04507239877C19935C697117851 /* RNFBJSON.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A4AF1326E421028E60AF99BCF020020 /* RNFBJSON.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13CA7C0B6CC62376B1276B605DBCE6BF /* Registration.h in Headers */ = {isa = PBXBuildFile; fileRef = 803385913A06D30DF515AD0E3A72DD09 /* Registration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13D23B3BAB8CF7D561C043053CD50CA0 /* RSocketStateMachine.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B5CC4A2C693BCADBAABAD140462B77B /* RSocketStateMachine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13D73F1B9AA3F9C0C3AC0D71D0175187 /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F694550EB70903F2284F3EBBE04B8E9 /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 13E5150C2B81231879A8740C66D0F63D /* RCTJSScriptLoaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 64F83F66DCCD6256DEE11988E3EADB11 /* RCTJSScriptLoaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13FC85D9EA8D2FB6636935AF3B80C701 /* TOCropView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DB6C7D6E115FC52ECED1026C673AD3A /* TOCropView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 141CDDB9199118307A9E41416CBD847F /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 2420C687E305DFC74BEF6A8AB892BC01 /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 142625F73BF34BDE9BC8170D69917A72 /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B4A31BDDD4A0A956355E9AE13560C02 /* RCTShadowView+Layout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1443544E4ED78F9E2E9AF56A8DC2BD60 /* EXVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = A8235E32E6D0D30643155F9C2C6E2183 /* EXVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 144E1EF9CC157B0C5CE2335286425B23 /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = DABB3CFAC09E1EBF9B45CD371D8F0411 /* RCTHTTPRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 145A361BB0B2257288DEA70D785630A3 /* BugsnagUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 575F76368DC8C6F29C0A90086379CC3A /* BugsnagUser.m */; }; - 147402A03E95885366AA129ED90687E2 /* PackedSyncPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 915A7157FB89341848EA3CD577FD6C95 /* PackedSyncPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1490D5EBA637274976D8792419FEBD10 /* Observables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AE90C8B5FF1EB890795F8EFBBE3B16F2 /* Observables.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 14A8DD0D91D85DB934D8346627200407 /* FIRCLSUnwind_arch.h in Headers */ = {isa = PBXBuildFile; fileRef = A81308D786A9569FA6C94767535A684F /* FIRCLSUnwind_arch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14AA90CBA8C91F49826B4921D455222C /* FIRCLSFABHost.m in Sources */ = {isa = PBXBuildFile; fileRef = CE52DDDD28C1BCF00DA998C465092169 /* FIRCLSFABHost.m */; }; - 14F281D6536469ACB45BD441C238638A /* react-native-jitsi-meet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E54E06E04C498E5F5E737A263756BCF3 /* react-native-jitsi-meet-dummy.m */; }; - 150EF86CF0788F5503DEC19015BA32D6 /* BSG_KSObjC.c in Sources */ = {isa = PBXBuildFile; fileRef = 4129090DE76D1CBEFAACA23CC3C75113 /* BSG_KSObjC.c */; }; - 152169019B52A814AC140BD685ED38EB /* CodedInputData.h in Headers */ = {isa = PBXBuildFile; fileRef = 2430CFEC73944B4E6CBACE3570B2F700 /* CodedInputData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 153F9562CAD715E3FCC5F30672333EED /* UIImage+ExtendedCacheData.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EEC082619F0F996306EE06C9EE41BD4 /* UIImage+ExtendedCacheData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15465C101062B9B800B3C7E571770C9B /* dynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 05EB11B4088E4CA6D0CB872253BCFCCF /* dynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1565B069153D044DC6107206779250B2 /* FutureSplitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F484593EFF29DBA96F4D324F71F0098 /* FutureSplitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1580EA139BD0A1FD5CC08F6CD341B67E /* OpenSSLThreading.h in Headers */ = {isa = PBXBuildFile; fileRef = 37920939AB5D980EE983073A8D803CDA /* OpenSSLThreading.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15896D76FDC427E83052344D7EA9934F /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = CD9430423AFF44F6C793267B68DD5C2B /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 159E9F9D872EC2BF11D6A3673D09E290 /* MapUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 285AC2398EBE625A8D9A4F1277BBAADE /* MapUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1606D2EFBB05FD94E3B41AFCD5C0EEDC /* KeyValueHolder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 32D640516510CD6D98C1762D93D29598 /* KeyValueHolder.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + 1048ECC158B691331C5D792EB0D90734 /* YogaKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D6055979B22944E1EA738BA0EF95ABB /* YogaKit-dummy.m */; }; + 104BD56C69E46C92CED55268081D3BCE /* FutureDAG.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D8BCB33436BE48FAD4C6E8DD4A9C0C6 /* FutureDAG.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 104F9EF0ED66D535CE89BC7F80EB01C1 /* FrameFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = 950A7E73159E8A8BE072290647F86D8C /* FrameFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1065FB0A746A628EAB50F5C2F33DAFDC /* RangeCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 38C5A3D20CC6919B029171559FD2EDEB /* RangeCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1088988558EC0A36DB60F8F23FFF1BB2 /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = B3DCE9A7714DB904FBF656639EC14D50 /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10984B4E10D608B72B31D7E8925F75E9 /* nanopb-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0510A61DB27979267FAF3006A1A0C607 /* nanopb-dummy.m */; }; + 10A2E9D8B1191C197E191DA127F184AE /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = ABC0FE0AC4418ABB1EABFD7ED37E3D6F /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10D758BBD9D41BC838C1D52EB7667CE4 /* LifoSem.h in Headers */ = {isa = PBXBuildFile; fileRef = DEB90D2F0F706C27B95CF613DC87C589 /* LifoSem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11016D83FDA992323281FA44C39B2C0A /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C2EDAD5ABAACBC7C7EDE94447778269 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11231378DFABBFD74020590AA4BFDFDF /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D404758C9F5D8AB79A1DF5B3E7D2E32 /* RNSScreenStackHeaderConfig.m */; }; + 114F4718FDDDBFD9FD544656F5E57C21 /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = 27E7AC1CF68C839CBE82198DC24EFFB0 /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1154566AF79CF1B06B936239C6E36FD4 /* ReentrantAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 6533957012F837CCA5A902610A989D73 /* ReentrantAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 115EFCFD35A75A5E936E522290FAAD1A /* RCTImageView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7887E907B8FD1216406FF6C50AD5A66F /* RCTImageView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 1182339CF6F392E970580632952143BC /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = E884679A003053FDD31145859496BA59 /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 11BB8F5AF8FE15F95E28A4121695BF90 /* ScheduledFrameTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A0DE5C69F4A14E3A590C7453E23FDAD /* ScheduledFrameTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11BD448B800EFA8D829DFFF520EC4DAD /* DiscriminatedPtrDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A8DBA4F20110FCD2B5510ADC12462F8 /* DiscriminatedPtrDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11C23AEF2F38006EC578194CFBFF805B /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E60B63962F0015EBE01DA39997A2EC56 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11CB25300FA0546FC9825C2542B14EB9 /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F9676C4A5E6C9AE62620BAF6A929F33 /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11D675AEE1B6499C38A71F9837ADE553 /* SDAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EB3BCD632748D1750199C21F0F1FFF8 /* SDAnimatedImage.m */; }; + 11D7CFEEC5EE5E2EC2DB4FE9B96FF92F /* FIRCLSApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = A99D740C046DC693B8C279E9906F5ED3 /* FIRCLSApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11F37E96B1F528A8521E2DEAA8F5CFD1 /* AtomicIntrusiveLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E6BB66DD78A86120B879D7FAFC4D31C /* AtomicIntrusiveLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11FBC5BAA3BD1ED52108D9962D3AACD9 /* SDImageCacheDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 612C955AED499AA9C055FF8D5FDD1640 /* SDImageCacheDefine.m */; }; + 121897906ACB87FDAEFB104BC38BC0FE /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F53199A8BA2FDC86956E4B0A37BDC5C /* RCTSpringAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 1233C519B19E5A57FD2DA9ABDEBFB400 /* Replaceable.h in Headers */ = {isa = PBXBuildFile; fileRef = 53418337E874FD7F99613A3D213BEA32 /* Replaceable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12500EB17F731C4F4AC159C487E79F66 /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F9C5B792F5BED323EE2A3FD36FAE2E44 /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1269D4C0ED48C68E928D7F77536B0416 /* RNCSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 00669D5EABDCDD0B6F93F1605C253F1C /* RNCSafeAreaViewManager.m */; }; + 126B230C97A33619996E23DB8D590DCF /* OpenSSLLockTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C417B868FBE646E1842489AC453BE29 /* OpenSSLLockTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 127B5D7A8E53E23D7AC6676E475E9C65 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 218686AD810DEA476DDD6BF4C3AFEBFE /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1297EBA70554372883595F79E1663C02 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C0F3BA7F568A29FDD4CE4A27DD46EF52 /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12AB36FFDAF2ACC6F5AC654C157335B1 /* SanitizeLeak.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EB546ADA24193FABD659F8D647F5A17 /* SanitizeLeak.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12C835F126FBB52066DD4CADEB804178 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = E99B73487DA7D10636D3E972B48C58CC /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12CC3A8B57436CFE77772345EA6C6851 /* BSG_KSSystemInfoC.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E82C6B85AA6A1A43C7EA0B9C5B0DBA1 /* BSG_KSSystemInfoC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12D4E6E233529E574209605F3F1B6187 /* FIRInstallationsStoredAuthToken.m in Sources */ = {isa = PBXBuildFile; fileRef = C2A38FCFC0C7CBF5FB62C446C28158CD /* FIRInstallationsStoredAuthToken.m */; }; + 12D8142AAF65EE8A115784DB981CBA55 /* KeyCommands-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DCEA8F941CDD15EB2069935B316A55BB /* KeyCommands-dummy.m */; }; + 12DC73C66B5673AC2354F73B39215E13 /* Future.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 839253E53A9EB87E2EA39F80D36577BB /* Future.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 12EB6C30173AE1FE23E81096A1843A76 /* RCTDevLoadingViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DF9154B625CDF64054C782A8A018631 /* RCTDevLoadingViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1338A8EA0E032F70A0D1A3C362C91AFC /* Parallel-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E7AC2F842CF15F2E25C14CED3929FF8 /* Parallel-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 134261A7093D03CEB9C7E7A6C544F6A4 /* Lazy.h in Headers */ = {isa = PBXBuildFile; fileRef = A78FF933AD4698C6020BBB8A63C66E0A /* Lazy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1347A606F2FFC757B47E7BB520B989AB /* BugsnagClient.h in Headers */ = {isa = PBXBuildFile; fileRef = F14F1528780DEA27C1649BEE79620E7E /* BugsnagClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 134B39C8B0582CDFC9643B5EA6618A35 /* AtomicSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = ED47FD185B8AA82F02D6F845DC61469F /* AtomicSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 134C462F5E3E91AB6424CDE8FE25D759 /* AtomicReadMostlyMainPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 33A01B20A0E6F66087CEA56A381AD053 /* AtomicReadMostlyMainPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1356281DF6E2E54C8DD966A31CCCC430 /* Base.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 3B16F42AC62B1A9A9AE57DE532764A2F /* Base.lproj */; }; + 13567409C076ABF0000D237F64B0592C /* BSGAppHangDetector.h in Headers */ = {isa = PBXBuildFile; fileRef = B41E122A072DAC1D36112A10BA073686 /* BSGAppHangDetector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 136D5A6A4A59F5D8C66443C14D2C1EEA /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = FCB95C6F1EA0545E85DE1112C478B3C7 /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1372E77F2D9C1B6E7E8A31D47D360AA9 /* Chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = 0846660998DB5993367CE75C3BE71D85 /* Chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1392EFE34F5351584A0BFC54B6E9B122 /* Hazptr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 09C34605C950C91E8CCCD2F4AEDB7101 /* Hazptr.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 13955229B8A946EEFEF1D5D623011D34 /* Bugsnag.m in Sources */ = {isa = PBXBuildFile; fileRef = B7358C94276CCEC1B4AE7E9A1A8E374F /* Bugsnag.m */; }; + 13BC94F0ACAA7972E91589EB80D2CEC3 /* RCTConvert+RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = CBCA6480660BBE935E0D88687BB059A0 /* RCTConvert+RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 13C7BD20D3113864BABE20B2F99D7BAF /* FIRCLSDownloadAndSaveSettingsOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B66C21CAE7DE77D9BAA440A406B201D /* FIRCLSDownloadAndSaveSettingsOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 13CEB1B34518BF11E92D2DDDC9A7BA6B /* BSG_KSCrashReportWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 0539C95CC07C94AB1B181AEADF6BE8F3 /* BSG_KSCrashReportWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 13E16B44E63706FF0E5C674809061546 /* json_pointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B899CF40EB34555A58F17D2D7E0A951 /* json_pointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 13E1A2D5F0A75E3420CD568358A24BC5 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CC6D4C630EB514AF39E21E6867D5917F /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 13EB0662E44AF9A03E5F5C99C6311263 /* common_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C8840FC1E09D950CB658115B4791F05 /* common_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 13EE8936994DA886A78F3DDB94CE6158 /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8698DF0DE08A137A8C816089106F8DA6 /* RCTCxxBridge.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1443544E4ED78F9E2E9AF56A8DC2BD60 /* EXVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B377F6105317F97F4A000A3DDB28B5 /* EXVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14449585CAC8CBF314F07B4D5A137DE3 /* SDWebImageWebPCoder-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FC882B53AD9232AB35FE1978D55A730F /* SDWebImageWebPCoder-dummy.m */; }; + 1446306986CDEAE5C94C1CFE4C38954B /* JemallocNodumpAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = C9FA6C28A33D0F7D55E824B7E43BB184 /* JemallocNodumpAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 144D114A7DC1DE69000B32118B0A96E6 /* BitUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED7E10E5234C551A746021EEC0D7E11 /* BitUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 145E5C9889C81DC42A6F91C853150B31 /* FrameTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = F338801AAA68464A8DC5F21FC676D9B0 /* FrameTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 146120BDF25A741ACB36FBB3F7D423B7 /* AsyncSocketException.h in Headers */ = {isa = PBXBuildFile; fileRef = 3179E362EF619F351025752F94B9DB5B /* AsyncSocketException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 146446DE8FDB7D752B6D05DE8AC1F4FE /* FBLPromise+Recover.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B283E3E1AF9FE53C336B499AB040D8C /* FBLPromise+Recover.m */; }; + 14768B0E04F9D20B36A81C8053DE7593 /* filters_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = FA3D6C41645AC0376301D491D6A72F1B /* filters_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 14856DAD4A55594243BC23FA9EF84730 /* InspectorState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8D4C7E239FF2B59CAAB77967C86A9E05 /* InspectorState.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 14D462BC8D521629E0E1D310C7DAB77F /* Bugsnag.h in Headers */ = {isa = PBXBuildFile; fileRef = D1261855BFFA8311D0C7C5B1019EBC88 /* Bugsnag.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14F281D6536469ACB45BD441C238638A /* react-native-jitsi-meet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 957BDDA4643CD66E7752B7C7F1E09ECC /* react-native-jitsi-meet-dummy.m */; }; + 1530C2CF66266CCC6E80FC67BEE8A927 /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BB43EAEC8B9375884DB2ADF6A88233BE /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15338B99711412BD96A698765E0B1321 /* RCTConvert+FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = A00C340A4B1A226F54946F261788FB14 /* RCTConvert+FIROptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 153A5B732952E7C63365C3CAFFF4F6E5 /* RCTNetworkPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A7CE26C0CA1D4575095C3AD73588D7B /* RCTNetworkPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15566368B07C8FF1757B356B83890F50 /* VirtualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = CC10DEE2E7D3DEC467AC54EDE7E1CDED /* VirtualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 156F1DA1AE62E86B8D961301962F189A /* Iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 39D1EEAFC914D6FEA74E28CDC4075CB6 /* Iterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15896D76FDC427E83052344D7EA9934F /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = FBCB658A9A1C862C5CC585CCE43230B6 /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15912E508F345264F8FDFCF99943287C /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = 09548D9C5FD0A5969D3B8EF8CA6B4A54 /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 15A3920A9F1E30B24992816F1CA30068 /* FIRCLSURLSessionUploadTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A29B3E4A16627EEEB36AC28A8C68324 /* FIRCLSURLSessionUploadTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15A8791056730A9BB4BA1A07699A6343 /* FIRInstallationsErrorUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 416D359A4FC7BB38FDA1EF50B2C9654C /* FIRInstallationsErrorUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15CFAD48298CA678AEDA3667952DED21 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = E213DA801612E3BBF9E1C0B2821BD9CA /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15FB394A4C9902611160F1F536177CC7 /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = FAC851118E62DB911AC0EB77960EE97A /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 16007FC7639A9F54CCC0A44512716282 /* Codel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 293C236F257F950E2F2BF615684CE878 /* Codel.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 160F270DC385E9C00587FB20ADE2E7BF /* FlipperCertificateProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = D18D8EE86A6247AEC17789C49CB93D6D /* FlipperCertificateProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16156898E939BF4227EE2E7E0168ED8F /* FIRCrashlytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D62A205D7B6D909481AF0182C083272 /* FIRCrashlytics.m */; }; - 163276C5BA03BFCDFAEF23DBB95DD85A /* iocp-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 095F9DC78A02A5B297431EB32A49075F /* iocp-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16638CFEBFCF81BB884E5140AF782F42 /* RNCSafeAreaViewEdges.h in Headers */ = {isa = PBXBuildFile; fileRef = A9E45A7511D934BF04595250F5659161 /* RNCSafeAreaViewEdges.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 166783C3D585CED3AA4C71A179DD95B9 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 354708D78F468148EEEE76491942439B /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 1650CE838AC29A642C71D87CF42362F5 /* FIRCLSApplication.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B03784A0DB6018C0A8088E56A9C06FB /* FIRCLSApplication.m */; }; + 1655530CE8102BC2892CABC9A306D4BF /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6AE76AE1AFE4CFEA4DBE648484A0B5B0 /* TurboModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 16638CFEBFCF81BB884E5140AF782F42 /* RNCSafeAreaViewEdges.h in Headers */ = {isa = PBXBuildFile; fileRef = EE7B1FD6B52A6B8F1A82A3DAA4B1FBA0 /* RNCSafeAreaViewEdges.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1672C114754B6CAAC3BC69A31C9525AA /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = E2775552BE0BE024476C10F95F7A12A2 /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 1673F034CA68F7606F63648763284801 /* FBLPromise+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = 98B3C00ED1A48B9AFDFA6A37D768C053 /* FBLPromise+Testing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 167F60DF201EAB0EC7ECECFB82E1FA09 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FE5ED29CEF5FAFC8F13E402F3E4412C /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1691F850D2ACDB7C3BADD384F07AA42B /* SDImageGraphics.h in Headers */ = {isa = PBXBuildFile; fileRef = B55ED6D43E31453B520A2C98A7BF77CC /* SDImageGraphics.h */; settings = {ATTRIBUTES = (Project, ); }; }; 169CB94A8FAE1994D99A6988D9B511FA /* SonarKitNetworkPlugin+CPPInitialization.h in Headers */ = {isa = PBXBuildFile; fileRef = D2322A3A37A78CF82ABE28C37D8CACA5 /* SonarKitNetworkPlugin+CPPInitialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 169F61231A6051DCB48D912A68945F47 /* GULKeychainStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = E7D565D7D6C306053C2BDFCF2E18FB85 /* GULKeychainStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 169FF1C3989DA62B55580EBBAFA9F872 /* BSG_KSMach_Arm64.c in Sources */ = {isa = PBXBuildFile; fileRef = C03E3ABE77F72388E1A5BC90DD96108C /* BSG_KSMach_Arm64.c */; }; - 16C45A0312F58653D6EBCA31F7EB19F0 /* BSG_KSString.h in Headers */ = {isa = PBXBuildFile; fileRef = 776E5E49840078C2F45821AFA4A09A05 /* BSG_KSString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16D645AE77D50E1A4962B8053282DACA /* UIImage+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 635ABD2D0367C7A831A83C0C4FD12CF2 /* UIImage+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 16CA9E974ECC97F08D260DFC96D1EB65 /* Unit.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C29BD3BD584BB49CE36715D9D1254BD /* Unit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 16CE118294D346BACF36CDEAB1285509 /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D570269BE6A7372A8F825DF7468EFFD9 /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 16D6AF7A753D6159FAAFB4F548EE630E /* SKDispatchQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = BED0871489A485AE4BFE22FE7FBC108E /* SKDispatchQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16D6C850B6B1D4DC4B6CAE86FE035383 /* F14Map-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 57296D14B37F4B594C34FDEC9A63E717 /* F14Map-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1707EB344AB7A8595690A1CB1646467C /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 83F4BA4B5A456BDCFC98937D539B9D13 /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 170AB88FAD0F4C61B341ACCDE34EF30D /* react-native-blur-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 607E59673F2126D78532D061EB6CDDC6 /* react-native-blur-dummy.m */; }; - 17111F52803E5F9C66995A52EFAFC490 /* log-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = C4D0A9D298494CD59E36A2F6D0BA0F3A /* log-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17172BA83412F990A66E82F33D2DFC2E /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = C96E5440EBAA0152AF3EC9344D405D96 /* RNDeviceInfo.m */; }; - 1721261755CCF7180E95FADF717E8F95 /* BugsnagLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = D3D7448B3740B1272A823C4768266D7F /* BugsnagLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 173B124AF455F287C17A73A18BF838B1 /* ThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D2D9FC5046BFD665D655F0ECFA346B84 /* ThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 17424544A674FD7632997CF393933D47 /* RNCNetInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D283985C085552CDF47FA81D3178BE6 /* RNCNetInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 174CE79CBC127FF8CC43C11C9D7134E2 /* BugsnagSessionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 5645C0927BAD2436C33746C8ABCF0237 /* BugsnagSessionTracker.m */; }; - 17549BBECB7D90635E5D36E9F5BE8B1D /* common_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C8840FC1E09D950CB658115B4791F05 /* common_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17565577C06ED367E3B9D9D5DADF693D /* FingerprintPolynomial.h in Headers */ = {isa = PBXBuildFile; fileRef = 93F5D0BEA9EEDC395520623630745A92 /* FingerprintPolynomial.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1702671AD26938F98625960823F9ED77 /* StringKeyedUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 3737F11E4FA8A02C2FB84B43465555B1 /* StringKeyedUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 170AB88FAD0F4C61B341ACCDE34EF30D /* react-native-blur-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 02DA98992F84389AAB8E5B6036D0F305 /* react-native-blur-dummy.m */; }; + 17155D1A44E60966045927004E729A9D /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 37BC4DD8E2155A8B4DB3B8EB9AB6022C /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17172BA83412F990A66E82F33D2DFC2E /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C12747050F11EA2EA2A16FFF839DC61 /* RNDeviceInfo.m */; }; + 171B547454AA62627C47E6CFADF298B3 /* Merge.h in Headers */ = {isa = PBXBuildFile; fileRef = 0263F9C5636F7B48EF2C7E0CE750C7E8 /* Merge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 172889FF5706CEC02CCA7B1586449BD3 /* FIRCLSMachOSlice.h in Headers */ = {isa = PBXBuildFile; fileRef = F0AAE5E8D832ABA019BCFEACD02E56C8 /* FIRCLSMachOSlice.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17424544A674FD7632997CF393933D47 /* RNCNetInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 7782E390EB5A04EF25130C2A2A8D343F /* RNCNetInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 174E670016BD2714AE0B8268DF4E2814 /* SharedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF20904EF4194014012A59328286CE8D /* SharedMutex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 1767480F3E2D5657F718A7C093918179 /* SingletonThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = B88B9FC40F2A4122608EDB5E15FAF6AE /* SingletonThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 17683473E0FF2B42CCCF9FAB9E17557C /* FlipperState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 97B8EA718F1DDCEEF99ACC9109F2026F /* FlipperState.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - 176D48DD0F5CAF57E79CEA9B5330852D /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F202CEE75EAE78ED24C2B9892843DBE9 /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17792FA021A737F2A2CA03F1FAE05138 /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 82391B90CCEF95B447654F7B2458083C /* RCTSwitchManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1780389C7D5C409CC475ECCD995D3C46 /* ChecksumDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = CF77D25B62CE45B31D07F75CB0D5E5D5 /* ChecksumDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17841417263BB19547CE11E028BE5168 /* Color+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 94B5C3F90AB88ABD239EBCA2880336B6 /* Color+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 178C3CCC7AF9312D5F66D7DE5161C6E5 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = ACF973B189198F2CB15242EDF1E8A725 /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 179AC0C613BF4E4496C979691FFABAF9 /* RNFetchBlobNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 983F9DF2C050AFCA94F0CA8E2E8669DC /* RNFetchBlobNetwork.m */; }; - 17BE8B47989ABA1BBE9A69495F0386FB /* ManualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = BB96B5172CA1FDCD97A37E07C1F50BC1 /* ManualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17E84EACBC65BAF111B637160F4F63F5 /* huffman_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 75FE639F23AD7D3BB243E0AD9988E003 /* huffman_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 1802E91BC9150D64D80AD0E1D4461C9E /* FileUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C4D8DF159A741D57577CD8295426EBB /* FileUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17787FF8AE61CF0DF18B6E6CEE91FA72 /* ReadMostlySharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = F64742258C6EF3E1F9C88DADBD27295E /* ReadMostlySharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 178286487A3917A52ADDA30234B596A8 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = C6047C5622988513A77CF76E8BE0CD9F /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17841417263BB19547CE11E028BE5168 /* Color+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 003B854D5742DC9F339D3D3F25B09576 /* Color+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 178418AB535645E5813031843C43EDB3 /* TOCroppedImageAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EBC54B71950E3E9223F51E241B05BA5 /* TOCroppedImageAttributes.m */; }; + 179AC0C613BF4E4496C979691FFABAF9 /* RNFetchBlobNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B7051532588B84E1D86679E3355DAE6 /* RNFetchBlobNetwork.m */; }; + 179F1B7CF16289D0041B9FD46B6C9A33 /* Sse.h in Headers */ = {isa = PBXBuildFile; fileRef = FEEA2711BAA6C175F6373B87C94FEA5C /* Sse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17A9BA44633DF846494EA2883A19B344 /* FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BB10CDB95E75C6961B3BB55A463C9BF /* FIROptions.m */; }; + 17ABEC1193D0F191B283A63F529DD88D /* FormatArg.h in Headers */ = {isa = PBXBuildFile; fileRef = 14562566D7E2D611A5AEB28A2033E764 /* FormatArg.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17B62C34B0212E5F525DD2DC5CBB4046 /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 64F1C6DC263490A0830F3D93F7AEC22D /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 17BEA2B9B80399632CD7633B7F79F475 /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = BF55835DEC39E3DA93EFFAB8A7E93815 /* RCTCxxUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 17CD512E8F7DBE4D02B042069421E8BC /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 275B06783B4CBD407AB1C9906AB4FC35 /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17F234096E694DD37AE892CFCF12E038 /* SDMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B42749E166A6F32EB791289DDD896CB2 /* SDMemoryCache.m */; }; + 17F81717D18C092C2D664D60B5D17FEB /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 845121F58E60C9853B35C0969291ADC2 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17FA4798975CD4D76DFA2CA17240306E /* HazptrThrLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BDF2E19961193DD18051E70754886F2 /* HazptrThrLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 18035A2E53C70220C42E897E695D0DAB /* FlipperResponderImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 45AFBA3BB759B887B744ADC25D4DF6D7 /* FlipperResponderImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1806341AA2FAF9EB873BF4F5025B3EB6 /* FBLPromise+Race.m in Sources */ = {isa = PBXBuildFile; fileRef = AB72D0C7A9094E258164E9D11158FC88 /* FBLPromise+Race.m */; }; - 18086D09D0F33F432EEA9CC1D4F38A0B /* ConcurrentHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = ACCA7A6E3C142EF4A0ACFF27DA8855EE /* ConcurrentHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18171D36B11BF9CF64971BC86301463C /* BSG_KSCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = ED7A1F17BCAA8D766D00DBE4D833C822 /* BSG_KSCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 181917434DD652D2627462A078CF1AD3 /* FBLPromise+Validate.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DE4DBCF1EF8FB8026A41D493816EC57 /* FBLPromise+Validate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1837382325DA83842BDC2EC1FE5FF15B /* PolyDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = D10F12D128550E3DC072FBFC7CAF85D8 /* PolyDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 184605255BC66C0B8670982B728C49A5 /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = FA5E26E72716FB2C14E4628E317D45D2 /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1858D59BC7A8FC067C5F36ADFC1FA91D /* AsyncTimeout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 02D341EE62165381DC8B938DD706B0F0 /* AsyncTimeout.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 185BAFEAEFCC8C0BCC069B57C55042F2 /* openssl_md5_dgst.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C482D8D7D2504F96998F7712D5357600 /* openssl_md5_dgst.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - 1876A5AC61A3F32DBA108BAA19536961 /* IPAddressV4.h in Headers */ = {isa = PBXBuildFile; fileRef = 02C991DF0D290846DE19F8CA80AD4354 /* IPAddressV4.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1892CDC9478E92357B69DD1505C21C72 /* EnvUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = E6E9C7C5B109498EC681F09D923E5C93 /* EnvUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18991DF740DEBB3FB715246FA76FCE65 /* IOVec.h in Headers */ = {isa = PBXBuildFile; fileRef = EC8909AA3E1DF660755798850979DAAF /* IOVec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 189A38D0828F5ABA3F69404C9683E91A /* cost_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = DA6EA58A70A87346A369EECF66BD4BC8 /* cost_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 18ADE7806255BA0087D7EF5FE11A9F34 /* REAValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 8ADBF4015F18DAC6EFEB1C77982055D7 /* REAValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18BB11E87ADBBBFAD61E80195A60466E /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 77D46E0618613F508E55962FFBD13DFE /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18BD7D491E1B2485FD6E317F4915A8EE /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B5DDF99B9B8A7E45B951E939DAB22B0 /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18DE7ED6AB2EDC7D2F15A21D18FD9311 /* SDImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = E5FE7116DCC620D7CF0E83B589FADB2C /* SDImageCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18DF15D9F01D45A91601C7E4A2863EFA /* EventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 742DFD3C79A95BFA465F215781AFD8CD /* EventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18F2BC2B02BFCF06EDEA2C780DAD954B /* GDTCOREventTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = DA1A7C7065BBB16BAB98F0BA2DBDF640 /* GDTCOREventTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1911AF61F37120F1CE9123441B54FF70 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B40F1F64B26A5BC6C96BF54AB2B955BA /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 192AF3EF01BE8F98E359032B05B33E1D /* small_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = D36ACE68BB8264C4141B635EA0BD695D /* small_vector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19318B20CF5DFE527CF77A58B2AB233B /* VibrancyViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 57C4CE6F525A7E042FC0D6770E33DD76 /* VibrancyViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 193300BD98F56814D7B2F6B06D4F6A00 /* SDFileAttributeHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 55C2494C1C2BAC91A84EA92BDE1AA6A9 /* SDFileAttributeHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 195FAEBBB4CE1EAB1EB601AD2E42E9AA /* FIRConfigurationInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7016FEDF15804B202D40011AFA46C7A1 /* FIRConfigurationInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19982F0C3F2A178D0B54DD3FE1E72FA0 /* BitIteratorDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = B910507E6F3163603403C8E93367A32B /* BitIteratorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 182098CB0D0FEC18AF86F463EF9378F0 /* FIRCLSFileManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 59A422662B4C7E84503A2F4A62B082F6 /* FIRCLSFileManager.m */; }; + 1828B92ABC2D0B980F416A1A705DD84B /* IOThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C6F10F55828C306F9087EA3BE6FFA76 /* IOThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 184A2738957445716377307432FFB525 /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6D15A2BDD2DD1DDE07F55DA3ED1F6D2A /* JSCExecutorFactory.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 184B7378A165D30CF4D897FC088B6A3B /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = AFA925ABF9B55E902B2FC9DB241E3192 /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1876B071407BDA1BC8DC4A9D72D53653 /* F14Policy.h in Headers */ = {isa = PBXBuildFile; fileRef = EAF20ABA35CE7DAC773C403F7BD7C4F4 /* F14Policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18975E03D53D1621B2A98B40A41F173E /* RCTLinkingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = E4AC6DA50FDB54B47545655896A80D4E /* RCTLinkingManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 18AA5C3668BDE6115B6B0FBDE761D7AE /* FIRInstallationsLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = E240658062D7BD715785CFECCEAF544C /* FIRInstallationsLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18ADE7806255BA0087D7EF5FE11A9F34 /* REAValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 82ED9F1782E3FD8F7E0CB9DA88B7D1C7 /* REAValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18BB11E87ADBBBFAD61E80195A60466E /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2995DF92AA3FBAEA5B1D8A964592AFC5 /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18CAE40387B841447FF92D7A5DE89369 /* rescaler_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 69E9EBCDB1ECAB7A20C2934E5487BCD8 /* rescaler_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18FEE97804D02EBF8548F403287A8E13 /* filters_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 70F794C19EB963A9D7CFF9111E434BEC /* filters_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 1902AC52CCDA099D0C77B2C822170BF0 /* SDImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CA2B960B9E1731D599484C0CE3BA035 /* SDImageGIFCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 191381381246BD51F53D82A3FAC983BB /* FIRCLSHost.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0DB699138E7ADD7B50FBB90AF68DDE /* FIRCLSHost.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 19140B66C17B626ACD9B1344DFC89002 /* evutil_rand.c in Sources */ = {isa = PBXBuildFile; fileRef = 0D9C23B493FEC20AFFD1BE25C3AE1594 /* evutil_rand.c */; }; + 1920FCE36808E9EF6B045689ED3E1F8A /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = ACF202B61D194289B0E43EA1932CB5ED /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1925C8BD802F4AEFD79E05F9B89015CD /* pb_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 2943A07F6C1324D10B05C1B00DB35875 /* pb_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 19318B20CF5DFE527CF77A58B2AB233B /* VibrancyViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B1B5F8F61C6845AF170F2EED2DAE8326 /* VibrancyViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 195934DEE449B865C196D000ED30C1AD /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = 97D8DC1607DCE53508DE8A2DF929757A /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 19600F12693B457DBCED7262CE692645 /* ThreadedExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01742674828B7DB5C4115878466F5134 /* ThreadedExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 1980AA2070B5D05EE9D82CEA0657A228 /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DA06A75A3E5419934A4FD58166B2332 /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 199D7DAAC28C6E00E2EB1928E4FB7E28 /* SDImageLoadersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D4E8533611C40EE3FCB6EF0597A4181F /* SDImageLoadersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 19A604CDD4BB3615C930FD458FB317C7 /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = E73576E4DD271746E8BF6040262BEDEA /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 19A859C754D9D92295FCE3E2925B68AD /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = DFE622CE288FAC9F6429A57296A9C7DA /* RCTHTTPRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 19B01D769D300D03144CE77C90F0E24E /* BugsnagStateEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E588F486C0468F453CA323CCA1D6C38 /* BugsnagStateEvent.m */; }; + 19BC35952A4222CBA76BFCC510F8C8B4 /* ThreadedRepeatingFunctionRunner.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BBA1BDA6B1594B64653392F0F7A2436 /* ThreadedRepeatingFunctionRunner.h */; settings = {ATTRIBUTES = (Project, ); }; }; 19BD8B956040B5CDF9D802839ED1A248 /* FlipperKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F0E13337EC10017E2AFDE5434B762C18 /* FlipperKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19C2947EA20662CAA9A81432CA905ACA /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 913DE05DCA14C5FAE0C1183F8A19ECEA /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19DA084E18BB0C5EDB193E347F57CD33 /* HighlighterViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BBD2F56DE1B3C0CA7D05AD02C2F235B /* HighlighterViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 19BF795BEBEBDD5B3FEF1E20160B7B3D /* SafeAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 65C750CF4B56A5F3925533462CABEC7A /* SafeAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 19CE1C2C80280F075781649BA2D1586C /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 972A33A68333AB5F1158E2DD2B039E97 /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 19DA084E18BB0C5EDB193E347F57CD33 /* HighlighterViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B7BC91B67A80E1AB170A8F6E59819C61 /* HighlighterViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 19E023F7AFA0C82E80A9B8AA7C9E1BEB /* FlipperConnectionManagerImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = A278CD47BA9CBE42767AD48876A27A33 /* FlipperConnectionManagerImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19E92824F7E2B48E9F718D8D9F90520F /* FIRCLSReportManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DBBEB9B5D2777C75E5E5B2DAE9212D52 /* FIRCLSReportManager.m */; }; - 19EA7F9DD0B8F59F808046704A644F3A /* OpenSSLVersionFinder.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A633EE03144C9F1454429E6F8B2C160 /* OpenSSLVersionFinder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19F2492016F32C860899A593337A606D /* ScheduledFrameTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A0DE5C69F4A14E3A590C7453E23FDAD /* ScheduledFrameTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19FF5850B5024A1831E17EE4E3C3C899 /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 33223AB54F9BEA9408E23CDF0B9910C9 /* RCTScrollViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1A0B2EE0D75A7DA047F4AB80C931E627 /* Syslog.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B1A3A030C5391095F45FBDA62640A67 /* Syslog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A36F3EDA75A3631FB8E2A90A346B7EA /* openssl_opensslconf.h in Headers */ = {isa = PBXBuildFile; fileRef = B4F4D024338D6DCA927F3774F1084E88 /* openssl_opensslconf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A619BB8B9DF57D0228F68ACF757B75F /* RCTConvert+REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = B30C952062B51376C8A15B9E4FF935CF /* RCTConvert+REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A7084650196F539D6E727E73A037599 /* bit_reader_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 416EEA29D5AD9BC6C8A5E7C50814100B /* bit_reader_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A757FE689ECC2BB4C0DE8771DEDC1EB /* FIRErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DAEC44B30FD86D9A2F84B6E93CE9B64 /* FIRErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1AA5709A8583D61FA2FFE33A1CE85F6B /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 234F0314DE67CB4B3A250EF8DDD92405 /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1AB409368DE96B84F159C045C652405A /* RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 2598E914567D704F311E434B75315CB7 /* RNNotifications.m */; }; + 19EC8AE3BE8DF10A03B36ED6A32716E6 /* ClockGettimeWrappers.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E4879361D6DE644A9C5A10461131D73 /* ClockGettimeWrappers.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 19F8A3E15F562BDB3BE4EB669EC0865B /* Atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D4F5116A90608016B3C8971E284CBB8 /* Atomic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A1C8CC2FE5020E056D6C5B0BFCC0A26 /* backward_references_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 961AD9B86A4FFB2F74738BAF22D70B68 /* backward_references_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A39E8A5DB4B6AC65E3B4A71519D4A5A /* BugsnagSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 31F582B92EDB6EB3FBA239D9BC06A49B /* BugsnagSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A452B01BC619B891ADB3D961851437B /* FIRComponentContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 294353905D4A2AB06259E346B63186D5 /* FIRComponentContainer.m */; }; + 1A4832D88543410F232BC959FA8FF50E /* GDTCOREvent_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 981334D1B99AA550C5C38286FB70EB92 /* GDTCOREvent_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A52E5F79E28E019DE28EEDEE55E4C3E /* GULNetworkMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 765C7F6D692CD6A890EC5C076DD04165 /* GULNetworkMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A59BF25E00AC27F34D1FFE86F94DA63 /* SlowFingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E43413B26C98EF6028F572F7427F9E6 /* SlowFingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A59ECBBBF291915A95AF29FB03136B3 /* FIRCLSCodeMapping.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BC96ED503285A52E16D54ABA224AABF /* FIRCLSCodeMapping.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A619BB8B9DF57D0228F68ACF757B75F /* RCTConvert+REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E6FC010879F7EE8CDCA75EFA68919D7 /* RCTConvert+REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A7570D57693A5066C8BA5B8334C9665 /* EmitterFlowable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C85908CDB0ACD631B1B1E037E04BD63 /* EmitterFlowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A8BE41F96349EE0FF79E0AE076BBF15 /* RSocketRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D967740974DAB66D1FEA4D0A3D483511 /* RSocketRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 1A90D841D8FB2CEF9B86EE4730922635 /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F7DD3947C6404858F17C6C80EC228E4 /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A9EF9B5ECDDEE133878EB02EE10E08A /* BugsnagReactNativePlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BE066C60E8DFBD22751401C52C64631 /* BugsnagReactNativePlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1AAEA1214FD69F25379A238D485EAD22 /* SysTime.h in Headers */ = {isa = PBXBuildFile; fileRef = EC68D88BEDF536EA7336B88F76A1E0F8 /* SysTime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1AB409368DE96B84F159C045C652405A /* RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 84F81D9B45FDBD78B5ACB07C50EBCCB6 /* RNNotifications.m */; }; + 1ABBF71F4DFE8FF9E8C6D409691E1FE1 /* Shell.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00D5C969B704D8EC2C092FF7BFCCAA79 /* Shell.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 1AE4FDB8BF0CC461D5AA0E328D6F1566 /* BSG_KSCrashReportFields.h in Headers */ = {isa = PBXBuildFile; fileRef = 09980FBD264D2DD8D9054DC82F6EA5F5 /* BSG_KSCrashReportFields.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1AEAA393B0602568C6A83EFEBD5890DA /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C4440B36E277CE16DA33BC400C130CC /* RCTDiffClampAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 1AEF393F6F6443C05A46E4B847A56B15 /* FKPortForwardingCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 8352C4658640E252FE8BB25FCEDF2A0A /* FKPortForwardingCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1B00F3F2D8A4C7348ECF02BA20E123CA /* FlipperCppBridgingConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 5347884F300F09F9653A026F17BCD141 /* FlipperCppBridgingConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B17E8D5EF1C2F0C340F28C0E3EB7AD4 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 82455AFAA247F44EF2C7E74E2A84FBAC /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B19687A6CE3F746160F01A82EF1C561 /* GroupVarint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ADA91F9364E85FD662C943D0540B2363 /* GroupVarint.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 1B1DE47BBB33CC0516E1F6795B7BC720 /* ResumeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ED9DA0CE1A4AFD77FC0FFB024D143F70 /* ResumeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B207BCA1C8882C14D2E9ADED2598485 /* ProxyLockable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B61349BDE1BBD7581068301130AA7B8 /* ProxyLockable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B24D342FB783FF578452A96A304FE34 /* AsyncTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C418CFFC9F39E1A5FC204E52C134F4C /* AsyncTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B4934D79B50C3D2AAD539BDB58014BE /* FIRCLSFABAsyncOperation_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = C08376657BF0FFD85723248EA8D3C3D1 /* FIRCLSFABAsyncOperation_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B0A3A52DDBB21A37E4DB0E7E6665289 /* lossless_enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = A328A991453EF3EA707048259AEBC009 /* lossless_enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 1B34B01AD09173BBC5538C496B9146B5 /* MallocImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 12165C66AD4A3FAE0B695344667405C6 /* MallocImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B5250910A8378105768CC1505F2633E /* TypeInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 8664497135BCFA9897D91A8767C2B915 /* TypeInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1B5685DA79700779C2199E325FFB65EC /* SKStateUpdateCPPWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 493FC93BC275FAAD101E6DE53C3A6E29 /* SKStateUpdateCPPWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B6FA64F25F66C62030449AE6B90F051 /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 1552C077ACD09853FBB69E829A0ACB17 /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B74EEC1E1D0E465CB15A49BAE27F7F1 /* rescaler_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 4E464EDB507E574CC1C3824FD4BEF570 /* rescaler_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 1B7E45086741030F76FD355C8A706D3D /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B7EC11A8C0A5E64EF001007C760450B6 /* SDWebImageManager.m */; }; - 1B87F6FD6538D9DB41D566F1C5E82D89 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = 2535B9E06F9982A035BE9900CD2ACDDE /* RCTProfileTrampoline-arm64.S */; }; - 1B966B801EEB421750F04FFF774E354F /* RNCAppearanceProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 76BF8F438FA28DCCFBEBD0967D7762E3 /* RNCAppearanceProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1BA6F8501E04CC203524D4E58EEB0B9C /* BSGConnectivity.m in Sources */ = {isa = PBXBuildFile; fileRef = A57A73E6AB00DCA8C0ABA980BE56D3BB /* BSGConnectivity.m */; }; - 1BB9A61DCB5839594F13D0E27C8FA832 /* lossless_enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 1C1EE646B96355CEC7249BBC052C77EC /* lossless_enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 1BD213A81BD72A27DAD95549520CFA64 /* ScopedEventBaseThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 42E9A5F1D01E71AAEF7A1C0EE956D535 /* ScopedEventBaseThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 1C1ADB56F87D15803815E7185A907B0C /* Inspector.h in Headers */ = {isa = PBXBuildFile; fileRef = CB7B4B236EDBF83CAE1318D657ADDD3C /* Inspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C1B0F31633C386387B9FFC1702D1CC0 /* BSG_KSJSONCodec.c in Sources */ = {isa = PBXBuildFile; fileRef = A12F2DE1DDBC9445537ED768FBF095C9 /* BSG_KSJSONCodec.c */; }; - 1C249F36C1F06B758CE6BE05D73653EE /* MicroLock.h in Headers */ = {isa = PBXBuildFile; fileRef = B4FBBE4BE1E75B75A567276F3B442B94 /* MicroLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C26515EED65B95C1190B35FDAB7E02B /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = FAEAC6790B55B14CC72C300E4264BB43 /* UIImage+Resize.m */; }; - 1C26B7CA0FB0A461E7EDB9F2A2894700 /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 353DF073CC553032BE78A83B80FC753B /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C45D5C3AD1230C8E6CDD9A880C3DD17 /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 18932164C6B3C1F75CA390CF9F1D4F16 /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C5290715F7C3A94C84D6B115673F931 /* MemoryIdler.h in Headers */ = {isa = PBXBuildFile; fileRef = CD6D627770512A04521700EC63B07BE2 /* MemoryIdler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C63664FA2CEFCDD9576B64A028C95AF /* BSG_KSCrashSentry_CPPException.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D912204E55E4D99267763A4775EC975 /* BSG_KSCrashSentry_CPPException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C67D097B109BA9D021B3A10C83D015D /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D0B5D9A2C2A0FC990882F9357818AA7 /* SDWebImageCompat.m */; }; - 1C73A8A7D9290072A95C5D13B6F8FBAD /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = FA3B61A50C04962E80196BC37FB98A0E /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C80AA317F0AE6B253CA5F19D2CBD448 /* RCTNativeAnimatedTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = D4F8BA2A79E951302AFE29C342C85D9F /* RCTNativeAnimatedTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C83E9B25DE646A48382604E85598DA5 /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = F16E8A00A68196A9CE422DD73DF4B061 /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C870FAF6435B6617E1BD73CCA4429B4 /* EliasFanoCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FA223FDB03BD8D6326DE81D5DD9B6F2 /* EliasFanoCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C890B9C3708B7A6B147A402017E7DF5 /* dynamic-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = DC04B7B67B78CB967E161CCB71C613AE /* dynamic-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C8E5E0240BDB5B70666AB12265EACEC /* FIRAnalyticsConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AD8233600FFB546B71BAF0EBB79D22B /* FIRAnalyticsConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C8EC169B592E48D66A57DB786533C77 /* EXVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = DDBCFAA5E98675C9AD5056516FBA1DCE /* EXVideoView.m */; }; - 1C9648229965495DD76AA9D135C0EE96 /* Async.h in Headers */ = {isa = PBXBuildFile; fileRef = 3345BB29570C13C9BC107CEF66202103 /* Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1CA0A8E452C5D7878A41DC79A81C698E /* FBLPromise+Do.m in Sources */ = {isa = PBXBuildFile; fileRef = B0F4A1B84ED63749F8044921E15E45F5 /* FBLPromise+Do.m */; }; - 1CB449A770811FFAB1BE47B030F5D196 /* InlineExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = FA78E89356894AB05B1E6C451A83D8CB /* InlineExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1CB4ADB54D224D87E5991F2869113BE9 /* FIRCLSReportManager_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 17C0CD6ADA9BC193B0782803DC4943F7 /* FIRCLSReportManager_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1CBD1EE8A3498F7F6A41883B0FA4088D /* upsampling_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 959DD080ECCEA10F66B1BC358DD0AD32 /* upsampling_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 1CCB665019EE37D6B1D42610B4E2DF97 /* SDWebImageDownloaderResponseModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 281DE879623596E0556DFE46F612EF83 /* SDWebImageDownloaderResponseModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1CE99636E09A89FDEA13777A315C80DF /* SDmetamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = F0A4024A7743D4E8FC58B80F1A7A3CA9 /* SDmetamacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1CEC824D83F8C270FAA9E38AC825746B /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = 02164D00426ECD469441E2BF301F9366 /* UIImage+MemoryCacheCost.m */; }; - 1CEE1DE960BD8263AAD870A16053AB41 /* MallocImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = ED12C7802BB41CE6B9622FA5B3D33026 /* MallocImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D0C58DE986CE6CFF4E8F9BD88750379 /* DelayedDestruction.h in Headers */ = {isa = PBXBuildFile; fileRef = 8628666FA737EDC5296AE41BD832DECF /* DelayedDestruction.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D1B7C750E09166FB5A6A6E05C78858B /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B277106741CBB0E9DC8F0991A8506F0 /* RCTInterpolationAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 1D5C8E7B129FCC2F9E9C159A750FDAB5 /* RNConfigReader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 193197E3F1750B82A4A2D256C0450725 /* RNConfigReader-dummy.m */; }; - 1D6444E1A2B006AE9B0EFC54B7DCE6F5 /* AsyncSignalHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E55B796088A5C84D7AFE45AE1D13C2DC /* AsyncSignalHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D89BCE06C52E7607390939321044E27 /* RCTConvert+REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 65F5FB558C6BE50EC9471DC96E88DE1F /* RCTConvert+REATransition.m */; }; - 1DA509526C236D90AB574C6D33328091 /* AESCrypt.h in Headers */ = {isa = PBXBuildFile; fileRef = 8788C27754B696BDA8DD6600A957E14B /* AESCrypt.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DA88B80948BC352CB059DC0FDD447DC /* DrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 2632AD27AF35AE4D7B055CA92A3B1858 /* DrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DB88E39F519B1B19A0CFF53507025DA /* FIRCLSInternalReport.m in Sources */ = {isa = PBXBuildFile; fileRef = A3803A14867971EE2F7147E185238DC3 /* FIRCLSInternalReport.m */; }; - 1DCB1C8383A62D49B3FD1E256E273B19 /* FIRInstallationsErrorUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 07B23753CEF78E886235745063A4B131 /* FIRInstallationsErrorUtil.m */; }; - 1DE9DA03238DD3FD74B97616C05C2460 /* FIRConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = D6C5BB22211A7F56D8953B1A2AE24CEC /* FIRConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DFA73AE7AA2E82594DDAD45A913857E /* RSocketStats.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5C127F75FA6077FB8DAB2F87EFD5DC08 /* RSocketStats.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 1DFC34534A46877DFEDA098D230C6652 /* ARTCGFloatArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 3923DC048D6AC93BBF04AF619D5D1A8C /* ARTCGFloatArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E108C40F994DFEB2D37FB69DCB2CA7D /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = C7B025FD007B78D44180E76CEE1D3173 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E1456286C1D93DC2A848A173C6CA46E /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FE8133B0C25ADFC09E0B2934C23999D /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E14DFA4C04B8243FD9A55ECA73415AA /* FIRCLSURLBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = AAB6149E896399EC0424B0B9EE28140D /* FIRCLSURLBuilder.m */; }; - 1E191B681F527B1B39FFDEB503538464 /* FIRCLSNetworkClient.m in Sources */ = {isa = PBXBuildFile; fileRef = CF8644F271E44401C198A359C279E6A2 /* FIRCLSNetworkClient.m */; }; - 1E285F790E65BA60FF9100B55FFAEA57 /* ro.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 8A8E9CFBF687EC1E6D5F284EC2205B4D /* ro.lproj */; }; - 1E5DAD43ADFAC3E94B8241F7083D276F /* FIRAppAssociationRegistration.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F90B4D772589C134A9486E832D59BFB /* FIRAppAssociationRegistration.m */; }; - 1E6DBCF11AFFE8011E678C0E13DDFC5D /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 9377E2FB9CED876BBFEDBB223F080BD8 /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1E71463BA220F76AABE65F5136B1E1EF /* ARTContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = DE2532D8E1BF64E23FC5BBACE14E87F8 /* ARTContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E7B12DA8AC45A8AD4E54A7BBAAE26C4 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4156BBA7834D6C6E55D194C89C53915F /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E7DEB4C9EF4EDB1A9CE56FC20D9C25D /* ARTRadialGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = AC718217CFB0201506260E25809F4040 /* ARTRadialGradient.m */; }; - 1E82CAD3162B163379A6C726884E083A /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = 5882B340EDC0435EE5759E04FC4D9CA9 /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E8936F1461060667AC365D82A1A1BD5 /* F14Set.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DDD0E4D55A3F32EBF355204599D60A0 /* F14Set.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1EA00BB90A2416E6B517B59204229A53 /* EnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = DC1B78775E27A1FEAF951E8B70B046A7 /* EnvironmentUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1EB76B603E467B36F8AC80782F723A08 /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 28E6791CB338BCC501263524B29045DC /* json.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 1ED14B3689F135E72A87F630726C23D7 /* DeferFlowable.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C399D5AF94FACC5E5C007509E34ABC1 /* DeferFlowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1ED3A3DB18B0D7129F78B640C0F033FD /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = EF0A57993059CD6B449626FCAAD7CB58 /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1EEBFE345E42CDFEEE11E7EA199986A6 /* ConsumerBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 26F915F6B91658E6473DBAF385C33F60 /* ConsumerBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1EF23FA5CBF0EECAEBE6CD385D71F14A /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EA2B97AB9AFF644576D626D5157A989B /* React-RCTLinking-dummy.m */; }; - 1EFC70962B0FE2DA661C975CDF1D8CAB /* AsyncUDPServerSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = C384BD5C849992AA306DD4C7B352C41A /* AsyncUDPServerSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F12214A7A2A9C44C9270D58EB9B9084 /* ARTSurfaceView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E89F29E71CAEEC86A9612DEEA4D8DC5 /* ARTSurfaceView.m */; }; - 1F347B0B4E335CD866F153FF6624F433 /* firebasecore.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = F709182254F371DCB7FC9E4E5AD51402 /* firebasecore.nanopb.c */; }; - 1F429B266C685571083ED07FD862037C /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 79162227240B6786E43A59ACEA4B1F44 /* RCTPickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1F4F7FC01DAF8698D14B4D5577584DE5 /* Expected.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AE56CA7AC8987C48F156489C4059B75 /* Expected.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F727F297F3EDAF52CEEE3F3CB2830D2 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 942912A1EA0A7436F2FDD973903DF116 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F769B493BFFDEDBB7B7BC8B1BCB73B3 /* GDTCORTransport.m in Sources */ = {isa = PBXBuildFile; fileRef = 47AB360C660F2545750D62C057AECBF9 /* GDTCORTransport.m */; }; - 1F91056AB2E5BDE9FEF3F26B1103E5F6 /* react-native-background-timer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EB7BACB70711FEE33C63C4B99A0D7C6E /* react-native-background-timer-dummy.m */; }; - 1F97D978DD4C9A27431EDB39C99055E4 /* animi.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CD6F641BB6063F13EA12BA92620DE6E /* animi.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F99191F1EE292CA3DE5AC500667F702 /* DecoratedAsyncTransportWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = BFA4879CBA92A53717B01D68F383A73F /* DecoratedAsyncTransportWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1FC9AF0B18765520CEA9796DA1E546EA /* GLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 04D979379AC3B5C4CC390B73EEDE68C6 /* GLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1FD458B29A66B080EE5034B9A73EC850 /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C490134B6DF9A068D75DD687B061463C /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1FD863D6260E193FDCFE5FBD7335BDEC /* histogram_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D67E32F1621EB8851E0CC5B2C35BB15 /* histogram_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1FE65E81CAE0F2DE7DC263AABFDAC315 /* Invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = 393CE8EC718597E11A7CEECF30F7B927 /* Invoke.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1FE898BD82B2237F46BE09A378337081 /* GULKeychainStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = C8029B6FA3BDC64E572449C131DB4F9A /* GULKeychainStorage.m */; }; - 2009A74DD1E3E11450A39B7C6A851526 /* RCTDevLoadingViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = DB913D5A0F6724EBE0C9FB020E595E3F /* RCTDevLoadingViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2013F5326F318140ECCF7E5037DEBD3F /* cost_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = C297EEB29D530D2065D16CD01752FEB2 /* cost_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 2025241125FF98AC9800C7C1786781FE /* GDTCORUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F996B391DAE5F571B5F458C5A371768 /* GDTCORUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 202CD1E9F709F74D3D66FA9C3DACF84E /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 04644AA758CE84D0CBA62BFCA34EB7D9 /* de.lproj */; }; - 202DD68405D394E239842112D8F378CE /* UMErrorCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DEFEA67D02FA564721B80789FB77DFD /* UMErrorCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 204CC23D814BF60981D1BFC5562AC7B1 /* REANode.h in Headers */ = {isa = PBXBuildFile; fileRef = C27A27CBF104DBA4F618D595E00CDEB1 /* REANode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2059C762FF7431AA8970406CAB41153A /* REAJSCallNode.m in Sources */ = {isa = PBXBuildFile; fileRef = EA165F94CE279A9A67907B1CAF2847A0 /* REAJSCallNode.m */; }; - 205E735F64205C7D6E8A833AD61876B6 /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 28C3762D3397CC9F4A3AE546622E7715 /* FileUtil.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 2063EF47EFDB0525BF04E1FE20121825 /* F14Table.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C405EC7A77603ED777850B068C8117B /* F14Table.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2075809010054DD533C16D1030035500 /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = 743B26E20D8673229070367B13C805DB /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2088B036AE4C61A585EB38C8F94E5027 /* SDImageIOAnimatedCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B8A3FAEDB2F64DD6D6F17CD24CA370D /* SDImageIOAnimatedCoder.m */; }; - 208E565510BC1C0A80EED641950CD9BE /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = 181C97ECC59572541F253F5C42B03FD1 /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 208F337BF9071BC8A35C2DC9E3ADA0FC /* SpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = E9AB1651105F9583CE5F40B209236A82 /* SpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20971F3D8964971494BDCC53915E3B0A /* SynchronizedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = F0CB1544ADBADE695E5E2247DDC9EFF7 /* SynchronizedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20982025352DA30BC7CE7D65593F80F8 /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = 04CC4CF8166CF2871073943A661DC262 /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 209F115B9EA906EBDBFCE1C900C9EBC6 /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 64F1C6DC263490A0830F3D93F7AEC22D /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 20A7717BBB6E400E9B407132FE778A5C /* ARTShape.h in Headers */ = {isa = PBXBuildFile; fileRef = CA7DA89021CABC1A3CCE8AD5AEBD8BDA /* ARTShape.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20B88456A7904EF5916BFED1EAC3BC1B /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 103B5823E7A0D36680625CA1F503B01B /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20E81AF87B4573091F067D454837C1AF /* buffer_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = DB04AFD2052A8B45AA419361620B12A1 /* buffer_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 20E9B66BE5D3668CF3349AC8CA2209B3 /* AsyncGeneratorShim.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B42126EAF02047EADFC9E6162C406BC /* AsyncGeneratorShim.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20EA1F34C22699932D58FEF36A83F102 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C2BF6D7D29BA84505F3F81A66087F40 /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2102C33864914B12AB8BEAA21FFFF169 /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 18A89B3F6A55C38801D3BAAB8BFD0D9C /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2123782372A76ED2C3C54D140890CF06 /* RCTConvert+ART.h in Headers */ = {isa = PBXBuildFile; fileRef = 9782BA2C2185A904892BA6E666886CC7 /* RCTConvert+ART.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2132DFD0E025D1095CF4D6A5300CEA6D /* SDAsyncBlockOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = FD3B4717E08D79F7EEEE2083AA6BD770 /* SDAsyncBlockOperation.m */; }; - 217A26D8C56C4AF0239B548CD0D0737E /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D4FDF46C84B10890F329D83D59BD3CB /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 217CECD60FC703DA01443C9D2110E343 /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 62378A8F43173332A123B8CB04B4DA3C /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 217D3A3B59A769AF460CDC2DFF6502BA /* OpenSSLPtrTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A7AB775F20AF1DAAFE10B7A75707F6 /* OpenSSLPtrTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2186154575368A3C26EDAEA875CDE281 /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = A0551E48E92BD6576A199ED5EB441D53 /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 21A6C315B989ED87CCCEAD93B37E888E /* lossless_enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = D796A028626A993301936F75D47B1E5F /* lossless_enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 21A948891A53A7F15D008E5377F9D1E0 /* FIRCLSFABNetworkClient.m in Sources */ = {isa = PBXBuildFile; fileRef = ED865F1DE44468A0B0B652D71ED61413 /* FIRCLSFABNetworkClient.m */; }; - 21A9DACF8BC3ADCE745DF7FBB7401E1A /* SysMembarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A07399903C688EED824AF5CD4ED6843 /* SysMembarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21B4FE8D442D5B6A6FF02399D74F9C1A /* BugsnagApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 27050B5D12D0FB5C8520C9A4D51377CF /* BugsnagApiClient.m */; }; - 21DDDEAB46AFFD11A71279B07DCFE613 /* CodedInputDataCrypt_OSX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 55D8C288D400FF1755F9015056E5E34A /* CodedInputDataCrypt_OSX.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - 21E7FC377E96D87278BEDC0903328F22 /* CodedOutputData.h in Headers */ = {isa = PBXBuildFile; fileRef = 38E1632332F89B9EB75BFF0DB62BFA66 /* CodedOutputData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22171E3790BEB05671A3813EE544D9E7 /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = D7349198E27959B9FF48EA1F610E901F /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2229B836BCE066BCE8443CEAD075AB36 /* RNCSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = E1D098F88C42967C0D38044EBC4FFD5D /* RNCSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2239AD5C0EFEB52D63F39EB6D1A1B97A /* FIRCLSCompactUnwind.h in Headers */ = {isa = PBXBuildFile; fileRef = B97145061E4F7F28CDE503B069456A48 /* FIRCLSCompactUnwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 223E5C243CB6AD61779232605B1ECBC2 /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B2773FD64759289EFA4B48050EC0948 /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2241E383997D40C3AA29B1CC8A4F414A /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = 7407811B66DDD0110526BD7FEC370D4C /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 224A1953E3875F36646B8FB0D74B7CDB /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 143E389C23923EC6E2542B364C169BF0 /* UMModuleRegistry.m */; }; - 225CE077D507315DD848BEC2F3100F69 /* EventBaseBackendBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FF6856A70766A3EF1370F83A8EB1690C /* EventBaseBackendBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2261D32B67229FD0AEE9AD2599CA4651 /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 520A053EA65F2E76A25C5D074CD2562F /* React-Core-dummy.m */; }; - 226A21405BD15F1509AD1FFAFDE2D9FC /* Event.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CA4C13C6B5E00891719B5CBCDD2123D /* Event.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22835226D8EC17C8400811B91F52205E /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 27C22E18F4FEEECB7C921B89D1C16AF1 /* EventHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 22CB7EA56AA63997139897F5E57B7449 /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6CFDA273373426936C27E061A9BA16A2 /* dynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 22E00BC94995C8427647D458F59727A5 /* CallbackOStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 346C26C5FDF9D26B1BCE38D397689071 /* CallbackOStream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22E1D06C4A77C0F1F7DFBC536D00AC58 /* ARTRenderableManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 594B203FD15CA48E370EE4C54FAC957B /* ARTRenderableManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2300FD1051763DEC87ABAA44DA4C843E /* RNDateTimePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CB8CF1462BE255C10DFD0A04C4E38D2 /* RNDateTimePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 23107CD51E85F36D174BE09761E08392 /* RCTPbkdf2.h in Headers */ = {isa = PBXBuildFile; fileRef = 07AFA3DA47FBF615B703A60E2A97977B /* RCTPbkdf2.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 231566B6421695F51B2A82C46100A68A /* Enumerate.h in Headers */ = {isa = PBXBuildFile; fileRef = 92F409B54F566135765FA15FF2FD4B10 /* Enumerate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2333A71A79A955983484EE2BD894846C /* FBLPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = DA6C6CDB3F61B53988510109BBA0ABDB /* FBLPromise.m */; }; - 23340A2737910BD3C9B667F7C741BFE1 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = C1CAC101D574B1469EE2EDF35A0FB67B /* UIImage+MultiFormat.m */; }; - 2335D16DD99C5CCB7145356D9439A1ED /* SafeAreaManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 818CB0D5B66DB7CD5A9B03951812A7CF /* SafeAreaManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2358387C96D352D643818C4FD9A488BB /* AtomicIntrusiveLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AF2C1FE145FB923BB121653B852C92F /* AtomicIntrusiveLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 23587B85B626669925991587D263DE57 /* EXSessionUploadTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 69C92812257DBCADEEF2E62E4A7A8D68 /* EXSessionUploadTaskDelegate.m */; }; - 2373F29DD487A1F22F1167A925A31C9E /* pb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F763AD72B33D446728D68075D4A6AC7 /* pb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 23AA11E329051A43E0FF38BF249F8E3A /* F14Map.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F238380E1440E17738C994469B85113 /* F14Map.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 23B5BB578B129845B7DAD4F4560D776C /* dec_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = B46F8DE0AECDD9DFDBD2A2738BE7B127 /* dec_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 23B63806D9A476DC97D4110167D0DDEA /* RNCMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F7241F44EB4C0A9C5C998545C7CC74B /* RNCMaskedView.m */; }; - 23CD4E3889CD23CBD2323700C5FD69DC /* MemoryIdler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FED12E0BDD67E0F93E53BEFCF504D270 /* MemoryIdler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 23F880255FD99355C2934B672C938E94 /* RNFBCrashlytics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C5187DBFEB74E69B1C8D013C3DAC8884 /* RNFBCrashlytics-dummy.m */; }; - 240FC32361C410EF5F84BF6DEBE42548 /* ReactNativeART-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CF899EFB71F38AEE156A535F6F569AB /* ReactNativeART-dummy.m */; }; - 24239382EF3A48A670BF3A805AB7C0FC /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 691F68D1104C3DC9EC6978403FEACA7D /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24256D1F260DBFF4302E3D08DC0E99FA /* UIImage+ExtendedCacheData.m in Sources */ = {isa = PBXBuildFile; fileRef = AFBA0DC87250CE5452721227940656DE /* UIImage+ExtendedCacheData.m */; }; + 1B6D73AC966FDB7E917CF13DDA19E5CA /* Array.h in Headers */ = {isa = PBXBuildFile; fileRef = 311084FAB238D4B04EF72063D8B3C7DC /* Array.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B966B801EEB421750F04FFF774E354F /* RNCAppearanceProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 38DE4B91225B3BFBA01EE2221CA2B29E /* RNCAppearanceProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1BADA32F3E82507B22F7A966F8A4278D /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 07F8A416674D20EB4979BAF9EBF3D176 /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1BAFAD4E2C8D9BAB9C51AB5EA0ACD873 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = 677A0291688B635D3F8CBAEE82288760 /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1BB9DF24C3C74F8AB123E0C43DC8D3C2 /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = 229996EBA18541FD5A6EABDF119E951D /* RCTConvert+CoreLocation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1BD74BD6F353B5DF14065F07B357F5F9 /* ChannelResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 511E9E59D0ED620364C19CBDB853ABE6 /* ChannelResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 1C0D5DB4CB91116A6DEB3474D537120C /* BSG_KSObjC.c in Sources */ = {isa = PBXBuildFile; fileRef = 880C9C45607A70557E9BA69E0F44E00D /* BSG_KSObjC.c */; }; + 1C26515EED65B95C1190B35FDAB7E02B /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = 60EA4B570BE390DC3171F49D41731488 /* UIImage+Resize.m */; }; + 1C2B7BB5F971DDDF39FDE99579055823 /* BugsnagError.m in Sources */ = {isa = PBXBuildFile; fileRef = CEA3B35EB09CCF2BD8C1C215046FBDBC /* BugsnagError.m */; }; + 1C6496929ABD278E240091EABBA34A78 /* UnboundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 90C1BBCC13D38BBBE0B1EF10702BDF8A /* UnboundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1C7383BAA47CA9E13132413DF2BAA949 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FE5ED29CEF5FAFC8F13E402F3E4412C /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1C8399EE1429A35628EA1E4D0730D385 /* SDInternalMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = F711B71C9191D701EF0B6D739CAF2971 /* SDInternalMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1C8EC169B592E48D66A57DB786533C77 /* EXVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = ECF30685940A43B4A6F919BCADA28019 /* EXVideoView.m */; }; + 1CCA91BC3B96B07AAD25258D201A58E6 /* SharedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 73EF414ADC9425D54A581AC4EDED9B24 /* SharedMutex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1CCC7B9B965662ECD1484CF466F4CB24 /* ParallelMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E994E6FB4BBB5D87BDF1A7DE791E5E6 /* ParallelMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1CCF39EBFA3B0F687CB1FBD4825BCD3B /* AsyncTimeout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D2F655E41C63BAB63A290AB9417740CC /* AsyncTimeout.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 1CD8228904959A0F2004A91825A7F395 /* BSGConnectivity.h in Headers */ = {isa = PBXBuildFile; fileRef = 111352AA53F0093A3AB2AEB343C37458 /* BSGConnectivity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1CE5F2290B7C60867EEE0B5DB19EDC93 /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 76A2FBF4184A2FCA5AC7623C4BC03C3C /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 1D0679D726977001CE033A643C628E85 /* CString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C9106D8860AE51771CD2A85A8D20BB16 /* CString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1D309C64B4D69A23E8630807F8AA238A /* ScheduledSingleSubscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9BC77CD967B59458E50857129DF0EB80 /* ScheduledSingleSubscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 1D3B480205019899A8751D4AE61687D4 /* Codel.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A4213B6882D8C685BE04A8787BC1E6A /* Codel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D3E4DAA9D20125343E2A9B507B98E45 /* FIRCLSAsyncOperation_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 50B8DC3F1C20DA72280B66682F52676F /* FIRCLSAsyncOperation_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D445ABA784FEE3D0B7F312B8A8A9C2F /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 6298AE3E0AD6B0EB0E8FA035BC850A15 /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D4C0FF9FEA112E531027830F20B689E /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = ED75D8954D22516560576D647EF26B78 /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D5245C3295FF95AECC56EDEAE5E589E /* FIRCLSMachOSlice.m in Sources */ = {isa = PBXBuildFile; fileRef = 63D0C21CDE1E08E58AFE3105E685007B /* FIRCLSMachOSlice.m */; }; + 1D5C8E7B129FCC2F9E9C159A750FDAB5 /* RNConfigReader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 520BB052543E92220A00A5375AC4F2A9 /* RNConfigReader-dummy.m */; }; + 1D785D7B4FF0460F8D6B5A64B52D39D8 /* BSG_KSCrashAdvanced.h in Headers */ = {isa = PBXBuildFile; fileRef = D928F49253BF59C0396D955092552CE1 /* BSG_KSCrashAdvanced.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D7DB118618B351899CFA202028AD8E8 /* TOCropView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DB6C7D6E115FC52ECED1026C673AD3A /* TOCropView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D8713966308008808AF2CCE29C4120C /* Access.h in Headers */ = {isa = PBXBuildFile; fileRef = D698A54C40003FD1EE0618F5FCF5A4ED /* Access.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D89BCE06C52E7607390939321044E27 /* RCTConvert+REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 5904BCC1697988B38283030C5C0C88DF /* RCTConvert+REATransition.m */; }; + 1DB1A4C1A222094CEE75624D2FA14BF6 /* Spin.h in Headers */ = {isa = PBXBuildFile; fileRef = 752F50B33E0456ED5566DDBB00DF1A71 /* Spin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1DB48BA6EF4B41FD116488C346A18C33 /* TokenBucket.h in Headers */ = {isa = PBXBuildFile; fileRef = BA1A677DC8F9D0351B40C2A6CE7308C9 /* TokenBucket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1DD0AA3319223905443F8D6AC9BA8996 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 02E08451045D001829AD93FC5DDDC2FE /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1DF0C2D60D4845010213E72709AE1F71 /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F96FEC904C3C515E17B3C84FE3C2C8D5 /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1DFC34534A46877DFEDA098D230C6652 /* ARTCGFloatArray.h in Headers */ = {isa = PBXBuildFile; fileRef = B301AAB908F0277D9B59DFA5796189EB /* ARTCGFloatArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E1456286C1D93DC2A848A173C6CA46E /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 295599FD34D82437BF3C41270FBB2523 /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E30EEB7D6B9759D49F69E1416E3B440 /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 581B0AD8D2AF95FB3BA0D971E4BE811A /* RCTImageBlurUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 1E317E04BF342BB3DAB443FD72BB9F5B /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5D43D654FCA7F23771F07696175762B7 /* JSExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1E32F7CE1D3CF957B543C046354F1217 /* FIRCLSAsyncOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 16F0EA6482987F1240C9EF62BC419BB1 /* FIRCLSAsyncOperation.m */; }; + 1E45AD76507CCAB53A38EEEE1D9C153A /* SDAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 984F1BFA478C3F2BB470222B51A85C46 /* SDAnimatedImageView.m */; }; + 1E70EA50F887C38D2F8DECBBD3BC1EF9 /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C09EA5E56B1A86D17A324942FE907F38 /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E71463BA220F76AABE65F5136B1E1EF /* ARTContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = C4152E0A282E1646120955713F62D908 /* ARTContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E7DEB4C9EF4EDB1A9CE56FC20D9C25D /* ARTRadialGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = DC304B4145DD0AFD8E5888E0F029F416 /* ARTRadialGradient.m */; }; + 1E8116D71068E350AB2A0B8D74ACFAB7 /* Tearable.h in Headers */ = {isa = PBXBuildFile; fileRef = B3D9CC080476DE1289297FCA471067E9 /* Tearable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E988475BF6DC371658262C5C990D771 /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F8E66A5F4B94E306A243192C02F093F /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1EA00BB90A2416E6B517B59204229A53 /* EnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = EB8DD2A0419BC72BF274073FC1A56A06 /* EnvironmentUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1EA668840F5AFF314318FFCE80179EDC /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 14BDA591D15263674DB406B72E60712C /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 1EAF0E603E4703193505672F7C408F88 /* RCTBundleURLProvider.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7656DD83199B7D21A2A2AFE76A975118 /* RCTBundleURLProvider.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1EB1F8D1175E397B97ECAC94849B8BD8 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 3350438F260AD1099BB622B3DD2B7478 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1EC1D0106DA54AE665470D7BDF0C2A09 /* FBLPromiseError.h in Headers */ = {isa = PBXBuildFile; fileRef = A2DD810F8278E0F12D995044E5BF7A15 /* FBLPromiseError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1ED3A3DB18B0D7129F78B640C0F033FD /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 52FA215B0AABD63CF4160AC620BF6AF6 /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1ED9C70CDE3DDD6999ACAB0AA9FE9BAE /* NetOps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23CFC27A0D600C50FD6262EBCF48AAB9 /* NetOps.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1EE248615173AB6BB2FCBAA025F46DDA /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = AD585F5C53DCFDAFFB4294C34CF88D09 /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1EE4CD5E575C6A8AFAD073B6381B945E /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 01F2D0B018A8C0602D50AE13EB355AD0 /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1EED76577B9AC7C813A4F04F990FB9FB /* F14Set-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = E41EB8C393836F73849E4A9EC52E1A37 /* F14Set-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1F0A9700C5762EBB561C0FEE7BA02233 /* FIRInteropEventNames.h in Headers */ = {isa = PBXBuildFile; fileRef = 54A0241C5AB2ECD06DAE4825A6FBAABE /* FIRInteropEventNames.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1F12214A7A2A9C44C9270D58EB9B9084 /* ARTSurfaceView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81228D55716D17AA0DE748C8160BB301 /* ARTSurfaceView.m */; }; + 1F4C86F457D6C516F3065BCC585C247E /* BitIteratorDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ABDE4FF616E844389AC74A4458AFF47 /* BitIteratorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1F63274583B5A8D8520FBA89792D4368 /* FrameType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CBB9ED84AB9A1E593EF7C4C7413E06F0 /* FrameType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 1F8133D40BCD1DC1E7E70084ACD1BDF6 /* LockTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = FD7CEB9400B120D3967B693B0B157334 /* LockTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1F91056AB2E5BDE9FEF3F26B1103E5F6 /* react-native-background-timer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E43DDC445CD2E8A4C9B98D3A5864896 /* react-native-background-timer-dummy.m */; }; + 1F9F08A55FB89C661C517E18FFCD4CF3 /* FIRCLSRecordBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 36C2D4F83741C5DF31ACE32DA45B4D33 /* FIRCLSRecordBase.m */; }; + 1FBC28A70C19505EBE72775A2F9405DD /* ExecutionObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = EC226F2BAC9F1180223CF366941ED6C2 /* ExecutionObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1FC21E84DC59264D219EB20962EC583D /* UncaughtExceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = F8CD2C6096A9D4F117D18EEE386A1A90 /* UncaughtExceptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1FDAF175D4A758961788CBF5F77DB38A /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CAFCAA2659951C5F2840A793D96B938F /* FBReactNativeSpec-dummy.m */; }; + 1FE5B4058F3915EEC84A7A7AEB6FDAC7 /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 70867544D01800EA6114ADA436856864 /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 204CC23D814BF60981D1BFC5562AC7B1 /* REANode.h in Headers */ = {isa = PBXBuildFile; fileRef = F09E3CE4EFFEADA4D5525E7AC223798F /* REANode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20500299F95F8C983CB80993D67BB4CF /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 40957D11A50DE6E72211996E3F5392B0 /* UIImage+ForceDecode.m */; }; + 20597B4AA31830D973C0D549DA719033 /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CFF6339FBEA769B1F8F933E9BB6D49B /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2059C762FF7431AA8970406CAB41153A /* REAJSCallNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E1E10551E1BA25B796460E47DC1ED197 /* REAJSCallNode.m */; }; + 206FE56E79C9810CE8BB59594B2194DC /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7E190197A8BCD54D5B863CD1090FC782 /* diy-fp.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 208790D70277C3A907BFE89FD71D90F5 /* DiscriminatedPtrDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 462C48E8BA7700B5491CB4AB994C7950 /* DiscriminatedPtrDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2092AAC3D67ECC6390654FB817FE0F37 /* Function.h in Headers */ = {isa = PBXBuildFile; fileRef = BB1B2F8D8B7929C7DD01DEADCFB8FD3F /* Function.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20975EBC575B2229860269A70A137099 /* FIRExceptionModel_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = B50E06C043C66E717739CED2E150DC3A /* FIRExceptionModel_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20A7717BBB6E400E9B407132FE778A5C /* ARTShape.h in Headers */ = {isa = PBXBuildFile; fileRef = 372D48682B9E2DF058C7841B584D9BC1 /* ARTShape.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20B9950C8682BAC51156EA4C7B830D77 /* FIRCLSURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = BA68EB70167AC162F9C6BF90C3190740 /* FIRCLSURLSession.m */; }; + 210F1D30C3DFB035E1A9692D1BED1846 /* GDTCCTUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = AEEFB0BA442774E323DD9CC6CD76ECA4 /* GDTCCTUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21171CB95AC7DD57CE2BC6091A8C9747 /* yuv.c in Sources */ = {isa = PBXBuildFile; fileRef = AFFA37E0D240F51E9319F97795876607 /* yuv.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 2123782372A76ED2C3C54D140890CF06 /* RCTConvert+ART.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A8E6865E8B1705CA95C0ED9EB913458 /* RCTConvert+ART.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21338B20D39BB99556A31FAFB41A8902 /* ThreadLock_Win32.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 78F6CA26048D0032F0E6D6ECC660D451 /* ThreadLock_Win32.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + 216D3A827A9C05623245832B45292A60 /* SysTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = D328775106F074AD45878F03B4247CCD /* SysTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21928F97CB8DD68D56445C0FE0A4C01B /* FIRStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 148BD4524563EAE73DE3CA93B337855C /* FIRStackFrame.m */; }; + 219DD23CD8486CC2AA835B51ABF754AB /* BSGFileLocations.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A28152C927DBE33FC159F237838CA4F /* BSGFileLocations.m */; }; + 219FCD15E8D1202D62E2225EB1CC36F3 /* ScheduledFrameTransport.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B44F205BF9B9D8EE635E4D9543EFAF1 /* ScheduledFrameTransport.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 21BD907A7C18430BFC99924E646FABB6 /* Futex.h in Headers */ = {isa = PBXBuildFile; fileRef = D387CEB2E8DFB44CA15F0A1870D36947 /* Futex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21C46952977D276ECC73AC5161C4249F /* OpenSSLCertUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E0E6313449FF04D37ED86F79B8A8A3E2 /* OpenSSLCertUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 21D5FFFD0D7BF76BB7A8811DCAF73A7B /* FIRCLSURLSessionDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 5217079C508569C2D0F031D958008DBB /* FIRCLSURLSessionDataTask.m */; }; + 21D8D2EB50CDC73DCD4D46F5B2CA9F3E /* FBLPromise+Race.m in Sources */ = {isa = PBXBuildFile; fileRef = AB72D0C7A9094E258164E9D11158FC88 /* FBLPromise+Race.m */; }; + 21DB32A29534CE7CA19A7B23CCF26EFF /* NSError+BSG_SimpleConstructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 87EF8DAC74FFF7785C03693CE6ED7236 /* NSError+BSG_SimpleConstructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21E6B0A439E4AC6DF9B18FAB2FD60242 /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 975AFAA25345A61144FCBD53F33CA621 /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 21EC8C03E63160300BFABE8195A35C64 /* FIRCLSFABNetworkClient.m in Sources */ = {isa = PBXBuildFile; fileRef = ED865F1DE44468A0B0B652D71ED61413 /* FIRCLSFABNetworkClient.m */; }; + 21F93C0E91338F357D5F63A991EC85A9 /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 1786B30D3A2D0FDA491DA441AA95B05F /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21FD0E8961C0BC063CDA41227DE1731A /* demux.c in Sources */ = {isa = PBXBuildFile; fileRef = 4A509BA41AB36AFEFE7EC02BD8CA6ED5 /* demux.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 2217AF1A7AE7984BF040F4C1BC02EBAA /* BugsnagBreadcrumb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4670D8DA5D87EEFC41A8D2E7E4631AC8 /* BugsnagBreadcrumb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 222557FED1601E4892088088E6C5F3E7 /* SysStat.h in Headers */ = {isa = PBXBuildFile; fileRef = B601C6E328718F723F5CE385782660DD /* SysStat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2229B836BCE066BCE8443CEAD075AB36 /* RNCSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 85F0409B00976E265E97759FCCD27E57 /* RNCSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22587FCC4C181D57C16E6C1E232D6813 /* GoogleDataTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 22E37A1F9FEB8ACD0F110A8146B5BCD2 /* GoogleDataTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22681799654BC4E6A8D51777712BCCE1 /* quant.h in Headers */ = {isa = PBXBuildFile; fileRef = A3667F9A5A9B50046346F725B90E6303 /* quant.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 229A5016DE40AB05A69EE93DE3FD7CD3 /* yuv_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = AF5285E913D9C8AD1A6810470E198466 /* yuv_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 22B0D872A32EB9D92B78C88E5132F47A /* FIRCLSExecutionIdentifierModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 24E802A44DA54111432497AF0EBADE6C /* FIRCLSExecutionIdentifierModel.m */; }; + 22D21580A36305FED693B1D815397CEC /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = DACBA26AE500A3366C8A944D81FB5518 /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 22D8AB1C11924EB111F57471486DEA69 /* RCTRefreshableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F26C9949B8C13255F0D9E2BF80025C9 /* RCTRefreshableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22E1D06C4A77C0F1F7DFBC536D00AC58 /* ARTRenderableManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C916787C74604D8FD50FB4D7B25FFDA /* ARTRenderableManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22F714CC10EAB443B6ABDAC10220B7DB /* picture_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 98173C30AAAEB60BB67F719BDE999FA1 /* picture_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 2300FD1051763DEC87ABAA44DA4C843E /* RNDateTimePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CAB83F1E564EEB611ED28B0CEAF30FE /* RNDateTimePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 230DD04E738438C0BB1D05464F2D3A36 /* GDTCCTNanopbHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = 524B7125CFC13FA52439FAA76CEAE3D1 /* GDTCCTNanopbHelpers.m */; }; + 23107AD6D4230C7D76762ACF7E2D818E /* SDImageCacheDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F4C9252C0AB1D6B047BB24CD5E7172C /* SDImageCacheDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 23107CD51E85F36D174BE09761E08392 /* RCTPbkdf2.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AED415BF2CA0F102E482E3B33CF499C /* RCTPbkdf2.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 232A0DF7892DC1668AD991D30E045B4D /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 3991D9E8935C272F2BEBD8F363AF3305 /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2335D16DD99C5CCB7145356D9439A1ED /* SafeAreaManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F85A36A7DF29262707FF6EAC03F1745 /* SafeAreaManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 234AE68428A5817BAFE963A80FC365AF /* UnboundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = C5AE0C796CB2CF1C33E96DBE07AC523A /* UnboundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 234D274F9F5FFD3DA770F18B5B82BFDC /* Cursor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E56CEBB5E690CE30375C80AABF6B4CE1 /* Cursor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 23576D738C9549A2D6CF08392F1968E8 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 603131F97BAA207E67383A8A998042A4 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 23587B85B626669925991587D263DE57 /* EXSessionUploadTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = A8D091FBDDF484E5548B37CF0E4988D8 /* EXSessionUploadTaskDelegate.m */; }; + 2360957858DAAB5C4427FBFC56EA02F8 /* TOCropViewController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E9DAA69C91C5D71F71C166021395D3BE /* TOCropViewController-dummy.m */; }; + 236D0A035C52490418BDFF3A6DADA561 /* Dirent.h in Headers */ = {isa = PBXBuildFile; fileRef = A568645E3EC4F41A6B8E54985BE21DD0 /* Dirent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 238014D7C36D9F7526816B138E188F1A /* ExceptionWrapper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8D8867473DC9435ABC10784A09B021FE /* ExceptionWrapper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 23B63806D9A476DC97D4110167D0DDEA /* RNCMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 00B64C68E8E48A836E1764A9AA6F83DE /* RNCMaskedView.m */; }; + 23BB62BE51D77E2B43E962B7694233AB /* FBLPromiseError.m in Sources */ = {isa = PBXBuildFile; fileRef = 13F667B2253495881B8BBB79ED397290 /* FBLPromiseError.m */; }; + 23BE38F41651FCA01863B7A6577A49FC /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E55E4E782BC0B7CC36EAD9507597C474 /* Format.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 23E05DB7ADBD88E8C03CC484D1F1099F /* Subscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 46472793B74C28B0DD2EFD7560D4848A /* Subscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 23ED68709D70B2CEEA2C60ED444BDE7C /* ssim_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 402AAB81A0A41700074D0620AF821F75 /* ssim_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 23F880255FD99355C2934B672C938E94 /* RNFBCrashlytics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A95ACD68CF68B792E1500C4081DB693C /* RNFBCrashlytics-dummy.m */; }; + 23F8CC4360DEF34ADA9029CC0CAAC322 /* firebasecore.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = F709182254F371DCB7FC9E4E5AD51402 /* firebasecore.nanopb.c */; }; + 23FA7352988280C2EE623B66427EC13B /* evrpc-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E32947F097148F59B3F1E82CA8CFAF1 /* evrpc-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 23FD3872340E08901DFBF08C81D0ED3D /* CoreCachedSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = E41FB7DBD8033F45915F4E81DBA50E0F /* CoreCachedSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 240FC32361C410EF5F84BF6DEBE42548 /* ReactNativeART-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C00C64F14C3A18BFFF5DCDBD56C60169 /* ReactNativeART-dummy.m */; }; 2429E3881443A705B671125FD7304B92 /* SKTapListenerImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 343F5A180BBCD24462D71E00FBD98C87 /* SKTapListenerImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24351005C3E7139C8DD331A7F8C2D1CE /* FIRCLSRecordBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 36C2D4F83741C5DF31ACE32DA45B4D33 /* FIRCLSRecordBase.m */; }; - 243BA7838B8733171E500BDFB3A064EB /* RCTConvert+ART.m in Sources */ = {isa = PBXBuildFile; fileRef = B779A2E0BA8CD2969170D30344306604 /* RCTConvert+ART.m */; }; - 246B8F33C6D7C26541224312036955DA /* RCTConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 21388477A56F552239D112322AC081BB /* RCTConstants.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2475FC51EDFCB1F9F9F4677E1DDBBB4C /* FBLPromise+Validate.m in Sources */ = {isa = PBXBuildFile; fileRef = C8C92828DAAD3DF19095AB319D64147F /* FBLPromise+Validate.m */; }; - 2487FE5A99FD79EF599EEF75AA4F1083 /* ARTSolidColor.h in Headers */ = {isa = PBXBuildFile; fileRef = 91480DA002B4797443D2BB99E00AF339 /* ARTSolidColor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 248F78FAC55BBA2239B83513C94DABA9 /* ClientResumeStatusCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = A5C656C37A50DDE3A50DF9C5554CE5FF /* ClientResumeStatusCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24AB95CBC02B2F69E91811DCA46CEC48 /* Request.h in Headers */ = {isa = PBXBuildFile; fileRef = 9915685C01F70A36E07105E093943607 /* Request.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24C6A5AB0C5D41B6055A48FA088B257A /* bufferevent.c in Sources */ = {isa = PBXBuildFile; fileRef = 457BF153D04F4820C937FA37AFCD368D /* bufferevent.c */; }; - 24D80F0B1345727771ACFAAD9730E0AF /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1529F8BCFF02F661EC77B0909BE42DF2 /* React-cxxreact-dummy.m */; }; - 24D9E5EF4FEB8E02D945073D71C5A709 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D12AFA51E54C3C52B68464BCA5B84CF0 /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24E9EE31E2A99DB66287EEE3C03702CF /* SysFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 52292E739162D20DA20E175D11C9397D /* SysFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2509860E27D4BF6C6E8EA1FF7B0976F0 /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CCCBE1567A458789814668277F3F434 /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 25165A66D5AA6FBE96D58682402A9E6C /* JSONSchema.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BE2CE95755FD233875DDCC84C917EA0 /* JSONSchema.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 252335A4BC8F407DFCDA7E3475C71383 /* Async.h in Headers */ = {isa = PBXBuildFile; fileRef = 18ADCDBC13F2746435E16CDFE483C6DD /* Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 252A150408A553D4807BFECE84C73499 /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D8889511B0D210574C8248000184E1E0 /* react-native-orientation-locker-dummy.m */; }; - 2533B542ED173C7E1512C6CA10305E0D /* Partial.h in Headers */ = {isa = PBXBuildFile; fileRef = AD85699B31E40102C07F98DDD2FD6527 /* Partial.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25355082A92F8E19C16A5545DAFE793B /* FIRCLSFileManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 145B5155DFCA70A7E41B34A4765E2C92 /* FIRCLSFileManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 255796369F21228151CF45098DE2E51D /* RemoteObjectsTable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F11A1E42D71CCAA5D48973DA18EE089 /* RemoteObjectsTable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25660B5DBE226DD8BA3EB79588AB00C2 /* CString.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D2390B0DF63D8AA73976078BCD5CB07 /* CString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 258DFD96720C1C98BD6A3BC06B72A9C0 /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CB9F9D2D9DC5D4EC91C330EA3FE1DE8 /* react-native-webview-dummy.m */; }; - 25995F6706FF64C10B2F3F5F94282B9E /* File.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFCCD7B99AE6159D261163AC8C4ABBF /* File.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 259B12A7732BF180FF3B816E226E4A74 /* FIRCLSURLSessionDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C0C072C906C75C8B707432DD2546F53 /* FIRCLSURLSessionDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25B81646DF134303F8E6A6BE39818636 /* bignum-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 4993498A328BEB89326E75F6E62CD440 /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25CB702B7D237801D6A562D3A586F4F1 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 570C4FC163FDB50A3BA899B5D8E85574 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25CBAA9304AAAF32F35C2C4C2D48BA1D /* SwappableEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43D561D4EA27F9FF3B798E950D15E161 /* SwappableEventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 25CEBDCF24E21688AD8EA83F6DD84849 /* GULNSData+zlib.m in Sources */ = {isa = PBXBuildFile; fileRef = 040B1FEA4D1BB34B7A5D3231137088C5 /* GULNSData+zlib.m */; }; - 25D84A6DD1CFF5BB4E8B3620F979E683 /* EventBaseManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 68E5B1003B8DCEFF9213D3CA6C3AA20D /* EventBaseManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25DB1E24B453C0ECE4DA407E7761D440 /* EXLocalAuthentication-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 80DEB6F7BB5140A191C8091E78BC3CD9 /* EXLocalAuthentication-dummy.m */; }; - 25DF77BE316A1163F0FA609A33BB82FC /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 5467384670BB5E3280C55165AC5655CC /* EXFileSystem.m */; }; - 261567D19B81E3EA4AA8133EC85C57C4 /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 073B695D1116E71DE4B85507FC6C4838 /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 262F8B940D5B9417D26C5E7AA2BBFEDC /* FIRCLSMachException.c in Sources */ = {isa = PBXBuildFile; fileRef = FC7E6596644453D30491DBA091AAF494 /* FIRCLSMachException.c */; }; - 263C0741EBE17E17FEC8B94D476BD824 /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 98DADDEB2F514FB1D31D46C80DB26DE7 /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2641B16A53F838A5F865631A22C5F770 /* SDImageAPNGCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = A82E8AA0A350E86E661EF7349E03E7EE /* SDImageAPNGCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26438AE67E91103F5174D8602A12BC0D /* FirebaseCore.h in Headers */ = {isa = PBXBuildFile; fileRef = 28E2BAFBF464123D07D80E88EC64B836 /* FirebaseCore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26655BA93D0A835A85DD91FFADAAE0AD /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C6B8EC842DF0A12A01B6061F1796366 /* RCTConvert+Text.m */; }; - 267FBF5FD39D9633691B813B405D0B81 /* RNCSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9631C808EC1FCCDB5A6359AEBEF0CEC5 /* RNCSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2695C305D6339887B70EBF9839B8C796 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F4507DC98B551726ECCA52B6828D8CE /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26B03DC483BC44AAA1E516A06BD68F73 /* FIRCLSGlobals.h in Headers */ = {isa = PBXBuildFile; fileRef = B48D3B93369EBB01AFF2CD25B126C52E /* FIRCLSGlobals.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26BA78755001562513295CA8364DD275 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FD9060B3D3C139108B7CCF8DB6EB9F2 /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26C1D70366D187F71FEE717C084B3781 /* VirtualEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = AD234ACED22A090F331A623760C1DA2E /* VirtualEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26C20C07FCD50D475B4786FF662D7107 /* FIRCLSURLSessionTask.m in Sources */ = {isa = PBXBuildFile; fileRef = C16AEF8FC19B26B9C212A7F9183DDF93 /* FIRCLSURLSessionTask.m */; }; - 26CE1DA937FFD3F4C82ADEE87ED14556 /* BSG_KSCrashReport.c in Sources */ = {isa = PBXBuildFile; fileRef = A1CB03637D36B3CD105FD6F5A272ACBC /* BSG_KSCrashReport.c */; }; - 26CE3AD9149894CA0FCF49A783B140D2 /* SysResource.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B3BCBAF0DBA3247D26157C240545AF1 /* SysResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26D73313592A3C19475B3576CE2E5CBD /* IOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 97091FD93643FE8D36CD583C5E548E92 /* IOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26F62DD9CB9A27D172C66F13E5565E81 /* UMUserNotificationCenterProxyInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 823342DC31FD6486EE7CBDC785774403 /* UMUserNotificationCenterProxyInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2702ED30FCC572A9119745BA58C104F4 /* REACallFuncNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D199D416CB2EE9DF1C8EF4CB6B39AB8 /* REACallFuncNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27077CF682C0D1B5299CFC45D72B0DC9 /* CPUThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 252927535F70E0F87C20A16C6B6C1BE1 /* CPUThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 270D5F9E8FB6FA355955B1B4C445950C /* FIRCLSProcessReportOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 220D75BBF7829017349A979BCB734ED4 /* FIRCLSProcessReportOperation.m */; }; - 2712CDCE6949A74E8F10AECD1E7D9FDB /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = CB4581065F9F852C0D03187495A16A5D /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 271B9F7A1028887E8FBA9A9257C9D629 /* SDImageTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = F71F5BB161EFE16845835C17D1071F44 /* SDImageTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 242B4C9538838E112A2F3ADC2B09907F /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = FEC8FE60ECAE340F1C62F76ABB5097D5 /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 243BA7838B8733171E500BDFB3A064EB /* RCTConvert+ART.m in Sources */ = {isa = PBXBuildFile; fileRef = 68486419F43F8281CD207605D2E14272 /* RCTConvert+ART.m */; }; + 2473B3A11F2AAFD2AEC14066336220B8 /* BlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = B15175F2164C98A39C87EB95FFC28E02 /* BlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 247B18B81BF3699B89335484EA7329B9 /* Sched.h in Headers */ = {isa = PBXBuildFile; fileRef = D74ABFF01BBF287ECFE62FA3E7B8555B /* Sched.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2487FE5A99FD79EF599EEF75AA4F1083 /* ARTSolidColor.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A3D59FB3665A31F8B7500521E96B781 /* ARTSolidColor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24922AE63038BF9070EEF1A784504CC4 /* Event.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CA4C13C6B5E00891719B5CBCDD2123D /* Event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24BA1F49C4507CCF322D930F33B14289 /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = E5539CD4B01605A209EAE449CD37F855 /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24EA3B2522D9DF4FB974E36ADBD39160 /* RelaxedConcurrentPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 430CB77D6D03E7480CD6EDB29C7352B3 /* RelaxedConcurrentPriorityQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24F696A8C818E37AD166CEEBF8F06EF8 /* RecordIO.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 60F3BCBDD6A323B314E65E8E2810E3C2 /* RecordIO.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 24FEC3570B7CFADEE03E408B9D96ECDD /* lossless.h in Headers */ = {isa = PBXBuildFile; fileRef = AB112A4A6AAFBE00566605E8813D47AF /* lossless.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 250423D40E0CB60B44F882AB8CA2CA16 /* log.c in Sources */ = {isa = PBXBuildFile; fileRef = 73A59776370089BF47A36F0979BECF4A /* log.c */; }; + 2521F9856149979A42BD40EC1A36DC2E /* lossless_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 22B13775F5C133858DE4AF2F01D40718 /* lossless_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 252A150408A553D4807BFECE84C73499 /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 04CFEFB3F1120ED65335C3CA7E6A4ED3 /* react-native-orientation-locker-dummy.m */; }; + 254B0BF69C96F789ADFB18FA9AF72268 /* RNFBPreferences.h in Headers */ = {isa = PBXBuildFile; fileRef = D86615BEDC991166E3F53C91B920E5FC /* RNFBPreferences.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 255F950E8099EED4CECC91F825B3B86A /* FIRCLSBinaryImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 302BF3C74637C7DB351858B047839178 /* FIRCLSBinaryImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25713931BC02A60B534F4C57EBE12C09 /* CustomizationPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F9C7E6CC836240AC4DBF3C75028666 /* CustomizationPoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 258DFD96720C1C98BD6A3BC06B72A9C0 /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EFF316F1C4228437B26E8ADBDF40A0F0 /* react-native-webview-dummy.m */; }; + 259003BE28ACB34D29ACA844506C320C /* SaturatingSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = D8A89591EFBF3724820EDA6841A165CE /* SaturatingSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25CCAEBEBC15EA8E17F271377684FA16 /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CE720B80740482075792A51EC72C64FF /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25DB1E24B453C0ECE4DA407E7761D440 /* EXLocalAuthentication-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E0689640886583CF0A244F816A2FD5B /* EXLocalAuthentication-dummy.m */; }; + 25DF77BE316A1163F0FA609A33BB82FC /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = FDD2686C962849789E028510F6F2B0A6 /* EXFileSystem.m */; }; + 2604D2DFCF3930C8A726A34DB94510B6 /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E00A3B55B15D71B2CD3B55336524196 /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2609BD2E9E0D419FE3947E43911A3CDD /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = CBE1616AF656630B81600BEF0C1320C4 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2618A37300CBD575841A44C1378E1600 /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = 314D6A4AC5227189966DFE96E9021D45 /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 261D98D32F84567AA07152CDE66ACB76 /* FutureExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = C37B23A8A1B5BEEEB622D8D6A3A35F81 /* FutureExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 263C0741EBE17E17FEC8B94D476BD824 /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 144360F619B1568C4D6288B0C0FB58B8 /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2648771F3EE08F9A7300249832B31AC6 /* openssl_aesv8-armx.S in Sources */ = {isa = PBXBuildFile; fileRef = BCE8B2C58C7A5FFE918225BF23BF842E /* openssl_aesv8-armx.S */; }; + 2649DFD21575F940A3F141DE39D20B6F /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = BFB833A212D11C1F41AC5557EFFF34D4 /* RCTFrameAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 267FBF5FD39D9633691B813B405D0B81 /* RNCSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 025631EC319F114D70200FF936D0F45C /* RNCSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26909CC481BBD0A975E13405C296F70D /* Asm.h in Headers */ = {isa = PBXBuildFile; fileRef = DB1694FAC251DD37A22E57B2BDFFEB94 /* Asm.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 269731BDE3E775BB018007D8F1125681 /* BugsnagSession+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = A87D058A90DAB0C942B4AAC56C56B15C /* BugsnagSession+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26BC6B57BA643B8EF2D8C2502E412AA7 /* FIRCLSRecordApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = D7E5EC94D71759DD5DA4BF40DACD91FA /* FIRCLSRecordApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26C06DF0C138BD4034D77B0C895A5C1C /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = AB92F07C8F16DC3AB790670FF753DD93 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26CE6ADE5C4058BA9884954DC249CDB4 /* RSocketStateMachine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A0E9033941C3AB907B1B7A92CE61D944 /* RSocketStateMachine.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 26DBB145EBAD40456F69AF3485472A66 /* vp8l_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 7AC7CEAE075D5FE37F18F69929AF0DB6 /* vp8l_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 26FC4635EE2D1635ED3F5F0CDDAD50C9 /* GroupVarint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ADA91F9364E85FD662C943D0540B2363 /* GroupVarint.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 2702ED30FCC572A9119745BA58C104F4 /* REACallFuncNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 95409ABF25D42C8C7A43CEB383BB217A /* REACallFuncNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2712B1F4F2358B9B6EA596621350901D /* PBUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E18EDA82B7F891804060AECEF71B5BE /* PBUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 272F9453B65E11E7B647D37D494D663C /* RCTNativeAnimatedTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 06384479D373E19F9C14A08E0BFF3788 /* RCTNativeAnimatedTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 272FE84B8033B2CF75AA53A9F9A84345 /* SKViewControllerDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 754E234EEBF74BEB989FA3F5F1BC97FF /* SKViewControllerDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2730FE054CC61C90703D708DF8B87F6A /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CE111B675538B7F9D052CCC0722E9AC9 /* RNScreens-dummy.m */; }; - 273923A442659046DA710F2396E12787 /* FrameTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = F338801AAA68464A8DC5F21FC676D9B0 /* FrameTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 275B1BA50739CFF9BDB246E10F662653 /* RNNotificationEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 12372EC8D24C793A3E820C2F3DA1D714 /* RNNotificationEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 276D1449F6BCD6C58D425038B4027C48 /* lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = A79DEA6FB66798FDB09A6F59CFE1E257 /* lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 276EDD3E7421D278E099AD4015900A1C /* TypeList.h in Headers */ = {isa = PBXBuildFile; fileRef = EA8C4045E05D9C71E7B35F1F39E7D037 /* TypeList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27753A511E961E07FD108B842DF03FEE /* RCTImagePlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 745DFED99C7D3160B495419A1A3A211F /* RCTImagePlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2789B9401A75CB3CA6BDD2EF2EEEB907 /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = 73E3623C7BA84609B7F9153744E6C7A6 /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2730FE054CC61C90703D708DF8B87F6A /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B5EA7310EF8CC88530EBDC323C4F645 /* RNScreens-dummy.m */; }; + 275B1BA50739CFF9BDB246E10F662653 /* RNNotificationEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D548161C546809C36062E8F56DB53607 /* RNNotificationEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2791D2CCA183E84173CDA03EA5D0B031 /* Sockets.h in Headers */ = {isa = PBXBuildFile; fileRef = 3856A7B799D915322E5F6E56FB2ED6E1 /* Sockets.h */; settings = {ATTRIBUTES = (Project, ); }; }; 279436A2D859CBB5D60A18A8B8C6C584 /* CertificateUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F1A969915DD37E525AB5C521D62D6480 /* CertificateUtils.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - 27B2C3BD3F4C21382A6C4BC7BBF8CDC1 /* RSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 552069D1E4D7D8A5F376A2B75A54636F /* RSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 27B6CCE48225BC56652E9E3223D38C4F /* ARTShape.m in Sources */ = {isa = PBXBuildFile; fileRef = C82538BEE14D28F610D55B44664CE4A7 /* ARTShape.m */; }; - 27C9277485F05BCE39CFD89C84B143A7 /* EXAppleAuthenticationButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D954CAC56BBE0F2A7FB2555D6D0E3E8 /* EXAppleAuthenticationButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27F06AE04C9486BF65CF66EEFF871CC6 /* RCTFileRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1674806458AEB6C3A25F850188F291C5 /* RCTFileRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 27F5E4CEC35CCBCD0D3C3397DAE1AE6D /* Poly-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = C94CA6CA326F12DDC913D558730C0BFA /* Poly-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27FC7BD1DE70E5B1D5DDA0EEF07256ED /* AtomicReadMostlyMainPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 33A01B20A0E6F66087CEA56A381AD053 /* AtomicReadMostlyMainPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2820E0020F86C89D12F72E9B064CDB36 /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 78AB9608FEA6D2371BA875A9A63096B8 /* RCTNativeAnimatedNodesManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 2821CC4D182DECD78FE3BAF4EE308D8A /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D8F8CE55B45C71210D96A98BA5DD6881 /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2830809B17A1130CEEC6187F44688988 /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F9676C4A5E6C9AE62620BAF6A929F33 /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2853564306174ED3253141AF97816FE4 /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E2D2901D1AB6215DA4418CA69AF31D13 /* RCTSliderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2896B7E2413316BCB1777BA62AF8DDA3 /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = BC55492F67F7B349D7F6491C001E6415 /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 28ABE6903D5320AF2655598017862DBC /* FIRInstallationsIIDTokenStore.m in Sources */ = {isa = PBXBuildFile; fileRef = C335481D064FA5535D3CC9FB9822A2BF /* FIRInstallationsIIDTokenStore.m */; }; - 28B9766E4D2096724B753E56B3E2F648 /* vp8_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = AF21403E28C34FCEB1EB5AD97C2AAF24 /* vp8_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 28BBA1A52C4B7AAB6EBF1A6DFB17A0F6 /* GULSecureCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A052AC762DA5E58222E584F38CB2FF1 /* GULSecureCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 28C2E1FF9FBF95E791735DE841E55DBE /* Assume-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = ADDEF0085804B78FFCF10A662AA36569 /* Assume-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 28C78E22D8E13C7D5E5C641339C1BA3D /* StorageGetters.h in Headers */ = {isa = PBXBuildFile; fileRef = 9035663F845980CF1FBD35429B14DE4A /* StorageGetters.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 28E2370C25AA7DE72105BE669C72CA60 /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 361194A66DF7D2D5B9B38ED8BED6AAF9 /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2904DD0E862B276618DDAB0A6D63DB89 /* FBLPromise+Race.h in Headers */ = {isa = PBXBuildFile; fileRef = 335D89C0A9606E132F58F72559506EDF /* FBLPromise+Race.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2938DAD184169F3378531C6126C15076 /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C56BFF9530285D0BE157F0826D01C7F /* RCTDecayAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 296C43739E5B036D88A8A52006B6466F /* SDWebImageOptionsProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = B042F5A5AB0621F4132E429D09681A9B /* SDWebImageOptionsProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 296F8BD5BB890665A3952A2EF33816B4 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E8FF1F99E46ADCCA66C1EA96CA8EC1C2 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29861DE64DD9D97B7B4BF8F960CE16E3 /* CoreCachedSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = E41FB7DBD8033F45915F4E81DBA50E0F /* CoreCachedSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29B000A406C88C61FF548022E277BB75 /* PBEncodeItem.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 0C1F0F63DF855EE0FDBA4FD6852B893E /* PBEncodeItem.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; - 29BADE187404392AD5D7EA743766A18A /* pt-BR.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 25CEA0EDE1F1F4F5ED0DD3050A6FF576 /* pt-BR.lproj */; }; - 29E218628AB4F1CCD21A650B478BEE23 /* BSG_KSCrashContext.h in Headers */ = {isa = PBXBuildFile; fileRef = B668CB219669071E5D6FA7BD68FB01E0 /* BSG_KSCrashContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A37A287663D9F549C59FCF712B32B2C /* TOCroppedImageAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = ACDE026E7E3436E45FCF245D8CB49C47 /* TOCroppedImageAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A493B365180564C43897233FB469DDA /* RNCSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C8B2C19E22DA707C9AB8B69169B49CF /* RNCSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A74FF1FF031F6B4C111B00A79FB775A /* ThreadLock_Win32.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 78F6CA26048D0032F0E6D6ECC660D451 /* ThreadLock_Win32.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - 2A76C529B1E22D29A02C4644EF8A8A60 /* RCTNetworkTask.mm in Sources */ = {isa = PBXBuildFile; fileRef = F2EDC73D6BC0E503246F67284E2B60F3 /* RCTNetworkTask.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 2AA511BFE6E6DA363E500CC1EF6F515B /* Pbkdf2.m in Sources */ = {isa = PBXBuildFile; fileRef = DA7889AD98BC21BD8A16B23E5BB55798 /* Pbkdf2.m */; }; - 2AA760D19EA069A3BB050EB2A30739B8 /* AtomicUtil-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D4991C2BF9015361FE42050C678D141 /* AtomicUtil-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2ACAACF04ED71B0EED9CAC061E7EBD24 /* FIRCLSMachOBinary.h in Headers */ = {isa = PBXBuildFile; fileRef = 877E589A8BF687225F8BDA9BB84A5517 /* FIRCLSMachOBinary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2ADB15951C58DDCF953FB378C6277EC4 /* UIImage+Metadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E95659D462FBF4F81F91F6EBA259A81 /* UIImage+Metadata.m */; }; - 2AF418873A4FC3187223C8C08C889BC6 /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 540C71FA6147E61EEA6143AD758CB705 /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2AF8FA27F6F7D973BA41558473B00457 /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A398171E79904AF49DBDE4FE4BFC44C2 /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2AFFEBCABEF8728B19575F16546971AB /* ThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = DD9F427E6ADEB4967A1DDC5A41D08DB5 /* ThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B11D6DB1B13F4835D433A541A60EC78 /* ScopeGuard.h in Headers */ = {isa = PBXBuildFile; fileRef = 43032CE22287A7D741D63E15464A404B /* ScopeGuard.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B17A882D955D4800EE9197F9264EE62 /* BSG_KSSignalInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = FF3D02A21C520585BF57DDADFDB4EAD1 /* BSG_KSSignalInfo.c */; }; - 2B1D531D36E97E30F3DDED374069C815 /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = B1C2E4CD8A04D7C5D42B3B687D150469 /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B21A04A7813F437DE3C7AA0BEECCC6B /* FIRCLSDemangleOperation.mm in Sources */ = {isa = PBXBuildFile; fileRef = E0C4E152DE6AB8C0C9C6931C1350B01B /* FIRCLSDemangleOperation.mm */; }; - 2B3256BA491DC6508EAB17BA44C0D9BE /* webpi_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E763E54264B6EE3E48C2E8F9CC09D76 /* webpi_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B48B551229001E8D6FE460A99EDDAC7 /* UnboundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 90C1BBCC13D38BBBE0B1EF10702BDF8A /* UnboundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B57BE7FEDF0012EA08640C02CA2C954 /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 01FCDDB5C09C127AAA859258FFA2F7EC /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B5CFEDE02BDB248FACCF87C22A56DC3 /* GULHeartbeatDateStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E5ED61984AC5D0734B2848B826BA9D7 /* GULHeartbeatDateStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B5D48193BD33F817ED2EC666D53DD44 /* SSLErrors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8F490AB1187BEA7440DB7027375B3B9D /* SSLErrors.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 2B6EF6E26A4E67698C03C01EB0FD83B1 /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = CC30D68C227093DD75664F5A4F39836F /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B72D7281849A8393A5DDB3D650D75CA /* NSError+BSG_SimpleConstructor.h in Headers */ = {isa = PBXBuildFile; fileRef = E80A0ED35C68DBE90A4BF5CBF22639D9 /* NSError+BSG_SimpleConstructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B7880A14010ACA0B40719C7DED43A6E /* ParkingLot.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B4997BE75B671F317C2EF73421AF78C /* ParkingLot.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2BA69D9D542370C30F15F680DA1AAE7A /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = BEFFFADF15BA7819F73DAE200677F3F0 /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2BA6F1AFE97F8E56ABBB199B49558448 /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = A6F24723A44CF8363D5E898D085C6FAA /* RCTInspectorDevServerHelper.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2BB64262F83EE2F9DC428B5E572AC484 /* GULNSDataInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = DC2814881692783265682204F533FCA5 /* GULNSDataInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2BBEB97F67BFCB0C297FCB0BA023861C /* cct.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = CF23CC817A95D2D6EC9B51B5E14343C7 /* cct.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2BD45529DCD3B96315193A62A7FCBBB1 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 0621CFA7E1002C3D06E43D092DC62FBF /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2BDE73A51F7829CE55ABD7DE8618430E /* UIImage+WebP.h in Headers */ = {isa = PBXBuildFile; fileRef = AAEA2C6C59C3DCDBD6EC36A6FF34CCDB /* UIImage+WebP.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C3793CC1B582F2C40F3EE940C5AD6A9 /* Expected.h in Headers */ = {isa = PBXBuildFile; fileRef = 74331866546A2EF1194D00398E03F336 /* Expected.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C388A1AD22D60FB71D974D33126F53B /* GULKeychainUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D413F8DFA6A6911681D61472C0DC9EF /* GULKeychainUtils.m */; }; - 2C515660B515DED39E1BC640657E8A0D /* AtomicRef.h in Headers */ = {isa = PBXBuildFile; fileRef = 39558BEC676CF0090DC6F863F28DCF08 /* AtomicRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C70A5677DB4FC9F1B6016B0CBC8B686 /* FIRCLSURLSessionDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 5217079C508569C2D0F031D958008DBB /* FIRCLSURLSessionDataTask.m */; }; + 279A852563A70AD5D906A401684F2160 /* SDAnimatedImagePlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = C12603CA84D0C123860475E5587EF16D /* SDAnimatedImagePlayer.m */; }; + 27B2383E0B5A555A167FBA7411E909F3 /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = 614947D4527A86D0737DD42B9A20A26A /* RCTKeyCommands.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 27B6CCE48225BC56652E9E3223D38C4F /* ARTShape.m in Sources */ = {isa = PBXBuildFile; fileRef = 077F86B7F0AB320485085AB7FE12E1DE /* ARTShape.m */; }; + 27BB0973F6FF125510D96C52B8733B1D /* FIRInstallationsLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 3146EE7F2F7253CE4A19AE42577E2750 /* FIRInstallationsLogger.m */; }; + 27C9277485F05BCE39CFD89C84B143A7 /* EXAppleAuthenticationButton.h in Headers */ = {isa = PBXBuildFile; fileRef = C63764A8CAAA45692EA96FB71D6BA9E0 /* EXAppleAuthenticationButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27D0E2522841DF2944FED2A3D82EC208 /* PriorityLifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 7189806B62CAABC6A938101E021B1B48 /* PriorityLifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27E10DB134C275BDF145041E9A3F02CC /* BugsnagErrorTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 0293E4585956F99026832F6B4E390EDA /* BugsnagErrorTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27EC06980DAE5F1CB3C930E0876C6E7A /* FIRCoreDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CBCC34DEE63E69D64899C43FD54A785 /* FIRCoreDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27EE22789E26A87B574810CE289A90CB /* AtomicLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = 213D548C6546BE0F12326CB0627B85DF /* AtomicLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27FD9762250CD5783825714901D62ECB /* DynamicBoundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 60F35749AE880A93AA3F8B9E8DEF69B0 /* DynamicBoundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27FE2C33CEA4B00DC5EC0E3F3512E805 /* TimedDrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = FD9EDEDEF1E88E6DCEF209BD0AF2F483 /* TimedDrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28085BC66E36F02A849AAAA3C51B6E1F /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = C8644BEA899187C9860C8C5A4BCE9404 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28098F9A22E786BB01EE05A3138AADE9 /* SDImageAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D86896FB5858820428D3DDDC6CD96A55 /* SDImageAssetManager.m */; }; + 281D197F89B7CA018E1CD0794593B335 /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5922923155F3938505DC98B5FD1F7886 /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 282A04F3A48ECC7D11237EEC32CB6DA7 /* FIRCLSURLSessionAvailability.h in Headers */ = {isa = PBXBuildFile; fileRef = 45933FD560F9D023DC39B0A5D8792B0B /* FIRCLSURLSessionAvailability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2834EA176ACD637355B57D95609C2F08 /* upsampling_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 959DD080ECCEA10F66B1BC358DD0AD32 /* upsampling_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 283AFD452334B12F42705D0863AE779D /* EDFThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C25265491BA05D7DA07E73525B2E5ADE /* EDFThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 283D05532A3E76E3D39078DF6620984E /* Flipper-Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BF872E3366FF64D781D6F38C56729C8B /* Flipper-Folly-dummy.m */; }; + 284D8A228174B9C50C29853A1D48BCD5 /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = EFFA369D0A99F61C59AC66A7809A1D45 /* ja.lproj */; }; + 2858B9CE1458A308A88FBB080973A2BD /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C9C9A2BE6194882D45341E0D8CEE3C18 /* React-RCTVibration-dummy.m */; }; + 28666E2FF035B67FFC6B707C397B53C4 /* YGLayoutExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50F4AC2A1A2E84993D0251C762782555 /* YGLayoutExtensions.swift */; }; + 28688192DE40010DCE7006D4CDFA9920 /* histogram_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D67E32F1621EB8851E0CC5B2C35BB15 /* histogram_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2878DA8AB79437BE25FD83B8BAC93A39 /* pb_common.c in Sources */ = {isa = PBXBuildFile; fileRef = C6AF3E49B2DBFEA9ACFC6345FDDDB37F /* pb_common.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc -fno-objc-arc"; }; }; + 2881A409DC377A1F6222AAC4B5A19F0F /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D04BB5E40BA5D8B5192C6EEBBD84FE1 /* RCTDecayAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 288EA9A8AD939D34A4CBEF2EE225AD56 /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EB5AE6725DBDBA72012A0E3EDB522345 /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28A194AC1159FD8D578C2EB3AFBCDA00 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EB34A2FB4CEB74806B9886BC1034D7F6 /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 28AB19E6514735B79E5536ECE2F00D3D /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EECDBA9C2689D8B2D852984061BAE5C /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28B8EFF1F2B56609C0BD6A08F5B0007B /* FBLPromise+Do.m in Sources */ = {isa = PBXBuildFile; fileRef = B0F4A1B84ED63749F8044921E15E45F5 /* FBLPromise+Do.m */; }; + 28C78E22D8E13C7D5E5C641339C1BA3D /* StorageGetters.h in Headers */ = {isa = PBXBuildFile; fileRef = DCF019AC633D3837A65275E1E41BEBD5 /* StorageGetters.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28E338037BD6C773C461C4A323E4F264 /* BSGGlobals.m in Sources */ = {isa = PBXBuildFile; fileRef = D42007B4C16C152C107FFE5553789732 /* BSGGlobals.m */; }; + 290D481DD7BD973CB373FF1082807305 /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 85E37AF30AB738B8B5EFA1D488C0E827 /* RCTNativeAnimatedNodesManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 29143025EEB9F61FB4B8A88936490615 /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 26870246B6A46B10CD4C9299DE8C3D25 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2917B430E75377F1ADC6752F355FB031 /* SDMemoryCache.h in Headers */ = {isa = PBXBuildFile; fileRef = CD2F3B487E3BAE150BE5331123974954 /* SDMemoryCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 29215116C566B3A606C4C673B7A4104A /* SDWebImageCacheSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B86A59900D99654F5C7B2EBC25EA41E /* SDWebImageCacheSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2923635EE489552AA7C35BE76C087410 /* RSocketStats.h in Headers */ = {isa = PBXBuildFile; fileRef = 63AE044CCFF233460DB6306511A7B7C2 /* RSocketStats.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 296B36145E06FF6D567226927EC8ACEF /* RNFBAppModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 64272172F300480AAB5564037E52F9C2 /* RNFBAppModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 296C9B0730FC3C327E691F340B194BD9 /* RangeSse42.h in Headers */ = {isa = PBXBuildFile; fileRef = 13A70D257EB606DB7DAE4D4BDCEDE0A7 /* RangeSse42.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 296CD68624835C2269CB492288E28911 /* SysMembarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FF1278116DDF6E31C0A121D313ECD61B /* SysMembarrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 297A29978B37E09128C3AB079E82B03F /* FIRCLSMachO.h in Headers */ = {isa = PBXBuildFile; fileRef = FFDB7FAA8CFF007C8D2DBF497D5F7D2C /* FIRCLSMachO.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 298153CBD5834911CF7F5E38F56BF310 /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = AEB135E8942546DB1AF42D3CF1B59508 /* RCTCxxMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 29897EEA9E3268B3BDC4BE3A293D7635 /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 421A4791005C1BA0283FE5ED2FEEF2AF /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 299283C7E20E0AD83A0737430AED1042 /* ScheduledRSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EF77B45DE1171993B31D40830A5CB5B4 /* ScheduledRSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 29949AABA20DB0E9366F79D24F25911D /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = FA5E26E72716FB2C14E4628E317D45D2 /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2997FEA8C3D0FCF668DC5C47DE4D5AD5 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ACE5409F7D0811D41E16155430497AC /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 29A8D2481CD3257C9100A8507DF97B1E /* GDTCORTransformer_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A7B74E25DCF95117BA1DB7832421E28 /* GDTCORTransformer_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 29D468554BB01EE1116FDA0ED3859FE1 /* ExceptionWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 86B97EE47635299C9D8446981F698087 /* ExceptionWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 29E7CC7F14FE4116D10F914951DD17BA /* GDTCORTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = FAD97A42DFA849596624DD41A3ACE426 /* GDTCORTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A00043AE307D261B553E4FC459642A1 /* MPMCPipelineDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E5AD003D0351443AD6EA78593F25440 /* MPMCPipelineDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A2EDA847403A97588ACFEF6F3B2E8E6 /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A9DA7B3DEEF2490D3AFF80D02558599 /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A3EC22155B8F0F30F0593D97BF9BFB9 /* ExecutorWithPriority-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B7ACB1294CE1C97BF683629EF603AB7 /* ExecutorWithPriority-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A493B365180564C43897233FB469DDA /* RNCSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = B2B1577097A380C5EFC177FF78557FF4 /* RNCSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A88D2578399C204312EB28F3D5FB7C2 /* Fcntl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2380FF5BB3C57B87167C2E233299EC05 /* Fcntl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 2A8A7784018B5DEE7731FFEE1D3A6C62 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B01481011B177B9ED93006300270E5A /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2AA511BFE6E6DA363E500CC1EF6F515B /* Pbkdf2.m in Sources */ = {isa = PBXBuildFile; fileRef = 5959A814B9579DC7EF9000E11F7FE3D0 /* Pbkdf2.m */; }; + 2AA599D168ED7150F55B27A8DCC59539 /* FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = C5536BC129A4DDE4A2E9C777B33C13C1 /* FIROptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2AA8E34FE6C5BE7FCB0EE28F3412D592 /* AsyncPipe.h in Headers */ = {isa = PBXBuildFile; fileRef = F8FD5A216F32168394C74F3137AD387D /* AsyncPipe.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2AB7867E0D3A0245079044891019401A /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 88924A7F0E7ED8E66C1C0A3ABE595DE3 /* React-RCTAnimation-dummy.m */; }; + 2ADF441F3E38E8BE45201791A19C96B5 /* ExecutorWithPriority-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 50A35339F5AB5829AC849060EC4E180B /* ExecutorWithPriority-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2AE38FB5DC67BDC738B19935A3748C41 /* FIRAppAssociationRegistration.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F90B4D772589C134A9486E832D59BFB /* FIRAppAssociationRegistration.m */; }; + 2AEB67A72FC65473A464B6A75FED5F93 /* pb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F763AD72B33D446728D68075D4A6AC7 /* pb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2AF8FA27F6F7D973BA41558473B00457 /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 6397ABA682F826ECC4ADD5A6A5140726 /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B0367EBF5494DD605CCA7F32AFD6759 /* GULUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = F80EFFD5CEFD057F6C9AB017625E04C0 /* GULUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B0A8958E3B687E1A8784203E791D3A3 /* FIRCLSUnwind.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EA1D92786FCD194CDB476F296BED4AD /* FIRCLSUnwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B11C84CB20A5EE791B7D49F42903DC6 /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F3D2E2F139A91C05083EABCCFB6A079 /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B136DF6010B19CFB7ED6716E7EF3427 /* strlcpy-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 666D07CFFA0543E74260EBDA643C53E5 /* strlcpy-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B2CF2FBBEE55C4718C13D17AF5ED129 /* RCTScrollEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D8210E7D61088E626BC33C0AFF31B23 /* RCTScrollEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2B3D05273B0E0A9BF4B0761F0A8175B7 /* AtomicUnorderedMapUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = C37A75FDB49EFCEE4A1211875E3F47BA /* AtomicUnorderedMapUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B675CC9B444D9F8C03E091D90673A8E /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = DDA7ABA5C0D80550BED808644A658551 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2BA69D9D542370C30F15F680DA1AAE7A /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A4E2F3708CA04A758B943E594737114 /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2BA96075480427D00E22DD8824A6F6B0 /* tree_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = F6841ECB79AB4A38CB837F68495B3AB0 /* tree_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 2BB815DC23FADD07BD442AC043C800AE /* ThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D2D9FC5046BFD665D655F0ECFA346B84 /* ThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2BCB8213F928827594F54D71B96F1C30 /* MessageTypes.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FBD63547CE6A0E4EBC76D27EBE26B64E /* MessageTypes.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2BE074B6CB1F2AC2A40231A8A4B80BC4 /* TimedDrivableExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 14A2F9FF0806DF09D8520391D7F71997 /* TimedDrivableExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2BF37E22CAE988ED80A04EC372271304 /* IPAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9141D4AE95A883D2B8AEE11992DA5379 /* IPAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 2C152D0255D34823A94655288092C778 /* TimekeeperScheduledExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D9104C131E539E312ABC6D17CDBFF06A /* TimekeeperScheduledExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 2C1A730FBE5012A1920AC739E1CD10AC /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 06C5D22E47F15524A4FB15097A215F42 /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C47B3E9B2BE6E9A18EB65E07A4D4CF6 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 32A5033B53147739415CD64E50CB0241 /* RCTSurfaceView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2C4AA4302706540F5D9CFB78B8F4A905 /* SocketFileDescriptorMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 655295FC2D10FA8D103EC75D8A0C884B /* SocketFileDescriptorMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C51EBBB84C3CDE431260663E2DF2793 /* ThreadCachedLists.h in Headers */ = {isa = PBXBuildFile; fileRef = 685C9C5FD5924F761267DFE1A9612E80 /* ThreadCachedLists.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C722B52E7BF530547F3B5F053F2965E /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 12287278B9CB792002A71AB641016514 /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C7498F371D225A59784DD693611FB7D /* RCTImageStoreManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 34AB4B3088C51FCD93965DF27C55C21E /* RCTImageStoreManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 2C76438416AEE979405D966F2A12A10F /* EventBaseThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 775D02E0BCC26F06F0C7E64E8F728344 /* EventBaseThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C7CD02757F50746084DE37EEDD96B6C /* Log.h in Headers */ = {isa = PBXBuildFile; fileRef = 3603C8C324489767CDF0E94A5AEFAAC5 /* Log.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C9B7B70FA2CC5106BDFEE3E80313186 /* Lazy.h in Headers */ = {isa = PBXBuildFile; fileRef = A78FF933AD4698C6020BBB8A63C66E0A /* Lazy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2CB6213D090F803B4D049F127D9D0CF9 /* contents.xcworkspacedata in Sources */ = {isa = PBXBuildFile; fileRef = E2D8CE6AEEA3131D64AB5477E450F70B /* contents.xcworkspacedata */; }; - 2CEB49966630DB63156B233490E872DA /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = A5B6E53B1EA4C12F117C1B8B85AEE214 /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2CB6213D090F803B4D049F127D9D0CF9 /* contents.xcworkspacedata in Sources */ = {isa = PBXBuildFile; fileRef = C27CA06AF20B21BE9B9CF6351CF39A10 /* contents.xcworkspacedata */; }; + 2CC81781632EE1FADEEBBBB01AEB41F2 /* DynamicConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = 27C25D4CBD6AD371E662EA30DDEB4FA4 /* DynamicConverter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2CD2DCE747D9CD488EBAC0E80EF8D851 /* F14Set.h in Headers */ = {isa = PBXBuildFile; fileRef = E267A724BD8FE80839D12EA727B73AA5 /* F14Set.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2CEEF0B606087671DF4FDE83D5D6AC5D /* Flipper-DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CBD7F32DD3F52D110764E7A7679E3C64 /* Flipper-DoubleConversion-dummy.m */; }; + 2CF0FA338624C03E739AC9F032833D7D /* MessageInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = F71DB06084160D809A34D0F0449453D5 /* MessageInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2CFAC05B6DBD8BFF2BB800BCE09795B8 /* Try-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B67C4B41669063ADAD31C56F4EF5A81 /* Try-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2CFCB4CF85B49C6B63BB759EA9D76575 /* GCDAsyncSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = EA81D63A714DF53A54E422BCA8FA65DE /* GCDAsyncSocket.m */; }; - 2CFE6A5577DDAF597B6CDFDD1206BD1F /* SharedPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 93346F13A155B02B6626A101E5194AC7 /* SharedPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D1163089AD6C3E146FE3EB5CBCB2934 /* SwappableEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 7036E8E663E35BB5DB6C32198B066FE6 /* SwappableEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D139419B2BE07306292A36464A77E2D /* Checksum.h in Headers */ = {isa = PBXBuildFile; fileRef = 18991E23AA99F50B64E25A247D7A6330 /* Checksum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D4114DCE33C61C1838C79395E3F25EC /* SDAssociatedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = E16681AEC54C6821A4E5D9301BB830F5 /* SDAssociatedObject.m */; }; - 2D4350E03C78E39A3BAC18A254C21E6A /* TimedDrivableExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BCA937F2B436CFAF9FF094281DB97064 /* TimedDrivableExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 2D4FE0938607838BFAC573BEBFAD0122 /* it.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 54C880A4BF84B88F1F9DADFB3F064F43 /* it.lproj */; }; - 2D7392EAFB0682B29BEE807C3894A97E /* stop_watch.h in Headers */ = {isa = PBXBuildFile; fileRef = A7AE6578BD7F7F96E800B58A62BFCE2D /* stop_watch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D73AFA31D460D03B1E51A81FE7507C0 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DDBC06ABC89E2CF6270F907F76C137 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2DB236D8916D7BACECF324AF5165D4A6 /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = CE9C1CAF322174BAF8E557DC26BBDD20 /* QBSlomoIconView.m */; }; - 2DCC88ED89CA612FAFD2184094E1DC40 /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 58CBC1DF083659122FEE54E8664332CC /* RCTBaseTextInputShadowView.m */; }; - 2DDF2CC2DDA6B43F80AEF12C47D5D408 /* EXImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = F7C4FB1E601E4EFDDFF23297713CBE33 /* EXImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D05F352298AEA840027E18E284108F1 /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = B04A0DBA2F42C8B8861D99EDCA183129 /* RCTSRWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2D0F2C45839727BDA71B1E35E5238BBD /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = C81C1CDD0B6CEA783E7B2FED5B4A6A4D /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D10CBDE9447CF713F4462E36482F0D8 /* random_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 554C9744B627BCE0D470D29FD391FE4F /* random_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 2D3C1900D6418690DA2E8E12DB6F280A /* GULKeychainUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 90BCAF1AC58CAB9DA6A0307E93957A3D /* GULKeychainUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D431B541A56A364975325B640563339 /* ObservableConcatOperators.h in Headers */ = {isa = PBXBuildFile; fileRef = 9622CBA20F72B0317AA01CD58030645E /* ObservableConcatOperators.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D7787C5A1E5784F81E3DFADA0C2F91B /* SSLOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C32EFB899197ECB36CD52A99530F9D3 /* SSLOptions.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 2D8EE7B807FBD6FDA457C1EAA7D36002 /* SDWebImageOptionsProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = BC10A03BA6895C6F997D6FD59A9DBCB7 /* SDWebImageOptionsProcessor.m */; }; + 2D980EA7799AB6230B2E6EBA169EB09A /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = D6B54A82E94BF7B2CFD4B0174A07DE6C /* RCTRawTextShadowView.m */; }; + 2D9A653571B1C70BDE32D6C5314F0B6C /* FIRInstallationsHTTPError.m in Sources */ = {isa = PBXBuildFile; fileRef = 82CD836887898CD56425D5AE3E6F3813 /* FIRInstallationsHTTPError.m */; }; + 2DA5B6299698F0399C184E699FA70120 /* FIRCLSExecutionIdentifierModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 1480E96A65A01446E22091CDD5C48855 /* FIRCLSExecutionIdentifierModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2DB236D8916D7BACECF324AF5165D4A6 /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A5058AECCABB9E39123724170D99D66 /* QBSlomoIconView.m */; }; + 2DCFFD1F366CEFD36684503C59492F2B /* TypeList.h in Headers */ = {isa = PBXBuildFile; fileRef = EA8C4045E05D9C71E7B35F1F39E7D037 /* TypeList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2DDF2CC2DDA6B43F80AEF12C47D5D408 /* EXImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 26E421091A9BB8C1DB5E4CA5715FF029 /* EXImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2DE40C44B661361407541F327C39F180 /* SDmetamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = F0A4024A7743D4E8FC58B80F1A7A3CA9 /* SDmetamacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2DE5851C32276E5A115362D3A94F45F7 /* FLEXNetworkRecorder.h in Headers */ = {isa = PBXBuildFile; fileRef = 40D346238B3A3AF31BB285B00C29A094 /* FLEXNetworkRecorder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2DE94CD85103B2C5FDACA5E12AC68F36 /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E9036CFB2799E65E288D45785C8D208 /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2DED901D588A61AFC204121DD35F236B /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = CECDCF1B2C742A0707D868B5952BB5FA /* CoreModulesPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 2DF8327B64A3FE6D1774882D0595DAE8 /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = CBB9B682CFDAA7BAEC67AE27B7B52B46 /* RCTFPSGraph.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 2E00B1B2C7BF3736BE40EFAF8F90F7B9 /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = BF0D57DEFC9F3C893CD0AED0670CB410 /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E175864082CAE1492153921B6B06DCD /* RNConfigReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 52230AEE9F74A43553D0178D37C7F4CE /* RNConfigReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E4D84051D41ABE41DC2E23BE85E30E6 /* Subscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 46472793B74C28B0DD2EFD7560D4848A /* Subscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E6A233749E50E1E4C4700749DF1C12E /* SDImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = A1676AAC61EFA3771E2E5B301AC959E0 /* SDImageCoder.m */; }; - 2E72E47AB830163FB8AB1FDDEE55782C /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E5F7C4CFBBA3148E9239CEC7A806D43C /* Assume.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2E78D7AD49C86570FA250FA78CE92F8D /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B61FD505D133FEF2FA10674B51D14C7F /* RCTUIManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2EA2D7AA4AF780DEB5997445D14D6E99 /* TimerFDTimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 761424EAD5660486653AC7FB3BFC141F /* TimerFDTimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2EB55FB7B2A6107656AB449BC639B016 /* CPUThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDAC98E95F85540E8E1A36A7C48A79E6 /* CPUThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2EB9621C454378070D7618DF1FBB2B0B /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = F86CCA2E39E21795B0A4DD98437E0605 /* RCTBackedTextInputDelegateAdapter.m */; }; - 2ECF049DBCDEA5135E68104923F47B51 /* SocketOptionMap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0D4D83CF4BCF22D89386EBB6F4EED2E2 /* SocketOptionMap.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 2EDA7D5E2C10BCF2C2C3B60129056FEC /* MMKV.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AE7CE9F04ED973A0AB63ADFD39B84B0 /* MMKV.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2EEAC9E0C6BAD14844462BAB4168A024 /* FIRAppAssociationRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = 89DBA7C561C5E445FC40A52A05441870 /* FIRAppAssociationRegistration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2DED901D588A61AFC204121DD35F236B /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = AF33CE15513792246634152E3DCA3C2B /* CoreModulesPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 2DF43115CC8D29B67CBD373DEBDD9AF7 /* BSGGlobals.h in Headers */ = {isa = PBXBuildFile; fileRef = E3BC7A6739A79A73F4091DEBB379CD0A /* BSGGlobals.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2DF8327B64A3FE6D1774882D0595DAE8 /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = 896D88B2987A64FD6E6A606176592663 /* RCTFPSGraph.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 2DFD6067CC6E815EF4EEDC04EE964D93 /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C1132CCBD5C35499E22128E3F54A07B /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E00B1B2C7BF3736BE40EFAF8F90F7B9 /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 38566BD58F1A1BD25F8A4793D6740999 /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E00C1BC9902D8526F10483B81C8E6B0 /* IOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = EBB2C777B8701067235AF173874B4438 /* IOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E175864082CAE1492153921B6B06DCD /* RNConfigReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 61966A99342D60B517BD347F8A86DA49 /* RNConfigReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E2A420D51F91B0C7470EFADB38581D0 /* BugsnagReactNativePlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = BED4D545EAB9F7C4A9B42407D30E8441 /* BugsnagReactNativePlugin.m */; }; + 2E5BE117A10751BBD2F538BF3C95251F /* SpookyHashV1.h in Headers */ = {isa = PBXBuildFile; fileRef = 61CB4D4ACAB911DE070EDC4C8B5F88DC /* SpookyHashV1.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E62C4F6E1AC4E5F45A9EE72EADE3760 /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = AB45991526D712A35DE228423BC25B30 /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E747A10B8DF8CD114B01FC0F7096084 /* HazptrUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A55C04E01ACF9ECB1600AECCFCBD53C /* HazptrUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E88B98AACD8D9D2134933AB6CA36C8A /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B83C5B505E0B8D0D8572D5D9ECEF9D1 /* SDWebImageDownloader.m */; }; + 2EC50908C0DF2E0175B0838A6C05871F /* SDImageAPNGCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = F563103478429FABE9D3126BBB73415A /* SDImageAPNGCoder.m */; }; 2EF451A980660F39F52CFE588EEC8F68 /* CocoaAsyncSocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F813FC47D3E286B891888504333930C /* CocoaAsyncSocket-dummy.m */; }; - 2F0572B89DC0FCF6449204A686CEFD23 /* EXLocalAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = 48FE8DD4BFEB046D5CAE3925E26CB412 /* EXLocalAuthentication.m */; }; - 2F0F1DCF9898B1E1A68B992318A91E66 /* lossless.c in Sources */ = {isa = PBXBuildFile; fileRef = 84C6B17C8D76B76582EE0FA44BC1C73B /* lossless.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 2F1002C9C00669E4BA2827B814512106 /* rescaler.c in Sources */ = {isa = PBXBuildFile; fileRef = 7397E539A39B1BE430B7A86A3D7AA9B3 /* rescaler.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 2F2CC6938C0B7A00BD85CD2A37D8A5A6 /* evutil.c in Sources */ = {isa = PBXBuildFile; fileRef = F6AB4587E201E4C23AB7619E10ED0427 /* evutil.c */; }; - 2F337A2883F8CE7B80A8C82CE25487AB /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 42C7BFA8839318E173CD5F277B397D48 /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F451DBC0794E5C4952253EA3B18E95C /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EDAEF49F6BF9D3DA5503E36236593FD /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F4D53B034A0E7B2C36ED8E427C14477 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 499211ABA58F4E4365B47BFD78181E5A /* RCTRootContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2F58089F385FF1CC8DC0AD827B4B8265 /* filters_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = D72FD378C4B1FCB1EF395201B2FA0620 /* filters_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 2F7BEE2B0414D2430FEBDE422D82E716 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AE5283E41BBB16A0A78B75721D9B299 /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F8FE53F0D6AD4464B623495D75F2CC7 /* SingletonStackTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EFC7499F43B3972E69F26C8E148364C0 /* SingletonStackTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2F9DE5AA9303B2B86E5292F02DA654D5 /* IPAddressV6.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A7A40CF223EA236B4C3E3A43161EBA8 /* IPAddressV6.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2FA80364473B3775E333CF1A426D408C /* rescaler_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 3C69E16660B149ABB112C2C8F03FF6CE /* rescaler_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 2FB54946DFE25176C6E77A6D5A70C9DA /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E79086D0495C334263EF5E5BA0E6674 /* RNLongPressHandler.m */; }; - 2FB5AEB07B73A5D7842D907070031730 /* TimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C8354DC313E0CA6CCE6E30B455DCCB4 /* TimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2FCBD10231B18E3FC8D0D764FD006408 /* GDTCOREvent_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 981334D1B99AA550C5C38286FB70EB92 /* GDTCOREvent_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2FD546EA75FB48CA7EC5EBADE74FF1BF /* IPAddressV4.h in Headers */ = {isa = PBXBuildFile; fileRef = 18E4B2F4BB2F7FF67DB269B56E4CCDF0 /* IPAddressV4.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2FE3744EBB9D1A964C77748D06B544ED /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B29C1B4AEAB65007F1EE031667FAF0FC /* NSButton+WebCache.m */; }; - 2FEEF59F0FCFA0C527D1C088BA746DE0 /* HHWheelTimer-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = CC14741F8FDEC687198BDBA374E6780E /* HHWheelTimer-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 30061922CC302DEF2FAAA8AF3B0F8203 /* YogaKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D6055979B22944E1EA738BA0EF95ABB /* YogaKit-dummy.m */; }; - 301D27D20F4AEEDA7A8FC75727975F98 /* Poly-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 729D1112986370E02BFA684FD3F582D1 /* Poly-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 30250E84DD3B23C0D7110BF671FCE457 /* CPortability.h in Headers */ = {isa = PBXBuildFile; fileRef = 17EAE7495E58442FC2FD7773A34CB238 /* CPortability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3031749720BF0BF00F871DCF67BACE1E /* FIRInstallationsAPIService.m in Sources */ = {isa = PBXBuildFile; fileRef = A92471AA2B82BDB11D3DB2938A92C154 /* FIRInstallationsAPIService.m */; }; - 3041989153CDC0261E17B708E0FA20D7 /* RCTAsyncLocalStorage.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0CFF9E7C0AF06FDC54654F7D01DD47ED /* RCTAsyncLocalStorage.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 3052744B8509E5CB8A66180865A0A520 /* Barrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D34BCB9EA9CF11A5F9C06040A886B25 /* Barrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 308D8B815F36B917E5FA788CD2301CF5 /* HazptrUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A55C04E01ACF9ECB1600AECCFCBD53C /* HazptrUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 30B13DFD264FF31876A740F0FA6AE336 /* TOActivityCroppedImageProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 83BF47C14F8ECEF5838A4507B32CC1A7 /* TOActivityCroppedImageProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 30C0852E1B06C794A2D6C0A3C4524F66 /* BitVectorCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 5617917CB20E847E1CF7B0488DD757C5 /* BitVectorCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 30F575F047BA438CC4050289F684D24A /* color_cache_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 116093A73B32F5F786FD46E2F9307F24 /* color_cache_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 31330B81AD7392C99D05C6AD12990EFB /* RNFBAppModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 09D76C81D7B4BB1B8B59C71D43891582 /* RNFBAppModule.m */; }; - 31501863DAAA83FA4F74216657895550 /* NSBezierPath+SDRoundedCorners.h in Headers */ = {isa = PBXBuildFile; fileRef = 06ECDC5ED362821B60045388E5F81984 /* NSBezierPath+SDRoundedCorners.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31834216BC9A21A75EC4FEE79C798199 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A24B280935A2F0232B12ABEF5E68C38 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31A2B597AA17492026482C3FE76F8714 /* RNCCameraRollManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A73A2D1784E04BFCCC8EE15146FEEFD /* RNCCameraRollManager.m */; }; - 31B81A35EE9F58DC3EB63CA1E1C7826C /* Util.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AF8240480B74734E9ACF9DCC64540B5 /* Util.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31C9C28D1D271197565CAB47CDD68212 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4788C60996B972D1306C2CFEDC6D0F40 /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31CED738383A9976CE5C8C5D853E2365 /* FireForgetThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 13B41F4359159EB8EC87945C0C5A7C17 /* FireForgetThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 31D5668481DBDF53A6689063AD02C9E9 /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0AEA24A30B4761E52D38C1A32368E428 /* RCTManagedPointer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 31D57A5A9211BBDCFF2362E8845F7633 /* Unit.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C29BD3BD584BB49CE36715D9D1254BD /* Unit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31EB776BDB324DDFFF618177EE4830C7 /* RSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 3791BF953E422EA15E7E7944B8F4CA24 /* RSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31F7682327EB28D06E4888DE6803DD39 /* FIRBundleUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = D4F1C532F9BEF20239D3696E29DB5A39 /* FIRBundleUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31F7EBF4B9CF793E171C1AC0A322ADD2 /* HHWheelTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = BBD00687D106C7D010206329B7785BEC /* HHWheelTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3203A394C5B01EBF0FB40EF80363BB85 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C0708A1487C3ADC35CCAD20713FAD496 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3208DCDDBA4C5636CB44ED37E084AB49 /* SocketAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 862386D325E2D34453FACDF8BC1C8191 /* SocketAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 321546BD5C0D44AA06675517FA4A44AE /* F14Mask.h in Headers */ = {isa = PBXBuildFile; fileRef = 03026205607C4B1019C6B373E3907ECC /* F14Mask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 321E75F3E1BAA38BC4543A98D81358E6 /* TOCropView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F36E13AC167DFE778E66EEF82E1F9E6 /* TOCropView.m */; }; - 3229540C0A7865FD25CBD70402DA0C35 /* FrameTransportImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E6307960B1F6D0785F439482293F689 /* FrameTransportImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 325C2B9FAE556E72334B611582BC2D33 /* dwarf.h in Headers */ = {isa = PBXBuildFile; fileRef = 74B062219A682207723A6303E2CA31A6 /* dwarf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3261E2311B5543A83F7EC3D9D28D0D25 /* EXAppleAuthenticationMappings.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BA4E47A1FFF7ECD3994E443C14F65E6 /* EXAppleAuthenticationMappings.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32648D1095453B2BC0D24FF6CA2E32FC /* bit_writer_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = F20A431211371FE48A41C08351C700CA /* bit_writer_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3270D130AB1AB1454FAE8CCB20392478 /* Fcntl.h in Headers */ = {isa = PBXBuildFile; fileRef = 37A59588AB9E695C969A7A078928DA45 /* Fcntl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3272F95CAFAB56F6B327E1EE32D8E028 /* GDTCORRegistrar.h in Headers */ = {isa = PBXBuildFile; fileRef = FFD1CAE105527CF63F11A820AD292567 /* GDTCORRegistrar.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2EFB459B385D80E031BF573FF6A128C3 /* ExceptionWrapper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4BA0DC74B20FFB89DC6B793878214871 /* ExceptionWrapper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 2F0572B89DC0FCF6449204A686CEFD23 /* EXLocalAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C2765C0E9ACB7E4846FB7A43CA21755 /* EXLocalAuthentication.m */; }; + 2F2CE2C3F8A7C0C790BD647255ECF5AD /* cct.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = CF23CC817A95D2D6EC9B51B5E14343C7 /* cct.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F64DC35A9F59D5820F03D3DB86F7C96 /* PolyException.h in Headers */ = {isa = PBXBuildFile; fileRef = 4225A60B45A95BED41217E53FC10BDDB /* PolyException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F6652E46DC338548662367B81915F25 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = 027210AF12960DA75E0E13687A8B0A07 /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2F67DA389E43964EE5271FB02C284A56 /* RSocketClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FF00494CCECEB92C703520915AF2DF03 /* RSocketClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 2F689061F70B495C0E7036234947A4A4 /* SanitizeThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 536F7347189B2519493855E0FBBF78CB /* SanitizeThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F772B47B5AD2FF4FFF7F24F16190C5A /* SDWebImageDownloaderResponseModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 281DE879623596E0556DFE46F612EF83 /* SDWebImageDownloaderResponseModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F7BEE2B0414D2430FEBDE422D82E716 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 034507F582A52D986314724EA30140A2 /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2FAF4B1D2951B1AE7B14AAF36637057A /* FBLPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = EC33EB81EAFE738D028161A843133FDA /* FBLPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2FB54946DFE25176C6E77A6D5A70C9DA /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 07A975EBBEF16BAA2DD5A684DF560E5B /* RNLongPressHandler.m */; }; + 2FB8C5E4C5631954EAD3757441F763C9 /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 070AF3A34162C4E169CC46A26A40058E /* MallocImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 2FCF5F079212CB005E504CF40C4C951B /* dynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 05EB11B4088E4CA6D0CB872253BCFCCF /* dynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2FF87901C9FB5CF83D1E7452BE807E64 /* AtFork.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7108AEA271F505A21FEBB5ABFFBDDCF /* AtFork.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 3005B9C27D2B3D431E6F151C2ED6D8F7 /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 107BF0D79A81DCBF9F2C7251D501A63A /* RCTUITextField.m */; }; + 303544A415680F1EDFE79AA7B091CEF5 /* MemoryIdler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2964002BFB205F392D39B2C836B6AE19 /* MemoryIdler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3041989153CDC0261E17B708E0FA20D7 /* RCTAsyncLocalStorage.mm in Sources */ = {isa = PBXBuildFile; fileRef = 86AA0BB8AB1F81709D8DAE74879B068D /* RCTAsyncLocalStorage.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 304AC0416D078BC7F11EE314363C4AD3 /* MessageConverters.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 77EB9E7906E4AF58634F7804B1AC54B1 /* MessageConverters.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3068CA0DD0D8EC9304B89DCD5E2711FD /* FIRCLSUnwind_arm.c in Sources */ = {isa = PBXBuildFile; fileRef = 04CD318B73650A813269D865DF4D5037 /* FIRCLSUnwind_arm.c */; }; + 3069B47EA58DF457310D8947EF04D3CB /* SDFileAttributeHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 55C2494C1C2BAC91A84EA92BDE1AA6A9 /* SDFileAttributeHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 306E69A39FD10D6450030E5C403DBC8E /* HazptrRec.h in Headers */ = {isa = PBXBuildFile; fileRef = C6E690072E939AEE09A66F89F821D423 /* HazptrRec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3074282C68DEE5AC2B02E9FBC1A86839 /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FFFB3400D9B937F709EDAA8E0F84A585 /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 30863A08BF81155B3C301BA2C93883AC /* alpha_processing_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 644633337DCD128ED7793DA3C7441FEB /* alpha_processing_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 30AC6FFF5D61AB8AF0C7149DD6865F89 /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = B2AD51EBD6D9EED1E920D3576E9CD20B /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 30B8AC2B88FED6107EFCA0F48F1D2F50 /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 83F0718D4AC46929A67616693A2E5E6A /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 30BD1E879CEDC30627C17464F7DDC23D /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 2420C687E305DFC74BEF6A8AB892BC01 /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 30C84494833989A226DDE968247C8173 /* RCTLocalAssetImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = A296FCCEBB73CBA5F8831A307C3B5D91 /* RCTLocalAssetImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 30E3F8C6D0872E7CB330BB479D714084 /* Fcntl.h in Headers */ = {isa = PBXBuildFile; fileRef = DDB2BB56871CCE78DA7807E3C85737B7 /* Fcntl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 30EB71AF68C1EBBC1A4D190075FC73B5 /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = AC415482470B49FA58A52B81A346C781 /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 30F4FC699C6CB4F084AD1E1C2A59D27E /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 53EA4730DD9F53694EA672E36F0054AF /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 30FE7FBDB66FF4147763FD808FF614D5 /* AsyncTimeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 81EBB074B75AC78031E9362402A44DAE /* AsyncTimeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3118025E4549BE00C617F4F6ABA09DEB /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B79E44E27992535930335B6EE61DC447 /* RCTSinglelineTextInputViewManager.m */; }; + 313E8A8AEA5A22BDF46F9792635DE5DD /* BSG_KSMachApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F3324150D838B5A79EFFA3B7990E404 /* BSG_KSMachApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 315B81DC2BCD2E169C26F9AE7BF89BAE /* ScheduledRSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 98CA4C533F56EA8774B37B7E5CFD6E7A /* ScheduledRSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3167828D81549108E01BC503CA5EB814 /* SDWebImageDownloaderDecryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = EC23D8DB996B1FE92A084940B1F28352 /* SDWebImageDownloaderDecryptor.m */; }; + 316821A6D6464A67A56AB3343DCA87C8 /* ScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 105C6BEDBE480010F2F7F515B213FBBD /* ScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 318D33E151FB74850FED3780E7CC1597 /* vp8li_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 83B05D19439553D21178193FF0C75B05 /* vp8li_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 31A2B597AA17492026482C3FE76F8714 /* RNCCameraRollManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 91509E398C1544A50BA682D970B0C426 /* RNCCameraRollManager.m */; }; + 31A9C0B7972ED646DD42B8AB48EC754C /* FIRCLSReportAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A3DB7B67BAC8384B203734EB780A8EA /* FIRCLSReportAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 31BDFEFC6ED8283237E1FAFD05763978 /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A711B6DDF5746588A5FFCD5E330DBF3D /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 31C9C28D1D271197565CAB47CDD68212 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D76CCB0098127BEAEB1754CFB47C021 /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 31D7206FED6867269B7EF6D2C1E20B32 /* BSG_KSJSONCodec.h in Headers */ = {isa = PBXBuildFile; fileRef = D79ECBAD9D023B23590DA3F9860C4878 /* BSG_KSJSONCodec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 31E825642E6F8923F689DCF2BCED6740 /* FBLPromise+Await.m in Sources */ = {isa = PBXBuildFile; fileRef = 66EE8C7854B55B201886046863BC7BF0 /* FBLPromise+Await.m */; }; + 320B341D246BF6670B88F45ED45F35C8 /* RNFBUtilsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 306FDD037C73399B0B0783FC8DF4D453 /* RNFBUtilsModule.m */; }; + 3261E2311B5543A83F7EC3D9D28D0D25 /* EXAppleAuthenticationMappings.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EF6B9A47FFA6087F2E4D57B895577D6 /* EXAppleAuthenticationMappings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3271B61D5311B0A1E22EA540F1C0948D /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3CA87F3981BA1FAD1B5A90A2FB91D9D /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 327589EC8A6265707CCFE874EA642053 /* ManualTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 44D271098B5BCC88549B07E033D7938E /* ManualTimekeeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3278DD4E8C945A15F7BD4A4D15A2DB70 /* FIRCLSSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A9D7451AAEF6D630785986A58FDC007 /* FIRCLSSettings.m */; }; + 328252FB5DC2DF774B6902BE393ADB09 /* UMErrorCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 85EBAEA75FFA7DD5F1973B6C687C2441 /* UMErrorCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3297803A1036B923EA911A24F231B3A5 /* BSG_KSMach_x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = 3BE5E4F1B8D8EEEACB8C8E1EBE765069 /* BSG_KSMach_x86_64.c */; }; 32A4EF8E09B848C461511F561251CC0C /* SKHighlightOverlay.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1756CBAB34D943C6297BED0A55482AA7 /* SKHighlightOverlay.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 32A5BD70AC3E15BD3C018A75843F047E /* IPAddressV4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 100412FA16CB816F8170F047DB52EF09 /* IPAddressV4.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 32BC9D69E3FC2C6D5A820D8746FD16C5 /* RequestResponseResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 7878CA8D54C4B07AC9493E905F05E20B /* RequestResponseResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32D0D609D5BBC0C06848942F41125DB6 /* Builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = A4B11545965ABE6C7AB237B1765A88BC /* Builtins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32E7F2A84AC555AC86C6BDAE54958171 /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3434389DF3696B53B90F2F2EBE9118AC /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33187A10BF5CF09073D396DCE97FF6ED /* RNNotificationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 92A49EE85EF12F05E97E56753349B854 /* RNNotificationUtils.m */; }; - 3329202ECE86AC24E54E47F2B9E27C91 /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = D8FE9A68195B8B6221AB0447095456E5 /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33314BF68A7849E37848A5D7ECB1BBBE /* FIRAnalyticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 374704F57732D2F851254C648CA148F2 /* FIRAnalyticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 333A1B25E4CA1EC4C72D34D14B91B32B /* SpookyHashV1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29DF24F2AEDFDE6DADBA573079529B6B /* SpookyHashV1.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 3340B9091FE8AA420E080AF309001627 /* TurnSequencer.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F0F007E490BD7A6AD5E2861E1F025A7 /* TurnSequencer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3379AF5EE34A3C8E717EE71C34011805 /* SmallLocks.h in Headers */ = {isa = PBXBuildFile; fileRef = 9660208B0CEFAE20C259097910CE9787 /* SmallLocks.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3385379F22AF46A20D46E97F789B1C06 /* RCTDisplayWeakRefreshable.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C970220DC95DB4DD7D644673EBC10C4 /* RCTDisplayWeakRefreshable.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 3397A2D7BB300BC921181207418D826D /* dec_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 494B87A43A32CA29805FA67042D33BDE /* dec_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 33AF07E40B204BBA528981CB080EB52F /* ManualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 618086732FB8BEF7EB0994CD5B8498CD /* ManualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33B8D32088C658F82BB48171E1D877C1 /* ChannelResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 511E9E59D0ED620364C19CBDB853ABE6 /* ChannelResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 32C8655D48F40867932997718E4CFB01 /* BSGJSONSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = DDB24E02EA6FB47F447446D284BE71FF /* BSGJSONSerialization.m */; }; + 32EA84EA6DE44E1C762DFD5A7368D1D6 /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = A045463B429A15AE4E7D8C9C7D3D25CC /* diy-fp.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 32EB13EEFFE187E1629F0CFE625069A8 /* GDTCORReachability.m in Sources */ = {isa = PBXBuildFile; fileRef = D75A2CFEEF6B8B25305A84FB7831CDD0 /* GDTCORReachability.m */; }; + 3307A812F26ED03659E84F5C45F81999 /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = ACA61489DCBF21D8BF85939ECCD147C3 /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33187A10BF5CF09073D396DCE97FF6ED /* RNNotificationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 54DFF4FA1AFD8A70E0EE2531B28728BA /* RNNotificationUtils.m */; }; + 33265A4F09DB8FB51B801C3BA92AD81B /* DefaultKeepAliveExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = D275BB6BB5DDB9ADBCA034837339D4E6 /* DefaultKeepAliveExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33325583D03F08A5A8004F9B8219253E /* it.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 54C880A4BF84B88F1F9DADFB3F064F43 /* it.lproj */; }; + 333D12D69079F2758E9D420A9DB33103 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = E62636EB54EBAC8FFAAD4C44CF3B71D7 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33482CEF63E6E903662CB9FFA4347F0A /* AsyncGeneratorShim.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B42126EAF02047EADFC9E6162C406BC /* AsyncGeneratorShim.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3366E76CA4F7EBBE50E98AAD07B05D76 /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F52333D428D405656E110A96D202CD1 /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 336AF32DA88EC4C2FF4831C3A7C3D0F3 /* FIRCLSInternalReport.m in Sources */ = {isa = PBXBuildFile; fileRef = A3803A14867971EE2F7147E185238DC3 /* FIRCLSInternalReport.m */; }; + 33734444F047897F92D31377FE37DBD8 /* FIRBundleUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = D4F1C532F9BEF20239D3696E29DB5A39 /* FIRBundleUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33A3F9A3EC7C85FF053EA3936284ADCD /* GDTCORTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 12BEA7F7C4B73D1E36CD768C9F3B9301 /* GDTCORTransformer.m */; }; + 33AB5242D543303153929BD24123AE64 /* BitIterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 80465CD88BDB7A9BE15102CF50241913 /* BitIterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 33BD0254FA27EDD2F22654E1DBB7DDF5 /* SKDescriptorMapper.mm in Sources */ = {isa = PBXBuildFile; fileRef = CABA488DABFBFA90F5E1369C3D813996 /* SKDescriptorMapper.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 33D91A1A80CBCAD89FEF00E26FFFA835 /* evmap-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = CF0C1E54F3BF3139BD54F1B42B3175A4 /* evmap-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33E54D78AAD85A6AC7A973A1FE5B4616 /* Framer.h in Headers */ = {isa = PBXBuildFile; fileRef = 57B323E86461E56DCA658BB778E3012C /* Framer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 34368721A37AB885D9E769936C8FF6B0 /* GDTCORDataFuture.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A097A82EB5F9568D3CD84603C037131 /* GDTCORDataFuture.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3448E33F00442197EC44C68491ADC929 /* SanitizeLeak.h in Headers */ = {isa = PBXBuildFile; fileRef = 080AB2B7CB8699758B3D6C0D17453CBC /* SanitizeLeak.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3474ECD5A392C8A34E14BA6BDAFF6F33 /* AsyncTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 077F291B3D51FC13039F9019F22DEA24 /* AsyncTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 34ACCAF00BE9EC0C414BA0F36459537D /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = F07D2F18E27AAD4431AA0C119A2B18A2 /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 33D7E712B6D5A211E267078385732A82 /* RSocketStats.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5C127F75FA6077FB8DAB2F87EFD5DC08 /* RSocketStats.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 33DC591EFDAA7BD1D9D6B57E95171696 /* RNFBSharedUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B8AF369F25FF411A049E73F240EF7F1 /* RNFBSharedUtils.m */; }; + 33E2AC6E5506D025DF52F40BA239CC9C /* StreamThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89F8DA17B84406296466CA0BD7774307 /* StreamThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 342D1318DCDB772504BB7EACE319F360 /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EF300043F25CCBF87B4550F45407717 /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34A3DED0678C7C9230EEBB6D3516425A /* TOCropView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F36E13AC167DFE778E66EEF82E1F9E6 /* TOCropView.m */; }; + 34A6F22C9D2DA470407AF6936B1D1610 /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = AA817559181B1223AA1F194FBE06B705 /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; 34B5B887C7B414AB3FE6CD1820C6F32F /* FLEXNetworkRecorder.mm in Sources */ = {isa = PBXBuildFile; fileRef = D73071E48F25255F5B10C19EEF913046 /* FLEXNetworkRecorder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 34B85FCE394E7DA56240463C0AB2C229 /* HazptrUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = A0E317BA0618B3CF6CE687522449B03C /* HazptrUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 34C855B4D2D833A164F66599252142EE /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = BC5C7D47ADB7665AD15EB38241F8559A /* Compression.m */; }; - 34D2FC28544720844C8807FC6AC7841C /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 7CECBAB05A930D507AE7B0E29056A501 /* SDImageCacheConfig.m */; }; - 35115A263B27EEBFF0F6EE4B2655360D /* RNFBMeta.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BED3E9E4BF7DC3DC2B504642ACAAE18 /* RNFBMeta.m */; }; - 3511E2B1CDD57BACC04AEDEB947E4A12 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = E9AF2BFDF7B235CB61C74A7EE7A4C82A /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 351D943AD2450AD56D21238EC5EC43EA /* BSG_KSJSONCodec.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EF2A8C8073C07569D01C689D9D294EC /* BSG_KSJSONCodec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3524A6F091C5B793A3B11F534888F706 /* BSG_KSSystemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B1DBBE9203BCBA001D885ACA16BE0F5 /* BSG_KSSystemInfo.m */; }; - 352927BB4162295B84B20CE1CF71B3FC /* ConstexprMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A665DDBA684A68855493C39C9A17880 /* ConstexprMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3541FFB6E70FA048EE39A444F9065C40 /* BSG_RFC3339DateTool.h in Headers */ = {isa = PBXBuildFile; fileRef = C04C5E73467787F3BD45611703B4287A /* BSG_RFC3339DateTool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3543678784873048A26355B6BACA3944 /* ManualExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0F6E45DC830E5CA7848322A1858380CD /* ManualExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 354ED464519AB071AFDEFBC348815268 /* FIRCLSUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = C3266B4D8442BC0F9230B842A2B712B9 /* FIRCLSUserDefaults.m */; }; - 3554C6FD21AB7548491F4DC45492E983 /* Future.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 209301772AC99034EB96B79FE63096F9 /* Future.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 35614A2172236737B323220F43DBC3C7 /* MessageTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 261D33A05F4F0528096A16019F0A2BD1 /* MessageTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3568C26D7C02DBD04796A7245C464BDA /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DFC955866A61B9DFFF9F32837718B5DD /* RCTTypeSafety-dummy.m */; }; - 356E6276D7F82FFBC316669109A865F7 /* TurboModulePerfLogger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ECBF3EFF9976882C405D5E9CC56ABD52 /* TurboModulePerfLogger.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 35796E3D5AE1DED7559A23D85CA14899 /* RNRandomBytes.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FC2B930AF9C2ACB6BEDEFC3B6733F62 /* RNRandomBytes.m */; }; - 3592B3D4A8F2DDA56F56843C9975EDCE /* BugsnagNotifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 222044B638A335E8264C585BF2EB541C /* BugsnagNotifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 35B0F956AE7B542B0F65516AA895CC91 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 932CD41FA6D89BAE46722550106F1928 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 35F04D3FAB652E0460F41134F413E04F /* NotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = AD590E4013E1628FF06BDECB4388B4EA /* NotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 35FCD81D5114808CE2C786B91DAFDB85 /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 01FAD5197205D0AFD8FD1F2FC8C37E24 /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36153F8ED16F228983425E4CCB9638EF /* RNFetchBlobReqBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = C75319AD83E624146F210858A8598AA9 /* RNFetchBlobReqBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36202FAF63044E66EC54994F13E81BFF /* GDTCCTUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 46BA6E771CACE78454D8AA68F8424498 /* GDTCCTUploader.m */; }; - 3625F8E8BDADC535947E27F3AEC1CE2B /* CancellationToken-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F8BC1EE68A6BE949F205AF0A712CB58C /* CancellationToken-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 363148C688E6BF5BE23D140A05686E9D /* EvictingCacheMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 389CFC3E4D576AC52BDAAC552137FFF1 /* EvictingCacheMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 363D2E7D5F715C3FDD8325EB7DDF5371 /* DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E3D5FF0ED8DC8C460ACAF715A3DACD19 /* DoubleConversion-dummy.m */; }; - 365B76DBC024C4DB632D8841CFC9C4C0 /* EDFThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = AF1AA0233F4B030FCA8C522FDDCED681 /* EDFThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3680DBD91772CC039B824A22EFC5FC51 /* FBLPromisePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 59ED6F706C9D0F558FED09E373412B9C /* FBLPromisePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3684AFAD991F04A665C07A458F999C32 /* ScheduledSingleSubscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9BC77CD967B59458E50857129DF0EB80 /* ScheduledSingleSubscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 369F09AC477D44597BE384BA1A3CC8A8 /* FIRCLSFABNetworkClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 341F4134AE669A7FD76D0685541CEAAF /* FIRCLSFABNetworkClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36AF5FDE312F1810B576549F8F24F522 /* TypeInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 8664497135BCFA9897D91A8767C2B915 /* TypeInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36B0762A210084AAA9C7F1F4ACD67A54 /* AsyncTransportCertificate.h in Headers */ = {isa = PBXBuildFile; fileRef = E49150825E7B7233D0DF10044CFF560C /* AsyncTransportCertificate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34C855B4D2D833A164F66599252142EE /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EDBEF597A90BB3A563FD690349CFDDE /* Compression.m */; }; + 34C876C26AE9A2DC16B7F2A2904AB89A /* stop_watch.h in Headers */ = {isa = PBXBuildFile; fileRef = A7AE6578BD7F7F96E800B58A62BFCE2D /* stop_watch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34CDA8FAD8119952CBD91C7D548C5ED5 /* thread_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B70EDFA652908C411936321ADE7A72C /* thread_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34EB58E99226DB3F518AA6E287587D9F /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = D9B8B92F24A47BEF9C95B210D292BA64 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34F0DFD8C37DD65D469E3F42AB15B984 /* UniqueInstance.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E04DE717E041E0009FD97ED613179E4 /* UniqueInstance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34FCF45CC9D0DBB89D51453FC691EDD8 /* GDTCORClock.h in Headers */ = {isa = PBXBuildFile; fileRef = 463B9B93FEF2AB780CA5E2E4FC38E86E /* GDTCORClock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34FEF1A443ACECD48D8BAF56D4E467AF /* SafeAssert.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D57829D18EEE1D92E43BA2B93BFD087E /* SafeAssert.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 350046EFA57783C5A668ADFB917575FF /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = E36DAA2644DEBB87D9DAF5D9B3E3637D /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 350AE613C31DFA3D74DD3EBABEE7883D /* Connection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EE211749CD18ADB36400BEAD047FD706 /* Connection.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 354317C878C4259A7AA4EB5A594D59AC /* BSG_KSBacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = ABD11CDC541F63D4559316516DA9F8BE /* BSG_KSBacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3546ED5CE75CAB5E009E202B611C43BF /* AtomicStruct.h in Headers */ = {isa = PBXBuildFile; fileRef = D688BD0666F5655DF0C68C2D97CA9956 /* AtomicStruct.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 35568ABDF4D98AB458321E04288A84BA /* JSINativeModules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 923755E9F99621CC05524BE00627817C /* JSINativeModules.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 356B3BFBDE9967FEB7D091B1DD01EFF4 /* evthread.c in Sources */ = {isa = PBXBuildFile; fileRef = 58273B190325B547D525894CCAF07636 /* evthread.c */; }; + 35796E3D5AE1DED7559A23D85CA14899 /* RNRandomBytes.m in Sources */ = {isa = PBXBuildFile; fileRef = 27871E35046D797BDFC6AB677CBFE34B /* RNRandomBytes.m */; }; + 357F2273B939C6DE75EA2B2D4FD21600 /* SDImageAssetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D93CBCD48E40E7740CBB907E63A0A0DD /* SDImageAssetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 358EAD4E2641D9749EBA400F92077D00 /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 186F2C22A26007A725E79335C5E6BC62 /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 35AA6CC8D0F97816A9D58A19CEE8B93A /* Format.h in Headers */ = {isa = PBXBuildFile; fileRef = B90E21FA5E3F701B8D278B2E7060FECA /* Format.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 35CDAB6F50715003C03DC9B2DA983D22 /* upsampling.c in Sources */ = {isa = PBXBuildFile; fileRef = 16740E5B21418D74BF0EB7B99959E337 /* upsampling.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 35DCAD050BA0BCC1D31C85BC3F5DA2AA /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = F458D12292FA35B08C9A39B64CF76800 /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 35DF1072ADB110CFF3A06D61D16DE76C /* UIColor+SDHexString.m in Sources */ = {isa = PBXBuildFile; fileRef = 837EFFA6ADD6F536B9A48C66A773DD2B /* UIColor+SDHexString.m */; }; + 35EC1CCF497D02207D4E8FD41D54F57E /* evmap-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = CF0C1E54F3BF3139BD54F1B42B3175A4 /* evmap-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 35F31B052EB9880575BAFBE21A0C2328 /* GlobalShutdownSocketSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 77ACDDC07D639F420CA1C30073310AC8 /* GlobalShutdownSocketSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 35F500EAF587605B1E45BA1D934062F4 /* frame_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 086B1B9630B10C0C7A5C473B6B1D4EDD /* frame_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 36153F8ED16F228983425E4CCB9638EF /* RNFetchBlobReqBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AC9189025B8BE1B454FF175813E2356 /* RNFetchBlobReqBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 362CFCE2FAB3468B2C45FE890D99ADD1 /* json_patch.h in Headers */ = {isa = PBXBuildFile; fileRef = E51E3D93489327FBA7B49801806BF032 /* json_patch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3630703BA714A7B643C662E8F4C9B5E6 /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = F1D841594AC0B3715C4A76A17BDB42B0 /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 36485D4AD5ACC4DAAC0A312048B6F34B /* bit_reader_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = FEDED317099F2F9D101BBB2B59B5DC84 /* bit_reader_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 365D26FAE0517554640DE85CCED99E1E /* Types.h in Headers */ = {isa = PBXBuildFile; fileRef = E87529B1BAFDF45BD486509718772E8E /* Types.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 368975B32CE2B1A514EEDE0959DC2CAF /* FrameTransportImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = EECEF8976E9A1DE282356790E4A04086 /* FrameTransportImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 368C0B35C87176A00FD1BB60B421CFBE /* FIRErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = E654F3DD214C3891F78D738C606F77F9 /* FIRErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36AC42E0DA8E51DC848F18C6518C0B93 /* RecordIO-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DA209082F197D4EEA07EDCF022523BD /* RecordIO-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 36B358A11DCCB0C6CCB1E6ADC77DAF1C /* SKTapListener.h in Headers */ = {isa = PBXBuildFile; fileRef = A2C445EAF42760A0FA5EB239EA31565B /* SKTapListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36BFFE1C43E44C07DDDA50D0F9F18132 /* KeepaliveTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 281397F1AB9BD21C08DEE8E0501AACA4 /* KeepaliveTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36C963380A08398FF7C716DEFA439BAA /* TypedIOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = 64C7DEA7D869F455672B981CDD297434 /* TypedIOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36E0A7A800005CA90F21D72A7B701405 /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B9685D2A2AEA1220BE43ECDC9E9E22E /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 372A2C353A7F89465F8E199E1B76B902 /* FIRInstallationsHTTPError.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CD4739532193BEA6F2B46CE2CAC3A2A /* FIRInstallationsHTTPError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 373C69D273FA40F79271C3FDC9762820 /* UniqueInstance.h in Headers */ = {isa = PBXBuildFile; fileRef = B798703660D7BD3CEAD6BD9B086379AA /* UniqueInstance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 373F0400E31E06EC9D70F59328E1EE3E /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 186CE65727441187F17B59BDF3987169 /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 374D76B5D1CC215FA506F3DCBEF936BB /* SDWebImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = D5CAFDCB85306D5AFD07084BA1737101 /* SDWebImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3762C411FCA3D9A1E233BC9197139636 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9F7C807E552CD7F0ED57B38326EDB5C7 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 3781BEDDD6EA12DCBBB8A70B05D7BD2F /* BugsnagCollections.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F404DC7C83384B3C730716C42F2FF4D /* BugsnagCollections.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 378B77697294792BD179C185523F6950 /* bit_reader_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = FEDED317099F2F9D101BBB2B59B5DC84 /* bit_reader_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 37C067B3195F088E56AFFA428230E73C /* ConnectionFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B00BE8F8B05FC8407638AC7886DFA5A /* ConnectionFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 37D3D4A4248C6E9E7054B826DCB62C4F /* BSG_KSCrashSentry_MachException.c in Sources */ = {isa = PBXBuildFile; fileRef = 66DBED08D481E3230301B0600488D541 /* BSG_KSCrashSentry_MachException.c */; }; - 37F160837E019F9DE8A93F3461DACA1F /* RNEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AE0F59D643A8384601A0A88A0232375 /* RNEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 382E43A007BFF80D6822514CACDC6C2E /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = FEECD65FAC38562FFB6C5E0FF2168B3C /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3850D159D695EE0BE10574C838770863 /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = D196AE1B55787F646D039E8E580BDCA5 /* RCTSwitch.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3854F084264013AF986F5BFD587BB854 /* RequestResponseRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F8B9DD0F5D0C01D1578E7363E4E1DC9 /* RequestResponseRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 386A08AAF2A745D747214FF40FF84FFE /* FIRCLSNetworkOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 29D360BE948B0B8AE79B6F6128A14937 /* FIRCLSNetworkOperation.m */; }; - 389AC7DDD3EC7571104E0165D8E93A0C /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 2821FFDF8BCC296FAA8C2F7CFD2C3BF5 /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 389BA58E8373E5DB69932EEF264DABE8 /* FIRCLSBinaryImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 912C4CF3278E3ADA0ED28931B9049835 /* FIRCLSBinaryImage.m */; }; - 38CAE38772E19A5724E4F15A32601B2A /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 1565FD382D91781228BB1CC2768FA506 /* UMExportedModule.m */; }; - 38E01A0AFB1EBBB9D5151E0C9F22776B /* SingletonStackTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0B6320C3DD794AA8706FA4994AD76ADA /* SingletonStackTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 38E9F079C58401C2BAB2B5885CBB148C /* GULReachabilityChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = D6E2DBCF4B67D998B4EB021A9E07EAC8 /* GULReachabilityChecker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3923379BE61AD6AC93DD1AA4630E92C5 /* RCTNetworkPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = B8692BF77F3FFBB13B94239A4E5ED9E8 /* RCTNetworkPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 39387D92FABD6C6C06F9B6BD67CB2196 /* GULLoggerCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 842CE69EF38520DDAA52171D3B28A041 /* GULLoggerCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 393E121F468BA66CD2DFE6B01FF98F9F /* RCTImageLoaderWithAttributionProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 693B5756644F952AD45D01C2CD4C9852 /* RCTImageLoaderWithAttributionProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 395E33E437B5452B9613094415256552 /* util-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = EF9EDC6CDBDDC9EA7F72BB6CE3AF8C23 /* util-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 396D2A75713581498DCD60CB5355239A /* Restart.h in Headers */ = {isa = PBXBuildFile; fileRef = F94A29581BCCA01F862FDA6E66D05EB9 /* Restart.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 397B207B5278E89CD90487DD4A52A92A /* FIRDiagnosticsData.m in Sources */ = {isa = PBXBuildFile; fileRef = F38C5303F7B521491FE9BA5EC76CB6E8 /* FIRDiagnosticsData.m */; }; - 3999FF9872D82CA0ACBBDDE7FE2114B4 /* SSLContext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8EE023928DA39891828783C169ACD22E /* SSLContext.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 39A2159110887735C28BCEC87F76C4B4 /* ThreadCachedArena.h in Headers */ = {isa = PBXBuildFile; fileRef = C996B89FC9E4665A6ADF3EF655EC8278 /* ThreadCachedArena.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39A36FE9BC0602939125676B45D91A2C /* DrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D26E0223B986942AE9A33FFAB0D09D4 /* DrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39B2E790DA449327020997576690812C /* FBLPromise+All.h in Headers */ = {isa = PBXBuildFile; fileRef = 44F48B8158CB28A50A3532A4FA69E365 /* FBLPromise+All.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39BF7EDA8EDC4391604D1AFFEF7EE00E /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D58D963BC135A918E6889B448E86F66F /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36B593E3EA6335C118B7782DA8E12CD2 /* BugsnagSessionTrackingApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = C89060B13A5EAABE289966B9B7599BED /* BugsnagSessionTrackingApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36E0163696574F8B786D05BA08F3D391 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E989BFAB2A9F137B9B90605149AC2B9 /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 36E05C04602F9E6516D0A648301766FD /* BugsnagApp+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = CC8FAA1C912262D8FB04EABEE005863E /* BugsnagApp+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36E6AFE617AE7AB8850CC1E6397F4B66 /* FIRCLSNetworkOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 88F8A7279BB40AE2387BE1D231002F03 /* FIRCLSNetworkOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36FC9E7DA822EB5CC83DA18A93D11F43 /* GLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 04D979379AC3B5C4CC390B73EEDE68C6 /* GLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 37113E6861E12CD3E0C84DC1757B96FF /* Barrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D34BCB9EA9CF11A5F9C06040A886B25 /* Barrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 372BCB0009F5ADC08084781A24633A50 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E60B63962F0015EBE01DA39997A2EC56 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 373A62DDF62516AF417A05F1F09DC021 /* yuv_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = EE1C228CC76D024E333510EC9F96FACE /* yuv_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 373A7ECDE84CE707C755E1958C235731 /* SoftRealTimeExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = C8755BAEBC83C22B03BD7DB43383D48B /* SoftRealTimeExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 373F0400E31E06EC9D70F59328E1EE3E /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = A1761F12273ABDA4063CBDC302557BC3 /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 376CCD7ECFADBCEC62644326EA6F8C64 /* Framer.h in Headers */ = {isa = PBXBuildFile; fileRef = 57B323E86461E56DCA658BB778E3012C /* Framer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3772ADCA3BF208AE5047B9C835BA547D /* BSG_KSMach.c in Sources */ = {isa = PBXBuildFile; fileRef = FC83FB36E6881FC37B06AB32B3F37279 /* BSG_KSMach.c */; }; + 37916BFF37015D489D43ED58CEC40F92 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D3EA5B4B575BDA257735202166064A3 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3794DEFCE1137CAA39E051791D6F57D7 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 90C7C147085C240CCCF67AB7DD43F1AD /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 37A298F5F8D603F694F6D0BB8324AE3C /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = AEE92C474B44CBA057719274639B2098 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 37AD0EC05AB90190AA9D1F16A10A480C /* SetupResumeAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ACCE6DDD9D46016A77D2950B591793B /* SetupResumeAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 37D8C92D8800CC042AD2FF1F189A0477 /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 129BF999B117C84BAB3A73C84ADAD27B /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 37F160837E019F9DE8A93F3461DACA1F /* RNEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7283EB23F32AC740B558D0C30B95E95C /* RNEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 37F3E3931EE30BFF95688AEE1C609630 /* NetOps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6B13A8544A674349A2B8685A22CF4DA5 /* NetOps.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 37F728E6C65C0376778980D627EEEA0B /* IPAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1CDB664089BF1448C4BA69FBA03D6CE /* IPAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 37FD29FAC19693BF91BA579CD22F86D3 /* RCTVibration.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1B7A5687EC3FECBF2152FC845F27CF0C /* RCTVibration.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 38079F6978D9A598E473A97D33DD9958 /* GULOriginalIMPConvenienceMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = A7F777A235BC6BD096853867E94D2332 /* GULOriginalIMPConvenienceMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3808B8A26AB922A642AC3788161E6DDA /* BSG_KSCrashType.h in Headers */ = {isa = PBXBuildFile; fileRef = D20343DBF407D8021B5FCD3EC802C4E2 /* BSG_KSCrashType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 380CD0B08F298700A7E95946BDF89368 /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1594760C53DFE83CD8366904004212D3 /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 38160C63D11A43E440FF35A7E4DF1233 /* FIRCLSURLBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = AAB6149E896399EC0424B0B9EE28140D /* FIRCLSURLBuilder.m */; }; + 382EFB561844FBD4A301E24BB7552F19 /* filters_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 854392E79DEFD120A20C066DCB55C4AF /* filters_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 3877D502A13BEF8A8E61D65114013193 /* FlowableDoOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = E1F7A0D97DA95FFB171D971F6CDBA8A3 /* FlowableDoOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3894D991CF7F1D3CD74B7101F3A2FC3D /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B49FDBF3FC01A38C036AFDF31332825 /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 38A95EFC134FD4FA47A4CF67F5BD425C /* BugsnagError.h in Headers */ = {isa = PBXBuildFile; fileRef = A6D61B128EC0F6DFF20B04348BA44CDF /* BugsnagError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 38AFC6746695FC442AB7D8FED57F0083 /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = F6EA10A90AA1593D6A98F29E04F47B9E /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 38C19E1BDBC1EBF019C3D0A8CF1C7B5F /* FIRConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = D6C5BB22211A7F56D8953B1A2AE24CEC /* FIRConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 38C58C53984AD093A58AA3C8C2123743 /* RangeSse42.h in Headers */ = {isa = PBXBuildFile; fileRef = DD0660AC75549E78737B5FC624874D50 /* RangeSse42.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 38D3B34D08BA7B972A8B94E5DCE52765 /* RCTImageLoaderLoggable.h in Headers */ = {isa = PBXBuildFile; fileRef = A35A7DE406B8FAE3EB7579B1AD3ACF49 /* RCTImageLoaderLoggable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 38DD59C79FFD46AE751323372548DB62 /* RCTRedBoxSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = 82205CE222B6E04489CA0E4B9CB5DABD /* RCTRedBoxSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 38E21F4BBD3CE55A1F7A6521A400C11E /* GDTCORPlatform.m in Sources */ = {isa = PBXBuildFile; fileRef = 96CFDA90AB401FBA7E4CFF0BEF711DF7 /* GDTCORPlatform.m */; }; + 38F3A9FF95E7EC5B6862FD37BE263AAB /* SDAnimatedImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C1ADDEEF0CD70CEAF9F4B1C55F0E0D4 /* SDAnimatedImageView+WebCache.m */; }; + 38FD81FB7631F917EDD0E9E29097F3A4 /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = 642047E681784F26A48404E6D40A6ABD /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3905638F5D114B5957346FAB5DE79EF9 /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = FBD206A4E40645F8B1B0CA79E1EBD3D2 /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3905EDAD6B0D8E00081ECB52A04E0CA3 /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A9CC50E192B5C6EDAF41409F4688612 /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 391A55BBBB4A0FDE96C1FA9C62A16DA3 /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = AD0D3A362D811F5EAEB5C140E2BDCCEF /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3953B7589F73A848B0C6A8C0BBE8EE95 /* openssl_opensslconf.h in Headers */ = {isa = PBXBuildFile; fileRef = B4F4D024338D6DCA927F3774F1084E88 /* openssl_opensslconf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 395D879EB82946D7564A77E43D2FF02C /* PublishProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = F09857F1319ADC4E8AA076419B8A0A33 /* PublishProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 396586DD3A1B2B90C096DC3C8D2AEE2C /* Launder.h in Headers */ = {isa = PBXBuildFile; fileRef = EBEF24FFE00373397C3BD58477679B7D /* Launder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 396D2A75713581498DCD60CB5355239A /* Restart.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F063F42597664A28DB5D13D0BAD4FE9 /* Restart.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39B794E176F65B8F2A766370B31996D7 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = FB66E981678899432AAEE22D2D1F4B7F /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 39BAE3ED446B4441CFDD20EF58C47848 /* FIRExceptionModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E137C9A8D2E3E9A5EF10B8265E9656A /* FIRExceptionModel.m */; }; + 39BF7EDA8EDC4391604D1AFFEF7EE00E /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 60A8A8253558AB307ED8E84CF4F5D614 /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 39C7B8CBC7FF6C71A08118BE63C072A0 /* Peertalk.h in Headers */ = {isa = PBXBuildFile; fileRef = 32D1463A74A42DAEDD2840B3434A62A1 /* Peertalk.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3A08FBFB53A38C2A1A0E71344CCA174C /* RSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 004B54212A40E4C7916C9EE6DDD93C63 /* RSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3A1D52589C5F6CDFBC9A14EB108BA417 /* react-native-cameraroll-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E5EB482843E177EE3F24ABB05A060587 /* react-native-cameraroll-dummy.m */; }; - 3A51A443E2906CE79ADEE3B83147A147 /* BugsnagFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E123675A7D65EE9029D3D4A939EE70B /* BugsnagFileStore.m */; }; - 3A5B7B0891E1DF93F18162F658E3A269 /* openssl_md5_locl.h in Headers */ = {isa = PBXBuildFile; fileRef = 15286ADE9046ACD7BB6938AB34C77DDC /* openssl_md5_locl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3A5DB1E5EC7C9DB692B411AC12981758 /* UMAppLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C81CA3387A07325C1264D2294AA18213 /* UMAppLoader-dummy.m */; }; - 3A674F33C2197E01375BFA3BA423554E /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4156BBA7834D6C6E55D194C89C53915F /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3A758E4BB74593FC69CF6D1539496DC9 /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AA629192EDB38E1CDE92A5C8C618EFCF /* RNCWKProcessPoolManager.m */; }; - 3AAD760E400E5431DC6BA24CB896BA72 /* WTCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = D7D9D01F1D4E888BD17D69E7D442D3DF /* WTCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3AB1B7EC5769BC1100193F3334F8C4CA /* Synchronized.h in Headers */ = {isa = PBXBuildFile; fileRef = 033C850F3FEB52866E0474A4C21D0158 /* Synchronized.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3AB3CEEC81AC6884D03AE68C6920797B /* FIRCLSProfiling.h in Headers */ = {isa = PBXBuildFile; fileRef = 96A65951DF1FD441212C181B834813A3 /* FIRCLSProfiling.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3AB69594FD46CD50CAA872FD72BFBD02 /* RsaFormatter.m in Sources */ = {isa = PBXBuildFile; fileRef = AEF7F78F7DABD39ED7057DBA624CADAC /* RsaFormatter.m */; }; - 3AD41329D89D55EDD31FEAA700231AA7 /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 00803C2B1253E1540309301BEC0F67FD /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3AD45C124773ECBF45B12422CEE8F2A6 /* BSG_KSCrashSentry_CPPException.mm in Sources */ = {isa = PBXBuildFile; fileRef = B6A6BA3A53C99B66F5A5DC13B9AA5AFB /* BSG_KSCrashSentry_CPPException.mm */; }; - 3ADBF0E9F938AA2D902630D0388A32EC /* ProxyLockable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A94A8FADCF705A06FA759CBDCA969EB6 /* ProxyLockable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39CD182F2B1EAC51016774AEEBEF7C7B /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = 992DD574BFA6E0642113BB1C117173AB /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39E6AC4E276515BDB5C7DFD71C6325E8 /* Unit.h in Headers */ = {isa = PBXBuildFile; fileRef = BBC73BC2EAC1CDAC3847AABE5647B8D4 /* Unit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39F4FE38925F09D6917B09C17FC395D7 /* BSG_KSJSONCodec.c in Sources */ = {isa = PBXBuildFile; fileRef = 7975AC71361D847C020289BF2CE5BBB9 /* BSG_KSJSONCodec.c */; }; + 3A033B1083DF60512428067B1FAE1217 /* StaticSingletonManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 33B2EEF5CF6FD114264C2B7489C6CBFA /* StaticSingletonManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3A0EBA9C20A091090BCC639E8D8BA6DB /* StreamResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C041368CA726A7C4BA1CF1337AC041DB /* StreamResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 3A1D52589C5F6CDFBC9A14EB108BA417 /* react-native-cameraroll-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E5E64F267161CCD740E6E399862D33D0 /* react-native-cameraroll-dummy.m */; }; + 3A24567EAA97CA2C452EEE45118017C3 /* openssl_aes.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A011C3AE203A4A6BA8BC9AEE521484F /* openssl_aes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A5D03DE5C0D231A53DD02D0791A134A /* CancellationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F0EE0F7910D4DE8ACCD1C5AA15A07C8 /* CancellationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A5DB1E5EC7C9DB692B411AC12981758 /* UMAppLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EB1889F513B963203313D59B84A4D47D /* UMAppLoader-dummy.m */; }; + 3A66F22642029C92543E830D308926C5 /* FirebaseCore.h in Headers */ = {isa = PBXBuildFile; fileRef = 28E2BAFBF464123D07D80E88EC64B836 /* FirebaseCore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A758E4BB74593FC69CF6D1539496DC9 /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EDCEE072649FFB5B0DD762223223B843 /* RNCWKProcessPoolManager.m */; }; + 3A773AC8A639262A73ED3F671D3DF883 /* FIRLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E7CEA9CAE2AF0E1A5E22F2EDDD3E2BE /* FIRLogger.m */; }; + 3A79003B3C6161DBD186FB8AEE8336D9 /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = BD53164FA67EF8F1844D6FCCE10D3DC3 /* SDAnimatedImageRep.m */; }; + 3A7BCDE44C29DA26A8AA3EA7B357BEFE /* CoreCachedSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A2ABF0D6496094126D0C76FF799A01F /* CoreCachedSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A80011D06CE81B3729E6A53F8AEC274 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 942912A1EA0A7436F2FDD973903DF116 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A894C316EDB26C15B5AB26BFC368B9A /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D3F24519187C0062D2335EF4A06B631F /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A9AFAD65F39A476230BE77CB67A61DC /* SocketAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 862386D325E2D34453FACDF8BC1C8191 /* SocketAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3AB69594FD46CD50CAA872FD72BFBD02 /* RsaFormatter.m in Sources */ = {isa = PBXBuildFile; fileRef = 4158D7C8F9D15F608EA072E56C9C5029 /* RsaFormatter.m */; }; 3AEF0F6BDB4995D323D6D53A6CE2889D /* SKSearchResultNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 31C5EC4D0F956F3425D9D0AA293684FB /* SKSearchResultNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3AF211C26522625F518378B75B041689 /* NSBezierPath+SDRoundedCorners.m in Sources */ = {isa = PBXBuildFile; fileRef = 7878050845433B5C208F692C2F294BE2 /* NSBezierPath+SDRoundedCorners.m */; }; - 3AFA0A37A3317558DD8524C54D9A799E /* JemallocNodumpAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = C9FA6C28A33D0F7D55E824B7E43BB184 /* JemallocNodumpAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B01296FFDDECAD6E361927273755DAB /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = 142DDC0602F382620626934657D3292E /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B01427E1FA24250FE189EA50B116A87 /* Executor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 472D02EEF0092AF824E9106FFB083347 /* Executor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 3B066D458410B462F8B91FA92B3B2560 /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = CC57885782F72E113CAA4D456A2B3028 /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B4DB3C4937B02D8CEF0EAF2686CFE1C /* DynamicConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B408B54017E7CCE97492E0497ADAAD3 /* DynamicConverter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B63613C7DA61F6D02769ABAEB2E75D2 /* alpha_processing_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = D6CB014D6F64A3F8BA9B0124907F5578 /* alpha_processing_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3B77F14BA7A7AA50C9E62CE0E50ADD72 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B6AF267F4A7C6DE4A649FA84CE33D1D /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B87BBB400091E1AFD2048F0DD8576FF /* GULKeychainUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 90BCAF1AC58CAB9DA6A0307E93957A3D /* GULKeychainUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B894FCBE494A56B522B87BECE5D410E /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = 53F1C5AC523F842CC2FBF625C56A25DA /* RNLocalize.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B8C0F8CD9C4C6E1042F602594FCB5F8 /* KeepaliveTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B421A26D9964D79519F4A35E88647A2 /* KeepaliveTimer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 3B92BD1F3C4C7D4BAE5769093FDE13C9 /* RSocketParameters.h in Headers */ = {isa = PBXBuildFile; fileRef = BE25E45DF047A25091D66D41617ACFD5 /* RSocketParameters.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3BB0AC2CA21737E9440D2EF9DDE9DE0E /* Yoga-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D459110A843532B6331795D0BD473C9 /* Yoga-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3BD56F2987591E4D1C69FCB354B6C1AA /* ConcurrentHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = B490FDB36545F4DD07EA59B9D2ABF055 /* ConcurrentHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3BD654224A7D6291F0BE1BDC9CFF7FA8 /* sorted_vector_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 363933C9D4336A82E96B622D5B760E34 /* sorted_vector_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C05265C3D54545533D27ED509AE6198 /* evrpc.c in Sources */ = {isa = PBXBuildFile; fileRef = A6665D8FC0F6D068B435FA4B02F47F71 /* evrpc.c */; }; - 3C1E00D47634B711DA034154CC26F559 /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 51B5F94B663EA1729F3E6763EA3C5C8E /* RCTCxxBridge.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3C387441AD7A451A3EE11476BE66BBA1 /* Fcntl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2380FF5BB3C57B87167C2E233299EC05 /* Fcntl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 3C57B9928E0E9E9146182C7BB5615F19 /* UMAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 8205F5FE7761128F3F68F5C115896879 /* UMAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C617E2539553EF457C6158039E4710A /* bufferevent_sock.c in Sources */ = {isa = PBXBuildFile; fileRef = 92CF4CA7AA549F6D173DB1F3510DAF47 /* bufferevent_sock.c */; }; - 3C772F0F0D4074A208C0CE702C66CFC8 /* REABezierNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 312B441FFA6CC93EC133D032A44193E6 /* REABezierNode.m */; }; - 3C7DEC79D39077473E41A50EEB0BB965 /* ObservingInputAccessoryViewTemp.h in Headers */ = {isa = PBXBuildFile; fileRef = C4DF262E1B11E411DD1D59F123573EE9 /* ObservingInputAccessoryViewTemp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C8032BAC8B54659B70A04D9697F425F /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = A67B831BF4C65D29F2045462D7945319 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C8D3504424E11229C9F4C2DE3F90EB0 /* EXAppleAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = 04A6F722C92E459F6D83D92B90C54F50 /* EXAppleAuthentication.m */; }; - 3C94F9ADBADA4A1C0757D2949EF70E3A /* MiniPBCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = A760025F9DCA8E281E648E58C5F5CFD8 /* MiniPBCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3CA2FC7DBA7152E6D589D30F901C6763 /* log.c in Sources */ = {isa = PBXBuildFile; fileRef = 73A59776370089BF47A36F0979BECF4A /* log.c */; }; - 3CA795EAB5767F4D1A0FDA5B86CA2DD8 /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 303C4921600ED01992C0528D52C81B42 /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3CAA24B0C95A2174B0F96C73EF1FE543 /* VirtualEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CCBA08FC978D2D5552E2C77919C442BC /* VirtualEventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3CACE55A79ABFEE97EC474C916D6D64C /* ratelim-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FC593F0F6C973BD78BDD755CB42A289 /* ratelim-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3CB366A16924256751AACA01BD086F7E /* Base.h in Headers */ = {isa = PBXBuildFile; fileRef = 339FD1678F620533FC6D3666F36ED195 /* Base.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3CBB07379217543EF4956698F097466F /* MapUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 485C781CBCAEAD3D09B21CB983E20236 /* MapUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3CC1DF5BA991F1C779876D2A4DFE0ED4 /* SDWebImageDownloaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 31539C38D495B50907FA4BBE5334CBCD /* SDWebImageDownloaderConfig.m */; }; - 3CE3FABA53DEB8903E89519F3760718F /* TokenBucket.h in Headers */ = {isa = PBXBuildFile; fileRef = 23D92F955B626161AF653427B4BBB71B /* TokenBucket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3CE4C5D474BB4C8B9040421B240EC9C4 /* ObservableDoOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 469FC656713290E03642BE6E71A20834 /* ObservableDoOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3D10FBEEA5E96CDFF5C03798B6436A5C /* BSG_KSCrashState.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D38E4F9E92A99FEA2A7CC00574A1EC5 /* BSG_KSCrashState.m */; }; - 3D4CCA6EFA5A66F713D91F7EDBAF0EB1 /* ARTSurfaceViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E479E8853E5ED5B92985DE2CAFC28A5 /* ARTSurfaceViewManager.m */; }; - 3D5FBD93C7B945B223CDC5B18A16437A /* FIRExceptionModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E137C9A8D2E3E9A5EF10B8265E9656A /* FIRExceptionModel.m */; }; - 3D9A9C98302AD02F0517D4F51C4F7926 /* Sha.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A7858D1D872AC31A34991A1AC19FB64 /* Sha.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3DEA94BDE50C0420E7138AEFB3161900 /* CPUThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = C52CF47231E5F2DD0870D298922E99E8 /* CPUThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3DFC6DADF98A78E4F9DC89D03F98DA27 /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = C64512ECEB03ED85EBE66A4997DFDE03 /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3DFE32D97687363B367540B2CC7EC203 /* MallocImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 12165C66AD4A3FAE0B695344667405C6 /* MallocImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3DFE75FB298FE917D9C324FBBC2F2F2B /* SDImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 655AB00308011B638B5EA2AA6AE30280 /* SDImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E0505A9EA57B19245B94D10D1081340 /* GDTCORTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 12BEA7F7C4B73D1E36CD768C9F3B9301 /* GDTCORTransformer.m */; }; - 3E0C8ADB9C6FF67F76490D10D5426194 /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 627D20F1B33BC522318E7820082BC048 /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E108EBAAAEF3285BC72EC4704E12DB5 /* FIRCLSMachOBinary.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FFD4768964A96ED914AFC1FB2C3CD28 /* FIRCLSMachOBinary.m */; }; - 3E11AD1C6A698A72B7E51276BE2405B2 /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BD87FC771BB04231CE2D088E7AA9AA1 /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E3A1C6D7CEAE1AC94578879AB2B6655 /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F840D78C1614BED3C1CE73DA8088F55 /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E43EB7F835F94F1EAE94F718CA84403 /* PolyException.h in Headers */ = {isa = PBXBuildFile; fileRef = DAACBB6E0B5F70EA6D859B825E7C77C7 /* PolyException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E57E661E759A27E1E0C0EFAFCF33D7D /* Types.h in Headers */ = {isa = PBXBuildFile; fileRef = E87529B1BAFDF45BD486509718772E8E /* Types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E632BD82BA1A95B4C7F411A756545B1 /* IStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 321BE554D2E363EDFEC003839ADA7C62 /* IStream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E66988DA7660492A2A31779F2E49357 /* SDWebImageDownloaderRequestModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = B876C23C439C3C7CCABB78AE23C0A80D /* SDWebImageDownloaderRequestModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3AF04B5480C7868A38CFD0AE3E12ED86 /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E61AF1CB17B0CA8E7D4A8158361F4DF4 /* JSIExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3B118620D13197BEF9C2AE1C32953CED /* MemoryResource.h in Headers */ = {isa = PBXBuildFile; fileRef = 14B414E138B4DADDE37A307B4CF155EB /* MemoryResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B2098DABCFE776E94FEE04DF9557CF0 /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 827B56C1E939D2F8F150F08DF0948799 /* RCTImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 3B22D56012AD29B234EEEFC6BEB010B1 /* ExecutionObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EAD0B3A6057A359919AA91B85A91C4F /* ExecutionObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B51D3D9AAA380C3D1AF31EA058324A7 /* BSG_KSCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 789E43D8893122D597A2C48EDB7CFD7C /* BSG_KSCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B5D0BC23D913CFC18B4AB92B50CE407 /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A99368FA9B7C56371503B6CE44602A8 /* RCTTransformAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 3B6922D14B23A155308E5D72318FB004 /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 35C462873D8556B83C39A330E577312B /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B8202F37017BCF36C9E1187A99CF2E6 /* InlineExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 71D33565832EF9643AF1A9C72CFC9A05 /* InlineExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 3B894FCBE494A56B522B87BECE5D410E /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B314EBC0F63CD448CFF48D750EBD705 /* RNLocalize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B995CA64D0EFAC634D5A07D1607BD05 /* FIRCLSURLSessionConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EC80EEA530279E219DA9C2BAFC44698 /* FIRCLSURLSessionConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3BAB342428D70E0BD373376061AA0D9F /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 580DCF30E8F730B898A9CB6FDA5A1DBA /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3BC8A17E25A16AE5B69685FAA02CDF95 /* HHWheelTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = BBD00687D106C7D010206329B7785BEC /* HHWheelTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3BCFD00E61EAE61F79B4D2A008A04B81 /* BSG_KSCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D6D624CF810AD92E2B2562C0562C073 /* BSG_KSCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3BD336E24043640DDAFE96AF385E7B07 /* Padded.h in Headers */ = {isa = PBXBuildFile; fileRef = ED305439FEC86D5CE3B0292A6FA4B6DB /* Padded.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3BE3507396BCD9046119593DA76BA96B /* EliasFanoCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FA223FDB03BD8D6326DE81D5DD9B6F2 /* EliasFanoCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3BECADEE8D5E7673C2E6F02336EBA8AA /* ShutdownSocketSet.h in Headers */ = {isa = PBXBuildFile; fileRef = B5354F53863FEF868B169393D964F0FA /* ShutdownSocketSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C0325CDBA1A56CDCD0C36F821AA4F3A /* ThreadedExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6791FB3EDD564BD9752FDCCF60CA3EBA /* ThreadedExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3C0A4A66954EE859B051995A3CEE4486 /* Base-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C123BAA55F6AFD3FBB4D6479169F9F8 /* Base-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C23CE96F170FF3CAEB7DFB8F6FEE7CA /* Futex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4BA812FB89277D12BBAE8052D0AA1C09 /* Futex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 3C28036859ED2DDAFAD9A8446165E5EB /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C8AF838B4B48FCC4915595140A0E4514 /* ScopeGuard.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 3C3A894C2424566C1BFE2F179BD639B6 /* SDAssociatedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = E16681AEC54C6821A4E5D9301BB830F5 /* SDAssociatedObject.m */; }; + 3C488B3D05385A680DB1E77F826DEBD7 /* EventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD6FB50291DEB555A1866C9D465DAE39 /* EventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 3C57A5998E3C56F45EB85FD136D87A85 /* AtomicHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 770C9E7B377482C3CDAC5BFD3DBD94DE /* AtomicHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C57B9928E0E9E9146182C7BB5615F19 /* UMAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 3996EDD823280D882ED08A7C542F9AD8 /* UMAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C772F0F0D4074A208C0CE702C66CFC8 /* REABezierNode.m in Sources */ = {isa = PBXBuildFile; fileRef = BC1DFE2FED2A0B13126963E15601113B /* REABezierNode.m */; }; + 3C7DEC79D39077473E41A50EEB0BB965 /* ObservingInputAccessoryViewTemp.h in Headers */ = {isa = PBXBuildFile; fileRef = B4874D1CB2474417B8C726895842F734 /* ObservingInputAccessoryViewTemp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C80B23F1A75FFF0AE88382E90F6110B /* FIRInstallationsItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 171E2F7335FA3822401B90809CDF31D2 /* FIRInstallationsItem.m */; }; + 3C83A352957F4D0F78D2A55A9EF7D879 /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 15D83FE08FADE0344CE2715E708B14D5 /* RCTImageShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 3C8D3504424E11229C9F4C2DE3F90EB0 /* EXAppleAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = B952CB53081748F46C04F821010B3D86 /* EXAppleAuthentication.m */; }; + 3C96271835A0B32B50C211AC15AB4203 /* AsyncSSLSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 678C4DAE117185D4BB58E20B091B3292 /* AsyncSSLSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 3CDBA62C0981F9265B1854CFB8F28EDF /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = B47797D3D59C968EF82764FEA01FCDB7 /* RCTInspector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3CEAFD78911BA6D587B7AC4E39BB8846 /* BugsnagApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 112D962E5A1F21D8C0DCB29477800458 /* BugsnagApiClient.m */; }; + 3CFD6EF64399B69E630C48EBDC973198 /* SSLSessionImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3A4BB6035141C108E1A0BA59217CE37D /* SSLSessionImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 3D458A73BE03264CC6356E19A9BDF408 /* BSG_KSCrash.m in Sources */ = {isa = PBXBuildFile; fileRef = 92043D3966AF5FC9C59E6083D1D92325 /* BSG_KSCrash.m */; }; + 3D4CCA6EFA5A66F713D91F7EDBAF0EB1 /* ARTSurfaceViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 048BA257BC45490465B8024434ADA4F9 /* ARTSurfaceViewManager.m */; }; + 3D4EF1FC24ECF3F028C557D2021E8172 /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DF281B7C5E8720EB7DC9F94FAA8F7B42 /* RCTTextViewManager.m */; }; + 3D63EB42FBA44BC88FAD046B11549673 /* ConsumerBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CE8225378D28D5807F1B16BB9BAE9DC8 /* ConsumerBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 3D7FCE55565746109356E2FFB25784BC /* FIRCLSUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = C16EB91026B1EF04C1DC87BB87155F18 /* FIRCLSUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3D8BB01FBCC4609E0DFCEA30883AA71F /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9950AA3B543B1E92A2B0EE75F9A5621F /* RCTBaseTextInputView.m */; }; + 3D9A9C98302AD02F0517D4F51C4F7926 /* Sha.h in Headers */ = {isa = PBXBuildFile; fileRef = C79C9B6348AE626037636647482DFC5E /* Sha.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3D9FF20B4F86C86E56A22BF9F06F6072 /* BSGNotificationBreadcrumbs.m in Sources */ = {isa = PBXBuildFile; fileRef = EB917A79529EC54B6B6890E1CC8DAB5D /* BSGNotificationBreadcrumbs.m */; }; + 3DD324A83D2A3296E4A68434DFD24495 /* huffman_encode_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 0F5D190FECA2BE663103CD614226C896 /* huffman_encode_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 3DD38D40F94071D2CED71A2CB4EB6462 /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = DF6110689FAD371694B43752C553C769 /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3DEBF433071A69345226315B12A34660 /* buffer.c in Sources */ = {isa = PBXBuildFile; fileRef = 5EF8A94048C6DB061F18D39393DD8E0C /* buffer.c */; }; + 3E05A4A62C97013F053D32CA64C78998 /* openssl_aes_locl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6931DC644FEDF73FEBBE11DF0C21A77D /* openssl_aes_locl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E63734D1194F7760186EE0E9B1BBB70 /* BSGUIKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 33E0D68A84FF625B142642B4F3D770BB /* BSGUIKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E6B36323BA8365F4E3C075502B6ECE3 /* BugsnagKVStoreObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = F162080DEB1F229CAD72B7EF91B26785 /* BugsnagKVStoreObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E6ECF43672534E568332758BCCB14A3 /* FIRCLSMachO.m in Sources */ = {isa = PBXBuildFile; fileRef = 2777CBD18D9C43C9A3474489B0460131 /* FIRCLSMachO.m */; }; 3E6FC3DAFF8EB72DFAB42F5D76548FB3 /* SKObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = D5931E02E7529784C22BB8BEB80A6E2D /* SKObject.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 3E898C0E219EE6C4350F235524C4C79B /* GULSecureCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 69461254E0F0D3F1C43476F6235680E3 /* GULSecureCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E953683EAC1CBCF31A36D8ABB004571 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 147256C1CA6ECB603F9BCC7C65C426CE /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3ECE143CA639186CF0C332B870D1636E /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BEEEF306AC143191D1E09F376687145 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3ED437AFECAD66D631D4BC4EC777E487 /* FIRCLSUnwind_arm.c in Sources */ = {isa = PBXBuildFile; fileRef = 04CD318B73650A813269D865DF4D5037 /* FIRCLSUnwind_arm.c */; }; - 3EF5FD74035E006AAE06DE79060A186D /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0B5AB93A1A9D7CB8293F5DDF39830F9C /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 3EF80C04CE7856A931A5ADA4CBFDE1B7 /* ExceptionString.h in Headers */ = {isa = PBXBuildFile; fileRef = 337F59CD81DBE94A74954F4597B94B9C /* ExceptionString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3EF97537A8FE1D130B9AAC87AF69FF2E /* TcpDuplexConnection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A54E82E346C84E98425FADAF6834BFD /* TcpDuplexConnection.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 3EFBB05AF7B45A334808F28C0567B9C1 /* FIRCLSCompactUnwind.c in Sources */ = {isa = PBXBuildFile; fileRef = 68CBB36E7717339C490EC08F8C06B009 /* FIRCLSCompactUnwind.c */; }; - 3F2F0BE44758E1209B1A9C11FA557690 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = EB7F915F146B38A65846A157B7FB3EC6 /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F32CE71CF4452145868E7E3C21C5CD5 /* UninitializedMemoryHacks.h in Headers */ = {isa = PBXBuildFile; fileRef = 62DA78B0C8B22C0F5F258C14B2B653A9 /* UninitializedMemoryHacks.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F3C82E4334527350A221FF9A7FF111D /* SocketFileDescriptorMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E23C9017DF38BEE442275A1E8AC6343 /* SocketFileDescriptorMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F3F5BC1B5B20AF5E257DDBC42EA09C5 /* bit_writer_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = D76E8495FF3C4F45E05A1D077E2B3DF0 /* bit_writer_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3F490E44DD2BA95A57F7636C6A3AD4CB /* ScopedLock.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 792D7911DF2A48D00794E7EC7357C1F8 /* ScopedLock.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F5EDF3213D8490E4B15019B1B7C186C /* IPAddressException.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B9475DFB50607546ADDE85EFFA6AB56 /* IPAddressException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F7C6D11987DBF6BE7D1D559465C42BA /* MMKVStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB7929AC318E4A3B4581CBD03407E6F /* MMKVStorage.m */; }; - 3FB6906B2B9FFEB7F8D7A543954EF6B7 /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C050DE5FA7D253CC9759E6DDFDC51DAF /* TurboModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3FC033E935E90F055DF59511DC010C3E /* nanopb-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0510A61DB27979267FAF3006A1A0C607 /* nanopb-dummy.m */; }; - 3FC68E9C73F17CC7AF038F1CC648648B /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F669730EEE8E6B98C2C7F778D951E3C /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3FD01E9ECE8C4E46C0AF5BB5D04750F0 /* enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = CA9DB25258DD17465318AC4999B7F0F0 /* enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3FF1E30E35970C2120600CA9E4FD256E /* FIRAEvent+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 807FB3BD4F4C8DC51A9131B966235F59 /* FIRAEvent+Internal.m */; }; - 40195431D14A75B81EBE63BB015C2F01 /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7E190197A8BCD54D5B863CD1090FC782 /* diy-fp.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 402900868A67D952C1BC90ECEAD7CBAA /* MicroLock.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01FC364F6C6E3B591535A7FC19249754 /* MicroLock.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 404E9E2CE9BE7FDDA0F623C82D08B7BC /* FIRErrors.m in Sources */ = {isa = PBXBuildFile; fileRef = 34C8B1D1EEFDCEED588CE148E11B47E2 /* FIRErrors.m */; }; - 405074D90F7083BAD97EECF6CC3539DE /* SDImageLoadersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1153C7F2D8D7F8298826538F83EADA0E /* SDImageLoadersManager.m */; }; - 4054B511E3CD127FCF8460E32AF61DD2 /* RangeCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 38C5A3D20CC6919B029171559FD2EDEB /* RangeCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 407FFE3E22157C508820C6381F9E9013 /* CodedInputDataCrypt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1158999A56B57AE4217C56B63FFFA59A /* CodedInputDataCrypt.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - 408B7E4C81DC16EDE8640CAB4162CA16 /* Executor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC3C2EC41A218DD33B6276EB82F35EF5 /* Executor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 40B5FD30347255E3BCE18EB7A331BF5B /* EXLocalAuthentication.h in Headers */ = {isa = PBXBuildFile; fileRef = 05C66A3D5FC990AAA07F76097B5D73B7 /* EXLocalAuthentication.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40E0037555EB81608BFF2A8D5FED2A48 /* SDAnimatedImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C1ADDEEF0CD70CEAF9F4B1C55F0E0D4 /* SDAnimatedImageView+WebCache.m */; }; - 40ED9D5462677D21B50E2275CED46BB8 /* QuotientMultiSet-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F8A79B87F04F432DCEF4AB0A2C2E513F /* QuotientMultiSet-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40F57760E6F24BA9F94823CBC597AF86 /* ChannelRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 18BD1B7E92E88CC14EC8DE9514733A18 /* ChannelRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 412AFC41DCD4D24320F36AE0184CE5AE /* SysStat.h in Headers */ = {isa = PBXBuildFile; fileRef = B601C6E328718F723F5CE385782660DD /* SysStat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41576EEC9617DAE1F4A7B54C13E730CF /* StaticTracepoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D701AED020EB1DA57B6FDE8E105FA78 /* StaticTracepoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 418C55DE9920C0A5FBBBE86EF34C9262 /* FIRErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9881046FDD9C36E6167F04A001FF345A /* FIRErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41C0DD100F80338C8844F09FBB834D80 /* PromisesObjC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DC80956E306D104D9DA8EE53BC5F76CE /* PromisesObjC-dummy.m */; }; - 41CC6B39EF4198876A6721D28A25E0BC /* FIRCLSContext.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E4230BE8F440376E8C2056CE10932FB /* FIRCLSContext.m */; }; - 41D12585C0B84C82BCE9DB966C19333B /* REAStyleNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 88F21242C0569DF77EC652CB7E45B984 /* REAStyleNode.m */; }; - 41E400AD1889A376A264B2970E070011 /* BSG_KSCrashCallCompletion.m in Sources */ = {isa = PBXBuildFile; fileRef = 81FA991C2212606567952D4A3B8044DE /* BSG_KSCrashCallCompletion.m */; }; - 4202EE433BDC6FA11BDFD0BB657E3C3D /* PackedSyncPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = D086FD2DC70AB96A859578DC6120A23B /* PackedSyncPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4209032F1CE0727A3E35FB2D974FFDDB /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 976CE262CF7500DF35A437CCAF94472A /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 421EEC1301424A5D45616BD142C0838F /* Stdlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 759AE7B54AF92C3EFB888E9A1E4A49F9 /* Stdlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 42462FE4EBF940B256DC06B99E4ECFE6 /* ConstexprMath.h in Headers */ = {isa = PBXBuildFile; fileRef = A6168E0E97D94D09DC85AA49AC1CF4B7 /* ConstexprMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 425A77DC42C460EA51D519A6F002C2C6 /* RNCAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 840CA435196E8AA94B62876E546400E7 /* RNCAppearance.m */; }; - 426BE8C7DC428C09A055A4824E261931 /* ARTSolidColor.m in Sources */ = {isa = PBXBuildFile; fileRef = B757F33E547FB3C2806852E7790225A8 /* ARTSolidColor.m */; }; + 3EA5765463A3C9866CA7D04931BF88DB /* cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 5B226505A9C8CFF13FE2314419290926 /* cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 3EADD986136F129665CF13F57A204699 /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8ADD9A407E7D7F73D4235E69A029B08D /* Conv.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3EB02BA4EE079C232B94963033B65C33 /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0D5DAD0301106C54829D77F89B127853 /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 3EB26E9B057A8FBB27863EC0A60A088A /* Poly-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 729D1112986370E02BFA684FD3F582D1 /* Poly-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3ECA2ACAD23C3C43D52D7E5864567544 /* FrameFlags.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 99BE2F500519335CDB65E84AFD50FDF5 /* FrameFlags.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 3ED41AFA7014EE36BCDE8F7F64AE701F /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9730C5179AB23C55654E2F7644F4C25F /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3EF354A64BF8E943F74D0F1F8B0A522B /* Invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = FD6C8D5A0B4CCBA5486FD113C97A9D07 /* Invoke.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F11C61D791254FE82AF5696C3212533 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = E213DA801612E3BBF9E1C0B2821BD9CA /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F1B71A9630F8C25208DD6D8011BB669 /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CFEEC4B26238A97760C661FC6EBEEDE7 /* ModuleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3F49C05C1F38C287BBDBC20C50942AD9 /* Try.h in Headers */ = {isa = PBXBuildFile; fileRef = 690044B01CE1973C18744D256E86F459 /* Try.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F5457418BEF647D02B131A6E0470981 /* pt.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 83DC996CF00F18599135A2312BD308E7 /* pt.lproj */; }; + 3F65FB7F4DAE604C00698B892A461C5F /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = D8E85493FCB78658F657C88B19877EB1 /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F7C6D11987DBF6BE7D1D559465C42BA /* MMKVStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C8504725868A39F09E3FFF4D0A5E3DC /* MMKVStorage.m */; }; + 3F7FFA66E3CB2AE4C2C28000B2504EA3 /* MemoryFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 52AD7AD43F17197B72F79473014FB75E /* MemoryFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F9EA02248DF676A9068E2A34DB95F15 /* PThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A41D7E2DBBC26D635269DD18909A0B0 /* PThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3FA2B6E0EA9DD7075A48A390DD99DE32 /* SysTime.h in Headers */ = {isa = PBXBuildFile; fileRef = D3AA599DC936541F96C2A0FDEDADF1A2 /* SysTime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3FC6FC4AFD6E249471A5B1357DD1DC35 /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3A45D48E274BFCE3C858D392D9F949CA /* RCTInspectorDevServerHelper.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3FCA43963CFBB1D7B26C2ED0E70CF540 /* picture_rescale_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 5415899438777A95114A46A19EB4EB86 /* picture_rescale_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 3FD15065DD5B71BC510CF615120A4085 /* CustomizationPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DAEC73A517CF97C666864661DB55390 /* CustomizationPoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3FD1E2BAF8E02708AD77D0CF6ACEDE76 /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = 63A78931AA61F6FBBB499A3DEE605446 /* RCTUIImageViewAnimated.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 400B2D5426EDD7BB687E105A535FFC4F /* FIRCLSNetworkOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 29D360BE948B0B8AE79B6F6128A14937 /* FIRCLSNetworkOperation.m */; }; + 400F6CC9C1C0E8BA7502546F2E90A94D /* BugsnagAppWithState+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 93C39DD0F16BF1BE85C726C64342D0CA /* BugsnagAppWithState+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4028F4A2FA61F7F522E740ACA1631462 /* OpenSSLThreading.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 358EE261026F11C402B0460DCA40BD33 /* OpenSSLThreading.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 402A7175D1DA76B1C36BE4E87FEC62F8 /* GDTCCTCompressionHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = AEA69030E785D72A0C0CC8E9C51F1A44 /* GDTCCTCompressionHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 402AA162AFEAEC1B6132CB0288A3BFD0 /* BlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = EC1DE8EA926E548E11AF410E548B8716 /* BlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 402D6962AD538E6E50E3594A883A7B3A /* Range.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B8D76CAE2FEE7117E9E0A6C31E9CFEB /* Range.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40378A16692F39DCEA32A5DEABB04831 /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = B2A940E26A5A7DA164A5F39A2B057952 /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 404246BE3A5E04C3F51BA53DA62938CE /* HHWheelTimer-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F2C767F744E3778FCAA39E128F8FBF0 /* HHWheelTimer-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 405B90F1820030D31FBB58861E6F805A /* Format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F7AF7C24195A31AE72C879CAD00133C /* Format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 406B29AA1C2DFC085E6C133DAABB7F94 /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = D48E7AE778250FC2EF3E2A77AB216EB9 /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40B5FD30347255E3BCE18EB7A331BF5B /* EXLocalAuthentication.h in Headers */ = {isa = PBXBuildFile; fileRef = A4193D9F18881BC00CADFFE156D0A4E8 /* EXLocalAuthentication.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40B8649E07A8C59F168398FD3E05D4F1 /* BitIterator.h in Headers */ = {isa = PBXBuildFile; fileRef = BD8642644F3A2804EB341CF7DF6465E8 /* BitIterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40D4AE600C1F8BF22160F87C3A0466CA /* UIImage+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 635ABD2D0367C7A831A83C0C4FD12CF2 /* UIImage+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40DBCC71D3CB20AF4B6A8D6C4925463A /* FirebaseInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = F2384F9FCDC8C8E4F8092212A51E69BE /* FirebaseInstallations.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40F6ABEFC7D0BC7D3D71C0B885066F85 /* FBLPromise+Recover.h in Headers */ = {isa = PBXBuildFile; fileRef = 624B9F811291F5AF60BF66DA62A4BC33 /* FBLPromise+Recover.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40FCFC031F3028FFEDDAEC94A6DBF84A /* OpenSSLVersionFinder.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A633EE03144C9F1454429E6F8B2C160 /* OpenSSLVersionFinder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 411BC398D773361AA1A8BDB49399CCBD /* RSocketServerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FAAD852C1CA9EF26844E8FA4D7D7229 /* RSocketServerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41346D8AF9BAE91AFBF7D03542B2C00F /* SynchronizedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = E5337603B78A222B6B5B57618DB6080B /* SynchronizedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41442FF1B6E0018786917CCB032C0F54 /* Benchmark.h in Headers */ = {isa = PBXBuildFile; fileRef = B0465C015983248F32D4F2E83D69D8D1 /* Benchmark.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 414499A93680D2FAF99296FF7CA077C7 /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F2791169A71E8FC83E4BD3E327C47D1 /* RCTVirtualTextShadowView.m */; }; + 419258E63004A311A862C221B364BA3E /* F14Map.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F238380E1440E17738C994469B85113 /* F14Map.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4193CD12C3490067C1BE06595D7E0E8A /* FIRCLSFABHost.m in Sources */ = {isa = PBXBuildFile; fileRef = CE52DDDD28C1BCF00DA998C465092169 /* FIRCLSFABHost.m */; }; + 41942A251B51E1E5848D5067C74AF19C /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = E854F6CC4EF3F49C1842C5F714E0A458 /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41A9798E0250EB919ACBAEE90FC8DA76 /* BaselinesTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 180D1B18482573ABC89BFE48788B6AAC /* BaselinesTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 41BDA24DD77F73EF6DDDD86752B72D4D /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = 146111A52CB56AEC590C1C250424F771 /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41D12585C0B84C82BCE9DB966C19333B /* REAStyleNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 20D29AC790079739A24F54BE9F434E94 /* REAStyleNode.m */; }; + 41DB830C3D2569D21C9BDA61E0277EFC /* SDWebImageOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D95CD156892E8171703B58D48E2D707 /* SDWebImageOperation.m */; }; + 41DC8D5C155C60A9D369996F19991671 /* Flowables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23FF30501568EB42FA7C87FC4B4E0038 /* Flowables.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 41E2B574369FE2E44FD00865E6AF15AC /* BugsnagPluginClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 94D9587D0AA314F54749BAC8F4AD0D86 /* BugsnagPluginClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41F5664F2892AE0931988788DE71F5B8 /* StreamRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CE1A3BE870187D9779BD588E99A4BA1E /* StreamRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 41FD5923DC509DC4130D7310A6C94840 /* AsyncSignalHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E55B796088A5C84D7AFE45AE1D13C2DC /* AsyncSignalHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4211D833BE8D2195686F497A99A9DC54 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 73E46AB944E91B060A550C4C5605837C /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4215168C3F040A5EFF86F32F14A845FF /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 07A9DC99CB96BC7EB1CBC7EFF6B4718A /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 421E289534216EBA4E6C73FDDF9561C3 /* mux_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 53FBAA5077083A561752542CB9651EF7 /* mux_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4228177C22A0E104C931768E9C8BC6A0 /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = B319FBAEAC3E1E7C2A80BB51E7C7F421 /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 425A77DC42C460EA51D519A6F002C2C6 /* RNCAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E357F7D22698AB72EC4DED0CB3475B8 /* RNCAppearance.m */; }; + 4262D06D3600F874667A475ED027E611 /* SpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 43BA4D2D3218ED77C5BA9CB2D3F81FD1 /* SpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 426BE8C7DC428C09A055A4824E261931 /* ARTSolidColor.m in Sources */ = {isa = PBXBuildFile; fileRef = AE6C0F640CBDB125D6165A9FE5277811 /* ARTSolidColor.m */; }; 4285CFE97DDDC37E46B7F6A738AF453A /* FlipperKitNetworkPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = CE0AECC804B24895157FC7CA0CBEC546 /* FlipperKitNetworkPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 428E14AADB610E7FC986B56F1D079335 /* FBLPromise+Catch.m in Sources */ = {isa = PBXBuildFile; fileRef = F52F845A189384EC9BBD6B8783511AD3 /* FBLPromise+Catch.m */; }; - 429D5AF22C1503EE67F12B8CDFC7824B /* react-native-simple-crypto-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 97AC38E821A76BC80DECB5E78AC5FF76 /* react-native-simple-crypto-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 42A3B315F2BD4D64A3E5B18C97D46B9F /* SafeAreaSpacerViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 89150B0A3D5E2A096D1706A478282A89 /* SafeAreaSpacerViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 42C8733D6C86EC0EEF1431D62FE8EFF5 /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = E4A6DCCB88C533D35743285ED879ED94 /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 42CFB69B4C848BF234F1D67C190E09E7 /* F14Map.h in Headers */ = {isa = PBXBuildFile; fileRef = 64B3EB06DBD57A098DB73AE093530DC6 /* F14Map.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 42E27CA2936D272D3F43D4312E8307E2 /* FBLPromise+Await.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E88485AF27879EA1753CBF403408C7A /* FBLPromise+Await.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 42F71410E28092FB0EE0C47F44AC5277 /* bufferevent_ratelim.c in Sources */ = {isa = PBXBuildFile; fileRef = 39305B4A5D50A8905FE3337AF9BCC606 /* bufferevent_ratelim.c */; }; - 42FA90FC17F6C51D9450C66963DE77EC /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = 50E5E39E08E43D6230F656F5307A4CD1 /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 42FF2861D381E4E6636B147647E28D03 /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 30666158D35862E7FD3B905412A31D0B /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4306976EE3AD3CC055426A017D0C7884 /* Promise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F850DA2AF3D46F85AD5CA6273D824993 /* Promise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 430D918E47497767A2DE712F012475D4 /* Preprocessor.h in Headers */ = {isa = PBXBuildFile; fileRef = AA8DA18CA91D26D11E1BAE2D71DFBFF6 /* Preprocessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 430FDAFD86C1C1542C67225AE887888A /* GDTCORClock.m in Sources */ = {isa = PBXBuildFile; fileRef = 189DE0E4F9AFDB2E31C4C4257EE2E2BF /* GDTCORClock.m */; }; - 431370BCC99FFA5B84DC35E298403669 /* FIRCLSThreadState.c in Sources */ = {isa = PBXBuildFile; fileRef = C95ECC7C9717D97B9AC7FD144C98ADF2 /* FIRCLSThreadState.c */; }; - 43593F0E2A25A1BC0F56281000563BD5 /* Aligned.h in Headers */ = {isa = PBXBuildFile; fileRef = 58B8205D88F6BC2164C9E39D657287A0 /* Aligned.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4364A051DFF57EDAE4855768F729F2D0 /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 72152681489C95FEFD1601ECDAC422FF /* RCTNativeModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 436526A404027B0CC24FC0B679230E49 /* Checksum.h in Headers */ = {isa = PBXBuildFile; fileRef = 30E0158E717F1ED37C490CDF675CB681 /* Checksum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 436FDC516EC88778D553500D9F27A875 /* SanitizeLeak.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EB546ADA24193FABD659F8D647F5A17 /* SanitizeLeak.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4372DD4E96A683A68A0516409BD662EC /* GDTCORDataFuture.m in Sources */ = {isa = PBXBuildFile; fileRef = 9411A527A4DE7B8E9CA14E97E7DDA16C /* GDTCORDataFuture.m */; }; - 4378FF2DD49055B00AF3A04660AD1F8E /* SDImageCacheDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 612C955AED499AA9C055FF8D5FDD1640 /* SDImageCacheDefine.m */; }; - 4380C5A5FEB9ADA73E31B9B68BF35E28 /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EFAAF47B4801CDE958D673372A01BBF3 /* JSExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 428CBF6659DFC01912B8FCD0FCA5F01C /* Subprocess.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2FEB54F65AC6BA164AB7601C6A11F0B /* Subprocess.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 4291F719591E6254362677774D6D6FA9 /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E14FCE40864E45913A2C969C0B2D7A1 /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 429D5AF22C1503EE67F12B8CDFC7824B /* react-native-simple-crypto-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E6F8E4122200E27EF9E2B713BD332D98 /* react-native-simple-crypto-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42A3B315F2BD4D64A3E5B18C97D46B9F /* SafeAreaSpacerViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A52031D01DDD2FCD2A068151409B973 /* SafeAreaSpacerViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42B7254FC96318A55B9ED899ADCE7753 /* Checksum.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B95FD1CBD6AAFC3CF3DA514411F74B4 /* Checksum.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 42E0430B8DA3229997AEABE19613DDC7 /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = B55B72929A8B06D0ABA87CB5C61D4A15 /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42F0C73EE19E2178BA4ECC0FD2E9835C /* GULSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 073A0F73F0D948124331D5ED633FED78 /* GULSwizzler.m */; }; + 42FB6A12F694483E9AA4A9F7F782EF01 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 46BED2DF70C6BAE76102F1EED1551686 /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42FF2861D381E4E6636B147647E28D03 /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = BA3C1544B3D3A1541D6FC1E84475A9C8 /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4310A299E74141136C117071DD7189EE /* ThreadName.h in Headers */ = {isa = PBXBuildFile; fileRef = E0ACDEC4D4AAA9175FD58CD68F056807 /* ThreadName.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 43145B633FF6A614472DE97FF874B5D2 /* SharedPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 93346F13A155B02B6626A101E5194AC7 /* SharedPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 431CDB32429010B551BE7322FCF0F7E6 /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = ED45D171CC848818FB692BD38CF0737E /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 432E799AB3151AB0F05B632BD5C1A7EE /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FBB3076E8F8AAE9C08B725DFAB0C8D3 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4333F98005E818C3C8ECF8E67A7446BB /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = D4962E415A146278EC19A739E2A05AA7 /* RCTBridge.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4351A141FCB441D627EF3F1FA731FEF0 /* MMKV_Android.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8EDA43460C2BF99C5B6F022209E0DA90 /* MMKV_Android.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + 4359488778D841642E8F1A87B9909D9D /* RCTJSIExecutorRuntimeInstaller.mm in Sources */ = {isa = PBXBuildFile; fileRef = 233D8B94F298076784E62FDA89226294 /* RCTJSIExecutorRuntimeInstaller.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4366D90D10E2A1395FAC0E032CA3CE50 /* BugsnagStackframe.m in Sources */ = {isa = PBXBuildFile; fileRef = E05EC65CB6F61CB2A94A6FA66F5CBEBC /* BugsnagStackframe.m */; }; + 436F3281CCFEFCC21E7C471E42B620B5 /* StackTraceUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DADCE70A75208DE25BE7771DD9DF0DE /* StackTraceUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 43866C275CB5A92A40CB8CD8048E9853 /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D638D4F4487C7E2904849EB50E2914D /* RCTSliderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 43910ED896EDD4B570EF1DDBC231ECBD /* BSG_KSSignalInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C0A981168E1E4D33DE99B228E8298F7 /* BSG_KSSignalInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 43B84069BD4A6B4FF44802448A25A011 /* Log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC86EC8B18C511C23A361D514C240D1B /* Log.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - 43BE1E54D2432B5F526B4B18F0058271 /* FrameSerializer_v1_0.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DADF679A872CBFB525E32F6FFD908B9 /* FrameSerializer_v1_0.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 43DF4C295339F9524096C14904A4AC4B /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = BB8DEF007D6F3DFB76354786468882AC /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 43D752B706C184AD577F8786CE3C79CF /* NSImage+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 1848CF67F1E051B439DED093BDF53A20 /* NSImage+Compatibility.h */; settings = {ATTRIBUTES = (Project, ); }; }; 43ED3671E791340A24575A2BCCBDB35E /* SKNetworkReporter.h in Headers */ = {isa = PBXBuildFile; fileRef = A669D8965DD5F59135852201EAA4B1C7 /* SKNetworkReporter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4409AA9931E5AF9D9BEB05B2F5AE2E80 /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 72B1E8C766EEEBA806779AA73EB8A200 /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 441807BF25D44D9142F7835CCEF37D5E /* UIImage+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B0E7E1DACD749F5D83A7FDE42D5C858 /* UIImage+Extension.m */; }; - 442370D1603DAB41183AF4124061383D /* ParallelMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 41B034CB24DAE6CFF748E08DAD09A2DA /* ParallelMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 442A9F3F5102B23A2525348D1712C3EB /* RNCConnectionState.m in Sources */ = {isa = PBXBuildFile; fileRef = E0FBE26D631B71D807952689A5AE797C /* RNCConnectionState.m */; }; - 44649B4D179A6D95CBFE298A21ABDAEE /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F61568FDAD9793D667A39D598FF656B /* DeviceUID.m */; }; - 446861C8FE33A4F343C89EA29551920C /* Retrying.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D689EB828C16EC54FA9EE86DC83F4C7 /* Retrying.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 446AA9325E3CCA2376008F80D938A76A /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 309A2E7348A8D74A03AAF190CF5D9F4D /* RCTFrameAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 449186B06798B7280757AD55B6CD5688 /* SingletonThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = B88B9FC40F2A4122608EDB5E15FAF6AE /* SingletonThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4499F682B7B571AD8CFFC9346B2BC24E /* BSG_RFC3339DateTool.m in Sources */ = {isa = PBXBuildFile; fileRef = 53CB9FC0A93CFCA2AC3CDECC6CA02107 /* BSG_RFC3339DateTool.m */; }; - 44A1D3DA9DBB5F898389674BBA6A32B7 /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D1D2EF99CA87FA22276B9092E0609BE /* RCTReloadCommand.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 44A2C2B77D6697AF9C075067D181128F /* RNDocumentPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = E312468311B6B57960E7B3846761FBD3 /* RNDocumentPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 44BF937C2360447B641F067EFEFDFA0A /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = EE010C8DEC106260AA454468C450A6DF /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 44E45A607DB236E95A5F4D73BE6FF44D /* BugsnagKSCrashSysInfoParser.m in Sources */ = {isa = PBXBuildFile; fileRef = E0B9C3A64724A88E20523B3711864E4E /* BugsnagKSCrashSysInfoParser.m */; }; - 44FA64358289FCB056F7B3E8560B1866 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 594A47DA5B2376EB909943CA3A7AED04 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 45027211520A83A43ECD43DDF3FB690C /* RNCAsyncStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CE85127C8E2DED72D8DC220F45D2B15 /* RNCAsyncStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4518F1C03A3BB050929BAF8CC97A3F01 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 0228AAAC9829BF3F36E457F5D71714FB /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 451E3C9EDD516D3B7B40DF5D00E94ECB /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F27B274B4E3C0B45C501A1018E1EDC8 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 45318B79D5C29625C260B821AD3F7AA6 /* EvictingCacheMap.h in Headers */ = {isa = PBXBuildFile; fileRef = F90EED1DC20A348419D2B4FB2DCB70F7 /* EvictingCacheMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4570F464987DA2E23EE6F3BA0143F789 /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = A5E733117F32B2D1EF037F065EED83AC /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 45748E17266B27F4474DE93063BD84EB /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = D11EE89D4DD215758F2381A96E377092 /* RCTWeakProxy.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 457B9CAECC9624F7111B7057005F041E /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 71E1DD6187842470489C1B6D031A902E /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4581E6AF52F5345F0A7A7A80AE068CAB /* ThreadCachedArena.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 80482005A3D7C74B5C232B9C7E752CA0 /* ThreadCachedArena.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 4589FB9F4C633F5BC4F35A225EC04022 /* rn-extensions-share-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 66CA7A79D16A8E49C9E8D0BF80631C67 /* rn-extensions-share-dummy.m */; }; - 458CC3AC9DDE1BF22E4FE56DEE2FD744 /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F9798970E2AE328EE09C560C382F3A7 /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 45A2738393C9CE896C37D003496D0A6D /* GMock.h in Headers */ = {isa = PBXBuildFile; fileRef = 493DCB98EA5DCFD10DAB11CBB5E00622 /* GMock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 43F303705A6DC66874C32187C20F45CF /* EventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9D175055633CCF57160228809C16FCB1 /* EventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 43FF3F46155BF15CF9CD29503EE1A5F4 /* AsyncPauseState.h in Headers */ = {isa = PBXBuildFile; fileRef = 17B2D7D6EB299F30ECB668D48EFFC693 /* AsyncPauseState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4409AA9931E5AF9D9BEB05B2F5AE2E80 /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 10639F022D17F4276CF9139CD9340027 /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4409FE7A0169053175DBFBCCC833A7EA /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 78B7E72795E2B29EDDE0ACDB1A9D248B /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44164DCF7E00143ACA29DF5D852853D3 /* FBVector.h in Headers */ = {isa = PBXBuildFile; fileRef = EB9F25DCA076A959BA3546C7479973C1 /* FBVector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 441807BF25D44D9142F7835CCEF37D5E /* UIImage+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E8A4966347DDE08B91EE969C520C066 /* UIImage+Extension.m */; }; + 442A9F3F5102B23A2525348D1712C3EB /* RNCConnectionState.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D96E809EA4CE71B2F3930CB24DB6293 /* RNCConnectionState.m */; }; + 443312CA59A6E1457D3B350E18DE8415 /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DFCBE7E816E8C610AEBD170C5BEB2938 /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4437790AFB5B075D85F7B21FEED15681 /* ThreadName.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63181DA198763B9B8CAD33951BAC9300 /* ThreadName.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 444058A00D921890F65A1912BD982240 /* F14Mask.h in Headers */ = {isa = PBXBuildFile; fileRef = 03026205607C4B1019C6B373E3907ECC /* F14Mask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44649B4D179A6D95CBFE298A21ABDAEE /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = BFB871EFCC026E0E1B2229CA8B6C8679 /* DeviceUID.m */; }; + 4495C89C7717888F591DEE349A4F6F96 /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = CE6D47E068EE3C3F710FDCC6A5571833 /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 44A2C2B77D6697AF9C075067D181128F /* RNDocumentPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = C9F3D0F0276B02303042AD8CEDE218BF /* RNDocumentPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44BBFC9CC5DCFF37B39640D6AC26FE9D /* Constexpr.h in Headers */ = {isa = PBXBuildFile; fileRef = 2249782DAE38F15094B7368177F456FD /* Constexpr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44C30A49FFA6E8FF123B92A83F76D90F /* RCTConvert+FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = B4B0CDEF0F319F78ECA60005B35D15D0 /* RCTConvert+FIRApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44D2B8BD2AEF6A1BDD1D6B7EA48DBDAE /* GDTCORReachability_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = AA94BB85E6121A9830C7A5CCF2A3185F /* GDTCORReachability_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44D6110F384D2495E7F4134D0323B894 /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D723EE26569B7CC5274D4FDAAC06E73 /* RCTTextView.m */; }; + 44E4D135C7785F93B9A74EF56125AF81 /* FormatTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = E26ADF16295C527BD74FD846E1F63094 /* FormatTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44F0D24470725F6870DCBDDF508E20B2 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = DF89921367DDB419FD2E008843163C09 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 45027211520A83A43ECD43DDF3FB690C /* RNCAsyncStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = B83C0C0C4E720AD644EF057182F53228 /* RNCAsyncStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4507F49E7950BB9955DBAD3428A8AD42 /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = 02164D00426ECD469441E2BF301F9366 /* UIImage+MemoryCacheCost.m */; }; + 451BFDFAFAE8D8891BD2C57B7F2A03CB /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 040D2C66F76925DFE2827DAF8892434C /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 452EE77850BF8C1838507E8BFACD50F5 /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = C9F7D7AF91C7C14AE0306582CCBDCC34 /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4532FC9B2FF644C5C410C573A94B0721 /* GDTCORRegistrar.h in Headers */ = {isa = PBXBuildFile; fileRef = FFD1CAE105527CF63F11A820AD292567 /* GDTCORRegistrar.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 456CD44FA0F845BF7CD383DF7843F3F3 /* Libgen.h in Headers */ = {isa = PBXBuildFile; fileRef = D7BEB610C4B614A30006C73B615D4BD0 /* Libgen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4589FB9F4C633F5BC4F35A225EC04022 /* rn-extensions-share-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E311CA96855FCF8855795BD4CE0AED45 /* rn-extensions-share-dummy.m */; }; 45B36E6C971F7A316A842376DB9214F1 /* ConnectionContextStore.h in Headers */ = {isa = PBXBuildFile; fileRef = FD35FC9A29C7C86E783D3C8A3A0DEF3A /* ConnectionContextStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 45D0151EB226AF612D5C5DDE90B63B98 /* TimerFD.h in Headers */ = {isa = PBXBuildFile; fileRef = 34AB1BEDE616A3B49F4EE42ECC2C6D3C /* TimerFD.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 45D246693341E123D4617F7F3FB31318 /* ExceptionWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 86B97EE47635299C9D8446981F698087 /* ExceptionWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 45D9EA6E809DA1CBEECD4FB49DA6B3CC /* EventBaseBackendBase.h in Headers */ = {isa = PBXBuildFile; fileRef = CDE9A556EC556FFEFABB9A9F7E9DD557 /* EventBaseBackendBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 45EFC685C95CC580F24A18C62C5FAD7C /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AD99CC42EA871973374320DEAAC03B2 /* RCTMultiplicationAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 45F691ED1540FB294514BEB316E050FB /* FIRCLSNetworkResponseHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4393B1186FA44A018BBFA28C519A8C4A /* FIRCLSNetworkResponseHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 45F9216A82969ED2131ACA77398D6FBC /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A24B280935A2F0232B12ABEF5E68C38 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4610F94387BFEC182D5F5C6366C85B82 /* AtomicSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = ED47FD185B8AA82F02D6F845DC61469F /* AtomicSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4618C2BA3BB2D497E7E8257A187EFC99 /* DistributedMutexSpecializations.h in Headers */ = {isa = PBXBuildFile; fileRef = 4687F8325AF288C107CAFE8BE316EEDD /* DistributedMutexSpecializations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 461CB2BC5CCFDABB21DB065C259C8B65 /* ConsumerBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CE8225378D28D5807F1B16BB9BAE9DC8 /* ConsumerBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 464A5342FA134C9745E8A798D0F35EDD /* SSLErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 04B3591ACFC47620F91491211E4222FB /* SSLErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46671929930D6269E7D4C133AFDFEED6 /* Parallel-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E7AC2F842CF15F2E25C14CED3929FF8 /* Parallel-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 466C93BFF6920B44261C04497D3B7803 /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E9D737AD88368ED3A2F1A00D90666BE /* SDWebImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 466F5DCD5675A5E7E5465057E8D0A313 /* RNFBApp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A9A5A0D8DDA97F77EA157407049E77E3 /* RNFBApp-dummy.m */; }; - 467D091D07338B2E49A3F8E550DB30D7 /* IPAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1CDB664089BF1448C4BA69FBA03D6CE /* IPAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 46845A0DA38A0A7510A53DDC2386F2E3 /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F3827BB984B7ABC0434A322609F43FF3 /* JSCRuntime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4684AEEB20C828786C322839C0BAD816 /* mux.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CF53837C68C7B590404D59EF0192BFC /* mux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46945F0A02E8CF7606AF37E0013B16F1 /* SDInternalMacros.m in Sources */ = {isa = PBXBuildFile; fileRef = 160095035BD762C24128DBBFF7451196 /* SDInternalMacros.m */; }; - 4697B2B3EA03B9455F529DA9593EA81B /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = B75D8EA9B4C056AF9CB67C12DB2B04E4 /* RCTSpringAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 469D7C34DC5147B6C8DC574B9614825E /* GULAppDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 181AF9851716867B9D19B12D9C435955 /* GULAppDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46B712F6F1E738C9F9DA79DD9153EB69 /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = A229442A403928C44178EF3336326E06 /* EXAudioRecordingPermissionRequester.m */; }; - 46BDC8664B52DD0ABA3C83509A3CF5B3 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EA5CA7ED8EB6661AEE63F650BAB984B /* UMReactNativeEventEmitter.m */; }; - 46BE6C7B5B86A77DAC5ADC0B689835C2 /* SaturatingSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = D8A89591EFBF3724820EDA6841A165CE /* SaturatingSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46C3EA4C3AAEBECD4B0A4E5C55FE78DB /* RNCookieManagerIOS.m in Sources */ = {isa = PBXBuildFile; fileRef = B748CB872ABC5F7BE457CDBB34AFAA97 /* RNCookieManagerIOS.m */; }; - 46CD4609566349E69C6E989C1DD4333B /* RsaFormatter.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B68614B7A954CB2FD54D2A664EC9D67 /* RsaFormatter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46EC6BBB8B9F86B1686A62703710FF03 /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C3D5796E9FD6BC56A11C3C5D7232A58D /* RCTTextViewManager.m */; }; - 46F0958D845D9810E8663CA56827901A /* REAFunctionNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 70D36F7A072F0C872A6C09963F61A777 /* REAFunctionNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46F6C2DA184370375A08A79588D4D2A1 /* CString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C9106D8860AE51771CD2A85A8D20BB16 /* CString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 470683E77C5E1021107DD1A2D51C91DB /* listener.c in Sources */ = {isa = PBXBuildFile; fileRef = 6AFD3DAEA617156BF2B54EC866156EA4 /* listener.c */; }; - 470EB91C2FC4F316076E54D582665526 /* SysStat.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 38EEC9DFD8C2803A99DE518F66CAE9DD /* SysStat.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 472E2FC4B0C0C51A5EBDE4B95F5E8567 /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 85F454D900D9E3F1EC0368BA1E08F269 /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 473E81F52E26DB95881BB4D488805F4A /* HeterogeneousAccess-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 509A1E62B3E7BC802847A7DB7EF72A0C /* HeterogeneousAccess-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4756781BD4FB377EFAB5067053EB4897 /* SDWebImageError.h in Headers */ = {isa = PBXBuildFile; fileRef = 25706E9BC7882308E1CBADFE1696B9B3 /* SDWebImageError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 475A28F37D7A524981FF770A8E42B5C8 /* ParkingLot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA73FDEB663FBC04237C1E36C9FAB412 /* ParkingLot.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 476374FF9ADD8C4F38F86023D1A59195 /* UIView+Yoga.m in Sources */ = {isa = PBXBuildFile; fileRef = 4773ED3ABA888E69EA224359149F325D /* UIView+Yoga.m */; }; - 4765742EAB11F5FFDC299587D3F6FF22 /* SDImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 52707312B51286806012D175CCFF6E9E /* SDImageCodersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 47691782AFFBBE6E038BF750636B3B64 /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 84E31AD7495B25B636004D03A408D97B /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 476B8299E258E8B1C3103EE4959360FB /* FIRCLSFCRAnalytics.h in Headers */ = {isa = PBXBuildFile; fileRef = AAA30A7DDBAFFF09EFBED557C00B0D64 /* FIRCLSFCRAnalytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4770F52570ED1E1528E93C6CEEE0CB0A /* FIRCLSMachOSlice.m in Sources */ = {isa = PBXBuildFile; fileRef = 63D0C21CDE1E08E58AFE3105E685007B /* FIRCLSMachOSlice.m */; }; - 477900BFE4D8F0089150884765F3683E /* RCTCustomKeyboardViewControllerTemp.m in Sources */ = {isa = PBXBuildFile; fileRef = 916D3FB53683467EB945DF91372A3978 /* RCTCustomKeyboardViewControllerTemp.m */; }; - 4787C765809BDEB7CDBD760923AA6145 /* EXResumablesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 73AE15DC1FB21681CBAF993064E7DF51 /* EXResumablesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 478AF8139FBFB35EC238F03B31B87916 /* AsyncTimeout.h in Headers */ = {isa = PBXBuildFile; fileRef = B21C9729FD9EC0FB30E16883878AF772 /* AsyncTimeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 478CFF7C460F6F8F5E1A888C143003C6 /* RCTKeyboardObserver.mm in Sources */ = {isa = PBXBuildFile; fileRef = B922D41D5EAD166A8799BCC66E6727ED /* RCTKeyboardObserver.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 478FBB24BDCC86403333AF58F343D2A2 /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DBE8F496AE84BF950116DBAD4643801 /* RCTAdditionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 47CF1F80E639EBC2EC65FF17D004F33D /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AE3CD610D12CC12718076BC213DF41D /* RCTTextAttributes.m */; }; - 47ED33842F38E1FBB6BFF291435BB5DF /* FIRCLSSignal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7141B2FD3EAB6D6D1972EF3F045B9845 /* FIRCLSSignal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 47F0B3110F5A6417EF26F4AB80E0E7DF /* TOCropViewControllerTransitioning.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B7B40FEF2CA07AB1DFF7B12D0DB76A7 /* TOCropViewControllerTransitioning.m */; }; - 4800838980B2EF40881C06A8CF83F943 /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = EAF8ACC31CCAED2FF89273D035C7A486 /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 481BF56C645B82E3B0640F02951A2455 /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 0200F4C529843FA559B3B7EAFBDCA3B7 /* es.lproj */; }; - 481FF05148CC8FF8F540E1D2AFA2A57D /* EnableSharedFromThis.h in Headers */ = {isa = PBXBuildFile; fileRef = A3F2CA03CD6CE2779AC3B2571F1888FD /* EnableSharedFromThis.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 482296C6BF9F8D449888AC9AE7BB4205 /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3BC628A5D6EFE5C1CF16793C2DD01ADB /* RCTPlatform.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 4833C395BD4D587C0B97D610781C53A5 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 845121F58E60C9853B35C0969291ADC2 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 48377D5A0E1191DF1A7A4EF7FB68767E /* VibrancyViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 42B00DB0587074A3C1364495D0F9CCBD /* VibrancyViewManager.m */; }; - 488911E70F2C093DA43CB0DBD7238950 /* ProgramOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = D341FB6C784B8F24292A0C10871CB739 /* ProgramOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4893BEB9D6EEEB180C681E83C19B1FA0 /* NetOps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23CFC27A0D600C50FD6262EBCF48AAB9 /* NetOps.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4897C59E796E1439A40A10E143D78F04 /* GULReachabilityChecker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B718F26729C506A76A2B66E211E6927 /* GULReachabilityChecker.m */; }; - 48A52A9477761D9EF10B6EB3094E58DB /* dec_clip_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = 52670FF4817FA37ED38D1FAEBA55FE4C /* dec_clip_tables.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 45B84991F3DDB761174CA1018A4ABCED /* BugsnagNotifier.m in Sources */ = {isa = PBXBuildFile; fileRef = F0F1A127EAB2FFE1F6FA20CA11630AA4 /* BugsnagNotifier.m */; }; + 45DAD8A15DB92D3C574536C544059C61 /* GroupVarintDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = BC914DD1DC14DB1242681F2556E73482 /* GroupVarintDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 45E9F1F4ECA95E205CA5F3BAA5DDD435 /* GoogleDataTransportCCTSupport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CE804605C2C458698224684169342575 /* GoogleDataTransportCCTSupport-dummy.m */; }; + 45FC837D63E1E7BC1DC7E97E87E7AE40 /* GULSecureCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 69461254E0F0D3F1C43476F6235680E3 /* GULSecureCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46060379C20C4FAA7FD9337F7AA44DF6 /* Foreach.h in Headers */ = {isa = PBXBuildFile; fileRef = F55B26C281E7CC639D090359C95AF714 /* Foreach.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 460676F48B947C7C92DE87157A4977C6 /* RCTNativeAnimatedTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = E65DF580CDF8C63ECECC8CD73F27ABBF /* RCTNativeAnimatedTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 4619A961B733255DDD743C68A831E543 /* SDImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BBC9D9225EE71E347821C2095E8B0833 /* SDImageCodersManager.m */; }; + 46258E4E4DB9DACC7E53B7947578268E /* buffer_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = DB04AFD2052A8B45AA419361620B12A1 /* buffer_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46569C6E31F484EEB4BF76A96E4C292E /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C83D83A0D4C1323C708527D106098BC /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 467198D61E341D7309CA386E549C8DA6 /* TimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C8354DC313E0CA6CCE6E30B455DCCB4 /* TimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4679089A46139CE98EF4118919A199EA /* SDImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = E5FE7116DCC620D7CF0E83B589FADB2C /* SDImageCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46B712F6F1E738C9F9DA79DD9153EB69 /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 40D6B8422E3644B47E48FEDC7A277629 /* EXAudioRecordingPermissionRequester.m */; }; + 46BDC8664B52DD0ABA3C83509A3CF5B3 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 4535D92010F9CAB039FDCFF9CD6BA233 /* UMReactNativeEventEmitter.m */; }; + 46C3EA4C3AAEBECD4B0A4E5C55FE78DB /* RNCookieManagerIOS.m in Sources */ = {isa = PBXBuildFile; fileRef = 810D5871ADA0B4191B15B5E4A9394733 /* RNCookieManagerIOS.m */; }; + 46CD4609566349E69C6E989C1DD4333B /* RsaFormatter.h in Headers */ = {isa = PBXBuildFile; fileRef = 50E1A35CCEA1D5F6736BC55A46B04A86 /* RsaFormatter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46ECC4DE6D6ABB55EF63B1A0B0E47670 /* Partial.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A77F6EE9A506C325B1356B3440C8FF4 /* Partial.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46ECEE66EBB2AB03E6D9E8FDCEF69082 /* Rcu-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A897F4C8EDD4045318816540C3C8C81 /* Rcu-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46F0958D845D9810E8663CA56827901A /* REAFunctionNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E6D248CD28BE41F933CC681EACB82F8 /* REAFunctionNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 470C67E65B177A7564DDDB30088B6452 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 52AC005AA38CFB40CD236E225477B6B6 /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 470D84054BE68EBCD10DA1B419F5B392 /* Unicode.h in Headers */ = {isa = PBXBuildFile; fileRef = C6F73EEAFB5B026BF8C70AC11A3B4748 /* Unicode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 471C23EFC3B4EB699E9706D4D70B983A /* BSG_KSDynamicLinker.c in Sources */ = {isa = PBXBuildFile; fileRef = F576BCC4172904927F23B98D1F64E741 /* BSG_KSDynamicLinker.c */; }; + 472F79A9320D3E43024073CD0B263DF6 /* PasswordInFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 112246D068CDB2E5FEDB9BA4F6062328 /* PasswordInFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 474D7FCF15A3B421352E285865B58036 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4769820499D04031C91A6FC6F516BD20 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 477900BFE4D8F0089150884765F3683E /* RCTCustomKeyboardViewControllerTemp.m in Sources */ = {isa = PBXBuildFile; fileRef = B59BA6E9E92F0A289F145CF2CEF05F1D /* RCTCustomKeyboardViewControllerTemp.m */; }; + 4787C765809BDEB7CDBD760923AA6145 /* EXResumablesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 15F390A298B8A009BF341A8EED660992 /* EXResumablesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 478CFF7C460F6F8F5E1A888C143003C6 /* RCTKeyboardObserver.mm in Sources */ = {isa = PBXBuildFile; fileRef = E5B537ACAE05A9107F8CA4D4676B8F34 /* RCTKeyboardObserver.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 4791AEBD2EF07F700133803644EF238D /* FBLPromise+Validate.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DE4DBCF1EF8FB8026A41D493816EC57 /* FBLPromise+Validate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4793A678C35D5580DBB3D441A00985E0 /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 157D66F636D88398C690DA2EA50D5955 /* RCTBaseTextShadowView.m */; }; + 4794617BBCE41B683926DABB9D23F886 /* iocp-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 095F9DC78A02A5B297431EB32A49075F /* iocp-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47ABC69700EB814528FB6C7D5061012B /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = 730CBBDFDEB767F625E342CD591BCFBD /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47C3A7F9187D9740C31AB36F6018C7B8 /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = EA885519C9B954A79F80E54872CB9A51 /* RCTEventEmitter.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 47E77AC8AD869ECF994E57F8801A37E5 /* bignum-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 41B4DD6B88E7EA1B7760F352EBEE8C01 /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47FA41B6777D0E2534AAAF1091BC0174 /* BugsnagDeviceWithState+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = CA138AF36FD6DF96FF7BC56831E4DBF0 /* BugsnagDeviceWithState+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4820CEA0B8A8891D32B12DD46643F165 /* FIRCLSSettingsOnboardingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A7589870AE8D1910F6EEA19A4EBE644 /* FIRCLSSettingsOnboardingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 482296C6BF9F8D449888AC9AE7BB4205 /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5CC09DC9037224C3B66F8AC19F2B6059 /* RCTPlatform.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 48377D5A0E1191DF1A7A4EF7FB68767E /* VibrancyViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A60901098A81B5D3F5D589CC582F5A4F /* VibrancyViewManager.m */; }; + 485A8FAF133E892419B9A17549688A28 /* Array.h in Headers */ = {isa = PBXBuildFile; fileRef = EA0EF4A0499795DDFB3E11E94D6A68F2 /* Array.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4876BA2C3E410BDFB2D33AD5D5FD6246 /* crashlytics.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = DA3D9803A70D7FC57E9B8275A62D4EEB /* crashlytics.nanopb.c */; }; + 487905310AB081D904E4C522B81EEE63 /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 6810A6ED3034CA85E3808DA46E080054 /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 488F61406BEDE6F4616F4CC38E094A58 /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 87F2CBC95E98D64C0ADA8517411FE08D /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4892B1BDBB7D346D4997009A7DF67E70 /* MiniPBCoder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0A7AB20268DD9E2D622B86E629FAA4AD /* MiniPBCoder.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + 48A736D9C6BBAADD1CB80E538201A11F /* GDTCORLifecycle.m in Sources */ = {isa = PBXBuildFile; fileRef = F96321D27807E501875E9B7AD050A2D2 /* GDTCORLifecycle.m */; }; + 48C9DF8A509B2566D2AFAA469B293A15 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E88B1A9026F546D449585CF54CEB725 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; 48CD221FA8C0B22F24AE312156CE39FE /* SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = FF6FDC0558CA5B4149283A7623418B24 /* SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 48F98EFD1F9B1A86ACD6E22869225849 /* RCTScrollEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = B8D6E693B6AD7698CFE7993822DB075B /* RCTScrollEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49004A384D5C98944B8D282E5F6EA9CC /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = A76277B4CF7E93604C6ED6C4F1780682 /* RCTSRWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 491834486F7476618C6FA9E517C8E5BA /* FIRCLSSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A9D7451AAEF6D630785986A58FDC007 /* FIRCLSSettings.m */; }; - 491A9374B3E105E2F119AF1703827E19 /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = 35D047C1E86408DCC29C1953F2CF1AC9 /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 491AFD99CB4914D92B53C55EB7F276E1 /* Time.h in Headers */ = {isa = PBXBuildFile; fileRef = 837E9CF02683AFD9515312499D96F62E /* Time.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49281F9A56BDF1A675637372857F24E9 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C2FAC6E43FF96D09BBA247F341B74A6 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 494460796E071DA7A3403D207B8C2106 /* REAPropsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46863C2F43604E20A65950938765D26B /* REAPropsNode.m */; }; - 494699B0EF6CDBF369D514C35E2A1C21 /* ConcurrentSkipList-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 216BEC9C3E14F94116B4559C40897AF2 /* ConcurrentSkipList-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 494D040922C07D9B11A4E157C72AB24E /* REAFunctionNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1176AA790D76EF871DF55AE6BA8692B0 /* REAFunctionNode.m */; }; - 494FC09F6CB0C02E18B421C85B07480F /* GDTCOREventDataObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 38EBC25C4EA7FD49EB95B1FDD35C5B50 /* GDTCOREventDataObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 497C7A7DCCD7D7DE450CF7784C5F8103 /* cct.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = E9F2CFBAAFD22F8C32D71F9E71BC5619 /* cct.nanopb.c */; }; - 497EA60D76DC5BD08BD04A1C7DFB92F1 /* CancellationToken-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F9A922675A0AEE799DFC55AF54CD6D29 /* CancellationToken-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 498C505AE16C2FB90A1660FF065B9323 /* EXHaptics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 12EC2264621AAF733A18C9CFA87D4513 /* EXHaptics-dummy.m */; }; - 49D6527B677B2AAE061BD43ADDB24CF0 /* RNCSafeAreaProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B999973704E2298F8D4E09D65AF653C /* RNCSafeAreaProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49D7470C79EFC400474DE5FBFD2B3173 /* ARTBrush.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A78BB79A816BAAA08ACA4B49EE68C23 /* ARTBrush.m */; }; - 49D785D31D0FDE5C2CDBB808E0BEDF3E /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = D52739B653AAA586594BE4673FB03B8B /* RCTUIManagerObserverCoordinator.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 49E00341E1F2194EA45A14F9F4C8151A /* FIRCLSThreadArrayOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = A6B2FA02FE906EFA9535232DB0BAF5D0 /* FIRCLSThreadArrayOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49FFD56DD71C039652555F5355EA3F22 /* RCTConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E584945219F2EB096D01C32679825BA /* RCTConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A13081C0F9834A4821026611944038E /* Rcu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7D6DC76017C081128AF141B447DA147B /* Rcu.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4A1A3D1448044BE8BAD31EF82C668CFC /* EXVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F5D97D6C4DC63D8F34EBDB1C3D242AC /* EXVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 490962D63AE09938A0AE80A4D42EABEE /* BugsnagErrorTypes.m in Sources */ = {isa = PBXBuildFile; fileRef = 916E3D76B71C70231A1C7B52E8287F82 /* BugsnagErrorTypes.m */; }; + 493A139909EC2A35A95110A6B5FD438E /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 329287767C04EA1A5446C112A2C80F58 /* RCTScrollView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 494460796E071DA7A3403D207B8C2106 /* REAPropsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A3F39F545F907AF8B49B170FBE2599D /* REAPropsNode.m */; }; + 4948379656F73C54C13A405B38039FBB /* openssl_arm_arch.h in Headers */ = {isa = PBXBuildFile; fileRef = E54E206E6640A82C57D50C0627552E5F /* openssl_arm_arch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 494D040922C07D9B11A4E157C72AB24E /* REAFunctionNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 45CA01141554D9AC3DBB8776F286FFEC /* REAFunctionNode.m */; }; + 4965FAC76BAD5B203BCEB04891631F91 /* SerialExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 11EA49134E74A72B02BED62851EB1823 /* SerialExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49677AEE26CE7521599D4EED43DA48CE /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 34B6A22FA44252C9AB9425D730AB19FD /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 496823F46E4529AB28BC1FAE9348EBA5 /* SDWebImageTransitionInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C5953F908AA69045DC18DFE62C0EB9E /* SDWebImageTransitionInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 497C3B78847A7BADF517C253BA5E71D1 /* ConcurrentSkipList.h in Headers */ = {isa = PBXBuildFile; fileRef = D72BB39F5E1E5882B7FBD679B664534B /* ConcurrentSkipList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 498C505AE16C2FB90A1660FF065B9323 /* EXHaptics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D39EE2ECB1DCDBE29E86E36789934FD5 /* EXHaptics-dummy.m */; }; + 499C74045DCD37C361CC7956644C6648 /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DB014116AB6D8DA1BB2E892E70011113 /* React-RCTSettings-dummy.m */; }; + 49BFDCBF94337915EAD45F19726A4FCF /* EventUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BEEB143F660792E34A92AA98D4043D4 /* EventUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49C0B183B4F5FFE194CB004E12946AF0 /* SerialExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 565C98C0F87D64F187F1425AEA777E05 /* SerialExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 49CFF82F054C02C71EB543D9AD308E3F /* FarmHash.h in Headers */ = {isa = PBXBuildFile; fileRef = A84C7960CEE6FB114D2D907465B2C77D /* FarmHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49D6527B677B2AAE061BD43ADDB24CF0 /* RNCSafeAreaProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 27CAEC8C4FCBBA856272D59A8F1440A9 /* RNCSafeAreaProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49D7470C79EFC400474DE5FBFD2B3173 /* ARTBrush.m in Sources */ = {isa = PBXBuildFile; fileRef = 328FF4DA3783FF0044814C6596A7871C /* ARTBrush.m */; }; + 49DB03F31465778B5A09F19853272DEB /* bit_reader_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 416EEA29D5AD9BC6C8A5E7C50814100B /* bit_reader_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A038EE7E83F410033B3E4F908E1A2BD /* GULKeychainUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D413F8DFA6A6911681D61472C0DC9EF /* GULKeychainUtils.m */; }; + 4A1A3D1448044BE8BAD31EF82C668CFC /* EXVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1349DA30B40712C2BCB6BB6A3EEFFB69 /* EXVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A27DE1BB86074198A35CE8AE56AE79F /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 90C7C147085C240CCCF67AB7DD43F1AD /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A296B707F105086AF826C612F14625F /* Arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 761B0A90B62FD46941587EE7D33277AE /* Arena.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4A4B4055A9F1F063DB1A15F63AE1C897 /* FlipperConnectionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D5D462C841F0799D424EE3599BFBD4 /* FlipperConnectionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A4D2C43DC3CC5F5DAA9248AA245BB60 /* REABezierNode.h in Headers */ = {isa = PBXBuildFile; fileRef = EC1B6DCFFEA7A4FBF89EB283030251E8 /* REABezierNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A87681B2E5F60DE4F84A1DE2D9A366C /* RNCSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A56CBA5C6CDAF60FAE82D2E1A30B6864 /* RNCSliderManager.m */; }; - 4A9E513B14F4636F3EEFDE6740556EBF /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 83D5AA99E0E6E0F53037D6DB37801041 /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4AA80E18D22E5FC59D5E5CD88ED9E04F /* RCTConvert+FFFastImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D0DA8859E79F2DB7185EEC52C8A9ED2 /* RCTConvert+FFFastImage.m */; }; - 4AB3CFAF8A3F575BDFCFFA1668FA5D47 /* json_pointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BC13F39AC5C4806FD4BEED0207D40BA /* json_pointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4ABAB6F84DCE317295FBF19A1C3D5E19 /* RNCPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E4CBFB32FB416C48B81BD39DED125B8 /* RNCPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4AD287D7C7162F9B82D4A27D937BE5F8 /* MPMCPipeline.h in Headers */ = {isa = PBXBuildFile; fileRef = EF66ECB1C963FF6FB3F5A9F987CF61D3 /* MPMCPipeline.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4AD594C99F5F9AEADA609ABDFE7824C1 /* SecureStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FE68C2B61C8E518B8525AFDFA73F37E /* SecureStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4AE7CC65664CAD52937FA8779E12FD5D /* MiniPBCoder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0A7AB20268DD9E2D622B86E629FAA4AD /* MiniPBCoder.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - 4AFB4CAFFD7E9A6FCDF64D3F0D67A160 /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C775C14924CE68B918E49DBC07E0462 /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4AFF76BF6FDE7F83B5879F99579B559F /* CancellationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BF6B2F608C86C28E7AFB5A77D03196D /* CancellationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B0A9EDD8487716DA6A49751D766EB79 /* FIRInstallationsAuthTokenResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 18571F19C03D63DC9FA1F9030B6EA0B9 /* FIRInstallationsAuthTokenResult.m */; }; - 4B19E339E4201D44AF9D628431299A34 /* CustomizationPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DAEC73A517CF97C666864661DB55390 /* CustomizationPoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B2C8AB8F0E7A8C825F9B4D18792795B /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BEEEF306AC143191D1E09F376687145 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B37E0ED8B91B663F0EAFEDA179A38CC /* Semaphore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 932E20379D08F815983A1E168E8F071D /* Semaphore.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 4B3A8BA13E818176C818CC70A7DB9051 /* GlobalShutdownSocketSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F80D14207A4BC374E1108E515C59113B /* GlobalShutdownSocketSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 4B50D3781570A8E9E03641429AFF2091 /* F14Map-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 6035C4A147C0B8830C13A13C56336ABA /* F14Map-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B725D8E2B8A4BEEBD18F404EC5B49F7 /* StaticTracepoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A21DCEF09547DEB64B4744FAAD03666 /* StaticTracepoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B771FE63E082D045A976EB55838AD8E /* BSG_KSCrashC.h in Headers */ = {isa = PBXBuildFile; fileRef = 19CC548808E20874D79C5F6D3ADA9594 /* BSG_KSCrashC.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B879CB310FD2924F56C3CEE9D148713 /* GULApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = D2CB543418A0278B8EA4AF0B5E8165B1 /* GULApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4BA731435394F0B448AB18C3FEE0A29A /* SysTime.h in Headers */ = {isa = PBXBuildFile; fileRef = D3AA599DC936541F96C2A0FDEDADF1A2 /* SysTime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4BB42F66A36DBC6FA9E442860D5D36E1 /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = D9590654F13406E98FECBCBDC8FAEBB3 /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4BC3DB8FC58829A0567C41680D6D5B0D /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = C7B7B89B9C2CBFE2FA20597CAE914577 /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A4D2C43DC3CC5F5DAA9248AA245BB60 /* REABezierNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A7DC932EBFEA8EAD11B91E04EC2CE30 /* REABezierNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A516E7A9D04DA71300E3AD0B30785B7 /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1D0833EFB29C9DBA18B45BB7E8104330 /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 4A54C761EC622CBC62B5E12C272849A0 /* SDImageCachesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A1A5738D7D8CEF7C7CE36B9B805C5EA8 /* SDImageCachesManager.m */; }; + 4A71F821E54673C99BC36A7E0C8559DD /* ru.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 2054197C408D33E1C62FD02C30E9B296 /* ru.lproj */; }; + 4A7EEB5555FB4DFBBB51C1985F5198B5 /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BC49A12A1FFA6C6DBE2E137733C3CDD /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A81DC32A7AE9A5732018ECFCEDE113B /* json_patch.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A68BE5DE275AC8222532BCA9206A279 /* json_patch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A83FF8540FC1E5AC6F8B3D3AB4BFCE1 /* SDImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = F00FBEAB647FF5D3E69DF36C8F70061B /* SDImageFrame.m */; }; + 4A87681B2E5F60DE4F84A1DE2D9A366C /* RNCSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 40D47D7CB3CE368C41CE58178D446F27 /* RNCSliderManager.m */; }; + 4A9EEACD394A2527D52BE9FBCD820482 /* Base.h in Headers */ = {isa = PBXBuildFile; fileRef = 339FD1678F620533FC6D3666F36ED195 /* Base.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4AA80E18D22E5FC59D5E5CD88ED9E04F /* RCTConvert+FFFastImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 18BE84982E8F142FE9CDCC750B190D31 /* RCTConvert+FFFastImage.m */; }; + 4ABAB6F84DCE317295FBF19A1C3D5E19 /* RNCPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = E99CEF4EEC42A2629D3B68DA23D0046B /* RNCPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4ABE8705BDB321574F4F61F889C3859B /* BSG_KSSignalInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 5215B67020579C32FA153F00EE4FBC8D /* BSG_KSSignalInfo.c */; }; + 4AC8E46FE3E049BAFE138C17E5F2F4DF /* HazptrObj.h in Headers */ = {isa = PBXBuildFile; fileRef = EFC449A78C30152FAB91048DC5A53E0E /* HazptrObj.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4AD594C99F5F9AEADA609ABDFE7824C1 /* SecureStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = F15808387AB6C7A111FF6C455A1A6FE9 /* SecureStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B0AA0FF47AF0C550C254EA7E5479004 /* FIRInstallationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 38DBC4FE53A7D3A0516B8339987659B6 /* FIRInstallationsStore.m */; }; + 4B12799E755CB200D243F333C2512095 /* GDTCORRegistrar_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D0AFB3AA334082BD476F588855D6AE5 /* GDTCORRegistrar_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B2B14B11BBAB7061E32994C675ECB52 /* FramedReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6DF210C698286DA9A48D500C07B827B0 /* FramedReader.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 4B3B08B714505AF5FB0D877B29D5BFBE /* Assume-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = ADDEF0085804B78FFCF10A662AA36569 /* Assume-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B775E673D081DA2FF9BF0165C923980 /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 1525B451ACD76144D005B1730EFC66B9 /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B814079650D36D0B48229B67C2A586E /* BugsnagPlatformConditional.h in Headers */ = {isa = PBXBuildFile; fileRef = 5824F8E1DF5A3B5BE9B2B0B16CF93383 /* BugsnagPlatformConditional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B81A8236E613827AE47E57915B19CF6 /* Iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BDE5CE1F29F2B5E710DBC832F28D9B5 /* Iterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B8989820AF46587E5B34974B8600961 /* BugsnagDevice+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = FD082006079338D62D08663C33A48A59 /* BugsnagDevice+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B8DC3A62E196B5D326951CCDB056524 /* MMKVPredef.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F1DA2CEA3CE04463B0A7359D8CA5609 /* MMKVPredef.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B9F133F7F2D32D9FF3DDB53BAEE6898 /* FIRErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ADFD1409A834BF3CF99EFB686438DC2 /* FIRErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4BB2C36DAB83B30496C46064533F9E6D /* FormatTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AF0EDBD81AE0FAFA35C0AB0497212B4 /* FormatTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4BC3232DE85368FA2F2F5CC41067A64F /* FIRConfigurationInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7016FEDF15804B202D40011AFA46C7A1 /* FIRConfigurationInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4BC5BBDB0B438C2FE47E9523FE3EBACA /* FlowableConcatOperators.h in Headers */ = {isa = PBXBuildFile; fileRef = F87FD82161211A08881DC52942907F6B /* FlowableConcatOperators.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4BD77697149811C1F407A76DA3E9A104 /* MemoryFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8FACAC187B44157FC8DE8BAD258EBE36 /* MemoryFile.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; }; 4C02B8524DECD82205FF950EDF13D089 /* SKYogaKitHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = EAD20D2095CADB729BA7A29DFD8EFFDF /* SKYogaKitHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C145D7963F065776ED9DB7C75BCE3AD /* MMBuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 77DFA611185C19D8EA65EBBE6DD2DF6C /* MMBuffer.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - 4C212A8AF02142391DA5A5D7ADDA22D6 /* dec_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 083D2D5543B3909AD297AD13441396FE /* dec_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4C28E4303A9B38D21D260B97C27C96D1 /* pb_decode.h in Headers */ = {isa = PBXBuildFile; fileRef = A72E28AEF6DF1265BDD71B5670AF408C /* pb_decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C31F5A140C0CB093A90FCB0906FF670 /* BridgeNativeModulePerfLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = A57643844AA82C3661CA9B030947D122 /* BridgeNativeModulePerfLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C3BD92AD607D82371D407A5340D1BEE /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = B12861CBED9CCA065F175446A2800D98 /* RCTEventAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 4C3F8FFF6EDE8976011197E32FB7B5C4 /* EventBaseLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BA78A360616F5D78A8FC1A42DB78ED7 /* EventBaseLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C403933100904EFEC595100D441E88C /* Atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D4F5116A90608016B3C8971E284CBB8 /* Atomic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C474604DD5468DD9C9F317FA4FA3A0E /* BlurEffectWithAmount.m in Sources */ = {isa = PBXBuildFile; fileRef = C8C8AA3D6ACB6ED86523B0A123FEACC3 /* BlurEffectWithAmount.m */; }; + 4C05964EA35463E1FCA4E487E19984DF /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = B4BA5D239213ECF054E3BA8966E4EC22 /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C0FB38752F52422B68F00B61096DA81 /* webp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = D00CE9B3086FA1A05219E162F854B74F /* webp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 4C445E6747B8E94B019FEEF7C21F7DED /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = EFBF0F66DD05093A50745A956B265F83 /* RCTRefreshControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4C474604DD5468DD9C9F317FA4FA3A0E /* BlurEffectWithAmount.m in Sources */ = {isa = PBXBuildFile; fileRef = 67CAA565D53A463C56D681FD8D161D9F /* BlurEffectWithAmount.m */; }; 4C5620701364AFA3AC0ADF714ABA4707 /* SKNamed.h in Headers */ = {isa = PBXBuildFile; fileRef = A2F0117A83EC190EDCF3EEEA2CB09250 /* SKNamed.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C5D877FD3713D91B6EF13C0A06B6D32 /* yuv_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 5B9A6ACBF39BC62B711A68ECDD7E99A5 /* yuv_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4C5DB143B44EF98E124E3C30844F6C60 /* Future.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 839253E53A9EB87E2EA39F80D36577BB /* Future.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 4C60D739E1F6267F7FE0F881F29F5153 /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 620F7BDC04D8C8FC48B1A38DDDA2EE0E /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C63C8257AD0FADE75271D9FBFDAEED1 /* F14Policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D32352F57E8F9AA7298DD4C5C8B23BD /* F14Policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C8DCCC3164563FE10E84073F83A54AA /* TimedDrivableExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 14A2F9FF0806DF09D8520391D7F71997 /* TimedDrivableExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4CAE9CF4C2EED6AC453F6766773FA461 /* ExecutionObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EAD0B3A6057A359919AA91B85A91C4F /* ExecutionObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4CD1B4090DAA167B0F7780920FAC5AFD /* GULKeychainUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 14833B7595C20284FE302A11D245BE8D /* GULKeychainUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4CD3E5D6975449E11EA7818BDBB8AB80 /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 627622AC23DD03D9DD5E6337E505E548 /* QBAssetsViewController.m */; }; - 4CE6D8BB6BD6A5F4C482013F85CF8727 /* RSocketErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = B0FCCFB255C5A631079CFB219A9AB261 /* RSocketErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4CEC7888DC4843F90A1B5B5690EFD428 /* BugsnagSessionTrackingApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = AF1C1CB0C0D24F40BE887B236FE0EF0D /* BugsnagSessionTrackingApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4CFDB053B9919C69783FF629E48C4B32 /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E232D398BC12A4C673E6250BA15D587 /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4CFF2BBA882ED477A9E4345DDF73ED77 /* RNDocumentPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B614B1E8899450A514539C8FAA8F4C6 /* RNDocumentPicker.m */; }; - 4D109D2D716395794E782C593AA3B52D /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FE8D5121E05847BA6EB20C418665D7B /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D11FBDA59E6CC38A57C8A5DF81271F7 /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C28ABA6300CC963452E2F6BE818AC67 /* NSTextStorage+FontScaling.m */; }; - 4D1ADBAC3C2E97B71E874542EAB79E6D /* SafeAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 733ED06FBC1F2020F12228873F997D20 /* SafeAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D2531AA47A4C60B4EE2969440295297 /* SDWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 13C689EA90FD217368087E73B44A992F /* SDWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D25EF5D0F46BD6D3B2B758AACE87553 /* FIRVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = A1017F5C6F53C539BC0122C7CDA019A9 /* FIRVersion.m */; }; - 4D30A2081A32337F2BA3129EBB6E0A38 /* SDDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 43926C42B8EDE22B6094E95AC9E82CC8 /* SDDiskCache.m */; }; - 4D37254E3F49BDCA1E8F5EE77D29944A /* Pretty.h in Headers */ = {isa = PBXBuildFile; fileRef = F091B10FC5021AF0D2DC79A4895E6728 /* Pretty.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D38A690B86794AFEDFEE5FEFA595084 /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = ADC8C6139ED601CD7DDF5D227EC03D8C /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D46CEE51FF2074DF657E50C12AE9669 /* vp8li_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 83B05D19439553D21178193FF0C75B05 /* vp8li_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D4BD957CD7F1CA4AE3C82636B555645 /* Pods-ShareRocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 81ABB69299E6F3BB892E995CFDCECD7A /* Pods-ShareRocketChatRN-dummy.m */; }; - 4D91C425E4333E710C932962FE507C19 /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = AF6EC2F17768F6FE1167C1A6CBCE23AC /* RCTPicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4D98F0870323F5517D699E8BD66D6A6D /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = C7F2764B48E0183C8C819DDC549640E1 /* FBReactNativeSpec-generated.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 4C63D46F18DB44C5D575C32C77AD75E3 /* BSG_KSCrashSentry_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 02EEEB11E2FA732C018BCB28638DAAB8 /* BSG_KSCrashSentry_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C760F61E843795E2C719F947CE10CAE /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = EA449C581CDD206DD064779B64A3A908 /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C7FF52184D2CD05A127020050065426 /* F14SetFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 69845DF7E945F2C245A84A9EB73674A1 /* F14SetFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C8B76E847EC1BF281896A794EDB1B8C /* log-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = C4D0A9D298494CD59E36A2F6D0BA0F3A /* log-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4CA6AA1E6FC5220A868011C67D9F6263 /* RSocketServiceHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9336B954C54F0EF7BD2CC0490E9C3813 /* RSocketServiceHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4CABF90A6CC7B3CAE60DC2CE6417E6ED /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = F1863201D0BA8344F02D2910F23AADA4 /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4CB49DDA06B3214B63E6668E7015A02B /* DistributedMutexSpecializations.h in Headers */ = {isa = PBXBuildFile; fileRef = 4687F8325AF288C107CAFE8BE316EEDD /* DistributedMutexSpecializations.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4CB58B352ED63496F6BA9A68A54D0F23 /* CallbackOStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 52032420A8153D9845D314223D4F5169 /* CallbackOStream.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4CBED6F5F7B278DF05D1712F2B57F771 /* IPAddressV6.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46CD1A9F5FC1F1EAE2FBD43827A6D039 /* IPAddressV6.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 4CC475EAFA33E11FCEC6CB223DFDF4DB /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D9037CD1178822F4B7F101ED0CEE3EA /* RCTStyleAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 4CD3E5D6975449E11EA7818BDBB8AB80 /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E68C66A69B7E5F622F5B5273FC096A4 /* QBAssetsViewController.m */; }; + 4CFF2BBA882ED477A9E4345DDF73ED77 /* RNDocumentPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 4150B1022A1C4EA48976C1918DB2DA4D /* RNDocumentPicker.m */; }; + 4D1594E5EFD6E781FB4620B93DB5881D /* FIRCLSSignal.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E88D846200DFC32E1B1FB4A60EAF730 /* FIRCLSSignal.c */; }; + 4D7CEF19C85F6BC5460961BC5485FC18 /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = FCAF45D355DD370C372A77984C10FA2C /* RCTSwitch.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 4D99B2B3A7A62015822A0A822F91E1A2 /* SKScrollViewDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = C231A474BA8817ABE62D624B50C23C9E /* SKScrollViewDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D9CA903FD9C443E38E23CD0B3FA1A37 /* GoogleDataTransport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EC02292322F492419329A9C87450E9F /* GoogleDataTransport-dummy.m */; }; - 4DA87F85ECA2A25E969E72669257C53B /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = C05C2D3F63CDA77628DCA3FBE92D33BC /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4DA8B1D619375996D0887F0994EDFDB4 /* FIRCLSDataParsing.c in Sources */ = {isa = PBXBuildFile; fileRef = 043397C0E2974CE55163AFD49A0BFBA1 /* FIRCLSDataParsing.c */; }; - 4DB094F75840E224F8213A023050E0F9 /* GULNetworkConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E3947DC22A5110AC3C2BEA168E2B5E5 /* GULNetworkConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4DC559FF5E5D25995F953818BCF81EBB /* TOCropViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 51852D46308FFDE1FBDB5D68507E6D81 /* TOCropViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4DE4C2FB99F649377787BE4C345D8257 /* Pods-defaults-RocketChatRN-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BE44CBCE6C75B26E95A4555F9D976298 /* Pods-defaults-RocketChatRN-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4DFB724700AB02EA7060ADBB14B6E917 /* ThreadWheelTimekeeperHighRes.h in Headers */ = {isa = PBXBuildFile; fileRef = 7740BA7FA0A7CD669E269EA357054220 /* ThreadWheelTimekeeperHighRes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4DFD071959DBA838E7C179A2C5AFD20A /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = E8795D7BD23A87E54DB07D464B15FA0D /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4E37E49DB99A1BB2117B31F6A68AEE97 /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = FC77D4B7D9EDE13C7061E4AD80EBDD69 /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E3E344F081E7724891BC1239F48FF41 /* ObservableConcatOperators.h in Headers */ = {isa = PBXBuildFile; fileRef = 9622CBA20F72B0317AA01CD58030645E /* ObservableConcatOperators.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E53AD873AF533AE42B39B3C0B37F0F3 /* TLSDefinitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EB6966C2F4A349FF86C237F57F846FA /* TLSDefinitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E5C59BC96E2E907FE218E13C7DD34A9 /* FBLPromise+Delay.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C4E364F9508DC861238EE4AB7F3EEE1 /* FBLPromise+Delay.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E66A05EBC440E58FEDAC1A111DA2316 /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A90B20A96D407BEC18685F2FFCDDE434 /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4E991E2D32408FE453AA115C5C9365B1 /* FBLPromise+Catch.h in Headers */ = {isa = PBXBuildFile; fileRef = 857B28839350C25A775AB9D97BFFFE9B /* FBLPromise+Catch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4ED2B8C3E5E97F214BDB630B4D8416D6 /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = B471D9F4E3A99D0C4ECD0EAC118A4C34 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F236375E72907F17E9D4C4EAE4FA632 /* FirebaseInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = F2384F9FCDC8C8E4F8092212A51E69BE /* FirebaseInstallations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F3787F8BA3165541B253F17696EA4FA /* UTF8String.h in Headers */ = {isa = PBXBuildFile; fileRef = 4990C4B9B9AA45A9F6839CFF93A49CEC /* UTF8String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F4B87E2055B6EE55ED8E44BF45207AD /* FBLPromise+Async.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AD2999A13828C3996ABC48EF58DB9E0 /* FBLPromise+Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F5581BF3C897B84EED6E31C67F47D18 /* ThreadCachedInt.h in Headers */ = {isa = PBXBuildFile; fileRef = 82169797FE5B608D75B4F5F79C13280D /* ThreadCachedInt.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F614AABA7E95B03AF30F5031D3A2656 /* Hazptr.h in Headers */ = {isa = PBXBuildFile; fileRef = 0968102F2373098DC9AE92B7935D4ED8 /* Hazptr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F61B951802CC37406CAF9DD0051DEE3 /* MMKVLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 552390FE19CFD6F5D5586884FACFD5C0 /* MMKVLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FBF8D6791511CD13F69FA286F490AF2 /* FIRCLSFABAsyncOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = F71D2A9EEEBCF6C9678A20634F0036C8 /* FIRCLSFABAsyncOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FC0CB97B26835A024476757460588B0 /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 070AF3A34162C4E169CC46A26A40058E /* MallocImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 4FC36D3475E49C9BBA7F9A5C212A9B37 /* Rsa.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D8115907DABD52D7AE23BE75B06FBDA /* Rsa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FC7384DB4E9D6244E98642B4E90FC51 /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5655D27E440FB2B7DF81BF20113BD6 /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5002D61A155DDCF3FA6EC2523A129313 /* Request.h in Headers */ = {isa = PBXBuildFile; fileRef = 707628E00EAB111824A6EB05D32A9831 /* Request.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50266286AA06D79D6AC43D771E9BD842 /* Observable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E456B5367A75D26021F4533FD7F0291 /* Observable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5075A4E8BD4B6F9A1351E242314BE3D8 /* SocketFastOpen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FF4A69A3C859B09ABE519C0CD4F41FC9 /* SocketFastOpen.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 508ECA38C00615D6966711BD85284545 /* BSG_KSFileUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = EB52B3B698412DAD086667FF340E0B6B /* BSG_KSFileUtils.c */; }; - 5095F37153E9631F0FA8A129EE1F6271 /* Time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0499D4D0215385E03992B5E8D6EEB000 /* Time.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 5098697CDCFB8B4468E52DF0609663F7 /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 69581175C16A8A465496D40FA2094F5B /* RCTBaseTextInputView.m */; }; - 50B834389F0A52EF9DC6C27DE7CD7111 /* RNCPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B53D379AC1EAAE80F7B75CCFA8E19102 /* RNCPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50D1267D273A394DA77FF141739A0832 /* FIRCLSReportAdapter_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E1007F4054FC430ED1A198952B47D69 /* FIRCLSReportAdapter_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50E50AE92549FAE67A72B9B8F39FF633 /* InlineExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E43323A34806A9BD3B6B4CB4A2FB27BD /* InlineExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5105F9EE2C2399FA711D06FAD61E3BFE /* UIView+Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = EBDAEB955E4ABF88F7711DF389E903E3 /* UIView+Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 510B58409DFFE76471261A006F839374 /* FIRStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 148BD4524563EAE73DE3CA93B337855C /* FIRStackFrame.m */; }; - 5111FDE4F6628014B3E0DC699C0623AF /* AtomicRef.h in Headers */ = {isa = PBXBuildFile; fileRef = 486C74AA4878D5F7A4C090DB04C9CE3B /* AtomicRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5113A31376ECE0BB49FF3A45C60FA0F6 /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = CF0830A49581DC5BE12B0270EEB2CD2A /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5119E167EB01FC58F1A9D2C8908481B8 /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = BD96F42BE96BED51567382ECD48D9017 /* SDWebImagePrefetcher.m */; }; - 51210DDC300ABBEAF5254B6097E5E28D /* AsyncTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 279EF3E4CDD5ED4115C487922F3CCA98 /* AsyncTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4DA9A2CE52A774F6E12F7225BCB37C58 /* BSG_KSCrashDoctor.h in Headers */ = {isa = PBXBuildFile; fileRef = 829C9C9E602BAD1C89CF50E09A76222B /* BSG_KSCrashDoctor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4DD10EBE04E6E11B7083EF36AE7D8B2C /* GDTCORAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = F9EF06F5F49DEB53FEDFF233A23B10D5 /* GDTCORAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4DDFCEB061C1FE440C3D5D8596BE6AD8 /* FIRCLSURLSessionDownloadTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 5669BD5467E7448A1D8086103C214E2E /* FIRCLSURLSessionDownloadTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4DE4C2FB99F649377787BE4C345D8257 /* Pods-defaults-RocketChatRN-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C5348F32CD8BDAB800034CB7AC0423B7 /* Pods-defaults-RocketChatRN-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4DEE22EEF03836691A02E9D3A4A77664 /* nl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 54DE1CD8942989BC6D0340E4917972AE /* nl.lproj */; }; + 4DF36527D3A7802F9EA507DB401DCCF3 /* ConcurrentBitSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 12B923F05BC76AE6BE7912614DF2CFC6 /* ConcurrentBitSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E08FBF5C951665935FE86F50D5658AF /* ThreadWheelTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 55F82640CBEB65A43180581A1F52B31B /* ThreadWheelTimekeeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4E1060D94440D030C75B728F17B4E62E /* FBLPromise+Async.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AD2999A13828C3996ABC48EF58DB9E0 /* FBLPromise+Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E42DCB68654CEED81BEBA0848EC23A1 /* MoveWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CF6006987F5370C7D44118131A77BA4 /* MoveWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E49985A76A0E9C42B0A7FCAA6FB6963 /* AsyncServerSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 79045EA0EA1525B86D20B46C46E39329 /* AsyncServerSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 4E5498D98181B6454712EFE0C893C115 /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = DA0EB8F4CBDE9D79FB27DC6176E546B1 /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E7BFB414A91A4DE6836A298E608D04C /* Subprocess.h in Headers */ = {isa = PBXBuildFile; fileRef = 714617101653AABBA370CB7F07BC74DD /* Subprocess.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E9728DDD2540A598B4A2EA1987D3A06 /* FIRCLSMachOBinary.h in Headers */ = {isa = PBXBuildFile; fileRef = 877E589A8BF687225F8BDA9BB84A5517 /* FIRCLSMachOBinary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E978A17F20DEB0A27FACDDB01A38339 /* ThreadId.h in Headers */ = {isa = PBXBuildFile; fileRef = C594E33B7F2DC2B31F6CDCF045C05323 /* ThreadId.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4ECA09D18B0433F6A20F7DB163F4A44B /* RCTDataRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = BFF2B93582DD82BCA452AC0DBA5D0647 /* RCTDataRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 4ECA8AB87CACA91A8453DEDB024490EE /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 343B97D9EEBAB3B0515FD53C6201334A /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F10400EB72C276F310ADA233A70702A /* BugsnagHandledState.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C31E2A1FFF7C0019D735887896DF06A /* BugsnagHandledState.m */; }; + 4F1888340128350A88BF3E489F1627D7 /* evrpc.c in Sources */ = {isa = PBXBuildFile; fileRef = A6665D8FC0F6D068B435FA4B02F47F71 /* evrpc.c */; }; + 4F26EBD2749025287A7A88728765E0DB /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 08272036C5209030B6CF0F4CEFE8A1DA /* RCTTypeSafety-dummy.m */; }; + 4F3A2790874ECF685CE39EA7AAE03BA4 /* DistributedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 5955B368F840981A96CA92E5EC8D0045 /* DistributedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F3BD3BE852B39C37BC0B057226C3AFD /* SysTime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7F7FAEEC6D720AA177A3ABE4D635B2D2 /* SysTime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 4F426F9B6B60D20CB43D55A9B2C7CA41 /* yuv_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 5B9A6ACBF39BC62B711A68ECDD7E99A5 /* yuv_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 4F65F5014A66BB1F16FCF93125B34451 /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = F9DD0BC61611D57C9D11D949E99F4721 /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F904BA5741A0BA71D31FEC303F92216 /* dec_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 083D2D5543B3909AD297AD13441396FE /* dec_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 4F9276C1C94759732502CEC0BA944BC3 /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F9C61CA331FC7DDC4C288FE4E047574 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F95A6314EEBFB019A803250EABDD951 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B218D186F54EF65DEED555A468AC649 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4FC36D3475E49C9BBA7F9A5C212A9B37 /* Rsa.h in Headers */ = {isa = PBXBuildFile; fileRef = DDA8E082D0DF3E4233CC86CFC94A7648 /* Rsa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4FDFDFFA69D2E1FA2615D2E4F458E3D4 /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 07E05E20935578086C3DCD67D966155F /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4FE8D98987A6FDD3B1A738A9BC1BD9A1 /* RCTAnimationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 05DDF222C3236A930FA1D2041D5FB6DF /* RCTAnimationPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 500986BB00B0E28339E9B748BF07B6E9 /* CodedInputDataCrypt.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EA1B57C073AC14B20B5E5905D1131EA /* CodedInputDataCrypt.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 504CEE5F9FF06D29D232A1CA492B5600 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = FD028CB98C9F9EFDFAFBE551B94565B8 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 505FA2D0E8D4EB29D480D580953B2FBE /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = D8B03F145549407E02F672A812CBA01E /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 50631BB3515A42658EE5F6727B379DC2 /* EventBaseBackendBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FF6856A70766A3EF1370F83A8EB1690C /* EventBaseBackendBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 50668E56839E8F930095C023C388E1BF /* DeferObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = BBFF18BC3711F0D248974C74C2D2F962 /* DeferObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 507BC7D36F26735B7FAE621BCBEF1F36 /* FIRCLSdSYM.m in Sources */ = {isa = PBXBuildFile; fileRef = 11A5473574DB8F5B87B8A158CA9708F7 /* FIRCLSdSYM.m */; }; + 508F4CA2E6E0F85CCBFA800E312BB1C5 /* RCTLogBox.h in Headers */ = {isa = PBXBuildFile; fileRef = A8C11BD5F904EC7DB1CB1B99D289E15A /* RCTLogBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 509480C2D9CF831F8EE3B684EC35A45A /* StreamResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = C6F45D5F31EF86F02D6CEF8DC22D0725 /* StreamResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 509D010F95001E7A8176186A276EC9E8 /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 33A7E941A4206E08C5B025F4C63C64D2 /* ScopeGuard.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 50A46F9B51069B9DB316D8C0D4FF127B /* FIRBundleUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = B3513E19B47BF3451C5B25B0E2ED515B /* FIRBundleUtil.m */; }; + 50B5D01606E7DED4B0206FEBC0A1BA3A /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 04977148DE9C9EE89321F0AA165BDE05 /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 50B834389F0A52EF9DC6C27DE7CD7111 /* RNCPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 319D4C18691771677FE83CCAF8807DBC /* RNCPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 50D61DE9D7A8590D2821D64451FE1496 /* SDImageTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = F71F5BB161EFE16845835C17D1071F44 /* SDImageTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 50F61412775FE7D4FE7BBF73B6AC4B8F /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 9AEB5D60F61E5CFCED85D70717DD27A5 /* es.lproj */; }; + 5115FF3AD021AE6BF984D9D06CA1F063 /* ManualTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 81B637E3ADF97DD6C410CDCA1F53A559 /* ManualTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 511B3FAF54CD973EC918CF37E7F01C95 /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = EA880D94604F3BDF76B355942BB36599 /* RCTTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 51214DB5A30202B500A2B7D03E56E343 /* AsyncUDPSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5DFF7397E09CAEAD4EF98B7FC86A0F4F /* AsyncUDPSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 51376E94D372BC7B3BAC6EC9175918F0 /* Latch.h in Headers */ = {isa = PBXBuildFile; fileRef = A8452C7C5F850E613A7F3ACCEB22A96A /* Latch.h */; settings = {ATTRIBUTES = (Project, ); }; }; 514546F2D8310E7F4C88A2C1BF4D6939 /* MMKV.h in Headers */ = {isa = PBXBuildFile; fileRef = 871379DC580A9906566837C1B872A61C /* MMKV.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51488C50310293E3840237A0876B19BD /* SocketFastOpen.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EFAA1EC8ABC4B195F6D05DB2149CC0A /* SocketFastOpen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 514FAFD94DA74E901EDB1C41AEF92990 /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = B4390896020B6A75E90AB1D8E8F668D9 /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5157C16FE7FEE7B587EF8B0B7A6B61C7 /* Fingerprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC33911EFC3CBBE0C2DBB62F33FEE78B /* Fingerprint.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 515AB3A02C455B5847ED4B3599923401 /* RuntimeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EB2ED7BBB8478C051F527DDEF79EC6F /* RuntimeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 517492A9DB1BE570124104ABD1E074FB /* FlipperCertificateExchangeMedium.h in Headers */ = {isa = PBXBuildFile; fileRef = 4384560BA5989E2B948CB1DB46E0181E /* FlipperCertificateExchangeMedium.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 518A3D3AC0E367395A42C6C5148EBA03 /* FIRComponentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 03E7B4CBB3C83D80F339CB90C1B315FE /* FIRComponentType.m */; }; - 519418231152DE7965E65EC152039E43 /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 3AE5122ACA6D6C851A41F6A84E1ADD37 /* RNPanHandler.m */; }; - 519F0C5230539FF047E2D27C0BF6AA8D /* GULSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = A1BF68D59DC67100D469927A60889975 /* GULSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51B1BE97294EE7D0142165AD6636E453 /* Random-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A241079C26BA7316518080B63897BAF8 /* Random-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51B30FFB7F6BA9B5F2C1FF6DC41B774F /* FormatArg.h in Headers */ = {isa = PBXBuildFile; fileRef = CAB2A0986BCA709B4AF09D1754932213 /* FormatArg.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51B497E76E5C5DB4CA63992980EFC23A /* picture_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 98173C30AAAEB60BB67F719BDE999FA1 /* picture_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 51B67D2931EB4CCA7F07B76A066A8217 /* EXAppleAuthenticationMappings.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B5F6F7FB8E998677282001A8C8425D6 /* EXAppleAuthenticationMappings.m */; }; - 51B68A31C45BEA3AE33B86F1F1D064C8 /* FIRCLSAllocate.c in Sources */ = {isa = PBXBuildFile; fileRef = 4F3909692D2EB196C7259A673D4E0BC7 /* FIRCLSAllocate.c */; }; - 51D328B6248073AD2A1C01608AD92C2F /* RCTDataRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 91E991320FA938EA62EAC8C52DE57ACA /* RCTDataRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 51EA1E266FCC622C10B5E031B822F96F /* StorageIndexer.m in Sources */ = {isa = PBXBuildFile; fileRef = E5086FD8F34F835110BAE0FFD4189325 /* StorageIndexer.m */; }; - 51EA6472BA87AEC1EC1441FE0628A08F /* Spin.h in Headers */ = {isa = PBXBuildFile; fileRef = C420F3C2B52E600E348B204665C68FD2 /* Spin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 520557E76717C79CE77FB3C329A656DB /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = 80049D4E1624B165BD88D111C95A490D /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 52247987D1E7B79399E678A6682FFBF7 /* RNCAsyncStorage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F6ED1F6766EF8EB9CAD8BB243639756 /* RNCAsyncStorage-dummy.m */; }; - 5235586EF4F37E089CB0466A3D29952D /* REAUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C53428765AA8389817A98573FBD13E8 /* REAUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 52659DA771C1DE0196C6F9082071E325 /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EC6DF4E4E06CC30499AEF1C0C2E3882 /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 52669AC100601B780D0FBA0868225A31 /* MMKVLog_Android.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0B128A0B7CEFBBB191EF90420A0CCC0C /* MMKVLog_Android.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - 526D1834D98D5AFD802FB5F465688857 /* AtomicStruct.h in Headers */ = {isa = PBXBuildFile; fileRef = D688BD0666F5655DF0C68C2D97CA9956 /* AtomicStruct.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 526F0CC77789C3A290062381040C7EBA /* hu.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 80211F1678ED1CAB959ACFB0AE2E477D /* hu.lproj */; }; - 52804F22433220C4A00BE200FA1A738F /* RCTRefreshableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 87EFCCB416B724AA2A36760419C1D6FB /* RCTRefreshableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 52886066D5C6F2E69ED7C071DA7C866A /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 978BA8A0B9691E1FD6D7C40F23C87A4E /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 529D94BB91B2C268A0D04296F351055B /* Subscription.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D874C0B29A25EF40764F5DBF1F06554 /* Subscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 52B0C9D8E1DC6708E2C65CA8E8644F8B /* ThreadLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 9728A1D78B6345338374226E0BB3DB05 /* ThreadLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 52BD4D6331F5D3CEF7E07658DCBE412E /* RSocketServiceHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9336B954C54F0EF7BD2CC0490E9C3813 /* RSocketServiceHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 52F3D7BDC8D676A9A21141A59192AA94 /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = 58A9B9AC86A3C640CA3F1826C1B01A7E /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 52FC4C285BD391CC8D308407ACE86BB3 /* HighlighterViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 86A632B5E966333C0668221A7CAA0212 /* HighlighterViewManager.m */; }; - 52FFB7E7263E029F81EB895607EEFC4E /* F14Set-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = E41EB8C393836F73849E4A9EC52E1A37 /* F14Set-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 53006F50104214D43DD9ECD3001BF305 /* BSG_KSFileUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 805EAA504AB5F67C0D94AC7A74F09827 /* BSG_KSFileUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5300EB30E88C8007DA5CC27505A2FF88 /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = AE40E991B5D04B318639EBE8C223A0C8 /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5310380B33DC212FC0AF78E54D4B5E0D /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 280005C2D697F4B8EE5FA8D2A16214F8 /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 5311D68E07D17C0948FF652E5E96910B /* FlowableTimeoutOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FF6612843F3346BFEAF10A6DC11B13E /* FlowableTimeoutOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 518A7E73E691F8A7EB9865679279CCF6 /* PriorityThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 55B349C864E792E7F69E016CCB3CD3A5 /* PriorityThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 519418231152DE7965E65EC152039E43 /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 56BCA2B97E1DAE73AA56E72BEEFB6722 /* RNPanHandler.m */; }; + 519481BF2A8FD895AFA82E945A8D141E /* PolyException.h in Headers */ = {isa = PBXBuildFile; fileRef = DAACBB6E0B5F70EA6D859B825E7C77C7 /* PolyException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 519CEB1CF0632BD4CAEC31A5D86E9DA4 /* StaticTracepoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D701AED020EB1DA57B6FDE8E105FA78 /* StaticTracepoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51A4F8CD4AA7BE9D2E696DCA8AE0F874 /* Aligned.h in Headers */ = {isa = PBXBuildFile; fileRef = 288958F4742B33959C00CCDA830DEF73 /* Aligned.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51B67D2931EB4CCA7F07B76A066A8217 /* EXAppleAuthenticationMappings.m in Sources */ = {isa = PBXBuildFile; fileRef = 12765E6C0FE3B8B56C136DB523CAC8DA /* EXAppleAuthenticationMappings.m */; }; + 51C1FFC5E15D1AC45B9AAA9CBEB5A955 /* FrameSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = EEC53FB638BA80024B5BEB0C515A1750 /* FrameSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51D3700FEEFA90864982B1032E26BF9C /* FIRCLSOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = F667AE46E263A7A517E722D9B783D79B /* FIRCLSOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51DF4E7D681852F71D8435935ADF11FB /* kqueue.c in Sources */ = {isa = PBXBuildFile; fileRef = 19D8F967D64197E724B3530AC7D14799 /* kqueue.c */; }; + 51EA1E266FCC622C10B5E031B822F96F /* StorageIndexer.m in Sources */ = {isa = PBXBuildFile; fileRef = E930EFE217233CB3748BF3259CC7C4C4 /* StorageIndexer.m */; }; + 51EAD4304BBE7F35D895B0B7CA19B049 /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = 04CEC819B28EEF081FB1A60A969A8641 /* RCTProfileTrampoline-x86_64.S */; }; + 51EB6CD6227514158D2DB1C52438BC2C /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 696DE55C286BFCE9ABFD2B09F49FBF2C /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 521BFDE9B74DB13FC9C7541CACCB11B1 /* Payload.h in Headers */ = {isa = PBXBuildFile; fileRef = F85832130A3148FE810602F0E05D38C5 /* Payload.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 52247987D1E7B79399E678A6682FFBF7 /* RNCAsyncStorage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2787A45A8735757BF89DF8998E247CF0 /* RNCAsyncStorage-dummy.m */; }; + 5235586EF4F37E089CB0466A3D29952D /* REAUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 872D2FCB86AC74686DC67A7EE65FA3A1 /* REAUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 523BE73D9C77E2B415B1830145587823 /* evsignal-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F068A4842CE3553A27782E11612DDC0C /* evsignal-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 523F02EA0EF6E9EAF4553423C8E872E9 /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 199B4D9418A060D8E6D101491598E0C2 /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 52489BC03892984727EF0E18F51CA909 /* Exceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 55294EC3E504C8BA006BB2B2EBA6DAC8 /* Exceptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 525681D085B5C73EF380EA0520995BA4 /* bufferevent_ratelim.c in Sources */ = {isa = PBXBuildFile; fileRef = 39305B4A5D50A8905FE3337AF9BCC606 /* bufferevent_ratelim.c */; }; + 52639A0ECD241362B0BD6FCEEBA881E0 /* IOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 97091FD93643FE8D36CD583C5E548E92 /* IOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5265BB288BE7022F66692322DC4A1FA8 /* WarmResumeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F16029932C4F596513746C170634EF45 /* WarmResumeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 528CD6DB1523A496CBB45E611E2CDD42 /* ObservableOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 06D9659F8777F15807BD0E8F05A9A56A /* ObservableOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 52D293AD9A91867323F5D527B2D6FD2B /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F9E5087DC25C01058CCEF28892B1C75 /* SpookyHashV2.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 52FC4C285BD391CC8D308407ACE86BB3 /* HighlighterViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4881DB0D5458E784FDA1D1DB2C6C66BD /* HighlighterViewManager.m */; }; + 52FC8D37FC21A6A1729B415C479B0A45 /* GULUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = BD569C16ACD867CA9120A03F34357CB6 /* GULUserDefaults.m */; }; + 5305B3D1845996CAE48B884F62A700AE /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = A442BB7FDC24744FFABDB77D2DC980A9 /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 530DE462E0FF44DFF2D4097D1F364F55 /* ConcurrentHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = ACCA7A6E3C142EF4A0ACFF27DA8855EE /* ConcurrentHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5313E8917DB2674A66D9B5BD586D9284 /* TOCropOverlayView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A0A2760653BF9EBB93B810586FD6825 /* TOCropOverlayView.m */; }; + 5314F052CBD1660721A471757A6960A2 /* SysResource.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3E17D8288C72780F8067F47CB16FDE7E /* SysResource.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 532419B8F6C92922633064EB3BF4DD29 /* Combine-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A9F8ACCF50BC8F3E29983A656D96F585 /* Combine-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5329DF0639EECDF46FF0D39B96066679 /* SKSearchResultNode.m in Sources */ = {isa = PBXBuildFile; fileRef = CF052B7BAEBD12FB552E6AAA12CE3E99 /* SKSearchResultNode.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 533623F4B9D6BAEE1EB8BD51C7C4ECD5 /* bufferevent-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A1E9C1B0EFF5B1C55F68933D06863DE /* bufferevent-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 533D723DBDC1987B2F81ECF1A82E9F48 /* EXSessionDownloadTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = C15EB7B14B020BFB9E8B9685DF0137AB /* EXSessionDownloadTaskDelegate.m */; }; + 53310C7E51592F35B731482C04256849 /* ScopedTraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 2276E935AF07959AB2B1F1212BD9EF3F /* ScopedTraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 533D723DBDC1987B2F81ECF1A82E9F48 /* EXSessionDownloadTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = DAD7E54D8867A225CF32D8C459853200 /* EXSessionDownloadTaskDelegate.m */; }; 53670FBF51CAFFBB4ABBF3D2640B8137 /* ConnectionContextStore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F581C9A5F02DED7814305888D182DF40 /* ConnectionContextStore.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - 53688E900F86F67061EBBE82569FEE46 /* BSG_KSCrashCallCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = BA865FA56CDB16D28CB593E4E0ABC765 /* BSG_KSCrashCallCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 536F76D501AFFD82E1E54488FD30BAB0 /* FIRCLSReportManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 33DD3E5B5A4DC8E6EF82F41A5E8D1A7D /* FIRCLSReportManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5372184DEE4B05BD26EAF265AA46579F /* REABlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 687E451D04769F753593715A51175ED7 /* REABlockNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 53BBD962FB7BCAD3DB8A5E4231945C9E /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B381FB46DB755A2057D4D32406AE2A7 /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 53C891A6385352A1D62281432F29B6ED /* RSocketServerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FAAD852C1CA9EF26844E8FA4D7D7229 /* RSocketServerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 53E1D767755D5399682FFE2E2E352A68 /* FrameFlags.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 99BE2F500519335CDB65E84AFD50FDF5 /* FrameFlags.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 541C7B542BE9DAA6202E136237A05192 /* RNCSafeAreaProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = D7C0752E2281543637AD3FF993453899 /* RNCSafeAreaProvider.m */; }; - 543EE0A6E553C33AEB1C61AC88CF42ED /* REAValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 64AF78F1D3EAA55B4FB07910063FCB39 /* REAValueNode.m */; }; - 5446953D16BE4586487B9165BC9D0C29 /* Shell.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00D5C969B704D8EC2C092FF7BFCCAA79 /* Shell.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 544AE9839B67757D29D6C5DB72C6160C /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 4505A2DC2AA94681B244E2CF6D831A75 /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 544B0A17D4EF8DF1A62AD4C97B7DF962 /* RNFastImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = ADE027B1B380A6AEF629544CB54C2721 /* RNFastImage-dummy.m */; }; + 5370CBA4ACBE7AEC5EF7A382F7043145 /* Connection.h in Headers */ = {isa = PBXBuildFile; fileRef = E3B827B8FE180C2C5A5139B362493C4C /* Connection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5372184DEE4B05BD26EAF265AA46579F /* REABlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C9513ADBC8F5FD588932B568C8D26DDB /* REABlockNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 53A36BDEA07F386B37520635B600148D /* LifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EA9D6AF988840673AF7540C73AF91E8 /* LifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 53C44FE753F00DA8FEA2EFCE693BDF2E /* Arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BE09AE7D89E67A3549EB8A5B7B2CD7E /* Arena.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 53C524B776B176967BC868CF2F36B40F /* ko.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 121C082C44622369A24320E0608F7EBA /* ko.lproj */; }; + 53C8034D5914E864883C58EFAFFCD535 /* NestedCommandLineApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 3358D2CA5F4B26E8D42DF90BC66436BD /* NestedCommandLineApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 53CA5D35728E9D0983ABACA0581B5123 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9327F9C7E8982E0CE3C75DE507864913 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 53DEA63DF1BB7C514C985DD0BE8ABF91 /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EC88FAC2B7478A7FC834D49B9513A81 /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 53E0798A557C9D66C44522A1B37588D6 /* yuv.h in Headers */ = {isa = PBXBuildFile; fileRef = EC406A8E1DF9CEE11C8A055B76618D94 /* yuv.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 540F416C28C21D48FAED8BBBFD21572D /* ExceptionWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 11F3B1FB18F5565F8113DB73ACB4066F /* ExceptionWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 541C7B542BE9DAA6202E136237A05192 /* RNCSafeAreaProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FDB50B420BB773426F9F40E91C07B38 /* RNCSafeAreaProvider.m */; }; + 54215A72743129B3F6E99C1A98273D4E /* GULMutableDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B66C0BC893BAE6AF6FA76CBE2469AA8 /* GULMutableDictionary.m */; }; + 5427EC2709C8F7F4AABA09565DF07D2F /* Synchronized.h in Headers */ = {isa = PBXBuildFile; fileRef = 033C850F3FEB52866E0474A4C21D0158 /* Synchronized.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 543EE0A6E553C33AEB1C61AC88CF42ED /* REAValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EF4B26C6D38B2DF9388C95BAED0C0C0 /* REAValueNode.m */; }; + 543FD4FAA346F4E1FC73BD3C0AC0F7CA /* UMErrorCodes.m in Sources */ = {isa = PBXBuildFile; fileRef = E2C20142D7302B9F6BD186560877B9BF /* UMErrorCodes.m */; }; + 544B0A17D4EF8DF1A62AD4C97B7DF962 /* RNFastImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CE58441B97197A9C77EC5B3FA60736DD /* RNFastImage-dummy.m */; }; + 54574A563AC07DC31E7F70C6E177FAA5 /* SDAnimatedImagePlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = BE8FE5ABD07B445E6E17FBDE8B6AF829 /* SDAnimatedImagePlayer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5468B18F248F48CC7444DAB53E55683B /* FlipperStateUpdateListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 0700BA622A0AFEE9C4E6E9C7422B940A /* FlipperStateUpdateListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5469C18F9197DC7E7D30F8E2365BCFD4 /* SDImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = F00FBEAB647FF5D3E69DF36C8F70061B /* SDImageFrame.m */; }; - 546BB3D5FC6AE18BCFB74A44E644754E /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D42540B4359851E48494A5F0E8CE6C7 /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 547C47E5824F41802EB8109BDF0A8A67 /* SDImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 473EAED02F9A9B0273273EC3A0DC6C8F /* SDImageCoderHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54880C500712D7E15C7E85BEEE11A60D /* EXAppleAuthenticationRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = D3289860078493081E88901C691B4FB0 /* EXAppleAuthenticationRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 549A96F99EFBCF9B25A6970FF8305F9C /* GULNetworkConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 920923E2DB170384DABDA9E8EC651393 /* GULNetworkConstants.m */; }; - 54AFA736241C04BD6B37B279A163BC80 /* ManualTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 092F24E4BE5DD6FB8A6ABE16A9CDBF1D /* ManualTimekeeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 54BDE91BE5ED0FD91BE3BBF62B32BCAF /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 16E00F5ECD281A63DC53A6EC3228722E /* RCTPropsAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 54E788E5C085FA3A2C2AB37EF45DE748 /* JemallocHugePageAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D2EA741293DB1E455E1E6953536B516 /* JemallocHugePageAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 546CDA51CECAAD8E40A35673B6AF16EC /* AsyncSocketException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F9590B544AC71E50DB3D4A1FD459091F /* AsyncSocketException.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 546D73DEF4FD408C5791A9BCE5DC92D3 /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CE720B80740482075792A51EC72C64FF /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54880C500712D7E15C7E85BEEE11A60D /* EXAppleAuthenticationRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = C590CA6D07CAF60A863741EFE53EDA7A /* EXAppleAuthenticationRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54AB0BE1465DA5D73C20D87AC8FDC895 /* BugsnagThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 86A4D1DD994C66B202FFE6800530D499 /* BugsnagThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54BD891D56D4AC60DB75C0BDD22BB108 /* FIRConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D491A5BE778C93D4886A5C866040891 /* FIRConfiguration.m */; }; 54ECA723AA87FD13E6470CE43E753CAD /* SKInvalidation.m in Sources */ = {isa = PBXBuildFile; fileRef = C2661B362B6625627DF372579E7AEF04 /* SKInvalidation.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 550A080E68943939CA95B7F4E6485F49 /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 27B95D25C59296DE4F9491AD1425DF06 /* RNGestureHandler-dummy.m */; }; - 550B7C07AB667154E6370191A23679DB /* ChannelResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 03627D3C4570EDDCB741491956019B46 /* ChannelResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5532F12A90C71FADC9F95BBB2CF394B2 /* SDImageAssetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D93CBCD48E40E7740CBB907E63A0A0DD /* SDImageAssetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 55545B966E6065FA2CADF0FF5D0F0057 /* BSG_KSCrashReportWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1698515CD39D5A53E60FAA9E67334E4A /* BSG_KSCrashReportWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 55712CDAA155F67F9D3C98DFF1364602 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 3165B7C50B8D93136632716AD3961A52 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 557552171BAD7BE741FC922648DD81EE /* SingletonRelaxedCounter.h in Headers */ = {isa = PBXBuildFile; fileRef = 14C7ED7A9BB3E80BD1FFA1CB82001C31 /* SingletonRelaxedCounter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 557E1A8924375EDA581D1AA4528DF22B /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 6377DE541E0C6E7297F6C5EF6D754F48 /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5585133560065106209AD5CCFD238CAE /* TimekeeperScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = A09076E9363084BD2F32C9CFAB0F4542 /* TimekeeperScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 55BAC00887B7585BC94A31906FF35477 /* event.c in Sources */ = {isa = PBXBuildFile; fileRef = 598202B7E8219B4266CB62E0A114604D /* event.c */; }; - 55ECE01E65351A604B3F4E49036DB8C8 /* muxi.h in Headers */ = {isa = PBXBuildFile; fileRef = 0296DE86E440E4C1E3E73A957A6FA40E /* muxi.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 55EF20F0090A69F123F1B9CBC9D66283 /* OpenSSLLockTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C417B868FBE646E1842489AC453BE29 /* OpenSSLLockTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 55F04A0412532CA8D0254B1D7C18341A /* FBLPromise+All.m in Sources */ = {isa = PBXBuildFile; fileRef = 3951C11FDC3F933B2738237DE4204F58 /* FBLPromise+All.m */; }; - 55F765F37C59C5C960CB40C562CA9CBE /* RNNotificationParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 21B24D49253EBDA6825FFC23C8EC2C70 /* RNNotificationParser.m */; }; - 55F8E7CEAE0AD885612DB1AD9B735C94 /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = DEC90F3138BE411B0E1CF8C2770700AD /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5612514BC1843E72BF91B29AFB21F139 /* RNCConnectionState.h in Headers */ = {isa = PBXBuildFile; fileRef = D750816AE5A882794EDAB55CEE923C47 /* RNCConnectionState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 565745A6A09F99CBEC9E17117B804F96 /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = B4BA5D239213ECF054E3BA8966E4EC22 /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54F2E38408AE876595C7FF75B4F0FCEE /* GDTCOREvent.m in Sources */ = {isa = PBXBuildFile; fileRef = E15545D395D44A2CB1B9694E05BA0A65 /* GDTCOREvent.m */; }; + 550A080E68943939CA95B7F4E6485F49 /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E9A7FD5F85D4E9397A1DFCA59AA21099 /* RNGestureHandler-dummy.m */; }; + 5530E15FC0D84020B802A86170A1AD19 /* BSG_KSMach_x86_32.c in Sources */ = {isa = PBXBuildFile; fileRef = 95886B2AC7494B540A28ECCD92E6914D /* BSG_KSMach_x86_32.c */; }; + 55862533AF8EB81C065EBAE19625B899 /* YGLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 49D53E5ECAFF69A7D6F6C7CCC60D004A /* YGLayout.m */; }; + 558DE6ADB371227D79637DA212919A67 /* Time.h in Headers */ = {isa = PBXBuildFile; fileRef = 842065B8B3BD58AC120D1C31CB5FB335 /* Time.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 55C7553AC2432769683FCFA6743ECDD0 /* MacAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 38258EDC2ECDB25B79EB77612803051E /* MacAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 55CC116AF16D57CDC38060B2AFE35B50 /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0B5AB93A1A9D7CB8293F5DDF39830F9C /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 55D4426FFCD98521C5E8B02841D11556 /* Frame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 04518E1251B37EFB9CC7C85F2C6F79BF /* Frame.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 55E17DB6E0D564BB0F61FADAF54E149A /* AtomicNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = 78BC83CC850F23118262A47B9213D1B4 /* AtomicNotification.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 55F765F37C59C5C960CB40C562CA9CBE /* RNNotificationParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 3243616DB85F9A421BA274E17024AB10 /* RNNotificationParser.m */; }; + 55FD51B36E2F32FBC86416608362E437 /* FIRCLSFCRAnalytics.m in Sources */ = {isa = PBXBuildFile; fileRef = B2479DB2FE66EE76609DF15B3AB5F1F9 /* FIRCLSFCRAnalytics.m */; }; + 560B893D25CFB3CE6099204CC3F920B4 /* MPMCPipelineDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C5800E04BD2368D3CB11E16D4EF1829 /* MPMCPipelineDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5612514BC1843E72BF91B29AFB21F139 /* RNCConnectionState.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F71F642AF3DE7DD9E1E4E9BE0B3DBBD /* RNCConnectionState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5634D3743245D9A52ACAEA08B3128EEF /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 52487E7EA3FF06EFCB57D1CD9FA0DCF2 /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; 565A40C9715DD79B31B0702BA634E8AE /* UIColor+SKSonarValueCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 41718BA175DA03A8FF8BD8BC05A1E6E8 /* UIColor+SKSonarValueCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5669762CCB3A41D274DD496EE3AFBD9B /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B01481011B177B9ED93006300270E5A /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 566C611302AD7F00BDF5718E3F40949F /* http.c in Sources */ = {isa = PBXBuildFile; fileRef = A16956E0F13387473A1FADDE58ECD237 /* http.c */; }; - 568EF27B9FC821A59A1E531A762689B8 /* BugsnagCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = B5A4BA67B1548EB00B151EBEDCB2EDD8 /* BugsnagCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 56949D243C84315175E0A88E5E5B29B9 /* Try-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B67C4B41669063ADAD31C56F4EF5A81 /* Try-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 56C32CCC251C5AC749B764BEF99AE8CD /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 1897A301B36279D4D8AE2201B6A5DEC7 /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 56F7980FD755DC837527569DB31DC8BD /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = D1B55BC8607F3986709C701664C14828 /* RNRootViewGestureRecognizer.m */; }; - 56F8E6F2A7EDC27AB9FA3DCE5DADF30E /* SSLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = C68F5547801F990A641A430EE0156A96 /* SSLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 56FC6B389683EFB670BA03EC7ECA7084 /* BSG_KSArchSpecific.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AB2287C1FDD8A383794D79D3C811B59 /* BSG_KSArchSpecific.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 570C74C728841871D4DBEB6FA4A15497 /* RNCWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 24E9FC4AB6089379891FD3D5620904B9 /* RNCWebViewManager.m */; }; - 572180B4B552A0470435211ED93CAEF4 /* EventCount.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A11F134BC882C7D27091A2C96946962 /* EventCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5735894CB4D66B06676A8558AE6CEDA4 /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 95A407F587675F50C235A231D771F147 /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 574959DEF7B547B0332B1963FF6C2C38 /* Frame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 04518E1251B37EFB9CC7C85F2C6F79BF /* Frame.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 574F79FB92D84F4AC64F8AA860F0669D /* MPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E75554C6C3D8AB01B1D0B5851FEACB5 /* MPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 575A39E812DA65BEDA065EA8B085E32D /* FIRCLSSignal.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E88D846200DFC32E1B1FB4A60EAF730 /* FIRCLSSignal.c */; }; - 5765E8955B80B104A741B034BAF079CF /* mips_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = E9EB53456EF9DFAB70B1BF7C11D270BC /* mips_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 576686AB1696E397C29DC170EA3BC6BE /* SDGraphicsImageRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = CD5D732B125633DF2A14954BE4893DD4 /* SDGraphicsImageRenderer.m */; }; + 5669798FA515371E08A7DAF4BDC87760 /* FIRCLSThreadArrayOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 39A87EC33C3AE727827CE0318565876B /* FIRCLSThreadArrayOperation.m */; }; + 568F5CB571EFC06386733DFBA6509666 /* FIRCLSRecordHost.h in Headers */ = {isa = PBXBuildFile; fileRef = 6469A47D128F2A11EBBF60DD1195B115 /* FIRCLSRecordHost.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 568FA58DBDB7030FDAAD0B6F2B520755 /* EventFDWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 01F562B383893768D4CE562C173AF28B /* EventFDWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 56A21965CF32BA684B8581838BE19F35 /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = C19F872B607A5D258F69243BA87A938D /* RCTImageCache.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 56CC7F0B9354791C231BE0A4C795482F /* F14Map-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 6035C4A147C0B8830C13A13C56336ABA /* F14Map-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 56E7F7A5D57875476E4E42193B33772E /* IOThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5D16A061AC19EBE3F2A997C614F5904 /* IOThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 56ED895217017BD48610677C02E2FA85 /* FIRCLSCompactUnwind_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = A651A21FE23C668C852E87BDECE35979 /* FIRCLSCompactUnwind_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 56F7980FD755DC837527569DB31DC8BD /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B98073CFC9C25D3AC7C10F3E831926B /* RNRootViewGestureRecognizer.m */; }; + 570C74C728841871D4DBEB6FA4A15497 /* RNCWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7505D90D2C884C300D75B003B59BB35E /* RNCWebViewManager.m */; }; + 570E09B1C702A22295002978F51E87D4 /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = 89A476ACB3FE57D02EC16766114B7E08 /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 570E71BFCB10F0D0CC22FE747564297E /* AtomicUtil-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 767B925C026CB9A6115D2DAA8564ACF5 /* AtomicUtil-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5735964EABD42A40E1A4FB00D74231AC /* FileUtilDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 21208A38F5A34E06291195EF0E2908C6 /* FileUtilDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5757B9E2D363214326CFF9EB235140B0 /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 8ECE261CF9D06F4361E4A1F9279B98FE /* SDWebImageDownloaderOperation.m */; }; + 576BFE5A753D35D748B26D692B7D23D3 /* ScopeGuard.h in Headers */ = {isa = PBXBuildFile; fileRef = 43032CE22287A7D741D63E15464A404B /* ScopeGuard.h */; settings = {ATTRIBUTES = (Project, ); }; }; 576D1D3D0255B54FFBDDCB00855FE397 /* PTChannel.m in Sources */ = {isa = PBXBuildFile; fileRef = D59DB87E3210D516D896651D27738B12 /* PTChannel.m */; }; - 5771D1F5AF09F22675A90661B35C5C29 /* BlurViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7214962918216B419B8D26296C62CF6A /* BlurViewManager.m */; }; - 57CC5A306BFF41C4E5ADDAF14D932B35 /* rescaler_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 452CC8CE14DB69F8B48468BE79829A20 /* rescaler_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 57D78F83991F15800B0EF39A76C40A7C /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = CC4F11947211DFCAFF2C712A29E3F797 /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5809FBAA42859299F5D31C2EE01F6FF4 /* SDMemoryCache.h in Headers */ = {isa = PBXBuildFile; fileRef = CD2F3B487E3BAE150BE5331123974954 /* SDMemoryCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 58182B304F31C00A037D553625077846 /* FBLPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = EC33EB81EAFE738D028161A843133FDA /* FBLPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 581F7785B0AB703B54F377FFB0B702D1 /* FramedDuplexConnection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DDC9FC6CAA3FE7456CC806F378220131 /* FramedDuplexConnection.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 582266EAE20E7DE7E26C4E30B784EE3C /* SocketFastOpen.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CCF2A4D4486F1371EF28C581C24CF65 /* SocketFastOpen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 583045FA1C121D1BE4F8F5E45F2E74EB /* FirebaseInstallations-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C56282F270075C6B28A3525902415FFD /* FirebaseInstallations-dummy.m */; }; - 5856379D6B02128300DB60AE3B69AE67 /* ClockGettimeWrappers.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ABB4D4481DB4A0DC59ADFAA1D7E6372 /* ClockGettimeWrappers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 586FDA5FDA00AF7B9DB4CC4291BAFD6B /* Function.h in Headers */ = {isa = PBXBuildFile; fileRef = BB1B2F8D8B7929C7DD01DEADCFB8FD3F /* Function.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5870B1597C4D6C88EAD06A44C7D309F1 /* FBLPromise+Always.h in Headers */ = {isa = PBXBuildFile; fileRef = 5489F8899DE48A12C9A910B77CFBAACF /* FBLPromise+Always.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5872651C870CAF072616F73EA66F6976 /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 91D0007F0B44D87A9E7C67ED68997057 /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 587B4AD0E95C8AEF88FF8E0CA1F6BE2D /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = ECF6274B422B5070584B23CD75BDF7EA /* RCTBaseTextViewManager.m */; }; - 589DAB7B8C5F8E56A37E17F0B8B6033F /* TOCropViewController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E9DAA69C91C5D71F71C166021395D3BE /* TOCropViewController-dummy.m */; }; - 58B7527D10B205632DD69550C4B207E8 /* BSG_KSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 7180F959DA402FDFF49C58E1FCE63552 /* BSG_KSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 58BCD6F3329315F2532EC6093610E759 /* FIRInstallationsSingleOperationPromiseCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 487D1690697E71AB3608BBB1B971C59D /* FIRInstallationsSingleOperationPromiseCache.m */; }; - 58C415C3B60E17BE1A687C646DF8601E /* SysUio.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FD0422E27ABD51A7F0B26BBD184FBA7 /* SysUio.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 58E1660575B93C51FE5C9208E4D2ACDA /* REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = EE24F85C6CA8CC94F70EA6BD9EC8A95A /* REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 593EF2505647C864AB0382709F612330 /* RNCAssetsLibraryRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D387B13DD65247029584B19ABB2D3BC8 /* RNCAssetsLibraryRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 593F0E75D1F0B43A1681EFEE93AB5117 /* DiscriminatedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EA1683C021C4EC5FEE026813886B9B8 /* DiscriminatedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 595552640CDB1DD99E4030146B6E9AE3 /* FIRCLSURLSessionDownloadTask_PrivateMethods.h in Headers */ = {isa = PBXBuildFile; fileRef = 617DC4CFBCE1FAC3EED379342C098A6D /* FIRCLSURLSessionDownloadTask_PrivateMethods.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 595EC02DDDF4595DA97C90DAF2E30CD0 /* Singleton-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E0F792E72F8179297D7FA3C6EDE6C734 /* Singleton-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 596054CD1EDB1EA16C310CC7B3C46BCC /* AsyncUDPSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5DFF7397E09CAEAD4EF98B7FC86A0F4F /* AsyncUDPSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 5974160A393FD50FB0EDFA464835008B /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C5FEF15984208664BD1D21E2627057A /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 597BEACF21F04BE9901D3AD263FC63C6 /* FIRExceptionModel_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = B50E06C043C66E717739CED2E150DC3A /* FIRExceptionModel_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 597EA09176974C7DC8F7EF28177FC5CD /* SysUio.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BF2FD70B586966F632DE0F4C3452BC4 /* SysUio.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 597FE2C24B558EAE467990DDAA424325 /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C39E6B4BF38C0A9660CF41FF7D46B15C /* RNDeviceInfo-dummy.m */; }; - 59BFA7911303A641671CD31ACE5D5E7F /* yuv_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = EE1C228CC76D024E333510EC9F96FACE /* yuv_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 59DD4ABCE69BD6765B7FD2FF7D1A6D07 /* FIRInstallationsVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = D4A2BE8CFED384AE4AC4EC33BB298903 /* FIRInstallationsVersion.m */; }; - 59EBC93ADCBFCA9F0540BBABAA2B1386 /* RNDateTimePicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 513D5AC29B8F51346C2508D16D5F2395 /* RNDateTimePicker-dummy.m */; }; - 5A0618F7310974C74061256F3E65F065 /* SharedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 73EF414ADC9425D54A581AC4EDED9B24 /* SharedMutex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5A0C8AEE3F0BCCEB7E121BF2DFD75A8E /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E32F1187F93F4D6338F8FFA8801461D2 /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5A14D58FA6DDF2442BFA6564F57D61B9 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 91261588DD3C14ABC2E32BA0750BE0D3 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A17CCDB5B75BA8B1971DFDBAB821F97 /* EventUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BEEB143F660792E34A92AA98D4043D4 /* EventUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A3D0DD9C0D7319DF13362FA20D55A3E /* DiscriminatedPtrDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 462C48E8BA7700B5491CB4AB994C7950 /* DiscriminatedPtrDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A64D5AA5E9E1D63CF0F1D140F7B085E /* glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A9A235A975FFA925CF1A128115C1D9A2 /* glog-dummy.m */; }; - 5A9299BC657C6780109E101A8C0B5F5B /* REAParamNode.m in Sources */ = {isa = PBXBuildFile; fileRef = D9A71EB31966DA877E7047FB95DC2E9D /* REAParamNode.m */; }; - 5A969E15E0F3292379F7AB7C04C77590 /* Constexpr.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AE90D932F5FFCC1DBCCA7B9D17A6B0C /* Constexpr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A9B6829C000BE235D08738105E3E306 /* TimekeeperScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = E51825EED7240CC4E05BE009AC454015 /* TimekeeperScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 576FAE68D62B75975E61E4306DA51C22 /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 04925E4C65CD37F4F5BCEA972570D447 /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5771D1F5AF09F22675A90661B35C5C29 /* BlurViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CA76A689A2C2A3731103D8254D9FCA7 /* BlurViewManager.m */; }; + 579403A7E23A3D1B484B09EDFBABF685 /* Uri.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5903689357297B6FC54A8D0B3466D988 /* Uri.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 57A2877226035C314F1E3DB50EA716AC /* FIRCLSNetworkClient.m in Sources */ = {isa = PBXBuildFile; fileRef = CF8644F271E44401C198A359C279E6A2 /* FIRCLSNetworkClient.m */; }; + 57A3AD09873EE8EA44F22BBF2FD6571F /* AsymmetricMemoryBarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = DA0C110A12A0BD5E9A1907F4493D4C96 /* AsymmetricMemoryBarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 57A9150670042BDF5454DF3A09F0BF20 /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BB74AB265F6AE55D2337D7E434DFC7C /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 57B0B7CAAE8B64CB2AF282C5A17ECCE1 /* MicroLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EB7532A0A3B8B481335D17280B270C0 /* MicroLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 57BC0C321B24948DE44EB7D7F8B5D7E7 /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FC97E9950E503E79D263EADAE92167A /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 57D78F83991F15800B0EF39A76C40A7C /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = 94BE9A0B11F10DD46B5AEFD4178E116F /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 57DF71855BA890D631892D2A4B2EBF5D /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = F68BA11CC0C275B67DC8ECAFC32E5A60 /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 57E4B19F74D99E1B3A27D31AC87A7006 /* evutil.c in Sources */ = {isa = PBXBuildFile; fileRef = F6AB4587E201E4C23AB7619E10ED0427 /* evutil.c */; }; + 57EA197249DC5CC52EFE8F17C9427B3A /* FIRCLSRecordBase.h in Headers */ = {isa = PBXBuildFile; fileRef = BF67BBDCA673E1FB5C1DD2309AF4CB54 /* FIRCLSRecordBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 58061F438DF6EACD997877BB0B2EBBCA /* React-perflogger-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 776B3012326972E4E0C073ECF6219795 /* React-perflogger-dummy.m */; }; + 5807F6B080990E0B767B0BE449E8ECFB /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = D5E55A4EAD292CC5AB8F7832A3894AAB /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 580AF9B17AF0DC866C596952274164B9 /* FIRCLSMachOBinary.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FFD4768964A96ED914AFC1FB2C3CD28 /* FIRCLSMachOBinary.m */; }; + 5822C44912002F529B8D36067CA5BED5 /* BugsnagKVStore.h in Headers */ = {isa = PBXBuildFile; fileRef = E5D4170E4147969786CE3297B8D288DF /* BugsnagKVStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 58368D45926FD1B6881772D7AA2BFFD0 /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 02A07C2CF210CB58858459A1FB92D628 /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 585BA85A9E284A84802094B584F65CC1 /* ThreadedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = B56F12B746CB0F16C8001E746A25E3D0 /* ThreadedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5862194834EAEBC5983B2B6DE7F7D8BC /* GlobalShutdownSocketSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F80D14207A4BC374E1108E515C59113B /* GlobalShutdownSocketSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 58654A065C7D9BC74483DB9875A1F7EF /* RCTLinkingPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F078F39E28D25346F07A1C58BABEFCD /* RCTLinkingPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 586AF66AA034395EF22197C56E9C3041 /* Stdio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C447F5E1A3B40FDA187DD4B2BB4E3656 /* Stdio.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 58703AB85DDAA7CC1B8525B5CEB0D83F /* demux.h in Headers */ = {isa = PBXBuildFile; fileRef = B9703E1EC5B12F2D715115AC6A7FBB93 /* demux.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 587AFE04A5B41C8A9141EE2635529E04 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = C23E608D6ECDE8DAF3600B13F5FD8ABC /* RCTProfileTrampoline-arm64.S */; }; + 587CF6EC3B6FEB93465F0CD513A9AD09 /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F5C24A28F7BE299202A4BE137E4D7B83 /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5885A380130872574F2275F30DB28F49 /* BSG_KSMach_Arm64.c in Sources */ = {isa = PBXBuildFile; fileRef = 00B98116A9CCF0A918097FB180D34F09 /* BSG_KSMach_Arm64.c */; }; + 58913D434D1F05CD24A2CDB16D9E6986 /* Request.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 000558890AD12FA455201ABBBD9084C3 /* Request.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 589A0FA2BB8D8D82ABEE5BCB8958B23C /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 04EFE173DFCD42C297A5081E121E245C /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 589C23108B805E0EBF232A4D1C231745 /* BugsnagBreadcrumbs.h in Headers */ = {isa = PBXBuildFile; fileRef = F759368598F3CB12858EFD5919BB5FB1 /* BugsnagBreadcrumbs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 58A2CFAAF578864F9A77830CE86EE050 /* FIRAEvent+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 807FB3BD4F4C8DC51A9131B966235F59 /* FIRAEvent+Internal.m */; }; + 58AF9CCBEEF7E4BCD4301166C851AA06 /* ThreadWheelTimekeeperHighRes.h in Headers */ = {isa = PBXBuildFile; fileRef = 7740BA7FA0A7CD669E269EA357054220 /* ThreadWheelTimekeeperHighRes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 58B5B5F5980F2C3C031C83B27AEF20A0 /* ClockGettimeWrappers.h in Headers */ = {isa = PBXBuildFile; fileRef = 836C95D081ECB5434F342E17A88F8CA0 /* ClockGettimeWrappers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 58C6339E7789D7039C3B799F993C4221 /* ResumeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ED9DA0CE1A4AFD77FC0FFB024D143F70 /* ResumeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 58CE638F9A39594D5B03261D56EF3679 /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = D138E7168D289E33D969E784634487E8 /* RCTInputAccessoryViewContent.m */; }; + 58D7F9C57D9E8C42867BC4BD992FE79E /* BugsnagConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = B3DDF3E68ACB1EB42C9B28FEFE55CD1A /* BugsnagConfiguration.m */; }; + 58DBC0FAFB21C7C9F841A75D0647F3E9 /* FBLPromise+Reduce.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BC6D68855B4DB60DC353DDD7CB64C15 /* FBLPromise+Reduce.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 58DDE1BB125D4D4F64A9A661E08F1CD3 /* FIRCLSCrashedMarkerFile.c in Sources */ = {isa = PBXBuildFile; fileRef = 6A4B08830BCD18DEC0487928F7DD1183 /* FIRCLSCrashedMarkerFile.c */; }; + 58E1660575B93C51FE5C9208E4D2ACDA /* REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = CA241484EAD056CDDD9937901FD9EFBA /* REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 58E2F5D71ADB5020DAF740BCD132F6E7 /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8FCFA71E7FBCE4592668FE90C1220BE6 /* RCTBlobManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 58F91D19BEC6968923335ABE9AAB2D1C /* OpenSSLPtrTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A7AB775F20AF1DAAFE10B7A75707F6 /* OpenSSLPtrTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 593EF2505647C864AB0382709F612330 /* RNCAssetsLibraryRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 68F5A2D99D26FA53F6F483CE78272FCB /* RNCAssetsLibraryRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 594C24B46B687D9E3DDC9441F8BA2005 /* DelayedDestructionBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 62F459488D43AA27FF3659559D36B974 /* DelayedDestructionBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 595485B6D37BA39E69DFFB6B33FE5D58 /* AsyncTimeout.h in Headers */ = {isa = PBXBuildFile; fileRef = B21C9729FD9EC0FB30E16883878AF772 /* AsyncTimeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 597FE2C24B558EAE467990DDAA424325 /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 52056FC19AE5CE79FA448C8CD56E2440 /* RNDeviceInfo-dummy.m */; }; + 59ADFE9353A5AFC51521D50B882605C7 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E74F12D027EC60353BA18DC9C8F057C /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59B329A3C21EC40388C438F5978C2BD8 /* CodedInputData.h in Headers */ = {isa = PBXBuildFile; fileRef = 2430CFEC73944B4E6CBACE3570B2F700 /* CodedInputData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59DE9E944049E3F8FDF20927F5A182E9 /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ADA24494E344DDAD822C6DA6B4EF030 /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59EBC93ADCBFCA9F0540BBABAA2B1386 /* RNDateTimePicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DE1DEECA7B95C2F487E21F26B6995B3 /* RNDateTimePicker-dummy.m */; }; + 59F6D34C25A88847AF8335D9E4FF1D5C /* FIRAEvent+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B00F17CD86E0960793ED999778327FA0 /* FIRAEvent+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A0171736A5F613B8B569D74BBD43F03 /* ThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 144FCDDA6C4928F6C6EC8F1864CEE384 /* ThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A1801ADF0F9E33B736EECEF44836F82 /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 14AA7A8B170D786D4D560A3331126720 /* experiments.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 5A1BAFF7CF411FC918F477C48C53AA63 /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = F3489AA7582FB320BAC9935E0E332756 /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A2849A983BC591DF6CC2F775AF11C57 /* React-Core-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A19D8BD47C70E27B2D60A385E031D01 /* React-Core-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A45D5194444588369ECA279EFBEF9EE /* UTF8String.h in Headers */ = {isa = PBXBuildFile; fileRef = 4990C4B9B9AA45A9F6839CFF93A49CEC /* UTF8String.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A7963A2F614AEC47409EE8111A1BF63 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 219E0924E0BE9C7E6130A5F93A67232A /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A81F2512F2E55549E9044D9D8DF322F /* thread_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = F5C23D5F46756EE864E58C1346D30056 /* thread_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 5A885EA7F6852FC3D4F9A5C4A7A34098 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 959538869682DE8F5F8416B71AFB8690 /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A9299BC657C6780109E101A8C0B5F5B /* REAParamNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 95E467C2CA3EAB1FECEF9E2AD4F9B632 /* REAParamNode.m */; }; + 5AAE28F93F533CF23C21399546C6AF83 /* iterator_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = A86994FD156A22B3C21CE4E425A6D6B9 /* iterator_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 5AB3B61A4C4F42AA53A9A921D6B6BC7F /* SKScrollViewDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 86D3CC47B0C340A700E877DEF908FAA8 /* SKScrollViewDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 5AB452D42596CC663FEBA330EB078710 /* Latch.h in Headers */ = {isa = PBXBuildFile; fileRef = A8452C7C5F850E613A7F3ACCEB22A96A /* Latch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5AB9B276C9DB16433FD388B6A3FA5E22 /* upsampling.c in Sources */ = {isa = PBXBuildFile; fileRef = 16740E5B21418D74BF0EB7B99959E337 /* upsampling.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5ABD274F20EF5C772F5FF365F4009EA5 /* F14SetFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 69845DF7E945F2C245A84A9EB73674A1 /* F14SetFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5ACB9343E2D8BF78910FB661AB784444 /* RCTAppState.mm in Sources */ = {isa = PBXBuildFile; fileRef = 94412BA51615AFFFFA371F963285E715 /* RCTAppState.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 5ACDA435BC6B3C2B9A85DE3EC5286BB1 /* EventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD6FB50291DEB555A1866C9D465DAE39 /* EventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 5ACFC14723F9255D12B62564DDDFEB37 /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = C98435D232181CB59D9437BB281085D8 /* RCTTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5AD00F0FCAAF27F1051504820F6C45F5 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 91261588DD3C14ABC2E32BA0750BE0D3 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5AED903BBC0B97A1204D6B68159F8258 /* GULSceneDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 842663EF20781EC453C3AB321DD4BF19 /* GULSceneDelegateSwizzler.m */; }; - 5B034E81C0E9C77BB70A4900412B0D15 /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 698E67A5FC5F74ABB902D4C5BE7D2857 /* LongLivedObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5B07F8233797F81DC6C21A0EBB7CB9F2 /* BridgeNativeModulePerfLogger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1288C2CD3F6B96DC5C50D947B0C05D0C /* BridgeNativeModulePerfLogger.cpp */; }; - 5B0E0F5607B8C17150D138C2A7438697 /* Future.h in Headers */ = {isa = PBXBuildFile; fileRef = BCC1146DC641696C5D12F3D1EA347D6C /* Future.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B1594260D4D2CF170638245549BF444 /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5D775911616F066110A00982DB65A0CF /* JSIndexedRAMBundle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5B17C07022BB8181DA586246F4E32483 /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 42D664A0C02CE8B359FBC56C3FF16612 /* RNSScreenContainer.m */; }; - 5B44D8C56412673CE598082F8F7680D8 /* SysMman.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B1D0814E55E56B96BFC377C0059C7FF /* SysMman.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B7CBBD6B9978FC2C6DBF598E87A0272 /* Windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 57772953C8F6A7EE7549195AE3766F39 /* Windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B7E6DEB79C89D28C0DFB8723FD41724 /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = B5D9F322EAC1576F0B62D4E517EC9CD5 /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5B891C24E8FED7A4C8F3C1CA3FC0C1AA /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EF0B16ECF34B288D753FC7B5F377EA5 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BA7F607D3A30C96CA1D85D28F728367 /* RelaxedConcurrentPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 430CB77D6D03E7480CD6EDB29C7352B3 /* RelaxedConcurrentPriorityQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BA8E865F738F2DB47A69B8A54380455 /* FIRCLSRecordIdentity.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C54CBEF7275D9470822FE0D250A5B09 /* FIRCLSRecordIdentity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BC4A1F8F61B108E4380A8140B76D883 /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 7789E06A53820A1024B786F2143645B1 /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BD3EE2F00A2951F05CA073583024D46 /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8479AF02B317D9F048384BDC21418898 /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BE02F4C6CC0EBF8E3FB6E900CF6040E /* Future-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 86C8AFAF52D4784EC7065D0D01FB286C /* Future-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BE6A1FCFA61602F65CE8B0B42522D77 /* BSG_KSMach.c in Sources */ = {isa = PBXBuildFile; fileRef = 90189586E807F5E730636B5D27A4592B /* BSG_KSMach.c */; }; - 5BF82DC3638FD03C13ABF0EE0429BA4F /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AE85482E2ED181686FFA5A6A79E4AB5 /* EXConstants-dummy.m */; }; - 5BFABBC5EB4A72002B2A3613D5B4E9B8 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7ECF371981DB912567D273476DE67202 /* RCTExceptionsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 5C1BF6C712A517436D42DA25639A21A4 /* RNVectorIconsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4424569666BFAAF9BAFA2791F9CB4300 /* RNVectorIconsManager.m */; }; - 5C4E76845D343CA10A65FB4CD3F161BE /* RNCAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = DE605FB23EF5FEE7EA5E9E0A543B199C /* RNCAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C57DC14CFE6505D66E57395AB50845C /* FIRCLSNetworkResponseHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 17927E411F9A2BFFE622A58AC94ABD1E /* FIRCLSNetworkResponseHandler.m */; }; - 5C5E5C6275925EB8B9095AD70380F36C /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6497352FEB02FB97EDC668D210D9D639 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C7603589215D31515396E9E60579CC0 /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 8759EFD10AA0DA5C62FA058D4B47E9E9 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5CA581817E8C0B33FF4E56320738F1F2 /* NSData+EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 56F935D771C7BAE38583B64FE84C10A5 /* NSData+EXFileSystem.m */; }; - 5CB7A86F52CB9D1BF4791F0DC7EC99CD /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B2EACCC7B9C09E722346AD67F4A8713 /* RCTSubtractionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 5CD3724C69BC011F60FA77CC0DB697A7 /* RCTActionSheetManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 44CA2DC53D39D61434A8271E72027722 /* RCTActionSheetManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 5D1EABB076B0608332F1A2E988E33B9B /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FA38DF5A10384F7C38F6713D7579E2F7 /* UMReactFontManager.m */; }; - 5D21A8AF997B08A38CE2F2384690D50A /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 638E4D6A72441CCAD608D5F691C34053 /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5D3C736E09C0A34298106DFE759839D5 /* RCTImageStoreManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 19BCF8673E3B945C77338B676EFD504C /* RCTImageStoreManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 5D4F02B0139593FC3BEC900C18D55A8A /* Unistd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0381BAB37FB5527EC89A3772A617850D /* Unistd.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 5D6E940424926CE6B7BE737A8C07288A /* IndexedMemPool.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DBCF2CFA6B9196E782F05003BFEB3E3 /* IndexedMemPool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D8081BFF796C46CCFF023866FD3F477 /* stop_watch.h in Headers */ = {isa = PBXBuildFile; fileRef = 2290DE35F2FE49F15FDED12428AEDACB /* stop_watch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D8E3A78DEA434C6BDA5D6E8A30E6847 /* EXAppleAuthenticationButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D65B29A18EC8789606B6EBE207F70C0 /* EXAppleAuthenticationButton.m */; }; - 5D95DBC09458453BB5EAFABBE7D8B13A /* Random.h in Headers */ = {isa = PBXBuildFile; fileRef = A954D4E2C3B902244793F2C11C9ED0B0 /* Random.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5DA3BB119040617ED48F6F9C591798E6 /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E2232A7ED9E7A87AAC256EF00377BE25 /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5DA9B5A85587D6E331F795D0F9B0C196 /* ResumeIdentificationToken.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 11E5B920D013929A3A29D9659EF6473D /* ResumeIdentificationToken.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 5DC40621CF6C61AC298B1604D4EFBDC5 /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = CD8D77D9D33820ECDB7C6A012B062E79 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5DC42038A463CA5D6C7F7750F3953995 /* BugsnagSessionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FCA87F84C5711AAB753CFA47A5DE767 /* BugsnagSessionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5DD97ED80463ADDFDE8364D1F67538D3 /* vp8l_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 7AC7CEAE075D5FE37F18F69929AF0DB6 /* vp8l_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5DE207413B11749AF26CBDC179FF5320 /* Padded.h in Headers */ = {isa = PBXBuildFile; fileRef = 67A7E38CB6EA455F1DB1AC26C42A0EFA /* Padded.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5DF00525CB2B0D0EA5D27B70D8DE6C73 /* AtFork.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DB376A59FEDEFFDE68EA4CA8C8D80F4 /* AtFork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E0202F6CFAF45A69EE6BD5DF0790378 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 02E08451045D001829AD93FC5DDDC2FE /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E170A4E0E96E85293C5E77B7EC84C8B /* lossless_enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 7C8E82EC8AAEA9B4CE0D2B7BCD31E075 /* lossless_enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 5ABAAC805A0E6516E938929B89E18DFE /* SingletonThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = D980C0A62EE8742795B8DE601B15EB93 /* SingletonThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5ACB9343E2D8BF78910FB661AB784444 /* RCTAppState.mm in Sources */ = {isa = PBXBuildFile; fileRef = 696B1D52D0D68745C933A07535EEDDCF /* RCTAppState.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 5B17C07022BB8181DA586246F4E32483 /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 885E67E45CB9292D54C7AE825D2CC130 /* RNSScreenContainer.m */; }; + 5B1D944060E287AF5B5FF3611112FA51 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B218D186F54EF65DEED555A468AC649 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B292C17A00ED1B61A3B6F8E1E7E3775 /* Foreach-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 28B56D2A63D67651137709B2BDCEE69D /* Foreach-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B354EA4FB84CF6F18B858676BC0ED74 /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B354C853DA1F53692CF84A3B1ABC877 /* React-RCTImage-dummy.m */; }; + 5B7A7BFD69A9EFA8D49D60F17DCC69E4 /* RCTSettingsPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = AA33C72486C653056728F07308087B0D /* RCTSettingsPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B9B4E230AE1E89B389C639026B26FC0 /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 60816C0E7B00326FCAD09074D41D8E75 /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BAD5884C31E4DEC20B64EF102A862D0 /* FrameHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 510790E68DCEBCD3A692226FBC4D7816 /* FrameHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BB861E2813B0F0460BA5A26EC894C9B /* GDTCORFlatFileStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = A1F1A4CF23D301F5E48F1A6FF632D891 /* GDTCORFlatFileStorage.m */; }; + 5BC4A1F8F61B108E4380A8140B76D883 /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 85782E5A0FDBD520761C5860C266BA68 /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BF1CA6A168AEAC6F9C7040377145467 /* vp8i_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = F84258E26BD1F2E4F4E845499D19D291 /* vp8i_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BF800372EBBB02FED49E86FA9823B84 /* BSG_KSCrash.h in Headers */ = {isa = PBXBuildFile; fileRef = 432D193BB206D15FA4F612B0D3090FBC /* BSG_KSCrash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BF82DC3638FD03C13ABF0EE0429BA4F /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C5BAF70E5AB8A74B2B59C84C0A57DF1A /* EXConstants-dummy.m */; }; + 5BFABBC5EB4A72002B2A3613D5B4E9B8 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 773AEAE125E1B97FCE5EFAB6EFE16A8A /* RCTExceptionsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 5C0E80E34CD7B0260A5748BDAE50A077 /* SysFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB390DCFA35B0EAECFFD2DE810925E64 /* SysFile.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 5C1BF6C712A517436D42DA25639A21A4 /* RNVectorIconsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F0154D8ACB77B410E5B940FAA48A9FE /* RNVectorIconsManager.m */; }; + 5C2E8B571A9425AC10B3CA0A964DDDF1 /* FBLPromise+Then.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F3B0002B8624CBE05928C53384482F2 /* FBLPromise+Then.m */; }; + 5C4E76845D343CA10A65FB4CD3F161BE /* RNCAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = F081E4DF5CFA79D41D16C87B19AD63DB /* RNCAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C58024B37BFE04C0F8CA568438113E8 /* HardwareConcurrency.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 96E65B84F0413A12D554FE770DB991AD /* HardwareConcurrency.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 5C62820C2BA76DFE7B38ED75B95B5DBD /* GULKeychainStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = C8029B6FA3BDC64E572449C131DB4F9A /* GULKeychainStorage.m */; }; + 5C6F04DA7B52116C8E87D3BA0039B1BB /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 355D6578FE6CE7A9FFF81C56C9A18088 /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C79E726C0A10A77C209336D12E21881 /* Checksum.h in Headers */ = {isa = PBXBuildFile; fileRef = 18991E23AA99F50B64E25A247D7A6330 /* Checksum.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5CA3E4EA9D89288AB6804CF6C3B5769F /* bufferevent_sock.c in Sources */ = {isa = PBXBuildFile; fileRef = 92CF4CA7AA549F6D173DB1F3510DAF47 /* bufferevent_sock.c */; }; + 5CA581817E8C0B33FF4E56320738F1F2 /* NSData+EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 29DCEFBF38171CEEA0288A959C33AA72 /* NSData+EXFileSystem.m */; }; + 5CD3724C69BC011F60FA77CC0DB697A7 /* RCTActionSheetManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6ED4D25011BAD0ECDF0976D92211BF3F /* RCTActionSheetManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 5CF0A75C038C22CE06F634627E61E30C /* FIRErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 867B29A1250B07A84E8BC281E2916F23 /* FIRErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D1371E42154175C05431D1C51818977 /* ColdResumeHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = A30625DAC877C1D1E7E335916E73632A /* ColdResumeHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D18FE936D740AB24774604FA78258C5 /* RCTRedBoxSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DFFAD9F41C6A92527EED93D7F1EB23C /* RCTRedBoxSetEnabled.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5D1EABB076B0608332F1A2E988E33B9B /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 35E8349DDFB19341CFB6AF34F3E9C974 /* UMReactFontManager.m */; }; + 5D84E4EDC421E22D3E69513DAA0F96FE /* FIRInstallationsItem+RegisterInstallationAPI.h in Headers */ = {isa = PBXBuildFile; fileRef = C20492402F9EA7E3B8AD53A1D41FC5D2 /* FIRInstallationsItem+RegisterInstallationAPI.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D8E3A78DEA434C6BDA5D6E8A30E6847 /* EXAppleAuthenticationButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B462E204A57616C620FCD610EFD07A8 /* EXAppleAuthenticationButton.m */; }; + 5D9ECFBF9393943065377394556F052B /* Sockets.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FDDAAF3643795C5D07BFB71694E8382D /* Sockets.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 5DA3BB119040617ED48F6F9C591798E6 /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 903A7619FDE7ED53437A19C410F5B823 /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5DA4CAD43BDF62B98AEFB3665BA2F268 /* SDImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = B1FF6B2CA1B1140675F34754AA1FAC9C /* SDImageIOCoder.m */; }; + 5DAACE5BEAF998A4F0F81F700E9983A0 /* ParallelMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 41B034CB24DAE6CFF748E08DAD09A2DA /* ParallelMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5DE06AF9D79E86D0AA2AD237B4F7E69B /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A0F186D93E942FD055EA978A99397B35 /* TurboModuleBinding.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5DE9EA3212F1D3EC397C6CAF552A3249 /* Random-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A241079C26BA7316518080B63897BAF8 /* Random-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5DF803DC1FA30F567356E277663E433B /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 077BEFF3805136F3DA0C317B2C868616 /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 5E2500118A397A383D4018C3DF7F0583 /* GCDAsyncUdpSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 46B53E77B1FA9966C50B3BF377B08F20 /* GCDAsyncUdpSocket.m */; }; - 5E2744C18EE0B78FE206AC53D98BC7F1 /* BSG_KSMachApple.h in Headers */ = {isa = PBXBuildFile; fileRef = C1EF21453BB3EE1B930F1DE3D18CEDA7 /* BSG_KSMachApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E27C8E3BE765A49448D651A5E3B6E0E /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = B410AD520404835C8EBA3DA78F004D54 /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5E2925E963CF0C75629FE0F80FCF0D32 /* SSLOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C32EFB899197ECB36CD52A99530F9D3 /* SSLOptions.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 5E73B2E57360BED96C5211D76C84DFD4 /* RSocketClient.h in Headers */ = {isa = PBXBuildFile; fileRef = ADB42F84974E7CE03E7F919814FB22A4 /* RSocketClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E890A65624ACC983E0F0ABF665A1607 /* LNInterpolable.m in Sources */ = {isa = PBXBuildFile; fileRef = C82F2291C0E1C10A94D728781D45E2F7 /* LNInterpolable.m */; }; - 5E8E44E839AEB982C7CDC861DD923474 /* OpenSSLThreading.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 358EE261026F11C402B0460DCA40BD33 /* OpenSSLThreading.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 5E8F17796B17F546DBEFF101502550DA /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DB4E8B56F16D9070533E4CE8D2AEE0C /* EXWebBrowser-dummy.m */; }; - 5EA8418DCC34E99C143AE29204A35D59 /* pb_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F73A7482432ABE08919D16E9DCE3ADC /* pb_encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5EB02539E9213DB2A643A7B68DEEF4DE /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C97FBA18067CC52B4EC4531841DDA970 /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 5EB26CD49D397727443E0B28755AFCB3 /* ProducerConsumerQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = A5C6E23D40EB9A3E072F8F115094E957 /* ProducerConsumerQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5EBE41DCD95B17DAC7A4F2289AF24911 /* SDWebImageDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 05292F4C9A6B2D46210E32F7F6BBAE86 /* SDWebImageDefine.m */; }; - 5ECA74640E1856DA5F303FA27F560EF1 /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = EF68EF03EB2FA1B4700C17BB2CF59E25 /* RCTAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 5ECFAEB0D811F5F3FEB2E0FE2C10CF05 /* EXAppleAuthenticationButtonViewManagers.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1B8AA7028C25E6A62FCC730DFE37A2 /* EXAppleAuthenticationButtonViewManagers.m */; }; - 5EF667AA886F02487BF30C4EE80EC764 /* FIRCLSUnwind_x86.h in Headers */ = {isa = PBXBuildFile; fileRef = 199D2E3FA4093CD5CBD0F97D0EE70B56 /* FIRCLSUnwind_x86.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F0D913D1B98E1FC9CD011A651053307 /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 183570369A4328F7B92F7F393713225F /* UMSingletonModule.m */; }; - 5F0EE6534E0058612FD953E0CB1D0E85 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 9ED48661942DB09890F24EBDC0B7755F /* RCTSlider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5F26D9FED3E7EDE39A69830E54ED4291 /* RNCAsyncStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 93F2F98EDE5CA6504A7B88517DEF1728 /* RNCAsyncStorage.m */; }; - 5F2809E782D143CC9119E4E2CFFA57B2 /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = EC4AE357CC4E7284F37A440FA1D22CF9 /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F352AC09521B86E73CB59AE05822FED /* REAOperatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 738197BA72E5EF123592C722CA7206FD /* REAOperatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E2AB8CFCA0F7A6B20B5DC681CA42CEC /* Padded.h in Headers */ = {isa = PBXBuildFile; fileRef = 67A7E38CB6EA455F1DB1AC26C42A0EFA /* Padded.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E414935DECD018A79FCD98D5ECFB1B1 /* TOCropOverlayView.h in Headers */ = {isa = PBXBuildFile; fileRef = 257487F947497776522450F01A975F69 /* TOCropOverlayView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E47BD915BAFE5C0C0FD9434EA5DFBA4 /* F14IntrinsicsAvailability.h in Headers */ = {isa = PBXBuildFile; fileRef = 140AAC91E8ED0B016C8DC8C5131FF746 /* F14IntrinsicsAvailability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E55FEF6B1ACB8BDC0276C53FFB57E4E /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = FA71C084C162276FBC53CF96C82956E1 /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E5740A839F22A3B1F1E82EEE037ABB1 /* MiniPBCoder_OSX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AF92831C225D2F0E3C8CE8446FF6B84F /* MiniPBCoder_OSX.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + 5E57502CF408A766C5F086B8D85CCC6C /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = E612D2832D116E527EFCC79329C6BEC5 /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E599F3B4FC0CBFEC781EB62E40097D3 /* BSGInternalErrorReporter.h in Headers */ = {isa = PBXBuildFile; fileRef = DA81A58DABB5895D1ECF1FDA42B13D66 /* BSGInternalErrorReporter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E890A65624ACC983E0F0ABF665A1607 /* LNInterpolable.m in Sources */ = {isa = PBXBuildFile; fileRef = 32CFF859FF41FB0A551A8E139D688D17 /* LNInterpolable.m */; }; + 5E8C2383E95A9ABDEA362756F0EF1949 /* SerialExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 779317CA3A38F38A2E8452DA500B10EB /* SerialExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5E8F17796B17F546DBEFF101502550DA /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E8378298D5B969F8DE52819062D87F2 /* EXWebBrowser-dummy.m */; }; + 5E9341355BDD556BA684BB9608900B92 /* TimeoutQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 36FB2386D2E70E78CC8780D01AEE8E72 /* TimeoutQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E950C4119D60003FE6444EC34C04393 /* BSGConnectivity.m in Sources */ = {isa = PBXBuildFile; fileRef = D05C1CEC62104465904E3A67032B0338 /* BSGConnectivity.m */; }; + 5ECFAEB0D811F5F3FEB2E0FE2C10CF05 /* EXAppleAuthenticationButtonViewManagers.m in Sources */ = {isa = PBXBuildFile; fileRef = E690CF7FDCEF70E0454A91E9EB1E11EA /* EXAppleAuthenticationButtonViewManagers.m */; }; + 5ED409C600B403347DB47FF315192F6E /* IPAddressException.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B9475DFB50607546ADDE85EFFA6AB56 /* IPAddressException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5ED9D2F2CBE4B16E1EB40C7DEE1FBEA6 /* RSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 3791BF953E422EA15E7E7944B8F4CA24 /* RSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F05F5021A2CEDD9E8394C7F1EC08142 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 32D34E1C373307BDCED0A4343DFDA2C3 /* UMModuleRegistry.m */; }; + 5F18435162F79A70F22EADF7AECE81AD /* RCTSettingsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0CC423979935EE595B6D7953492ABE5E /* RCTSettingsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 5F1AEC8A4A2038A3A647588151ECB571 /* OpenSSLHash.h in Headers */ = {isa = PBXBuildFile; fileRef = D55EECDF82319E1B43BAC813BD004C14 /* OpenSSLHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F1AFE6A2C8A803A0110BAC9966A2E33 /* StreamStateMachineBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C11E1C5E45CC15821A35863F16FA1B0 /* StreamStateMachineBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 5F1FF7EDDFF9B4DA7A30D8F812B4F5BA /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = B1F760470CBA775E2C937B689C311319 /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F1FFA71A8B407128A8335A014360FEF /* CacheLocality.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AEA98D17B75654E59BC31D37C4AE24 /* CacheLocality.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F26D9FED3E7EDE39A69830E54ED4291 /* RNCAsyncStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = C0180E0DAAFCDC1180358204BBF1D0EE /* RNCAsyncStorage.m */; }; + 5F352AC09521B86E73CB59AE05822FED /* REAOperatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D5D99E68D42DB1FFA29F7AD244CD2F3C /* REAOperatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5F4DABCF59088EC74586C43C8B4CB03F /* FlipperConnectionManagerImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3BFA84E1B478F0D4404E7812D2B6B035 /* FlipperConnectionManagerImpl.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - 5F65604C1A60625FE0CD33AABD57A3E8 /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = AF0A3520A89842B19B581DAFD17D99B5 /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F7A86C8E300D1C29D7F9EF0EDD4E41E /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 729325CDE10088C9A1033DA3862EF71A /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F8FA87F6FC610621843CFB4E2C3D9CC /* MallctlHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B72CF035DDDD520F1E8BB2BAC516F3B /* MallctlHelper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 5F93D661D7877B8756C697EDB56E1352 /* openssl_md5_one.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3A0ABE66A02A244D2459E1093B2CB640 /* openssl_md5_one.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - 5F97A8053DE2FC0B0BFD6A5B96BA40EB /* Pods-defaults-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F21CCAF47107D491C484F4743F565B80 /* Pods-defaults-RocketChatRN-dummy.m */; }; - 5FA45E9C35CC859F1B70ACFBB7478B4B /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F2E5E567F2A3E3F8FACC128F1C8B145 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5FB7504310313A48C87E2F4AD81B0F25 /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 21D77BBDDC9574A05806235BE50D4DE8 /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5FBBD0BF1FE92C8C7FB6E26F99BE94E5 /* BSG_KSCrashState.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DB4BF71ED971EDCB9BE4DACF1F70251 /* BSG_KSCrashState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5FC36E4EB7E12844E3CBAF983F85E711 /* FIRCLSURLBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D035BF61D6DF1BDDA08411148CE3E73 /* FIRCLSURLBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5FD0B2E1E816406BEB7CEBAF41821D5C /* FIRCLSDemangleOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = E9F3A729CD9D33AD75FD8C1B0BBC0ECD /* FIRCLSDemangleOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5FD51114837633F07B4AC58B3BD5A15E /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BFD3A3A3C98ECBC0BD2A15A481F8D59 /* RCTBorderDrawing.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5FDBC03ED25F30F3217DE2A6980087D6 /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = E635A2CE00D16501AC3FA4A98D680951 /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5FE471218D8F0BB8CC9A398122D9FD45 /* BSG_KSMach_x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = 872EC1213FBF861ADC6E190A6D144C06 /* BSG_KSMach_x86_64.c */; }; - 5FE83CAF9C7136803EC49BB6A6AE4E15 /* Future-pre.h in Headers */ = {isa = PBXBuildFile; fileRef = E49BA4E0B5A65C4D0C289A3CE128B70B /* Future-pre.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6005A195E781EC73A3ADD74FA37609E1 /* ThreadCachedLists.h in Headers */ = {isa = PBXBuildFile; fileRef = 598D07341ECC791245D8956E8B93C174 /* ThreadCachedLists.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 600AC8B4C95FAB38D708CB5489550A43 /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 45A27F45E451616474EE3BA06E6192CA /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6023AFF9E7F47B885E0A1225C21AF8D8 /* Replaceable.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BA6F36479FF33E103FFB4087E81E9E2 /* Replaceable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6025FC6FF8D72FD1D3F911C1ED0E05C6 /* ScopeGuard.h in Headers */ = {isa = PBXBuildFile; fileRef = E96622D92C07CF69EA6BEF2AA363F0A1 /* ScopeGuard.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 602D546EF638B7A1B93C0388B5A87ECC /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 36565EF649A1D1CC9CC7CB756E6298A9 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 604C9C619BF83013C30C129062A69090 /* HazptrThrLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BDF2E19961193DD18051E70754886F2 /* HazptrThrLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 604CA3CD661E3C1BB085240B514EA9CD /* UIColor+SDHexString.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C64D5E749D0C9E115805E9FF856C854 /* UIColor+SDHexString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 605AFF0E786AE801CFA85CB31555B92E /* enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = F150D58501413FC437A7A472E236321E /* enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 6062A1ED2F131A5F90684467525902A3 /* ScheduledSingleObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = D90A516468223E4268E626853F28BA1E /* ScheduledSingleObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 607ED1D713DDA0D6C14F6425A1F2AE58 /* thread_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = F5C23D5F46756EE864E58C1346D30056 /* thread_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 60859D8B6B64D06A9C06B83779949BDC /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EB24A0BECEC37C36E9BC8A90082BA70 /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6086A499FBBCB65F9314C36A940DBEB3 /* FIRCLSMachException.h in Headers */ = {isa = PBXBuildFile; fileRef = 4650214C8D06B983E210DAE986824CDF /* FIRCLSMachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 608FBDBD3094B7E3F913B85929E9E91A /* BugsnagUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 95851AA130AB2C88B78B61EDEC8AC6D3 /* BugsnagUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 609409FD8D5D15C20833F4216953CAF2 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B40F1F64B26A5BC6C96BF54AB2B955BA /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60A0A6161E19273739D1E87ABC31F4A5 /* AsyncPipe.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 300B9EB55C9B47A2297C2359CE720EA5 /* AsyncPipe.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 60AA9A7BD5DB716E1B35A392CE8075E1 /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = C71D16A15E61A8A791682BBDE639A660 /* RCTProfileTrampoline-i386.S */; }; - 60D78FD845B65B24380B100848DFC336 /* CPUThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DBEFB7984A9AC1B43EEEAD4ACC05B2E0 /* CPUThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 60FB153F0CC33E63B19E47EA743C1E88 /* utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 7963E4D9437C77A4AD380A283F73B8CD /* utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 60FCB5A3031764CCA1EC78B4476A6285 /* React-Core-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FE679CF0F5DF3FD54DBD39B3FD918DD /* React-Core-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6101654EAFA8025D849AB513596DA9B7 /* DynamicBoundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D45DA6845E2F96A779737D9DF9A488F /* DynamicBoundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 610A258BF60E21394E248B1503AD0237 /* ieee.h in Headers */ = {isa = PBXBuildFile; fileRef = FD1A4FB0F4464BD1370B5260F737A4F1 /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 610D2CA5D6EFE4F4235B44E964C99DBE /* MemoryMapping.h in Headers */ = {isa = PBXBuildFile; fileRef = F7A9DDBA9BFFE646492645017B4ED408 /* MemoryMapping.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6112AC7F84C03D0FB98268B335F0BEC0 /* RNFBMeta.h in Headers */ = {isa = PBXBuildFile; fileRef = 618CEA2056B333277B5FDB6C9A335161 /* RNFBMeta.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 612F06B493D1CDC8D655A8E758FF579D /* StaticTracepoint-ELFx86.h in Headers */ = {isa = PBXBuildFile; fileRef = A96FC450C08890803E2BAB0375AA0B02 /* StaticTracepoint-ELFx86.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61344DB27EE25590614599D1FBDB86C8 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 779A992D4CEE8008A2CEE3910FEF2805 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6150BD7DF20112F69B417CC96A2B7DA2 /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 40123FB2C7C27669E5D228D929778590 /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 615D3FA3DEAFEED5C369D524A44025D6 /* RNFBRCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = E16016F95B6491DB66C0EAF47372B708 /* RNFBRCTEventEmitter.m */; }; - 615F5FEE262E247183A8F169454C60A6 /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5602C42462E64D62814F0E3ED63F3D1F /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F4EA37F2A1D13FFF931A2F1578C238A /* BSGEventUploadObjectOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = B0D5A182C42291DAF7F26A11BD8C8483 /* BSGEventUploadObjectOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F5254B5432CF6141A81648035CD1D10 /* Thread.h in Headers */ = {isa = PBXBuildFile; fileRef = 17FB77BE527E85166F4699810C508556 /* Thread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F873FCC3EB5E0BB8737881DDB0DFCAE /* ErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = A180CF8E7D7BE31D09455978DA60DC12 /* ErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F97A8053DE2FC0B0BFD6A5B96BA40EB /* Pods-defaults-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F34314642ABA673A54A96879E876F970 /* Pods-defaults-RocketChatRN-dummy.m */; }; + 5F99BF5C6B9D8326C29B9B132D4E3F65 /* BSGEventUploadOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 039B1088A923BF790ADA0AC7732F66D2 /* BSGEventUploadOperation.m */; }; + 5F9D5E361C41CF262D91F88F47740F1F /* Registration.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F83A4C8812F4CB19573C1DD3BB28018E /* Registration.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5FA5414EBE168CEE9BCB28654ACD0F15 /* ProtocolVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 2137BD408F80C49698ED16257310376A /* ProtocolVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5FD56362A5ABA26F2BDD438F96F264C2 /* BugsnagDevice.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B2BF373E5089F4C67C4A01143AC410A /* BugsnagDevice.m */; }; + 5FD7A5D93B82A94BF6C30EAD75A929CD /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 00A792DB181EE87A94B1014D67850B27 /* en.lproj */; }; + 5FECC9DC73C82BEE2C93F78E5727FAFD /* AutoAttachUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = DA6569714811CB81F5058D796EF7AD4A /* AutoAttachUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5FEE5BDBDE95EC8E66EA8D23D50D2EF8 /* hu.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 80211F1678ED1CAB959ACFB0AE2E477D /* hu.lproj */; }; + 6016B9B2BAC17596F20366A9BDCCBF14 /* backward_references_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 8D6FA0A067E58BD035A8CB254BF874DD /* backward_references_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 6018F1F609977889E1F1EE2B345FACA3 /* SDWebImageDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AD3167E0123CD275B0C9FCABD515EA8 /* SDWebImageDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6025DB2810AD9610FE29F2358937B917 /* BugsnagSessionTrackingApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 85850D0F4EDDE83B68C1D3E63B63EB40 /* BugsnagSessionTrackingApiClient.m */; }; + 6031E0502A6786780985A6CB3EDCC7A8 /* Uri-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = D5840566E7BBCE62361B020239DE8975 /* Uri-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6070CCA6F9A616F45577C94FBD984F9B /* ThreadLock.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC806598F97772C30B60BE5001B27B85 /* ThreadLock.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; }; + 6078026A3F3104A6A5182525FA596CE0 /* TimedDrivableExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BCA937F2B436CFAF9FF094281DB97064 /* TimedDrivableExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 60877E6E89FA799A74973B8A083F844D /* FIRCLSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 9372AC00A3DB1B500E10C1F4B72DB57E /* FIRCLSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 608C3844EA3A3504918A7E6FDBDEFD6F /* sorted_vector_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 363933C9D4336A82E96B622D5B760E34 /* sorted_vector_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 609618B919606D5A3B849C9F352F31E0 /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = 12105428025D405B7878360FB13F8519 /* json.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60BED3285C35999D6343CEC41FE96B01 /* AtomicUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = F3D4269EDDDB1D35DEE5FFE4C47815A6 /* AtomicUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60C3DB96455C78B971AC1E12780020BD /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = B8861BD54155CF886F44EE104B6E00F2 /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60C79DBEB10D3C91C7B58759D7D0BBA1 /* GTest.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E191E90BBC4E5C7147A7B5E598B5512 /* GTest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60D05C1846C1099AF1F69F19F60CD9A8 /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D994088F51E423A98794D609E35CAF6 /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60D7D3204D561C0319BDA6EA0417CD18 /* BSG_KSSysCtl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F78273B44B4DA42DBE6141598922D84 /* BSG_KSSysCtl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60F1116344968E0A933978501B3FE871 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3553D4C544A3BEDF55E4F169FB3755E3 /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 610100047A3B2943C1E775BD951913A4 /* frame_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 825B2285A1530B004DDAD6CEE1315843 /* frame_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 6103BA579E4EBDA8905021EE51B42818 /* FIRCLSInternalReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E92081CF67467605D8B96788527E441 /* FIRCLSInternalReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 610E940BDD71169498ECD3AA2234C11A /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 70A8F6F5498FFF2183DE83495A2A6750 /* RCTValueAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 611F973C7F5AE3FD0849C3A797420DC8 /* Optional.h in Headers */ = {isa = PBXBuildFile; fileRef = B1F5D075BFE910A7152B6F26241607C1 /* Optional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6138767A374766B39CCF6C2C0230EE70 /* BSGAppHangDetector.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D61EC35D28B4EF1C2E3F7DB04DB7EB7 /* BSGAppHangDetector.m */; }; + 6158E244F532062055A91802715E341C /* enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = F150D58501413FC437A7A472E236321E /* enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 616D9595A59F74EEA8E43E861D352030 /* select.c in Sources */ = {isa = PBXBuildFile; fileRef = E7D0233C155796C1E13046A0A2621FFB /* select.c */; }; 6174F6F3E3A163F2D1B0946070992168 /* FlipperClient.mm in Sources */ = {isa = PBXBuildFile; fileRef = EA3D4260045DA638F2FF39E754353EC0 /* FlipperClient.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 6178A88567263C717F50BFCDF92F5249 /* QuotientMultiSet.h in Headers */ = {isa = PBXBuildFile; fileRef = F2BB8F624E91CC8BB4F8EAA5F175A5EA /* QuotientMultiSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6188132A20A83EDE406854D25F0309E9 /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 64E106A7EF61FBD69B3F90133BD754FE /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 618A90B3C7E52FC0DD62F1283AC35A9E /* filters_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = CF6F2DB2D18A812C3A854361966399FB /* filters_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 618E7AEF02E573C84CE04A368EAFC7F7 /* FlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 81D5CF11457126BB7F19358332C49508 /* FlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61903100839950E79E4F154D48535629 /* REAEventNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2472208C7EBAD82FE276343C838083B6 /* REAEventNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61A69DF194085BA1942DB0B253235EDE /* AtomicHashArray-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = B024CE0A8658C173B1A92EAEF273CA05 /* AtomicHashArray-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61B28B50E03C7BE3253491D8F006D271 /* RCTClipboard.mm in Sources */ = {isa = PBXBuildFile; fileRef = D1B601D8A0CABC2B2BB07898742E7709 /* RCTClipboard.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 61BC82B0075465869DAF3795F02D4F50 /* MemoryResource.h in Headers */ = {isa = PBXBuildFile; fileRef = 14B414E138B4DADDE37A307B4CF155EB /* MemoryResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61BE994D2F7078DB2843E024D5D01616 /* HazptrThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E2C60A3260F71E892868D6AD6AEAF785 /* HazptrThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 61C70BFC0670410898AFA40A5141F7E4 /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3665F670F09B6CD165F2B9022FD63313 /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 61C88353B0E17C6BCF39D17B6E5F63D0 /* UIImage+Metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 3063FC67A941CB517B8CBB84E4A02102 /* UIImage+Metadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61C9F59688DC54763ED76B1365DA4A30 /* CppAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 932D6A4AAAE1FBAB7EE894FC1698E905 /* CppAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61CC9743AF994598E9544B6CC592CE0B /* EDFThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1CD803A9BEF9283EC2BA36AE359720AB /* EDFThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 61D711722811BCDE4D3B2248CBC248A3 /* RNVectorIconsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C01B27188AFF10B82D920091FF802AB1 /* RNVectorIconsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61FC86BAB3F7E066FF14F7518F8CA93D /* RNFetchBlobRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = F4F0003594455DBED04D5A76AF26202A /* RNFetchBlobRequest.m */; }; - 61FCAED7CE5503DC0B68F4795F75F255 /* SDWebImageCacheSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = CD6D9EE4F9E1E2024338F163648B0426 /* SDWebImageCacheSerializer.m */; }; - 6208B747EB7E443BDA69445E6B075A19 /* RNFetchBlobFS.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A484C1D078AFA7FB230A1CA36002D48 /* RNFetchBlobFS.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 62199683551FAC69F2BA93187BDF75ED /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = BA128D60C396E9F6F2E87021A86DF3E9 /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 622E2F4AACA55DF8F6A5E48C3D5BDF6F /* BSG_KSCrashSentry_Signal.h in Headers */ = {isa = PBXBuildFile; fileRef = A827520F2A7F6932E809F8409B1DF5F4 /* BSG_KSCrashSentry_Signal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6231534842F0997AAD698682F8349974 /* idec_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 684772E1C17950688E2D02F4D586194B /* idec_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 6251E32809F84C0C181F83C267237A29 /* RCTRsaUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 4925723943684CC0EFCE116A456047FF /* RCTRsaUtils.m */; }; - 62588428F52608FAF1E28FADCA55723B /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = B4A669AEE4E790FB79D3AFC1B3EF5C78 /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 625C79F2F1EAB08046841844DF3BE32E /* REANodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AD1EBFFDFF2879BE4D70BA38E77046B3 /* REANodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6276C84B60D8AF11BEA8FDB698B68FF7 /* ConcurrentSkipList-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E9567E0914302535C295590D9E802F2 /* ConcurrentSkipList-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 629298EA4B1A55C05BFBFC50346C51E3 /* WaitOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = DF0B15772E0E0B0756F827B79AD46102 /* WaitOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 62DA4FA03C43621F8EB4FABC40DE6EF2 /* Future.h in Headers */ = {isa = PBXBuildFile; fileRef = 08AB72659E4E8BC3FCDF3F0DEB0E6611 /* Future.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 62E7088038382BEF6327FD627025C0C4 /* BSG_KSCrashDoctor.m in Sources */ = {isa = PBXBuildFile; fileRef = 75EE89527E4349B46208645D63B85BFA /* BSG_KSCrashDoctor.m */; }; - 62F03728A0E2D45A66516BC9BCF00E89 /* Syslog.h in Headers */ = {isa = PBXBuildFile; fileRef = 21DE4820CB09FD8DF00F8B3310FA446F /* Syslog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63227716728C55ABF741C081AC7E721A /* AsymmetricMemoryBarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6697BFBED15299BCC3A039345ADA674 /* AsymmetricMemoryBarrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 632A2A5EF0534C4236FE33400B9A90A5 /* YogaKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D4565DF68C06D16A9AA04709FCD92143 /* YogaKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 633EE6A21ED6870836333924336D93B1 /* TimeoutManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 62AE8B9F5D600E833DBC71FCA6DD3A00 /* TimeoutManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6354997071764B2F403ACAA9415607F9 /* GDTCORUploadPackage.h in Headers */ = {isa = PBXBuildFile; fileRef = E92ABFDAB203180947FBEDCB9BC3B942 /* GDTCORUploadPackage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63658421DBCEA2944E16A7B1519EDDE1 /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 35E173582E3662734807B5B30E6F3E6D /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 637B1FAC037ED48FCB432B84160EDA7A /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 26B47003518E96C5A8A671261EA8C5EF /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63C534967795B4961726EBCB0216B36D /* AsyncSignalHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C7C93169AF188C480F80B2DB487D1E57 /* AsyncSignalHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 63C8E9CC98A5B3497D9ABE99CBEB6BF8 /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F57180E422673C4692FCB461E020874 /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63D0DFA1AAC44EB1C9413878BEFD8548 /* TimekeeperScheduledExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08F7AB15CCBD249EB8343CB69FCE435F /* TimekeeperScheduledExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 63D6321A3AD120C4F9CF2C910421E73B /* RCTFileReaderModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0E363084F953A4BE1D64256DEA189F22 /* RCTFileReaderModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 641B3DFB743F8DD04975F170E6331FE0 /* DistributedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 2739ED4AC4CA3076A994D92159F6CF55 /* DistributedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61903100839950E79E4F154D48535629 /* REAEventNode.h in Headers */ = {isa = PBXBuildFile; fileRef = DD57B527F7CD29DAD0193178373998AA /* REAEventNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61985204CBD35AE73925533FA35342AE /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A49593F09314002179F647E3B3F9781 /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 619E0AA7123347A2EA0C5DBE38C599E7 /* Indestructible.h in Headers */ = {isa = PBXBuildFile; fileRef = 9353040D7264C12287CD0206AAA0DA10 /* Indestructible.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61A3E12DFD961FCC6A9DA80F6E4FE731 /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = A0E7DE312BB0A7E371784C7A0DDCFEEA /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61A4D183366D53341ED86D3A848C19C5 /* SDWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 13C689EA90FD217368087E73B44A992F /* SDWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61A5AB33E679B61B2331215BDECC6405 /* FIRCLSFile.h in Headers */ = {isa = PBXBuildFile; fileRef = AFDEB7B9A74282D9812379970531FCAB /* FIRCLSFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61B194DCD91EF21781CF28D27BA9B2FB /* YGLayout+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 48703AABCD31CFFBC91011A16BF55EEC /* YGLayout+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61B28B50E03C7BE3253491D8F006D271 /* RCTClipboard.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6D4488B3A6E4CE9B4FDFD87803624CEF /* RCTClipboard.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 61BD57CD51211EA0A9DB92D277E082FD /* FBLPromise+Then.h in Headers */ = {isa = PBXBuildFile; fileRef = 75ACAE008DA57AB16A0C12D15D86D5FE /* FBLPromise+Then.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61CBD9E97EBD2B6F2F92C3C0EB28BD38 /* RSocketServiceHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9379D71B955ED8CE023DC49B56E9AD4 /* RSocketServiceHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 61D13734DEF38BF8839408FEF25C758E /* SSLContext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8EE023928DA39891828783C169ACD22E /* SSLContext.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 61D711722811BCDE4D3B2248CBC248A3 /* RNVectorIconsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 611AE1380C322873C05FF482BC9482F7 /* RNVectorIconsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61FC86BAB3F7E066FF14F7518F8CA93D /* RNFetchBlobRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 463EAB7F09AAE5365F3A56A8C90295A1 /* RNFetchBlobRequest.m */; }; + 6208B747EB7E443BDA69445E6B075A19 /* RNFetchBlobFS.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BC33DE4C5189CC11594CC9726C5E670 /* RNFetchBlobFS.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 620BBD004B46D6532436B369989B8805 /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B1BC2E3C86586718127703C3E68A9E23 /* RCTInterpolationAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 6236886412510651B07EACD678AC47E4 /* ClockGettimeWrappers.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ABB4D4481DB4A0DC59ADFAA1D7E6372 /* ClockGettimeWrappers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6251A02DB72390A5C0ECDBAEBFD1E020 /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 047F29786AB3962508FB437472C96F1A /* React-jsi-dummy.m */; }; + 6251E32809F84C0C181F83C267237A29 /* RCTRsaUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = C70CAFDE76103EF6F4BE78422776CD56 /* RCTRsaUtils.m */; }; + 625C79F2F1EAB08046841844DF3BE32E /* REANodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A8DC685D979E2B8BDE1E93424E8F30FA /* REANodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 62947729CE8EDE21EAD5BCFCBEB05599 /* MPMCPipeline.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F78E8173F3AD7E6C2E45CB1615BC1F9 /* MPMCPipeline.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 62F2738719CBF468CDB2F05C46056AEC /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B4E35C0E3E457D89A4DF2403BB432CA /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 62F571EB3D98817641F22836C9F553FF /* GULHeartbeatDateStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E5ED61984AC5D0734B2848B826BA9D7 /* GULHeartbeatDateStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 62F98BA5412B5FB7570380992EEF3FEC /* RuntimeAdapter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 74DB06B63902EA9FEA6180E8CEF465B4 /* RuntimeAdapter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6302E3A8C9854E1DD9131E4E68736C86 /* SysMembarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 973D4FEE9B301EE619FA03B31A4F2933 /* SysMembarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 630CD241C5AA42CE774C9BFA9A696616 /* http-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 964ED3AFCF1FA95EB0D582FF7DD71626 /* http-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6324CEA058C36C2AB3898277F61AF7CA /* AtomicUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 897624EA4822C72FCC452205A90DFCEE /* AtomicUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 633839A081D24300E24454B213E95B79 /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = B45474904DD6995F174BFA84F6F23090 /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6347D3083AA8E9A98638C444C394A08E /* FIRInstallationsIDController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5ED3A731B84B5126546C42978C09FCD0 /* FIRInstallationsIDController.m */; }; + 6355F5DDE186A325C9963BBEEE4AD1F3 /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 44D4034EE561C21C1F6F12E807E4ABC5 /* RCTMultilineTextInputViewManager.m */; }; + 635AC8C91A50E2A66FB0174958259F49 /* Request.h in Headers */ = {isa = PBXBuildFile; fileRef = 707628E00EAB111824A6EB05D32A9831 /* Request.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 635D49C9DC370EF32ABABED4F2A82DC7 /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 35B92DD54E7AC89C7BAF3A9792630E8D /* zh-Hans.lproj */; }; + 63658421DBCEA2944E16A7B1519EDDE1 /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 209F29716FAF00EE6C3A8047B39A532A /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 63673DE21DB1F119EC1D939438DB6D92 /* Benchmarks.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AF153272AA59E892E9EAFBABC890E928 /* Benchmarks.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 63903477E986678EEF4D66961AF6E752 /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B7EED2877664F3483849BEAA627B0CA /* RCTActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6394657ACB0503D2648B5ADDE06E60D8 /* BSGConfigurationBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 414D87E844AD74314047F1E73E041E3B /* BSGConfigurationBuilder.m */; }; + 63C76AF781A6666668509F2888403697 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D7EFA14CEAB378BAE4FD09AA6B5FDF1 /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 63C8BF6584365FE5CCAF3F31672FCB1D /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A8135C214F18C12DA255B2595E7E617 /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 63FC4E37220FC7EE188C62CFF861FB85 /* color_cache_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A418F3C1CC849FB2AF5C76D1273ABA1 /* color_cache_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 640B0BE977DF7D94FCD0A4F172FC7218 /* ExceptionWrapper-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FD939B493E1F5FBBC1297B44B2E9A962 /* ExceptionWrapper-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6419EA620A4327B1CA9F84D9B2B25B3F /* DelayedDestruction.h in Headers */ = {isa = PBXBuildFile; fileRef = 8628666FA737EDC5296AE41BD832DECF /* DelayedDestruction.h */; settings = {ATTRIBUTES = (Project, ); }; }; 641C6DE1FA2A39820F7C64E78DFCE7E2 /* SKButtonDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 937111731B8DBCD33C8B4E822A0195D2 /* SKButtonDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 645B3AE87FD70C768D0601282E1671A1 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = ABD9E0611B56F1E52924F8694462C036 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64292AB7F050E845946ED2FFA659A8D3 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 6471F18D06F32C511636C48B2D479CCC /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6438CE3547CB26B43D1B5E98E6F3482D /* UncaughtExceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 444A46906D8E12F1A3B33616C40E9FE0 /* UncaughtExceptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 644033B56B8B2B6392CE033FE82002EA /* SysStat.h in Headers */ = {isa = PBXBuildFile; fileRef = 876DB1F6D29925E73C087F2C3AB36795 /* SysStat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64528F0D2C0894F24DE6341F006E9940 /* RCTSettingsPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 697AD1D3EC759E22877C4FDBCFCF6816 /* RCTSettingsPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 645C8C3EFE78BB2D84881B0B1BEDCA25 /* GULNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 85BCB73B53578F6422484F9D3075B556 /* GULNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6462F738AC590747E44531D71D470C07 /* rescaler_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = AE6427E508F8E6A55971C77A7E65FEB1 /* rescaler_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 647B2902910277BA44ECE069B54E33FE /* TOActivityCroppedImageProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B0DA798E2D2355D319142E0A3A2AD19 /* TOActivityCroppedImageProvider.m */; }; + 64A433BECEAE8EE4C0B1E351C2245446 /* FIRInstallationsStoredItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 9141094EE1ED49F64CDFCC8C60B96156 /* FIRInstallationsStoredItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64CDDA9192CD46BF2A1A5AF02853D51C /* FIRCLSSignal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7141B2FD3EAB6D6D1972EF3F045B9845 /* FIRCLSSignal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 64D2C67E4B3C2F6F3554DA3FD77388CA /* FlipperCppBridgingResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = AC9BB0D68164184A242BC72EFA1AC562 /* FlipperCppBridgingResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64D41D21A1BC776B0FF6CA040A2A12EF /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = AB45991526D712A35DE228423BC25B30 /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64DC11C71A29CB9CEB58B881C2571975 /* REATransitionValues.h in Headers */ = {isa = PBXBuildFile; fileRef = FD3E2706FC8050FCFFC24061A7FAFF8D /* REATransitionValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64DDB2096FCEB4BA4C16FAAE035409C8 /* RNCSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B0409D58538128F1D6632234387E1AB /* RNCSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64E1F00BE52AB8C057AC26475115C2E3 /* Retrying.h in Headers */ = {isa = PBXBuildFile; fileRef = F9AE333ECA95951FD8ED4424A16B3433 /* Retrying.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64E2C96640818018AD70E607312A8F90 /* FiberIOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = D8698ACE66F07F626C2B700C0BA8D62B /* FiberIOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6513CBA48EFFD461EFC05067DC66C081 /* ARTLinearGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 99FC832F344DC4E3F711C390B32F2F0D /* ARTLinearGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 651B1E070356E2EF27D6FFD2B836573B /* RNFBAnalyticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E6BEB6A913EA1B4BB2719C94086407B4 /* RNFBAnalyticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 651EC2650DE4F3F83C12C418734AA325 /* Iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BDE5CE1F29F2B5E710DBC832F28D9B5 /* Iterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 651FFEFB60F848B1ED41C54668AFEE4E /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DBAA4DD27E3D6EE3785EA1C9057163A /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64DC11C71A29CB9CEB58B881C2571975 /* REATransitionValues.h in Headers */ = {isa = PBXBuildFile; fileRef = F0A55BFC31DE0F8623420BCCFBAA7569 /* REATransitionValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64DDB2096FCEB4BA4C16FAAE035409C8 /* RNCSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = A4A5845B88A33EFDB6AAE2D6706453D8 /* RNCSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64F562359BABBDFA268CDA6D272F0AE9 /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0B922E44971B3921CDD009FE8B22C4CF /* Conv.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 6501794A2DCC86BF8CAD68E8F519C9C0 /* F14Defaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 29BB2342D6548FB4328A430E838AF6D1 /* F14Defaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6513CBA48EFFD461EFC05067DC66C081 /* ARTLinearGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 29B811FAE251A530D910EA08052ED41D /* ARTLinearGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 651674CBC6C7A91D1FFC3C055BE72179 /* SSLOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = C91950A7DFC8996A18ADDFAB2C6DD073 /* SSLOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 651B1E070356E2EF27D6FFD2B836573B /* RNFBAnalyticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 2071AD3F0AFE230C3414C7848E15AE62 /* RNFBAnalyticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 652535943BB13DDE845A40783352BB92 /* SKNodeDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = FB1CD31848D10613306C97D58F26A6AC /* SKNodeDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 652977F1935C38B4E00081AA1818409F /* UTF8String.h in Headers */ = {isa = PBXBuildFile; fileRef = B38BE1DD0BFD5C7BECE27605B2D9D362 /* UTF8String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 653438D95824C542FD9195FDD82BF824 /* GDTCOREvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CF3C79BD496F82B25133B4BBF8480A7 /* GDTCOREvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 653459802284CE6651EC63E4FE53574D /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 93A83A25A4D2C58B976438003D4060AC /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 654BF49ABD48B4C1051AAE01EE384235 /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 55F735F7B49FCE1144653E67FA4429F9 /* TurboCxxModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 657AD95E47DD21A96E3B81E7931F931B /* FileUtilDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 21208A38F5A34E06291195EF0E2908C6 /* FileUtilDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 657AF63B1AA20459B7AC65323C76A222 /* Connection.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C5B9B1C082DE54F9B9D5DABB08C2F8F /* Connection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 658A1017E2281C080F250A63D17C2A68 /* FIRCLSOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = F667AE46E263A7A517E722D9B783D79B /* FIRCLSOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 658C090D11BB7D2452914D2372D2BC80 /* lossless_enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = A328A991453EF3EA707048259AEBC009 /* lossless_enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 6592B42211820CECAD0A4D07764EB1A8 /* ScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D873A659FB8A00376E60A16382DB886 /* ScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 659CF223AE684C6A083B317451A2185B /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 800CE32E685228077687AEA7CCFBF170 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65B26085E631DE5FFBCD13CF99890000 /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 54E3357E369C5F5A2A821A386ABF801A /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 65C0B766E7A12F601AB67A47EA124B18 /* SerialExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1C7107A992CAB08E5405E3EB1AD0C4DD /* SerialExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 65CA7EF19CC8CCECE4F37DDE0BBAAC40 /* ThreadWheelTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EEEEE02F2EDE8821AF6967B644451D7 /* ThreadWheelTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65D7BCF2D214E6321B3C1500EDD08839 /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B70ADDF52FB2A4D4C1C68671828F811 /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65F692C11F8CDFD32819C75122D91529 /* FrameProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 16AB2D3191B6E98E712415EDA749A526 /* FrameProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66144E422A014AAEC707E8C7381803CC /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = FF42441109A7D2E1225ED8FC43D4E0AC /* RCTConvert+Transform.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 662B4877CEB8A6AAD373695E5F872CD6 /* FIRCLSDataParsing.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E862EF5EF45C3A65DC568F4D8060AAC /* FIRCLSDataParsing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 662F27E366728074F54CAFDEAA1CAC57 /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B78B318FBBAB55DEB6EA709E9B47506A /* UMReactLogHandler.m */; }; - 665AC3693C8C0E4094DEAEFA9D28B16B /* enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = CC9EC9A93BF2708C130F9C64C754CAA6 /* enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 665DEE4108939A764454440EDB8FFF85 /* RNCConnectionStateWatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A483D34E4942951688DEC7E921B8540 /* RNCConnectionStateWatcher.m */; }; - 667D022E3CC507DCE608ED2C3DE84B57 /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FBB3076E8F8AAE9C08B725DFAB0C8D3 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 668086EEB7C7D45CED5900CF17EF879A /* BSG_KSCrashIdentifier.h in Headers */ = {isa = PBXBuildFile; fileRef = E64F288F7706CDB32BFF386459BACA40 /* BSG_KSCrashIdentifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66C6279937624F871B662063764D08E3 /* BSG_KSCrashDoctor.h in Headers */ = {isa = PBXBuildFile; fileRef = D78EA4DA9FA869EDDF789405925CED85 /* BSG_KSCrashDoctor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66DDA471DD6439C61DE84DC59C108FBF /* RCTSettingsPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = A8F8A85DA0CDC78394F66E502910DCB2 /* RCTSettingsPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66EC00C3BA308273BCE7E2C4D52616D2 /* RNCConnectionStateWatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = EC5913ADB7DF01BE0265EFDD87FB0281 /* RNCConnectionStateWatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 671BB56F4F5F866548E9FD57B89E6289 /* pb_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 2943A07F6C1324D10B05C1B00DB35875 /* pb_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 672854309DE2C76F2A5D8F77B90FE51B /* SysFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB390DCFA35B0EAECFFD2DE810925E64 /* SysFile.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 6734D7C2C94787AB6BD29F96E1B4D1E5 /* FireAndForgetResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = E2E51B08C8241F5CB9E1911832BB6E5C /* FireAndForgetResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 673D421E1AAB394C7019810A9B8EF0B9 /* RCTTypedModuleConstants.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7C51B7072F6C7CE2E0CCE2E4A012C53C /* RCTTypedModuleConstants.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; - 6747A3599A7AADEF987461560A86E34D /* react-native-mmkv-storage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 479D8E3AD31B5C8B9194AF439B56E901 /* react-native-mmkv-storage-dummy.m */; }; - 674C32C125FA54A29A31FFE90CE1C08F /* evthread.c in Sources */ = {isa = PBXBuildFile; fileRef = 58273B190325B547D525894CCAF07636 /* evthread.c */; }; - 674C7B4D78655585688DD0F8A34BC790 /* FIRCLSFABAsyncOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AB921F5A3DEFCBC88A0237C87AA2066 /* FIRCLSFABAsyncOperation.m */; }; - 675B5A180FFCA101C38C3508A6412DCD /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 85D33A1402CC1B5CCE66713F4160CA37 /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 675F858D6A7BE86A17244960F3422EFA /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 4647C9AE1DB91B4C22C79A10ACFCDDC6 /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6761DCF92D6C5FC6FF430719151537EB /* GDTCORPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 08593D01040FC8FE0D5E332C14128C19 /* GDTCORPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6764DAC07D242CA0189257175BC53570 /* ConnectionSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E2014914A30DCE80206DBE67159FBDD /* ConnectionSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 676B40AB4FF3D355E60910021628EF82 /* random_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F976042875AB37E3178DA3B51131C0F /* random_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 676BE96EA626EE4D9F24B503B3F59F55 /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = E688698D52FC27F6B99524FE91C229BD /* QBAssetCell.m */; }; - 678702C3D7F6BCD35E9BA7E609724993 /* Semaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FD8BFB766C4D8652467E620E4061E38 /* Semaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67AD9AFFA41E524EA809D55E826D6716 /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F0521569B50C41F5CA8E4871C6533CA /* RCTTextView.m */; }; - 67BA16756DF8D6A82C5CCB93C7F9492B /* Types.h in Headers */ = {isa = PBXBuildFile; fileRef = 86DBDB5227F92345841DF5233237B253 /* Types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67D85F8E815DAAE6BB915EEF2BB0D1D6 /* ExceptionWrapper-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FD939B493E1F5FBBC1297B44B2E9A962 /* ExceptionWrapper-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67E0BFE732F3DD432118F7EFAE59071C /* RCTKeyCommandConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 552ACAC9BE797A8DEFA174D0C04DE191 /* RCTKeyCommandConstants.m */; }; - 67EAB573C0DF8A88BB9326311A21CA7C /* FIRInstallationsLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = E240658062D7BD715785CFECCEAF544C /* FIRInstallationsLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6846E1FFCAC06F92BA8206CDD4053FAC /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = 16C9015BD0A0B74CEA6D43AF89FCD04F /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68659BE67254DEF9CA44E38A8E7BC147 /* Event.h in Headers */ = {isa = PBXBuildFile; fileRef = 80C0413E19A2DBCC3F6918891B6DCA41 /* Event.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 686BDD1BEED6D2301F1177BE87805C4C /* AtomicUnorderedMapUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = F308F629276CE5EA8D6AC34229F4156C /* AtomicUnorderedMapUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 687D862BA1C1C662887CEED75758BC0D /* ThriftStreamShim.h in Headers */ = {isa = PBXBuildFile; fileRef = B37603DEF7D9FC146306428CF41DA217 /* ThriftStreamShim.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68868113F87D612A4ECBBA1A9A85D95A /* FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = 592DC2321A8788889B3D76D68D24B042 /* FIRApp.m */; }; - 68898F4252C355A86346472172D6B456 /* AsyncSSLSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 678C4DAE117185D4BB58E20B091B3292 /* AsyncSSLSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 688F6D173742C3798AC014EB1447772F /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = F06D98D4A530C5BD768F9D2B5E839142 /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68BBBBF3D1D2B9F8E2855D32E84B96B6 /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = B93F6DD0458524D09451B650252973D4 /* types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68BCD343380137134D88C103E2E1334D /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = 30775C17AD0C769308C8D4EBB9172108 /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68D0B455E1B807E227BC2E8D5A5DEF8F /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = C81C1CDD0B6CEA783E7B2FED5B4A6A4D /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68DE46EA67D56322C71140581D8A03EC /* FIRErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = E654F3DD214C3891F78D738C606F77F9 /* FIRErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68FE40F245392C68BB1CBEAA4B98D153 /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = D56F7FAAC8A53E1BC6F58AB6E97B23F9 /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6902C029A6661D443198CBEC7095F160 /* GULLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B02821B6E81E20C9CC6052F61C621C4 /* GULLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6904BF5CDF8D2AA26BA286FFDBDD1B60 /* id.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 4EEE229A6F5FBD1E1646B6DF98A66DD4 /* id.lproj */; }; - 690510EF924CBB9EB1F3739DC422D3D2 /* ARTPattern.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C7932C453738F6F6274F8460F0DC0F5 /* ARTPattern.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 690A6A6992A39B73203B2871070678E2 /* RNCNetInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 60182C824BDFDB45B28B9510884D115A /* RNCNetInfo.m */; }; - 6942AFA01BD8A3007C04C3AE0771B54B /* TOCroppedImageAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EBC54B71950E3E9223F51E241B05BA5 /* TOCroppedImageAttributes.m */; }; - 694BDDC94CB0765A60A8CA58EDF3A5A4 /* AsyncSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D96F714DCDDAD43778C9DE25AB46587B /* AsyncSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 694D3A3CFB666D72F12443EBD0862B75 /* CallbackOStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FF7EF32F15C69A1611BB95FC89295AF6 /* CallbackOStream.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 695794293BA10DA5178A49D59AA5D851 /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = 86CFE60E12EE97FFCD2AEE589B017D22 /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6972EE81FA37E8317A730ADE9136D406 /* RNFBCrashlyticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = F5D89F29A947DC6B045EEFD749DC12CC /* RNFBCrashlyticsModule.m */; }; - 697EB6FB97A996A8EFB712838B3379F1 /* PriorityLifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 64EC894656BBCA746633441C44840EB0 /* PriorityLifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 697FEB715CFA7494A9007B8A251C7672 /* FIRCLSConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = C567B7482E7DA9EA3E8295E3F0050D90 /* FIRCLSConstants.m */; }; + 653459802284CE6651EC63E4FE53574D /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = A157D526C4A9B116FFA877831071C982 /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6568AE628DD401BDCBE61AF646E45D2B /* FBString.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F6A790A04657521BE6AAFBD73CE25EC /* FBString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 656DE1A2781A099BCF527AE265AC9E87 /* TestSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBCFDE5CEA3ACBEA4B2452C2223DD05 /* TestSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 658D96DA70C0C5BE84045B487F632D55 /* EventBaseLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BA78A360616F5D78A8FC1A42DB78ED7 /* EventBaseLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 65A6C5944DBF78D1CB3D02CB39F3B9A4 /* Singleton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9AC8519E29D55ED91FE0970464B8F9D /* Singleton.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 65AD94D38D856A41614DFA5415ADC2B8 /* RCTVibrationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = E62A1F105A07C4476D9363A56E5BBAA8 /* RCTVibrationPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 65BB9259C00547753692FEC9237D26A8 /* PriorityLifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 64EC894656BBCA746633441C44840EB0 /* PriorityLifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 65BB939302DE362B80705E458570E2A7 /* HazptrThrLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = C4C3CFCA8CF7497E1AF0C2007F1378E0 /* HazptrThrLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 65C0148ACE376DDC06D427B338BC7650 /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = DBC5AB500EC382238A41629F473B0C66 /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 65C74D2584D6797A3E0D97AF23CAA48B /* FBLPromise+Delay.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A749AD6FFFE36A24DFDAD2619EB68F7 /* FBLPromise+Delay.m */; }; + 65DD5D1631553E1E96874C8EE0D84395 /* AtomicHashArray-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = B024CE0A8658C173B1A92EAEF273CA05 /* AtomicHashArray-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 65DDAAA470834D29BA1275BC6B046830 /* FIRCLSInternalLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = B001EE8C196C9E10035286FE7EE84032 /* FIRCLSInternalLogging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 65E113916A6D73B2D25154BA86ED7ABD /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 507D17D398B3DB183218F5B94245D41A /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 65E9FF4CA5F9EED15A6209842F87864F /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BACE883A39343A35E0D7C43689B9A13E /* RCTRawTextViewManager.m */; }; + 65EC54AD1DDB7484A796D13D3349B2FF /* MMKVLog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F8D2E7E327EF00F423CF3CB0003837EE /* MMKVLog.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; }; + 66055437E69E3F37EA297BB224C19206 /* ScheduledSubscription.h in Headers */ = {isa = PBXBuildFile; fileRef = DB5DD268804BED7D139485C26E2CEB48 /* ScheduledSubscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 662F27E366728074F54CAFDEAA1CAC57 /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = DFF170F26E49AF34B2AED8CAC632BA14 /* UMReactLogHandler.m */; }; + 663E76306372562B3B9FB297D1B691A6 /* FIRCLSProcessReportOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 220D75BBF7829017349A979BCB734ED4 /* FIRCLSProcessReportOperation.m */; }; + 665DEE4108939A764454440EDB8FFF85 /* RNCConnectionStateWatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = F96EAFECE7254CF38639FE8E3ECF86BF /* RNCConnectionStateWatcher.m */; }; + 6666AAD9AB8B935BD8BDFEB40203DD6F /* json_pointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BC13F39AC5C4806FD4BEED0207D40BA /* json_pointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66698945FC4D14442C3E342CD678DF93 /* BSG_KSJSONCodecObjC.m in Sources */ = {isa = PBXBuildFile; fileRef = E9C9B3A573476303618E7B4B8707A48D /* BSG_KSJSONCodecObjC.m */; }; + 6673DDF5345DE77DB170780DBD0DB924 /* MPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = F350699D1059C8E80FBC4C4DF05A2B0E /* MPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 667682D83524A8EF4189EF4D71A4980B /* RCTConvert+FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = C38A463A289BDC39E11BEFD5870CA52C /* RCTConvert+FIRApp.m */; }; + 667D90AB55A64D2CD23330A89227CA31 /* PBUtility.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3B8270C83DA3FCB589B40A874C110126 /* PBUtility.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; }; + 6680CD80FDFCE26A84446A5540610C29 /* CodedInputDataCrypt_OSX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 55D8C288D400FF1755F9015056E5E34A /* CodedInputDataCrypt_OSX.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + 66838508E25D2A74B65A800C2E2550BE /* AtomicSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B55A127DD622501C234A7CAB8F25911 /* AtomicSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66850B455CF11F763B39531A79717335 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1969D4A64C9DBF508235F802293B8EBD /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 668839311B0563511CDFFCC224FAA9A4 /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 78D86B2A9ECB46E74E8330B64B2E55F9 /* Yoga-dummy.m */; }; + 668A490D69CB85D2AFC31BFCACAAD08D /* vi.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 725581291AB34A22FDD48D80C8380B6A /* vi.lproj */; }; + 668A6606B9BE4082AAE3945FD8B2B2DC /* ConcurrentSkipList-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 216BEC9C3E14F94116B4559C40897AF2 /* ConcurrentSkipList-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6698BD3FA72C69E840C846E0AA571CDD /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 16C56A67498F67A0A0D04C27463CCFCB /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66A76620260AF301301987428CB47476 /* BugsnagNotifier.h in Headers */ = {isa = PBXBuildFile; fileRef = F20E738D3A69438E1C122F9A0597DA9A /* BugsnagNotifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66BCBD15AB1E7055EF4307A53937A2E1 /* FIRAEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 5344EE5042D2982D98BB85F45FACA5BB /* FIRAEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66C800A732BB3C65E5F12F4933B66993 /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8431F6CE5B1B0F548F4F3EB21BC2AE40 /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 66CE684CFE1E3A9D776867C8DB343E9C /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5C9B552556AD3AC3AC9A1FF4D59CECE1 /* RCTBlobCollector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 66EC00C3BA308273BCE7E2C4D52616D2 /* RNCConnectionStateWatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 66B424E1E337CAC9AA470426F174F470 /* RNCConnectionStateWatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66EC088D09885CACB63A0B1996A7CF99 /* EDFThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = AF1AA0233F4B030FCA8C522FDDCED681 /* EDFThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66F17155BB74D1A25B7BAD95B0912164 /* FBLPromise+Delay.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C4E364F9508DC861238EE4AB7F3EEE1 /* FBLPromise+Delay.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 673A3C624095CA07ADFDC209BD9482E8 /* SysUio.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BF2FD70B586966F632DE0F4C3452BC4 /* SysUio.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 673D16F24EC51395DA2AF82A3B2AA8A4 /* idec_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 684772E1C17950688E2D02F4D586194B /* idec_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 674273BFACDBC6F2371AFB9E1182AA93 /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = FB13979D42C83C133B136F38E22E8680 /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6747A3599A7AADEF987461560A86E34D /* react-native-mmkv-storage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FDBA1499FAC5D38003778610D1DFAC8 /* react-native-mmkv-storage-dummy.m */; }; + 676492E9DD248E0948A9709BA125FB98 /* FIRCLSCompoundOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 38F5C29B8BABB356CD6F46011DAFE915 /* FIRCLSCompoundOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 676BE96EA626EE4D9F24B503B3F59F55 /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E798A9318B82BB207DAEBB2D6604A9E /* QBAssetCell.m */; }; + 679047F1F7EB04FD1C9F3BEF43D34E17 /* GFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EBC48E874B62E68701ECFA4FB7CA363 /* GFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 67913F0B299F0D20A8574EDFBF77D63B /* IOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = A4A32A4AC472CF79969A87EDAEC04E29 /* IOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 67E0BFE732F3DD432118F7EFAE59071C /* RCTKeyCommandConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 583CAA829AE25EB98694B65A874253F7 /* RCTKeyCommandConstants.m */; }; + 6811D0C627954C82912E0B0FBCD71ED2 /* FrameTransportImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E6307960B1F6D0785F439482293F689 /* FrameTransportImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 68247A1214CCFBDCE83A58A5350FC820 /* SingletonStackTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DEC62479ED4703A3493A030B50AC9AE /* SingletonStackTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6886805185073E12B2F1C583458CF34D /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C4DE2956E605D7F293176107A826EBA /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6899B4222602B51E16B6BC444C70BDE9 /* Rcu-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 83A36CA920B64E06B7FE6550C363A78E /* Rcu-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 689A03B1331EB2ECAEF60397C3C14027 /* RCTImagePlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = E3FBC406B7914F6D0D0800690D849E54 /* RCTImagePlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 689D00BB474B03A13DDA26DF254ABF39 /* Iterators.h in Headers */ = {isa = PBXBuildFile; fileRef = F6DAA1715ADF9A5DE86C19321C5B86A2 /* Iterators.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68D246EA7FA9E1083F1E404E4C4A3970 /* FIRCLSNetworkResponseHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4393B1186FA44A018BBFA28C519A8C4A /* FIRCLSNetworkResponseHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68D5D6DE29118FE09F709E43DAC3E138 /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F5705395441466192BD91D1B715A784 /* RCTBaseTextInputViewManager.m */; }; + 68F2B4B67DA6803F21510623B2AAD127 /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 781C339E09C3A84606F79E7D18E333E6 /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 690510EF924CBB9EB1F3739DC422D3D2 /* ARTPattern.h in Headers */ = {isa = PBXBuildFile; fileRef = EE003B14F3BDD73E4063997EC4E2607F /* ARTPattern.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 690A6A6992A39B73203B2871070678E2 /* RNCNetInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = CFE777E168A9AFBF074D469F9EFF7C47 /* RNCNetInfo.m */; }; + 69357FB22F7AA63DE7A488CB1AA950FA /* BugsnagPluginClient.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D2C8A889B69DBFF16BE95AB81BB04C /* BugsnagPluginClient.m */; }; + 694EC39CF5027061C2DBA2242F788C81 /* SDWebImageDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 05292F4C9A6B2D46210E32F7F6BBAE86 /* SDWebImageDefine.m */; }; + 6972EE81FA37E8317A730ADE9136D406 /* RNFBCrashlyticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = AD664037CDFA6CCEDAAA356ABF4A0B56 /* RNFBCrashlyticsModule.m */; }; + 697560C208A7E78115A5D95D204BE0B9 /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 761205744C0A0C3ECE16EE27DD734BFD /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; 69827671C869E0C6BDDEE5BB0058D2F1 /* MMKVHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F664652BB858F525BA3D936AEB2F1E1B /* MMKVHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 69921C0FFC2A3AA9795ACA7919701BEE /* BitIterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 80465CD88BDB7A9BE15102CF50241913 /* BitIterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6997F1F036CEF3EACB71A4F97AE004C6 /* ThreadId.h in Headers */ = {isa = PBXBuildFile; fileRef = 760D8A6ADF87C5E2101909974CE1C931 /* ThreadId.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 69E5B6058874E49575C7372228BBE57C /* BSG_KSMachHeaders.h in Headers */ = {isa = PBXBuildFile; fileRef = 90AC79A681674230B298009835678FF5 /* BSG_KSMachHeaders.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A1643FB2C917ED9A9FABC942DC8B5B3 /* GDTCORTargets.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C79B1F5A3844A1537C78A0F404800A7 /* GDTCORTargets.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A1B8F97F47E08575FD8B839A576D68F /* InterProcessLock_Win32.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F857F1D4F6B0DA51D90C2E47D9113790 /* InterProcessLock_Win32.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - 6A34757B27E7D73D7274B74157DD280B /* BSG_KSCrashAdvanced.h in Headers */ = {isa = PBXBuildFile; fileRef = 21D81F699EFB0D3D63D07F3C1B01AD12 /* BSG_KSCrashAdvanced.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A3C7249931403F099973BB0CD8C5A00 /* FIRInstallationsItem+RegisterInstallationAPI.m in Sources */ = {isa = PBXBuildFile; fileRef = CB8D1B05F7691BAED8591CFF2B187C65 /* FIRInstallationsItem+RegisterInstallationAPI.m */; }; - 6A4A79E079F587D82799D24ED1E7C0A6 /* RCTConvert+FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 122737EA5AE2080E027AFC52CB8BAEEF /* RCTConvert+FIROptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A6279447C11C046FF780CE263E30F80 /* IPAddressException.h in Headers */ = {isa = PBXBuildFile; fileRef = A19A4B820CD795CEC835A155BEA73DCA /* IPAddressException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A74AC73F43E550DD1227EA4A43272B5 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = DAEFAA8FF94AA1D020B7B85B9691AE0B /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A98D50895B8DEC2D98F7F596BF54964 /* RNFBPreferences.m in Sources */ = {isa = PBXBuildFile; fileRef = 33B1D2967436E2AACBDD00065D25DDDE /* RNFBPreferences.m */; }; - 6AA2DEB4ED71E740995C68687E244528 /* FIRExceptionModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 72505AE0D9A7E5D7961E65C7BC1D3030 /* FIRExceptionModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6AAFFCA2F7AD3D12DD6AAB52C294F9C4 /* ScheduledSubscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 55768652A0C6C1024B76E44458316F0D /* ScheduledSubscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 6AB7B6D2FC643A8F282A210B3B027798 /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F52333D428D405656E110A96D202CD1 /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6AC16E42046F7857B97F7A3562C16E02 /* StreamStateMachineBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 8497CB456BD2A261AC99B47B49846351 /* StreamStateMachineBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6AD4B97EB0A3334FFC7C8C36E992527E /* RValueReferenceWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 955FF74652B28A8FB2FF9E3F715C9545 /* RValueReferenceWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6AF5F44FF9181CD0A320B9AD1A711ED1 /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 816AC9450EEDFF23FDB4EB8A859EF22A /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B01DEB0C2FEEDCEAAB967C818D1BED4 /* ProtocolVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 2137BD408F80C49698ED16257310376A /* ProtocolVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B0E04BC26C6AA2270AB47DD63BB8CC2 /* BitIterator.h in Headers */ = {isa = PBXBuildFile; fileRef = BD8642644F3A2804EB341CF7DF6465E8 /* BitIterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B164E64FE2920D60C6B1CEAE9E073FF /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BD07A336F409A29BE9C79ABFEAFC38E /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B180E5EFF834BA9C8224FF6C99098C1 /* RSocketServer.h in Headers */ = {isa = PBXBuildFile; fileRef = FAD7A3F2CAE2409B8C2A9B0EE30BF275 /* RSocketServer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B24F23A458E281DBCF6614C0820BD2B /* IndexedMemPool.h in Headers */ = {isa = PBXBuildFile; fileRef = FF259A97C6851A6DFEA8E80CC64AAE13 /* IndexedMemPool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B26200D020F5267F935B08E894708DB /* crc32_armv8.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 67801958A02500B281EC81392CED35CE /* crc32_armv8.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - 6B2BF8C6EE3978A7BEDDDFCC1A163F45 /* Hazptr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 09C34605C950C91E8CCCD2F4AEDB7101 /* Hazptr.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 6B2CDFB1E1EE9D192EE6F051E3DEE48B /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 43462A4C81987292895FEC812FF44DA8 /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B42A9F8B940ED36C74F4B4E10F79248 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = AEE92C474B44CBA057719274639B2098 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B4903B4CEA81883ECE2FF2486E6FE0A /* Range.h in Headers */ = {isa = PBXBuildFile; fileRef = F0B9BDE093A1DAEEACF5BFC7242457E0 /* Range.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B6C023AC6244017CF6B5114D1BDEF60 /* RNCookieManagerIOS.h in Headers */ = {isa = PBXBuildFile; fileRef = EAB3FDB2FE2D5A5728226A4C79578087 /* RNCookieManagerIOS.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B716391A489A4A3933E6A29CE54509C /* HHWheelTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 156FA2E86BCB36706E2E70639A7A49EE /* HHWheelTimer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 6B7FDC65428AE2923E6A70EB2B176FFB /* FBLPromise+Testing.m in Sources */ = {isa = PBXBuildFile; fileRef = 80633C5A8B082AA86AFAECD105185D55 /* FBLPromise+Testing.m */; }; - 6BAC3EC9F0A20F6E10EA8E54F2A0320D /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F8E66A5F4B94E306A243192C02F093F /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BAD414489BD8A2BB43BA3990D4A5BBD /* GULAppDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FD51AC155A82E1BD08CC8EEB840440C /* GULAppDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BB0FA27C4C2728332E8F885F3DBCB69 /* FIRInstallationsErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 0799A00B1DC38572550D734432304845 /* FIRInstallationsErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BB921326F75036C1DAF8B9CCA9A4DDC /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 18DC6B69AA004E9F3BD7447EBC2AF9F1 /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BC0F1F2ECF2C6DA5ED9AB63B28E1A25 /* FormatArg.h in Headers */ = {isa = PBXBuildFile; fileRef = 14562566D7E2D611A5AEB28A2033E764 /* FormatArg.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BC9CB17034B8EAB5F57E79C29F5D9CE /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A88DF429FB34F1FDCA9CA6886EE9459 /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BD064A6D8E5F1F56631395FC56A58B7 /* sorted_vector_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 12899CF7B0A4C003456EED43A6AC7EAB /* sorted_vector_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BD07B254C358CAB3BE8929018FCD954 /* GDTCORTransformer_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A7B74E25DCF95117BA1DB7832421E28 /* GDTCORTransformer_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BDE53A82B9A2BF10FF04D46CF942136 /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = 57222C714B5A15ED10F130985E02E6AA /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6BDE820DD78401D6AA25F03126A8398E /* FIRCLSMachOSlice.h in Headers */ = {isa = PBXBuildFile; fileRef = F0AAE5E8D832ABA019BCFEACD02E56C8 /* FIRCLSMachOSlice.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BE26AD65D9B73EA9D6E16B8F86AC1C7 /* backward_references_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 8D6FA0A067E58BD035A8CB254BF874DD /* backward_references_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 6BF87CFE8A6CE3B9B9BE3260309D8234 /* Bugsnag.h in Headers */ = {isa = PBXBuildFile; fileRef = CF785611FFEAC5B926BCBEB77DC2215A /* Bugsnag.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BFB6AA5778A03301C35B75E9349AC12 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A6137257B711159FD4012D79C20BD1F9 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 699B52AA6BA53B58E1B33843917C01C2 /* ThreadName.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E04F05AACD8047089A85B4474584ADE /* ThreadName.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69C7BE94793C6FDF6F1C67B14956F741 /* SwappableEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43D561D4EA27F9FF3B798E950D15E161 /* SwappableEventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 69FC648BAC90824D3423DCFC56C2FEEC /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C0E6135E6AF4241D0A7A7B3239C76BD /* InspectorInterfaces.cpp */; }; + 69FE42AC5122E56178A4CA34C9743273 /* RSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 004B54212A40E4C7916C9EE6DDD93C63 /* RSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A039FF84F6CD8D55484C034F66B007D /* SDDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = E9E08C14A6995E6EB264EB5847FC74CC /* SDDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A1D8AACE5AC26F3AC7B09CF608BD6D7 /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FA35B251233E0CD2A62A22DE7413B9E /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A1F7261235C2DD375F9E7FE4EF2F98F /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 100FF3BEA5FECADD67AD149C0ECC3CB4 /* JSCRuntime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6A5D8B5248F2C089BA82FFBE4FFE9910 /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = EA44814345FD3334AE3676B7C6390179 /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A6BC7C740587DDFC30448AFC965AD5D /* alpha_processing_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = D24C2A558A4C2CF8CAD1BE5E4935C980 /* alpha_processing_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 6A7FE58131360F95F295FF2B3FE793EC /* FIRCLSReportAdapter_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E1007F4054FC430ED1A198952B47D69 /* FIRCLSReportAdapter_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A8165E3426549D612357585B6D337D0 /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 16A223CEA878D93518E9E43F6E112732 /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 6AAC5DB5BE77AA22690EA241A578EF35 /* Windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 36E4866295DA29143E64F3AADB213048 /* Windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6AD7DAA8CF490793B3134CD081131277 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = B09923908C0ED67A7B5131B7BB580CEE /* de.lproj */; }; + 6AFD9A72E1934955857F6D5E8A63C6C7 /* EvictingCacheMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 389CFC3E4D576AC52BDAAC552137FFF1 /* EvictingCacheMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B1A5FE6CBE29C4CDAB495164C349C83 /* TLSDefinitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EB6966C2F4A349FF86C237F57F846FA /* TLSDefinitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B253D1E348E022DBC796B0D05ACEEE8 /* ThreadId.h in Headers */ = {isa = PBXBuildFile; fileRef = 760D8A6ADF87C5E2101909974CE1C931 /* ThreadId.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B3E6EA5D791F205EA3D76CD13C1D706 /* openssl_aes-armv4.S in Sources */ = {isa = PBXBuildFile; fileRef = 7EA857DA8A2209FA98D02BE1E40ADEC8 /* openssl_aes-armv4.S */; }; + 6B44DC3251C1E6AB1A5A258E5D9518BA /* EventBaseManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B12663CABBD318E5F233935D392A54B0 /* EventBaseManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 6B55B4D2D6C4FA9879371F32CDDCFF88 /* DynamicBoundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D45DA6845E2F96A779737D9DF9A488F /* DynamicBoundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B5A31480789AC447C5D5AB82535FC71 /* RCTConvert+FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 003CEEB7A99455C56D1CC82459FFC621 /* RCTConvert+FIROptions.m */; }; + 6B5E337646B5C75DFA036C6BF3E7802C /* Cursor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AFBC8012C03C0758C3004F0FFCDDE3B /* Cursor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 6B62D86C0B32288E0B4C91EDAC0E08BD /* HazptrThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7230FD2897AE4D58AEFEA90FAF377284 /* HazptrThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 6B69D4008B61299672F88009F247EE21 /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = DA75C6D163FC79F2CB585CA01FA60FE5 /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B6C023AC6244017CF6B5114D1BDEF60 /* RNCookieManagerIOS.h in Headers */ = {isa = PBXBuildFile; fileRef = 8443DF482A4A09A72E9EE2EF68264AA6 /* RNCookieManagerIOS.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6BA48DB67AB9CA5A4192C9D3C9C26AFC /* RequestResponseThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F3B13C8319674F7011E2EC4ECF09EA6 /* RequestResponseThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 6BAFB26E5D55CD25EFC7642EDF1928A1 /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B74A30016078BE56D8EE4ADF85FB7C6 /* RCTUITextView.m */; }; + 6BB921326F75036C1DAF8B9CCA9A4DDC /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D05B428018345AF3E7B23DCC82F3F59 /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6BCB044CC249C1016C650C7BFD223F52 /* WaitOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6FC51C20FB20896CA9591C38F77525E7 /* WaitOptions.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6BDB83456597137959DAB8620D7E4403 /* BugsnagEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = D59570E752E35C2A399AE364FF6C7326 /* BugsnagEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6BDCE2AFBD3084C1B1071F967DB9AFB3 /* SwappableEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 7036E8E663E35BB5DB6C32198B066FE6 /* SwappableEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6BFDE04BEC481A56186541540895AEBB /* SKStateUpdateCPPWrapper.mm in Sources */ = {isa = PBXBuildFile; fileRef = CD9E7EF418A1E7DC076C5815A0AC9131 /* SKStateUpdateCPPWrapper.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 6C000CF5F64E647472744C017F7164B4 /* FrameType.h in Headers */ = {isa = PBXBuildFile; fileRef = 992BE0FF9C4E7E0A4E2106380FB6AEC1 /* FrameType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C04686F45C84BB549DAF710202CACD4 /* FormatTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AF0EDBD81AE0FAFA35C0AB0497212B4 /* FormatTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C0CCE36F8E4912DFEFE54ADFB7B1107 /* RNCSafeAreaProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F17C1F45FF49B2A41C15ACE1427B279 /* RNCSafeAreaProviderManager.m */; }; + 6C0797F3576DA1417BDC75D89B6BCEFD /* SDImageGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = A1877D4F4969CD370E0D2105E0DBF43E /* SDImageGraphics.m */; }; + 6C07DD3F535691C84DFDF5413E3FC550 /* MMKV_OSX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 162726B5507F0F382038F5353E150133 /* MMKV_OSX.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + 6C0CCE36F8E4912DFEFE54ADFB7B1107 /* RNCSafeAreaProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F12F35269850391E9FAF0153A7CE2C48 /* RNCSafeAreaProviderManager.m */; }; 6C0F526A67E8BE75D66EC3B19CDA2916 /* UIView+SKInvalidation.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7656B7BFE45650CC91E9A7D6BC46B62C /* UIView+SKInvalidation.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 6C11B33A8A71534CA2D8FA9F35321F56 /* FIRCLSPackageReportOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 2ED9BF56428DBA0DE10A75282936070F /* FIRCLSPackageReportOperation.m */; }; - 6C236D8B6FFA2A6B19DBCA5D8FA3DD92 /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 31C8C92AF9AED29D2EA5BC405702CCC6 /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C2419B20BB154A248C4821740B2A303 /* lossless_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 1426D4C7456CF932B66DD1B74A1CC592 /* lossless_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 6C72293CDED6E421DCE66E8C4A42E9E1 /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EA959CEA308ED06E8959B9FFBCDAC17 /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C7E29B2F97D45FC67148B5A78649B9C /* PriorityLifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 7189806B62CAABC6A938101E021B1B48 /* PriorityLifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C92E367A74D87BA9AFA42A3A52A40CA /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C45E5EA84CC055C1FF0BA19EF79B73F8 /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CB10532AD9D8850C633A3CFB7CE296F /* BSG_KSCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = F3FAB8103792C1FF3B34011A42C1CE1A /* BSG_KSCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CB4950CFF26F9A26B288FFA89226916 /* Uri.h in Headers */ = {isa = PBXBuildFile; fileRef = 42C85A45524DE2BA8DD6A46943FFF9E1 /* Uri.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CC550D1554454490C0AE3F5030290CD /* Parallel.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F12146FE27561032F8D4B3189081660 /* Parallel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CC99B23F0981D7B107BCA8CBA4EF79C /* FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = C5536BC129A4DDE4A2E9C777B33C13C1 /* FIROptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CCC20B04F8EF68BDDA0C1C67DE97243 /* TypeList.h in Headers */ = {isa = PBXBuildFile; fileRef = D218CD7A1D139E9F1C38C68C1D1BC373 /* TypeList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CEA9DD459A74E8FAD0E2B7796F797E2 /* AtomicUtil-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 767B925C026CB9A6115D2DAA8564ACF5 /* AtomicUtil-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CEB2297FEFED25BAC9015FA22A65292 /* Singleton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E0D470BF6CA037D3474A1794EE56F3EC /* Singleton.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6CF49AE7B6C309BE2662A69E723097BC /* Hmac.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F18F0F2473E96006C112AADE8B5DFD5 /* Hmac.m */; }; - 6CF627B7D6A045FC8DFDACF90775426A /* HazptrThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 03749A1A62575AF10C8C927110589F8D /* HazptrThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CFA7ABDBCAB7AD420749A74B59C276C /* ConcurrentSkipList.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C99E44EFF703AFF54FB84284C85BEFC /* ConcurrentSkipList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D0205DB3F3C683869B49C1B4ACEE662 /* Likely.h in Headers */ = {isa = PBXBuildFile; fileRef = 0153F266157533ACE5EA59284B4E8922 /* Likely.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D1DA6DB291DDE16DAA47F4DA79C1DBB /* frame_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 825B2285A1530B004DDAD6CEE1315843 /* frame_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 6D2DD50314F2CAD881B1D6EF3E653F4A /* FIRCLSDwarfExpressionMachine.h in Headers */ = {isa = PBXBuildFile; fileRef = FD1931A7004B7A0B8E31C246FAE641BB /* FIRCLSDwarfExpressionMachine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D2E7F2751ED37508CF9C22663588C8D /* Framer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 50CAB6141E979DA768868D1CC0D4777B /* Framer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 6D4221604A646F7E15D58162641C7719 /* RNBridgeModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B622BBDDE413F5F8AE95CA69669A227 /* RNBridgeModule.m */; }; + 6C23F08FC3706DE1C3C6378605625257 /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = E4840827025F06AA40F6ECA03F460647 /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C2702E9C2559DF25271C677EFD299F5 /* BSGNotificationBreadcrumbs.h in Headers */ = {isa = PBXBuildFile; fileRef = CCB97095D881D3E0D5625AFC68D06EA2 /* BSGNotificationBreadcrumbs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C5CA627C6773917F08E39A4CD4BA162 /* DistributedMutex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FA0A3AAE1D9214E3A5BF27D002C29A5E /* DistributedMutex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C72993BF92D000A3B4A2E293C217D52 /* BugsnagSessionTrackingPayload.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E3D0BB48FDDCBE29E682D48D2261735 /* BugsnagSessionTrackingPayload.m */; }; + 6C7D2A35CA85C3F5E6003C1A7BD3A13E /* HHWheelTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = A9B044D3E141763E51736E7D14D52B9F /* HHWheelTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CAEBFCA4126D6A6EDCEA9C7F27D9300 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 978BA8A0B9691E1FD6D7C40F23C87A4E /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CB56BCBFBCF14734411CAB9B93ABCF7 /* ieee.h in Headers */ = {isa = PBXBuildFile; fileRef = EA12FAEFE8EE553CC6DEF4727ED0D5FD /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CBDD8B277C6EAD6FE2FE166EE895F14 /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 280005C2D697F4B8EE5FA8D2A16214F8 /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 6CCDCDE388B9F1EEFC52F8C273143825 /* Syslog.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B1A3A030C5391095F45FBDA62640A67 /* Syslog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CF49AE7B6C309BE2662A69E723097BC /* Hmac.m in Sources */ = {isa = PBXBuildFile; fileRef = FF9C3D5930CF0F4DF3E43D8EC1FD1858 /* Hmac.m */; }; + 6D02A809D77869DFDF2443FA9A088610 /* SDWebImageDownloaderRequestModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = B876C23C439C3C7CCABB78AE23C0A80D /* SDWebImageDownloaderRequestModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D22D1AD550585E38EE88565B9B3BF11 /* EventBaseLocal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 62211D510BC0A02100BC630FA71A248E /* EventBaseLocal.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 6D256E9CCE5CBB06F9901AA759E569D5 /* FIRCLSInstallIdentifierModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EED55B8EA691269ACB175FDEF3A7FC1 /* FIRCLSInstallIdentifierModel.m */; }; + 6D30282648F1A14F609AF954AA50D51C /* GULReachabilityChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = D6E2DBCF4B67D998B4EB021A9E07EAC8 /* GULReachabilityChecker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D3CF28C73BB41714C44DDDE94CFFC44 /* BSGConfigurationBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = AE894CCD5487DD70504F6EFA69532ADF /* BSGConfigurationBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D3EF4948D919B5B149404B2F11CED5E /* ReadMostlySharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = EE1A20F80817C3502570E241C4933149 /* ReadMostlySharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D4221604A646F7E15D58162641C7719 /* RNBridgeModule.m in Sources */ = {isa = PBXBuildFile; fileRef = E649690720DE207C55AEC9762403EB41 /* RNBridgeModule.m */; }; 6D46F592A9CE37438A8A7E2AAE723102 /* SKDescriptorMapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A2EDFBE8E6EBC1A2691133E5F859A12 /* SKDescriptorMapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D5A30B108F0A703889C4CCC77418B49 /* SharedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF20904EF4194014012A59328286CE8D /* SharedMutex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 6D6930054A2802F3610A9657D7A383FE /* anim_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 58B94465E6740BC4396BE9B1AA8814EC /* anim_encode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 6D8AF4704FD4BE8FDEBD9BC9A39341D3 /* RValueReferenceWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AFD581736261F2861B84FE2B7207D9B /* RValueReferenceWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D97796F1B12FDA9067E22A9FB927C1B /* RNPushKitEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 6780A66BC4062D4ABA53E6B60F07CBBE /* RNPushKitEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D9E22573017D8C29C3031B70ED825CF /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = FEBBC62ADEBFA775C90FDF0872C45C81 /* RCTCxxUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6DCA4175D201CD9776ED2AF423713DB5 /* RSocketServer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B98616A239AE9A3B63B404892883D35F /* RSocketServer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 6DCD04D9846F7F1D1A81FC5017EF4E8D /* ThreadedExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01742674828B7DB5C4115878466F5134 /* ThreadedExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 6DCE944E6F2A748FB169CB85C678D43A /* RCTDisplayWeakRefreshable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CD31BEB3A603CA7490419DCEB1B4AEC /* RCTDisplayWeakRefreshable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6DFBD9A9044A45547AE30BF3B345195C /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E20599F626D412CD0CD01BC127220DF0 /* jsilib-windows.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6E01DCD66A927C1BE06753E7510B632A /* CancellationToken.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B6170D91BAB843A4CF639875AD18E134 /* CancellationToken.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 6E065BEDFC8994E74FB49D8FAA30754C /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 70FB10EA9B7A302F1ECE8BCEBC616991 /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E129BA677E2974FA565B36E71C8DA34 /* SDImageCacheDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F4C9252C0AB1D6B047BB24CD5E7172C /* SDImageCacheDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E49A83ACF4FB8AEB1BE651DFB653AF9 /* ThreadWheelTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B1E2BB6BFC8F3CCCB19085DD174E8AC0 /* ThreadWheelTimekeeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 6E52A595A234E6710DCFCC56AA14510D /* F14IntrinsicsAvailability.h in Headers */ = {isa = PBXBuildFile; fileRef = 140AAC91E8ED0B016C8DC8C5131FF746 /* F14IntrinsicsAvailability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E691F1FCC1CA9F2B95AC43B12E4791F /* SerialExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 779317CA3A38F38A2E8452DA500B10EB /* SerialExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6E6CA7E11C46C66BB11D936B24282382 /* RNRandomBytes.h in Headers */ = {isa = PBXBuildFile; fileRef = 748FA945E7F2ECC16670A665D3BCF688 /* RNRandomBytes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E88B71994D704E22169D71F6E4A06B5 /* IOThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C6F10F55828C306F9087EA3BE6FFA76 /* IOThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E911793C10323798EA7F34E06F3354E /* FFFastImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A9443962511C92FD7F5225D9E1A6C0A /* FFFastImageView.m */; }; - 6EB0D63BA7071E402F4BA0E892B08BFC /* REABlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A024CC3B6B45680CB9404A3D412D21C7 /* REABlockNode.m */; }; - 6ECBF5784368998C907A12EEC0B0C73A /* RNCSafeAreaProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C80D9D8E5CF1F2E467EE703052BFB0D /* RNCSafeAreaProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F018B8B904C5B98D4F49822187A7B54 /* RNDateTimePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 17FB9D94F5FF23680996BFC5CF8F1EC2 /* RNDateTimePickerManager.m */; }; - 6F019486996898CD428DC194A5A12FF5 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 82455AFAA247F44EF2C7E74E2A84FBAC /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F0F6404896F57710358B95DA1FD19C6 /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = 23E0C20316338E7EB9BFE9DF8D664C73 /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F1F1CF59C9679D2CE1912F93F9D7B87 /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 368072C9870618A735A29D132AD41D85 /* ReactCommon-dummy.m */; }; - 6F1F8EF644016A395B41D4E944A6BADE /* react-native-cookies-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 303E051C808BB1AC99FC759FEA02C148 /* react-native-cookies-dummy.m */; }; - 6F221D7F6CB8F6D47C61F60872300E5F /* RCTWebSocketExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 935392AAAB676B4AA578BD46F0461BF9 /* RCTWebSocketExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 6F28265048986AB080D4A6DD8D42A044 /* dynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = B868B6CA52D88A582EACBA25D7B6A530 /* dynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F2BF54E7009B4F4565CAEB9AB4A6557 /* StaticConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A04C5093939CC2837C05F0DF48DDCAA /* StaticConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F4CEC567BF207A4EB8D2C7159DA20F4 /* tr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 1161903683157589F2902EBB4CEB72F0 /* tr.lproj */; }; - 6F4F4BEA332091EA0CE418A3F103EAF5 /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 589A90DC21B86114FE26A76388EEA3D0 /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6F54B2612CDF774DF1BA6261DA7917B0 /* StampedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = A8B3E5DAFD46EE56452724AED9AC92DC /* StampedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F893431A861E609DCAC50AA3F47B8A6 /* FramedReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6DF210C698286DA9A48D500C07B827B0 /* FramedReader.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 6F991556C0FDEFB6B0EB64C3CA32DBCD /* TimedDrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = FD9EDEDEF1E88E6DCEF209BD0AF2F483 /* TimedDrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6FBB95E43E9F961B0479D2365754EEA7 /* Connection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F972AC9C15EA18677280333E536CEB6 /* Connection.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6FF30D4D30EDD64827C107D7D0635AD6 /* KeyValueHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = 3554E36A810D8574E002C2092B9121F1 /* KeyValueHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 701C647AFF6270B8EB70FA14B8E5CDCB /* Random.h in Headers */ = {isa = PBXBuildFile; fileRef = 6526F41ECBDF99585387BFDC5787A33B /* Random.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7027A99E6B29D6B2D9F210C06187DAC7 /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = BA30F381505351432375646265A3BE63 /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7034D4F7BDED3DE2E40E1C039017BC0C /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = E3165A86725B1DA8D972E6E700065F37 /* RCTCxxConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 705D47189A3D730703D6DB27B1A48E15 /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = CD542ADD828F6AEDC04180B6A7B34DF2 /* RCTDisplayLink.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 70728DE148B745B7DA5DF107F3DAF24C /* SDDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = B89880C34A22F7D671DEC637659A0068 /* SDDisplayLink.m */; }; - 7079923D9F4E8867CAE967C5A089137B /* JSINativeModules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 630EC295F1EEE562FFA273E7F7DF23E1 /* JSINativeModules.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6D4A26D55E85DEC9A4AACDECE47C81D8 /* QueuedImmediateExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2FB05ECB092D5342169D9D9695DF77D5 /* QueuedImmediateExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6D4DA454B5C96B4A5E1C91327F02E316 /* FIRDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AEA0EB941EDBAE9DCC795D9615CD443 /* FIRDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D62CF3B1271710DDDF00C71219BE253 /* GULMutableDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AC7AC6810C2996CF21B58F57C3F54A4 /* GULMutableDictionary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D65DABCE3BA9864F29473D0B6975BD0 /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A53EC9FB8607A9EC1BD5F88AE6F883E /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D6839659D9FF6E53BE79D2C7890ED90 /* ManualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 618086732FB8BEF7EB0994CD5B8498CD /* ManualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D9755259A707C938C2CC4638386369E /* MapUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 285AC2398EBE625A8D9A4F1277BBAADE /* MapUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D97796F1B12FDA9067E22A9FB927C1B /* RNPushKitEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 6057631DB1CAF97943B1AA60672D95C2 /* RNPushKitEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DA84A603D543734E965829C73DA57EE /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 99B7A76C5FDAC071619973B54DEF69DE /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DAC0A5F611F20734DCBF0D37C24D85C /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DBBB127A1D2B1415678647D1AF3E00C /* RCTCxxConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6DD6E2BDA043C5ED618E8F663927D0A4 /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2877506D87948E011C9FBF18BDAB9E75 /* RCTPickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6E137A29CD533B6DC7CAFF9AE0CC87F6 /* StreamFragmentAccumulator.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BF02578CD55A4686096FD853394854D /* StreamFragmentAccumulator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E2DEC0CF72D4CCEEA35E88BA4746941 /* Aligned.h in Headers */ = {isa = PBXBuildFile; fileRef = 58B8205D88F6BC2164C9E39D657287A0 /* Aligned.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E3875895687D5E24DAEB1F699A93853 /* HHWheelTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 156FA2E86BCB36706E2E70639A7A49EE /* HHWheelTimer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 6E3A38C95DA5C2389A7AC4E99D7F7A29 /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD55A550A260F6C74B624318596B279D /* MallocImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6E4370E000F3BCE9094F9EC550AFCE42 /* zh-Hant.lproj in Resources */ = {isa = PBXBuildFile; fileRef = A890CCB8BF008676AE761ACA4F9AA0B0 /* zh-Hant.lproj */; }; + 6E54B68FE612B2BA5D50122DDD6B2B06 /* RCTAnimationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C88629AF7D9C7E7E38F3E17677FC2DC /* RCTAnimationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E663C0E9CDDACF0984A08465FBDD414 /* FIRCLSCompoundOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DFF3208242ED749C395BE3D2E37E627 /* FIRCLSCompoundOperation.m */; }; + 6E6CA7E11C46C66BB11D936B24282382 /* RNRandomBytes.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ABF1EC3358A7E3827364D165457E312 /* RNRandomBytes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E911793C10323798EA7F34E06F3354E /* FFFastImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = AF14A4D82AF1821431DB8664A697F559 /* FFFastImageView.m */; }; + 6E947B625270EA7AB41F6E216A5009A4 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = E62636EB54EBAC8FFAAD4C44CF3B71D7 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E9781A4E5428881254790D7AD977110 /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = F4894891D2683756B59E4356267E11C3 /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E9F108D7D1F600FA41DD8FD7B34E427 /* ResumeIdentificationToken.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 11E5B920D013929A3A29D9659EF6473D /* ResumeIdentificationToken.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 6EB0D63BA7071E402F4BA0E892B08BFC /* REABlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 51932962389B22CF23FD8BB7939CDE28 /* REABlockNode.m */; }; + 6EB17A2C35F93B589374CC71B641941A /* alpha_processing.c in Sources */ = {isa = PBXBuildFile; fileRef = DD97A2E781B1133BD6C71C1544A56098 /* alpha_processing.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 6EB3C6157C944D0F14B7CDB932F34940 /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = C7B7B89B9C2CBFE2FA20597CAE914577 /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6EBC739B30CA8FAD48C3951AFCCA66B6 /* FIRCoreDiagnostics.m in Sources */ = {isa = PBXBuildFile; fileRef = 99CDE89A9ABDA7BAFFE28A851DB55DB9 /* FIRCoreDiagnostics.m */; }; + 6ECBF5784368998C907A12EEC0B0C73A /* RNCSafeAreaProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 78947469984D2FD1BB8948C883C719B0 /* RNCSafeAreaProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6ECC16AACFB6BC5FF0B7EFE9C278BB62 /* ProxyLockable.h in Headers */ = {isa = PBXBuildFile; fileRef = A7E4D3C5DD7542CA12F52F8F049EA1A4 /* ProxyLockable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6ED0B77BA74C2B218B0EAE9971B70E2C /* Common.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BA7064702BBDD1BA702AF42B10B58528 /* Common.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 6ED1741AE0930CF58147E317CCD6F91D /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = C5FBB4CF298ADFEDE3E0D4083594D093 /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 6ED79CE9B1C60420A72964EA773FF253 /* quant_levels_dec_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = C9754419D7609BFF0E75CE875DCC4656 /* quant_levels_dec_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6EFACFAD993B3F07E82F8A4F7F028BAD /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DE76F127E42557B9BD2B3676495F1E2F /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6EFEC9EECB474DA7EDEDB78F970B3E49 /* FIRVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 747BE71E8C82E7E029D0E1901F01B273 /* FIRVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F018B8B904C5B98D4F49822187A7B54 /* RNDateTimePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D5FFC28F633CA358E6A299EB5727859 /* RNDateTimePickerManager.m */; }; + 6F01B049AB62CE236C245639313F3490 /* BridgeNativeModulePerfLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 32CA7828799A6E45E4AA667862A300B4 /* BridgeNativeModulePerfLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F167C246E753AD7AECF421830191574 /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6909DC17B79287F476ED5275B90B517D /* RCTBaseTextInputShadowView.m */; }; + 6F16CB6B1386F1F35A15E6D88064CF44 /* RNFBVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AAD0CD25566C3DF95A09CE18005BFDD /* RNFBVersion.m */; }; + 6F198B6796FC75BF8EB121B170497165 /* filters_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = D72FD378C4B1FCB1EF395201B2FA0620 /* filters_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 6F1F8EF644016A395B41D4E944A6BADE /* react-native-cookies-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F27913042F4D16F669BC9B55EF37EC3 /* react-native-cookies-dummy.m */; }; + 6F221D7F6CB8F6D47C61F60872300E5F /* RCTWebSocketExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6F815F8790C9087086FE9DE411255EBF /* RCTWebSocketExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 6F26D779C3AB2A1197DB0289B4936A92 /* UIImage+CropRotate.h in Headers */ = {isa = PBXBuildFile; fileRef = 6358C91D6EFFFEE83C8D79EAC09C685D /* UIImage+CropRotate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F5F811E0EBD3A9488F59B825FA147CA /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D64EC9825D8C6C4D2EE46C9A5061CA48 /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6F710F7118FC5A2ECFCE14AD2C1A3AB0 /* upsampling_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = F656E9E9B098FF51164E8EDD69ECDCB0 /* upsampling_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 6F77535C9D8949A90B14C03B87365550 /* vp8_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 058BEC2FCC8D1DBEBCBBF9C636C2C347 /* vp8_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 6F82B689E48C467E2CF41A3B6A759380 /* FIRInstallationsItem+RegisterInstallationAPI.m in Sources */ = {isa = PBXBuildFile; fileRef = CB8D1B05F7691BAED8591CFF2B187C65 /* FIRInstallationsItem+RegisterInstallationAPI.m */; }; + 6FA871B54E72B4E9FF0F5F7933D29E7E /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 20A5C47A270AF6321ACE7FF6B82E0F0F /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 6FABF4915BCC69ADE3B3F3F1B82E3FF7 /* FIRInstallationsIDController.h in Headers */ = {isa = PBXBuildFile; fileRef = 00D323FBBD73EFACF837D4D6D25372A0 /* FIRInstallationsIDController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6FCA2F372DEBDDCFDCDA656D5A6C4BAE /* Replaceable.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BA6F36479FF33E103FFB4087E81E9E2 /* Replaceable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6FCAE02A315A815A3FE09DEB876CC22A /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 28C3762D3397CC9F4A3AE546622E7715 /* FileUtil.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 6FE0FE4F0977D4552305755C8A250A62 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9327F9C7E8982E0CE3C75DE507864913 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7037271A15F2CB08758C6BEDFB9051A2 /* BugsnagSystemState.m in Sources */ = {isa = PBXBuildFile; fileRef = EA8AF9736E107436330E00907D1BA6BC /* BugsnagSystemState.m */; }; + 704DE8D9DD360A4DA69CCC3F2833D9DA /* FBLPromise+Timeout.m in Sources */ = {isa = PBXBuildFile; fileRef = 51E0ED49F68A92B12E47D0F02CD1C207 /* FBLPromise+Timeout.m */; }; + 70525EE2AE0A8EAB9E09D6E5EEC75709 /* picture_psnr_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 9E6C0F837C54854E825A6330E8F6E8F3 /* picture_psnr_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 70592AB014726A5CC92B21CAC66CE575 /* InlineExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = E6047876F69097A9838EEBDAF3540193 /* InlineExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7079D2284B5A94EF0486E2A6CE323907 /* Allowance.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A5EB232FEA7CEB1E0F7D4D8788C470F /* Allowance.h */; settings = {ATTRIBUTES = (Project, ); }; }; 707CE58DD716CCAC79AA0E87EA03E104 /* FlipperCppBridgingConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 26801AEDC8F6E1A70C04F7068509ECA3 /* FlipperCppBridgingConnection.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 709292298C8275D40B546246B8D779C0 /* backward_references_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 961AD9B86A4FFB2F74738BAF22D70B68 /* backward_references_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 70AA1112C1D19502F02952ABCDD23D63 /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 16C56A67498F67A0A0D04C27463CCFCB /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 70BD9B2F2793EB9D64BDB9845CC02725 /* Cursor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E56CEBB5E690CE30375C80AABF6B4CE1 /* Cursor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 70BF98E505E0281F4CB6090AD9573CCD /* SingletonStackTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DEC62479ED4703A3493A030B50AC9AE /* SingletonStackTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 70D136EB086EED37F42D45F9B3049488 /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D7EF8C901F7000EEA6BFB0673C19EF8 /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 70F14DE748F4F6A3A52B138DDD1A5BB0 /* MMKV_OSX.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F40785B36761D40360CCF0B7D0E1C43 /* MMKV_OSX.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 70F7066F9C64DFB14B80AE5B308F78B9 /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B919A05E9213379A4D71D1D3ADF05F89 /* Format.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 70FC0423D5D85A10276C019472AD7DAE /* RCTAes.h in Headers */ = {isa = PBXBuildFile; fileRef = 421514AC35089A123F82847212688512 /* RCTAes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7109F8B3F1799AC25F425B1BEA7DAED7 /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EB11152E396D621E3766B2CF8AF5A3B /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 710F57D653259521280B34661797F7E9 /* ARTRenderableManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A035F886999DBA8AD347365BAD212FB3 /* ARTRenderableManager.m */; }; - 711767B2461D55BD30F4E88AFEC01EA8 /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = F780277E54584A9B21DD9D411CED0CB7 /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 711ADBA7E911F661F8A607CA3FB9475D /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 422B3205071C101532F25B9077D57A64 /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 713BAA9DAF0D57EDD4BFB47368807AC7 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4075B0E596DBA2515CC363B4E72837F6 /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 713C6F605871E06DE7AB2C2E2F5649FA /* IDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = C0D17A6C422A3B65014A26C8033DC6F7 /* IDStore.m */; }; - 71433F2B02B300705E51EDF8B3EC611A /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = E5DD2E4A3E1B76BAD034115D0188B153 /* UIImageView+WebCache.m */; }; - 71544A1741E043F1D09CA02D7BACF6A5 /* NetworkSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = F19F759098215F99E10C42499F69820B /* NetworkSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 716958B6B3387C19FDEAAD5DF7BEB086 /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = F6A2F9F88877D6888B03E4A85A7EC47F /* RCTVirtualTextShadowView.m */; }; - 716C3D75774219593ADBFD710534546A /* HighlighterView.h in Headers */ = {isa = PBXBuildFile; fileRef = 80C8A84BBD3FC1AABB3E6E71442DAA31 /* HighlighterView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7183BC486E567391C52F0BD24D2C8DE8 /* Color+Interpolation.m in Sources */ = {isa = PBXBuildFile; fileRef = A30A02D443B833D2EC48E665E2C96AC8 /* Color+Interpolation.m */; }; - 7189C241CF41DF70FE61556846648A87 /* GULSceneDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 843C93882E727468AB416A5D1983E793 /* GULSceneDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71939D324DC4EBB3D15162A30B78ED90 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 626E78CAC13DC163B172B18AB8B900B9 /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71960905B035A6A88DEFB687CC09AB14 /* DynamicBoundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 60F35749AE880A93AA3F8B9E8DEF69B0 /* DynamicBoundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 719D0155FAE53A3849441B5ED32458D0 /* DiscriminatedPtrDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A8DBA4F20110FCD2B5510ADC12462F8 /* DiscriminatedPtrDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71AE541D97695DBC5896B9542EEDDF37 /* FIRCLSURLSessionDownloadTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 5669BD5467E7448A1D8086103C214E2E /* FIRCLSURLSessionDownloadTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71AE8FD9674E6779BE7C161EA462281E /* ResumeIdentificationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = FB4559CDF57FC81DD76DA71C08892047 /* ResumeIdentificationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71B8706B857C771CE812BBDF5813E173 /* RCTNativeAnimatedModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18AEE788948D0F35540FB577C7FDECC6 /* RCTNativeAnimatedModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 71E6C7D6981BD73CDCBAA08E4B3F7BAD /* FBLPromise+Reduce.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BC6D68855B4DB60DC353DDD7CB64C15 /* FBLPromise+Reduce.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71E93D45A4B0FE03DA1A3D9CDF166FA4 /* ExecutionObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = EC226F2BAC9F1180223CF366941ED6C2 /* ExecutionObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71EA8E641E0497C935D1989AE158FF54 /* CoreCachedSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A2ABF0D6496094126D0C76FF799A01F /* CoreCachedSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 720B6160AFBBFFB88ECF6CFCEB74DDF1 /* SysMman.h in Headers */ = {isa = PBXBuildFile; fileRef = 96971B5D8949E96B552B0C7CFBD06F72 /* SysMman.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 707D76C987DFAB631D3EA0591433FD93 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = D53862AF54CF2656B4120C75EA8B3C4B /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 707DD45C921F816DD808AC7FEBF32F7F /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ED1518F9B4D91C7212B1DF24337648F /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 708596174C426482EAB10A939EE95A73 /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 87E47624EA5966C953C89E28C2FA8F10 /* RCTAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 70B3A3692ABB332F42F8D3271F051AA3 /* WriteChainAsyncTransportWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 4657CCCB92CCDDA25EF0802548198033 /* WriteChainAsyncTransportWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 70BA92339B45B7035005EDC43DA9163C /* FIRCLSException.h in Headers */ = {isa = PBXBuildFile; fileRef = 30CCD0C483D6373D7BD16F68B8220D19 /* FIRCLSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 70BAF6CCBA1760F825DB9CAF1FFACE87 /* FIRCLSUnwind_x86.c in Sources */ = {isa = PBXBuildFile; fileRef = 5BD5DC609D90282613BD259D7B7025A0 /* FIRCLSUnwind_x86.c */; }; + 70E57E5970E580AC7ABE4739A244964F /* ThreadedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = E7FA9A7A65259B3BD7831B47502FF765 /* ThreadedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 70FC0423D5D85A10276C019472AD7DAE /* RCTAes.h in Headers */ = {isa = PBXBuildFile; fileRef = E361178BFF0F0A5AC12C76B6300B8268 /* RCTAes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 70FD0E1BF62707D472539EA510D3CD4D /* DelayedDestruction.h in Headers */ = {isa = PBXBuildFile; fileRef = 50D23022535AF7BD0EF89E7177B837EF /* DelayedDestruction.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 710F57D653259521280B34661797F7E9 /* ARTRenderableManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AED5BBB1861BBE84645A9A7B9670CE9 /* ARTRenderableManager.m */; }; + 713C6F605871E06DE7AB2C2E2F5649FA /* IDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 32CA8CF10AFF6284DDC6E0B008D3FF2F /* IDStore.m */; }; + 716C3D75774219593ADBFD710534546A /* HighlighterView.h in Headers */ = {isa = PBXBuildFile; fileRef = B4EE1F2A065F2CF26B2C1EB0F8CFB0F7 /* HighlighterView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7183BC486E567391C52F0BD24D2C8DE8 /* Color+Interpolation.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FA781FE35B9737A289A6F6DE796B40D /* Color+Interpolation.m */; }; + 71A9ACF58258BB5E6D877E50E89456B5 /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = C637D5D18B465F42A4FE037A2B898D4C /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 71E1E65FC95FBE0B472944B5FB54DC42 /* ChecksumDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = CF77D25B62CE45B31D07F75CB0D5E5D5 /* ChecksumDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71F37F6A18744FC71A4B25E1C978793B /* TcpDuplexConnection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A54E82E346C84E98425FADAF6834BFD /* TcpDuplexConnection.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 72098E2C4C902E4CDD614A1784A1BD33 /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 60FC3B7F56EDDDD84C2E753CD47A7FAE /* RCTDisplayLink.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 720C6FED7064F5B2CA7DFABC3737EEE0 /* CertificateUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = A6DEDACF54C93C17C745DAFA77E4CCB4 /* CertificateUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7213FB9FE043B68FF3F980661A9C2202 /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = E7B1ED010F5FB8F7BF57C832EE1BD779 /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 722F9C48DF629C764B06E982D8B580B3 /* FBLPromise+Any.h in Headers */ = {isa = PBXBuildFile; fileRef = C3F26F9B4FA2A351DDE03859A88225A7 /* FBLPromise+Any.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 723132A40EA940489EA2B298EE0AD425 /* MacAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = EFAF65A558262424D56BC320489FDC28 /* MacAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 723463D7C71568E7121DF8271F874B2A /* SDDeviceHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 028531ED5B236705CDB771CB2927310C /* SDDeviceHelper.m */; }; - 723F30C4D481DD8144C891A58A87293D /* Payload.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CCB7250174E85BADCF71CD4CF0B6F9A1 /* Payload.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 7259042A7B13FDB1BE439B9A1C1F7DC0 /* SDAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EB3BCD632748D1750199C21F0F1FFF8 /* SDAnimatedImage.m */; }; - 7261ED5DBF9549B8EB9D33B100FBD8EE /* RNCAssetsLibraryRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = E92B82D2277D7E8D2DB51024E471642F /* RNCAssetsLibraryRequestHandler.m */; }; - 7289D2A7F91A203F56E42714A4D50795 /* GFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = 183DEFA82BC9DB9C9B0C37345C7E6763 /* GFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 729177AC4FB9AB7E5636278ECFF278E6 /* ARTText.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FAFD314E99B5803919A7E4EDC60258E /* ARTText.m */; }; - 729240164B2EEBA7D13572D8D9224BB5 /* openssl_md32_common.h in Headers */ = {isa = PBXBuildFile; fileRef = F84D66B66D9C1D0B7FA28AC0AF726DA5 /* openssl_md32_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72939CBD61B3B9FC4ECEAD86E15DC633 /* RangeSse42.h in Headers */ = {isa = PBXBuildFile; fileRef = 13A70D257EB606DB7DAE4D4BDCEDE0A7 /* RangeSse42.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 721D32ED454E0AC0D85D80EAEA855ED0 /* FireAndForgetResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = E2E51B08C8241F5CB9E1911832BB6E5C /* FireAndForgetResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72252121A1DE75FC3545164356F2EF7E /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C4E63781EB5282F7FBEC911DEA07DD1 /* RCTSinglelineTextInputView.m */; }; + 723F16A71B0E2F9C992B3CDADBC09B65 /* SysMman.h in Headers */ = {isa = PBXBuildFile; fileRef = 96971B5D8949E96B552B0C7CFBD06F72 /* SysMman.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72549412543114AF2370F5106413C22A /* RemoteObjectsTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0C64E5996EF4943B03113E475C59389D /* RemoteObjectsTable.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7261ED5DBF9549B8EB9D33B100FBD8EE /* RNCAssetsLibraryRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 7039C0FCA8DD90A20EE87615ECC66BC8 /* RNCAssetsLibraryRequestHandler.m */; }; + 726550DFA7415A96DF508C5DB3E9D1A6 /* FIRCLSBinaryImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 912C4CF3278E3ADA0ED28931B9049835 /* FIRCLSBinaryImage.m */; }; + 72718F504B4599F50C6A9FFE7DA6A11D /* GDTCCTPrioritizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BCDE75F8D6EB7B2E4AD002DD63895A9 /* GDTCCTPrioritizer.m */; }; + 7274E4B1F2A9A0B8015B99A25039148A /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = DAA93BB561277F589EFD5B03D3A98A18 /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72863FD64CB37488DFCAA34D2E51FC5C /* HazptrObjLinked.h in Headers */ = {isa = PBXBuildFile; fileRef = 556022F0512FB062A96153D84CAD318B /* HazptrObjLinked.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 729177AC4FB9AB7E5636278ECFF278E6 /* ARTText.m in Sources */ = {isa = PBXBuildFile; fileRef = 64087F3B75718DA47431935A6FF88F39 /* ARTText.m */; }; 72A0E8FDFE35A40DED03137BBD91453D /* CallstackHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = C9609E96411BE8E2F628880FC339B53F /* CallstackHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72CDA39DACCFC8B2B1D7A59E06D4DBD5 /* FIRCLSURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = B3EA108D86B0FF481C6D662FACD8A709 /* FIRCLSURLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72E097DD1326B1AC359DFA2B357B1B2C /* EventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 26785966E130F952CD8CB3ACCFD3A7D6 /* EventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72F3BC2265A372E83C3178B3EBC113A5 /* RNPushKit.h in Headers */ = {isa = PBXBuildFile; fileRef = D8DF7AFABBA68397F89064647D969B79 /* RNPushKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72FE8A3A7D6D38DE2ED2CC0448BFA2A4 /* Futex.h in Headers */ = {isa = PBXBuildFile; fileRef = D387CEB2E8DFB44CA15F0A1870D36947 /* Futex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 73180619049657209DC7D86AC88197A4 /* RNCSafeAreaViewMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 441C502673B52E2B2CFADF89D4FA2660 /* RNCSafeAreaViewMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 73199B5E3AF28C3E0484B8026C585B06 /* BugsnagSessionTrackingApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A0D8220010F4F4C83B5717B055D0DC1 /* BugsnagSessionTrackingApiClient.m */; }; - 733FC08CD72FEC04BC35D24DBBCE28D1 /* InlineFunctionRef.h in Headers */ = {isa = PBXBuildFile; fileRef = BA200C7606484DA619B8C99C0D67660B /* InlineFunctionRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72A1D70A96C55BABF56C96E7421A8BB8 /* InlineFunctionRef.h in Headers */ = {isa = PBXBuildFile; fileRef = BA200C7606484DA619B8C99C0D67660B /* InlineFunctionRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72AE353F6459709595E6BE7249EB24A0 /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 03ABA597EB18982DC357D7D005E5E3B1 /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72AECF8F7F70957CF01216736807D921 /* filters.c in Sources */ = {isa = PBXBuildFile; fileRef = 4C1FE474229C2ACA4C7C4D7B00D43C22 /* filters.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 72AFFE897E8DA214C265F5DC15B4AA97 /* FireForgetThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 13B41F4359159EB8EC87945C0C5A7C17 /* FireForgetThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 72B79343BEEF80D9F1F138B20C2489C9 /* ChannelResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 03627D3C4570EDDCB741491956019B46 /* ChannelResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72C0EDDBB8B83ED74127F63F35B2861E /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 27E98DA502B46B1061E58261CCB42964 /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 72CA5125DED7240CF6F546D940C6C457 /* Pods-defaults-NotificationService-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 39F7D18EC081B100AF21BD824398CC8D /* Pods-defaults-NotificationService-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72DB98A7214AC51B5BB3D4AB42827DD4 /* Frame.h in Headers */ = {isa = PBXBuildFile; fileRef = 37988D45D75D810E145A28997B557A81 /* Frame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72F3BC2265A372E83C3178B3EBC113A5 /* RNPushKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FA0AD66C02F21425433DDB9366CD22F /* RNPushKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72FCEFFA1DB40434BBF9EBF5B25F92B6 /* RSocketRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = F741A695174331064C6F1F03D184685B /* RSocketRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 730EDA55060A6B6283950D48CDAC5EAC /* TimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CE6DA0E0588B8854385C4C0A03DAB96E /* TimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 73180619049657209DC7D86AC88197A4 /* RNCSafeAreaViewMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 50380A13EC2534D9286401EBD03FB7FF /* RNCSafeAreaViewMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 734530C3D3B6CE3CAB7BE35B0B4E47CE /* FlipperClient.h in Headers */ = {isa = PBXBuildFile; fileRef = FCB7E3B5334ABF28474FCC48E3B1C68D /* FlipperClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 734549C7B414DB29C31FB21FCB7935C6 /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C55B76191027707AA39FB793E942FA5 /* RCTValueAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 734EE339D157B656A1E96A4C5BC1C61C /* ErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = A180CF8E7D7BE31D09455978DA60DC12 /* ErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 736395C3B66B745350C1945DC73FB273 /* BSG_KSCrashReportVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = DD3E08C7595DAB127F78E8014DF858C0 /* BSG_KSCrashReportVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7365BA997DA3D765AA53B4AD5F26AD2F /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C83D83A0D4C1323C708527D106098BC /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7368DAF4F1A6D47816005BCE05065217 /* FFFastImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 043E6DDD7CCF09B200DC3C00E6197153 /* FFFastImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7387B39C43D8E34D13C7D23FA81A0259 /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DADA606B8C057ADEBCB5E9445786FB7 /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 738F991A6889ED4F2B187AB6A55FC7BD /* AsyncSSLSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FB6953130C3692368ABA9E95DDF35CD /* AsyncSSLSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 73908C3EF98FC841104B35F8087E2211 /* AsyncSocketException.h in Headers */ = {isa = PBXBuildFile; fileRef = 3179E362EF619F351025752F94B9DB5B /* AsyncSocketException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7390CA76672DB8642217CD87EB6A70B2 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1969D4A64C9DBF508235F802293B8EBD /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 73AA0CB2005A4CE753036EBC9F4D7C6D /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DB4056F368C6E1AC8C74F2FD94324CB /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 73B13B6183953AE797BC0644C78364EB /* StaticSingletonManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 33B2EEF5CF6FD114264C2B7489C6CBFA /* StaticSingletonManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 73C3675D1DBA2136BA147315FEBC9660 /* FIRInstallationsStoredAuthToken.h in Headers */ = {isa = PBXBuildFile; fileRef = CD0A3443C6A7213D97CFC3BE33030908 /* FIRInstallationsStoredAuthToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 73D3E4A636EEC841CE2917C3C87435DF /* Chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D4E753D377F1A7B0CEEECEF14FBDE54 /* Chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 73F89642269BCCD51F961966E1F0E7CE /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = D4CEDE5C0FE1EFEDF54BD7AF098B1595 /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74249DD63630BDA7E32D4FDF825890AB /* GDTCORAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = F9EF06F5F49DEB53FEDFF233A23B10D5 /* GDTCORAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7445438B7EC58C88763FFE2CEAAD6C85 /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ACA96AF7A40917DC63DBD40FEBBB54B /* RCTConvert+CoreLocation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 736593F49220248663C77052CDA35D96 /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = EF976FDB7A999CA6E88171129823FFF7 /* RCTMultipartStreamReader.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7368DAF4F1A6D47816005BCE05065217 /* FFFastImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 8373F8F5AA7C5023F46D1F4436A71193 /* FFFastImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7372AE251EDE259D667A76E98DDA8952 /* Dirent.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A1451795BAB36BC948A32F0BA98E35F /* Dirent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 73955004694D9FE3FB39014F8184720B /* ThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 78D4A07F409C5EC209DE0046743FB84C /* ThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 73BC7980BBD7CF1F54A7FFAA4521D880 /* FBLPromise+All.h in Headers */ = {isa = PBXBuildFile; fileRef = 44F48B8158CB28A50A3532A4FA69E365 /* FBLPromise+All.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 73CDFB033D0E3825627A6893DE2F4AC6 /* RSocketException.h in Headers */ = {isa = PBXBuildFile; fileRef = 9029E13E354946400DACF29547B6439D /* RSocketException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 73E652BF7E0000DE1560E4173FD963D6 /* BSG_KSCrashDoctor.m in Sources */ = {isa = PBXBuildFile; fileRef = EA26F49E2AADEDB96790941D0189B8D0 /* BSG_KSCrashDoctor.m */; }; + 73F234DE8E462A14D565BD660373F0EB /* IOBufQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BCFB13C2659CB7FE3E33BC3301B57589 /* IOBufQueue.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 73F2DE2DFEC35D02AFB0C1A7674EDBED /* ProducerConsumerQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = A5C6E23D40EB9A3E072F8F115094E957 /* ProducerConsumerQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 73FD7DB1F807452982CA25D94FE3EBFC /* FIRInstallationsAPIService.h in Headers */ = {isa = PBXBuildFile; fileRef = C2C0E90FEA77DD0E5EFF604B618FDA96 /* FIRInstallationsAPIService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 740BDFD795EEEC91E8A49EF49555734B /* FIRInstallationsVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = D4A2BE8CFED384AE4AC4EC33BB298903 /* FIRInstallationsVersion.m */; }; + 7421731FA748A63961375FB27388E154 /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = 2714A8AFC726F79408724707E031F80F /* RCTProfileTrampoline-arm.S */; }; + 74224F0B4C7D6FC974A6EA003FB4CCA1 /* SDImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 473EAED02F9A9B0273273EC3A0DC6C8F /* SDImageCoderHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74283D7AF59E59C2A67C57FD1270C185 /* muxread.c in Sources */ = {isa = PBXBuildFile; fileRef = 8DD7506B4DC024949AB693811564957D /* muxread.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 742F343DC951F6D0943301DED9E57D37 /* GLog.h in Headers */ = {isa = PBXBuildFile; fileRef = E8BFDC44834812D83E93BA1CF7F08FA1 /* GLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7430009CA2DF5FF39941A4DEEB74F68D /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = E4111FAF4E1B43ADB06B9376F8FA80E8 /* RCTEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7438FB3ADC2462E87AF4F062F02A01F0 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C2EDAD5ABAACBC7C7EDE94447778269 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74460AAD747CE1FDC52AF07443FC5AE7 /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A7E94FCC43BD2D48FF40007268678CB /* UMCore-dummy.m */; }; 746320644311D743D6A0355853EF5E40 /* SKTouch.m in Sources */ = {isa = PBXBuildFile; fileRef = D900E79A9D933E573EB8C221244030C1 /* SKTouch.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 7475BC9FCFD4192737C5847C5EB1758C /* GLog.h in Headers */ = {isa = PBXBuildFile; fileRef = E8BFDC44834812D83E93BA1CF7F08FA1 /* GLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 747B6B8513BA09711B3BD6FDCE881C5C /* SDDeviceHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 041B9921682550847342142D5C565844 /* SDDeviceHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 748AC692E82158287891CCD4E3A82E24 /* Launder.h in Headers */ = {isa = PBXBuildFile; fileRef = 48D3CB40A59D83C6E945D88CC2CC0214 /* Launder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 749F432E61E7FCE4991C20E5AC3EB386 /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A40344F67101B3A95E46A054ABE755D /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74BBBEFCFD47108A52F8BD3E9ACF8B70 /* Combine-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A9F8ACCF50BC8F3E29983A656D96F585 /* Combine-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74BBCD8076758367A2E601E093DBEF08 /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = D308492D39E0D7290B25F9D7770673D3 /* RNForceTouchHandler.m */; }; - 74DCC67D0E43B0B3EC30F384184DD57A /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E88B1A9026F546D449585CF54CEB725 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 750878C63987EFD84915F2254DEA9505 /* FIRCoreDiagnosticsConnector.m in Sources */ = {isa = PBXBuildFile; fileRef = 65C39BD507722298D52DB1270A2BFABE /* FIRCoreDiagnosticsConnector.m */; }; - 751B5EED200E288A7565355E731D3E18 /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A73954671D5807ABB421650C558B1C4 /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 751D2C350219EB880A1B9DEE8C51441B /* Base.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 3B16F42AC62B1A9A9AE57DE532764A2F /* Base.lproj */; }; - 752AAE779FCD5AD67F15136FFBCB8129 /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = B00A3D811FE95BAA79458C70701C7D1E /* json.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 753272F211E5238861890513D4620984 /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = 5031A605E3E486316E0E47ABF063A379 /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 753368E1410A40F026E9BD2E7986EB0F /* ThreadName.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E04F05AACD8047089A85B4474584ADE /* ThreadName.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 75551D43EDF1FF46DC5DF99CCECCE23B /* Cursor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AFBC8012C03C0758C3004F0FFCDDE3B /* Cursor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 75590157076D08B6CAF1826DD0E11542 /* SpookyHashV1.h in Headers */ = {isa = PBXBuildFile; fileRef = 61CB4D4ACAB911DE070EDC4C8B5F88DC /* SpookyHashV1.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7562DBD5960219FEADB890BA13D8E2F3 /* AsymmetricMemoryBarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 7536C3E69616C9AB111495D6F460242E /* AsymmetricMemoryBarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7564866503E0050C5379838137156F56 /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 262DC452FD92F441F50D4570FAE4ACEA /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 75737C2B3DC23317C1BE38674C961311 /* ThreadCachedArena.h in Headers */ = {isa = PBXBuildFile; fileRef = E658D0B87F376A26ECCE7D29B51CB804 /* ThreadCachedArena.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7587BC185F667CEA731876235E1F2CE4 /* FlatCombiningPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 62BD993AF8582A2D4517FBE2A6DCCB40 /* FlatCombiningPriorityQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7587F5FF61D3B8D49DD7AC31893E6E70 /* CancellationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F0EE0F7910D4DE8ACCD1C5AA15A07C8 /* CancellationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 759F9A6379A9C117F5A71A8D37028D11 /* SDWebImageIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = 55B433F142C10604DED65C5B3CD6AE2C /* SDWebImageIndicator.m */; }; - 75B7528A26AF6C0CBC84C022FDA9DCE3 /* REAAlwaysNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2434FAD41DFD69B08F8BEC37D4395522 /* REAAlwaysNode.m */; }; - 75DB2A3A90621B424FB725E86A59EC4C /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = A63C3F723B6B51537AEFDFE55BC57EBA /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 75DB6E3782C8B2E9A38AE7A9B64F9C3D /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B8B5DD9592BCEACA9C54DDBB4C954A7 /* RCTUIImageViewAnimated.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 75EE03B3D1563DFCDD13187FE7DB9A38 /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 724D71AA50D9A7B8ED4A377648D7AE68 /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7600C5148A509134158CA7ACC10EE957 /* ThreadedRepeatingFunctionRunner.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BBA1BDA6B1594B64653392F0F7A2436 /* ThreadedRepeatingFunctionRunner.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7610401B8FF393D8D2D1324B067B44D1 /* FIRCLSHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = D232B35AB8CB2A662E1C23302D9213F2 /* FIRCLSHandler.m */; }; - 76127A896D66636D6A7CADFEDF920D84 /* InterProcessLock.h in Headers */ = {isa = PBXBuildFile; fileRef = C3DE00015B04BC59D5769982E8B2F861 /* InterProcessLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7641540275C25F3C40EB8AF1BC2DA128 /* FIRInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B32040CFCC394F3ABA8903C6AD30C71 /* FIRInstallations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 764FE9DE50BEF7F6AF3DDE46F8E72C70 /* RCTTiming.mm in Sources */ = {isa = PBXBuildFile; fileRef = 016373F0570AD0643ECAA1A17E753CA4 /* RCTTiming.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 766C5F78A799B969674FC4D89735B36F /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = FE6F9287AFCD6711FAC3B05939EFED99 /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 766D65440C42BE2CDEAABF1CE4963730 /* RNCAppearanceProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = C7DF67FEF46BB35E5B5C9A562C70691C /* RNCAppearanceProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7675DEAF123920B169E9976FA077F9A3 /* MessageConverters.h in Headers */ = {isa = PBXBuildFile; fileRef = 3381F86F49C6C3DF26634CB5B738BEC1 /* MessageConverters.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 76910EAD2277798C299FF3F3D2813C53 /* F14Policy.h in Headers */ = {isa = PBXBuildFile; fileRef = EAF20ABA35CE7DAC773C403F7BD7C4F4 /* F14Policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 769D876AF550FAF17144EC1E0B3AD06B /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = D804ECB383E4EC6DD4B4382CB05E6D1F /* EXFileSystemLocalFileHandler.m */; }; - 76D6AC866BD78164BA315330985F682C /* GULReachabilityChecker+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E531E7D2B3ED3E5A8881EEFD0CC0A77B /* GULReachabilityChecker+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 76DFE67A360211093104F59FC1DD7225 /* RCTView+SafeAreaCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 88CCE6464D89071E71BE9A8A5D3ECED7 /* RCTView+SafeAreaCompat.m */; }; - 76EDAE2B2C19EEBD786B950168002CF4 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 639BDD55C6A351931E7B5962D40BF504 /* EXWebBrowser.m */; }; - 76EF01EBE0B5A9EFD3CF20905F1051A5 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F292A169FF060ED08AFD61D64F219B80 /* RCTScrollContentViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 77013CE88047BB2A5123EF6C546269AC /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = FEC8FE60ECAE340F1C62F76ABB5097D5 /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77054ABB346D0F3935D5AC4757BC0C1F /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 32049DBA956FAF95AB8A99703E214354 /* SDImageCache.m */; }; - 77088ADE71874C98046D954DA2F058B1 /* da-DK.lproj in Resources */ = {isa = PBXBuildFile; fileRef = F7B36E0655F52B09126B8CB05E74753E /* da-DK.lproj */; }; - 770FE8CB4F754678BF345032AD6AEA72 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 603227E13E228FE45C25D295A158787D /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7710A8D1F03F369498FE7ECF98E40D2B /* Dirent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0BCE31A8D64EFB8D1E1ADDB316355ADA /* Dirent.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 77166B1FDAE5B7F6F8B0A380E30A36BA /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = A19D959C2D30B646978CC853404DA1BA /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7718D2430D0763DA5C1C0508D942E71D /* firebasecore.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 31F5A89B5ABCFC4ABDCC5D2DE0378269 /* firebasecore.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7736EB5FC8539EA2386AFE8EA9FC1458 /* REAAlwaysNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EC13516487926C6336696A51BE2741A /* REAAlwaysNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 775C4E53C6C889C7133DD9F5CBCA3898 /* frame_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 086B1B9630B10C0C7A5C473B6B1D4EDD /* frame_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 77863B47F1CFF045133EABEC12E843C3 /* Flipper-Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BF872E3366FF64D781D6F38C56729C8B /* Flipper-Folly-dummy.m */; }; + 748FDF3139F4EEBF346D3E4511BCE23E /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 02FF1085A4CCD4E09581C17A9D3F00D0 /* RCTMultiplicationAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 7496FA2D60BA5639F033A049DC8D66AC /* GDTCOREventDataObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 38EBC25C4EA7FD49EB95B1FDD35C5B50 /* GDTCOREventDataObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 749D9ED1D5046AA077A8117DCE9060A3 /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 61C5237AA4FF1AE4631BC96A273B9D85 /* SDWebImageTransition.m */; }; + 74BBCD8076758367A2E601E093DBEF08 /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = ADF844E92090E13A94B7FFED33503E01 /* RNForceTouchHandler.m */; }; + 74C122F86DEE82000A0B2FD0234A2597 /* UnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = D701A1CF1CB4D49D5A42D1C4A0CC106E /* UnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74D73E484F36568492DE9CD998056438 /* TypeList.h in Headers */ = {isa = PBXBuildFile; fileRef = D218CD7A1D139E9F1C38C68C1D1BC373 /* TypeList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74EC9FC61381750280381C1CA3FEF94E /* FIRCLSReportManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 33DD3E5B5A4DC8E6EF82F41A5E8D1A7D /* FIRCLSReportManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74FEA037C0B559D5A6993E80EB2B01AF /* AtomicStruct.h in Headers */ = {isa = PBXBuildFile; fileRef = 8907F3F77CF6C50D7C220B4046CFA9A7 /* AtomicStruct.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7527BE9A3C0C5EE41BF46B779B459185 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = ADD183449DEFDDF51E3C7BBCAB364AE6 /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 754427C520B00051F07209896D84E2E3 /* FIRCLSRecordIdentity.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C54CBEF7275D9470822FE0D250A5B09 /* FIRCLSRecordIdentity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7555CBB8C7CE60187519502264C38AFC /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = DD4D85719B708A4778BF1B148B6F1152 /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 755886C6600CA19D2131AC31F915C1F8 /* tree_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 0060E421CEEA15B5BFBDDC917B0CBD7F /* tree_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 758815415A1F6F013FCEBA1E8506A336 /* GlobalThreadPoolList.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C10A6CED735847F162A4E0FA40C2F42D /* GlobalThreadPoolList.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 75AA13A50D482793A956B5C73E50851D /* ThreadCachedInt.h in Headers */ = {isa = PBXBuildFile; fileRef = 82169797FE5B608D75B4F5F79C13280D /* ThreadCachedInt.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 75B7528A26AF6C0CBC84C022FDA9DCE3 /* REAAlwaysNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C9B967E1CE6B4A87E51F75B5187C594A /* REAAlwaysNode.m */; }; + 75B861A4F6C192CA2320A4246AE28CD0 /* Semaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FD8BFB766C4D8652467E620E4061E38 /* Semaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 75FFA5D4DAF4B30AB4670DB7ABCEB7B2 /* ShutdownSocketSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B145BBC0D222D042C25563A552C7B1F1 /* ShutdownSocketSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 75FFF39AF07816160B214CEDC0C83CE9 /* SysMembarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A07399903C688EED824AF5CD4ED6843 /* SysMembarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 76107C17DBE52BD14D380C97394F867A /* SDImageHEICCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B47B609D18EF820F82E8AF062AE571D /* SDImageHEICCoder.m */; }; + 762BE04B82F75E8D3186DED12EEC1A2E /* FBLPromise+All.m in Sources */ = {isa = PBXBuildFile; fileRef = 3951C11FDC3F933B2738237DE4204F58 /* FBLPromise+All.m */; }; + 764780972CE5CD95C1823F362A677743 /* Iterators.h in Headers */ = {isa = PBXBuildFile; fileRef = ED61FC0FD69FCF27EEEA00BC72707CD9 /* Iterators.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 764C99C1046573D77473F83B3732F15B /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 23292AEFC97696E4FD1368554942AD87 /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 764FE9DE50BEF7F6AF3DDE46F8E72C70 /* RCTTiming.mm in Sources */ = {isa = PBXBuildFile; fileRef = 86D860598D8AF40A45A7B59E29840C40 /* RCTTiming.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 765BD0311739F1F0D7FECBE67F69D0A1 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 084464DD1DF0BC6D3E42DE008CC002BA /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 766D65440C42BE2CDEAABF1CE4963730 /* RNCAppearanceProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 04804CCF30D5C8B761937C80FB88841A /* RNCAppearanceProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 76783968E292A3913D292A873924E543 /* NetworkSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = F19F759098215F99E10C42499F69820B /* NetworkSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 769D876AF550FAF17144EC1E0B3AD06B /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 70A8EB919807F827463064A126AD186A /* EXFileSystemLocalFileHandler.m */; }; + 76A2FE9AAF994264132E9FAFB1E9D14D /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 90A795B88B61AAA21793461B45F9B037 /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 76DB1847A3A19D8DB784D90F6148BA56 /* FIRCLSMachException.c in Sources */ = {isa = PBXBuildFile; fileRef = FC7E6596644453D30491DBA091AAF494 /* FIRCLSMachException.c */; }; + 76DFE67A360211093104F59FC1DD7225 /* RCTView+SafeAreaCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = EE1629DBC0F2312E94B2E5DA2A46C3D9 /* RCTView+SafeAreaCompat.m */; }; + 76EB03CDF432ECDB51026A46AEF9B9F5 /* HardwareConcurrency.h in Headers */ = {isa = PBXBuildFile; fileRef = 92A76AE2B586872B9AE72F08122BB086 /* HardwareConcurrency.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 76EDAE2B2C19EEBD786B950168002CF4 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = DD639A12C46710EA1B2D9A2641AF3122 /* EXWebBrowser.m */; }; + 770623923B88E39E0AC5D3D95AF462A9 /* Framer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 50CAB6141E979DA768868D1CC0D4777B /* Framer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 7736EB5FC8539EA2386AFE8EA9FC1458 /* REAAlwaysNode.h in Headers */ = {isa = PBXBuildFile; fileRef = ED625D5A21C9F1B61CFF7642D677FE07 /* REAAlwaysNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77379788FAC491A37C432F1932F29BA5 /* DiscriminatedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EA1683C021C4EC5FEE026813886B9B8 /* DiscriminatedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 773B10943F29DDC184B12F4C754EC61D /* MemoryFile_OSX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0211423EA326AFDF60ED4C1C6496C396 /* MemoryFile_OSX.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; }; + 7758183F47357814C59B378BD1E09173 /* BSG_KSCrashSentry_CPPException.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A8FD8A2B5ADA3C0135616C5DB527628 /* BSG_KSCrashSentry_CPPException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7764F4863A8FA97FD68D7978A7679691 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 2D581ED99932190F20B005D628B8B0D3 /* en.lproj */; }; 77931165EF4C3D5E345752A28601F000 /* SKViewDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = C58BA3EBB523D3E170AA5B68803E20C3 /* SKViewDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 77B2F5AECF8435D65A3D6955A34017BF /* GTest.h in Headers */ = {isa = PBXBuildFile; fileRef = 442ECB432E7884203A62F2A6522EF418 /* GTest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77C75675FA2DCD64142B414546899501 /* RNFetchBlobRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = AD0F4EAC69CF470383D7C418BBB97AA0 /* RNFetchBlobRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77CE6AEC9E65B50830AF7D27AEA87810 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 557FB656903AB1CF7A53942FE6D2C153 /* Instance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 77D38C5367727C49BA9A54272490F6E1 /* SDWebImageOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D95CD156892E8171703B58D48E2D707 /* SDWebImageOperation.m */; }; - 77E2C3C4E5FE4109E12D7DAFAF2201F0 /* RCTRedBoxSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = CCF7C18A0DF37BFD395D66412992153B /* RCTRedBoxSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78060729212CA5B4BD59B6C1FE01ADE1 /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 33C66815DB0B429302AFF0A687C98F4E /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 780BB75E4FD64C00E15B0D257CFD9BA1 /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 1525B451ACD76144D005B1730EFC66B9 /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 780C81B5BEBF13C3B163DF4CC32A393E /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 14CC7AAC6BA8221BD1E3E4B79172FC78 /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78173703911D2FCBBDCFC929AAD4402C /* NetworkSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = AC2EEB1C5D2349E639546215C18B912F /* NetworkSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 781DC4400DA3FBA482A8B9EF7A9AE133 /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = CCFEC6EEED220D1BD667FF0839451C3E /* Config.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7829B7D522B00497BD5269026C6654EB /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = F77B5FF434ABB196616C9FDD68A45DBA /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 784E2AAB385BB18D2B5B9408AAAC5BF2 /* FBLPromise+Wrap.h in Headers */ = {isa = PBXBuildFile; fileRef = 89E52F7FC20434097820D21A19F7A961 /* FBLPromise+Wrap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 785267EEB563FC2CCFF860B1FE70AD5D /* FIRInstallations.m in Sources */ = {isa = PBXBuildFile; fileRef = 808157E8035BB54AD67EED203B4A8AD8 /* FIRInstallations.m */; }; - 7857D64039FDA8F0E1D9C4E65F219C40 /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = 32E0CDBDAB1342AEAF6E279FA4F2B620 /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 787F334AFAE2E52B7A0BFEF00D87522A /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = 824CAF3A35BC6BD51DB86FA0F25AF6CE /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 78813B3AD82F3DC8D6C9F87FB1DED6AB /* FIRCLSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CDE6771380C768E14FD930E19FBAEFB /* FIRCLSLogger.m */; }; - 78A494F42E6BE9DD4C11FFC6BEB36A59 /* RCTLogBoxView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6ADB46F0379CAA95E7C8402BA3F0BD1E /* RCTLogBoxView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 78A9CEE905A4944E912D251B1E3BA84B /* PasswordInFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 274B19FA8A792CB235E69E5DD624093F /* PasswordInFile.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 78B3DB888CB1E7F1298E088AF5DCDE4B /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D1EEACADE83839614558A6E592233BC /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78BA5D55A9B732171F2F7DF3BB395E69 /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = A7A9522E1E7B0B0C275E740A2408C915 /* RCTBridge.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 78D508316626340383C25F61202705BD /* Hazptr.h in Headers */ = {isa = PBXBuildFile; fileRef = A3E40312392D7D79909DD9D28107B2D5 /* Hazptr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78D73F24F8EF6008D5EF738506170C02 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 98A731332702597251BBD92A7E2EE9E7 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78D75497D8A4D1E7B532209B05BA4E8E /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = A05C8730DB538D2EC8A18C6FC9AA4F71 /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78E9260DC3A4E506E03CB1B1424F6541 /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CEF157F7B039B08A56ECFFA6E9E220F /* React-RCTVibration-dummy.m */; }; - 78FA81830F7402AF94D35D74048EBE2B /* VirtualEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = F40F4D13C064134A3B808F152E583CC3 /* VirtualEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 790153CA2367158E503E02BBE7CD3A16 /* SingleWriterFixedHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 18C569751F640461AACE7DB4F9B16D40 /* SingleWriterFixedHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 791D9E7134234B71A55F950336311FE4 /* BSG_KSCrashReportFields.h in Headers */ = {isa = PBXBuildFile; fileRef = F138F0A62BD7A37837818CF8A8B3F102 /* BSG_KSCrashReportFields.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 791F6B2497C03747522DD2742315E28C /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C01026E1D77A91B3A8924615E1A998F /* Yoga-dummy.m */; }; - 7926FCBDE88888670900800071EF2D96 /* cpu.c in Sources */ = {isa = PBXBuildFile; fileRef = 54D5F480D3D001B12F3F9B7A708902AB /* cpu.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 793EB1804ADE4C8DFE76868A630594A6 /* UMPermissionsInterface-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 909811E53E8D44B7E9169FA59C7C94E2 /* UMPermissionsInterface-dummy.m */; }; - 795739149A59029B97F12365B5431537 /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 1D1B0ACE34D52490D575C7CB8F8857E3 /* fr.lproj */; }; - 796A80E006C73E9FA6F69789A5D0E8D9 /* ProxyLockable.h in Headers */ = {isa = PBXBuildFile; fileRef = A7E4D3C5DD7542CA12F52F8F049EA1A4 /* ProxyLockable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7970032B2380EB6A8628C5F17E6886AB /* RequestResponseThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F3B13C8319674F7011E2EC4ECF09EA6 /* RequestResponseThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 77A67E4E97A48D847F86420983FAC694 /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4E73EEF74DB33CC28663FD33E8340D37 /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 77AFB32048D3F0BF36FA708D486F5AC2 /* SDImageTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 670D865981D234F25D9D09BEEA071BAF /* SDImageTransformer.m */; }; + 77BA0BE783A875FAD30888155C7D8045 /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = A2284343BA5188575777B171B3DF19A5 /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77C35194EA7A1C61CAE18FB5B083818F /* AtomicNotification-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E37DC15B8F6DE03E03EB0C7D0597E83 /* AtomicNotification-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77C75675FA2DCD64142B414546899501 /* RNFetchBlobRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = D73244402DD95F9ACCC241FA741963AD /* RNFetchBlobRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77D0A7B7F096A7B52315BB33327E9432 /* FramedReader.h in Headers */ = {isa = PBXBuildFile; fileRef = F479CFB21AB01D2A48131512847D204F /* FramedReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77FB0A04BCF38560BCF66548826A35A0 /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B45635ECCFEB9E3F7E1FB505F12D162 /* RCTInputAccessoryShadowView.m */; }; + 77FC76296E4C94AF29B95282D0CEB5BD /* FIRInstallationsAuthTokenResult.h in Headers */ = {isa = PBXBuildFile; fileRef = D492EF8863AEA098B6A3F3255B3F8CB9 /* FIRInstallationsAuthTokenResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7802283CA511FAB7381AF5F5130ABBB9 /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5D7BE327B326B95C648585A7BE370A3A /* RCTNativeModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 780C81B5BEBF13C3B163DF4CC32A393E /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = B36D2A2E934218455F4CFB5C60922B9A /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 781597CBB7FB055B8047F8F6328564E9 /* SocketFastOpen.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CCF2A4D4486F1371EF28C581C24CF65 /* SocketFastOpen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78199885E36C4A211D13CE556CC88F3A /* FIRCLSFABHost.h in Headers */ = {isa = PBXBuildFile; fileRef = D6367FCCF442159AB5CD62FC726DC2DA /* FIRCLSFABHost.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 782AE9703673D9E7B6373962D83D21D5 /* TimeoutQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 51C259A9824478DE5643E9C5F2A26E91 /* TimeoutQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 782C8658CE0707085AD6F1BD666AC343 /* Overload.h in Headers */ = {isa = PBXBuildFile; fileRef = A6EFB7B6FFED346EE8755ECD26CD7F23 /* Overload.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78405647A6A7F00C7D6F2517B828F704 /* FBLPromise+Retry.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C3AE8AB82104DA1D57947D5F350DF05 /* FBLPromise+Retry.m */; }; + 7852ECB633DB5C7D5A1B5D95F81FA77B /* SysMman.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E72DF4E8DF7E1FAE2347EB412774F23C /* SysMman.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 786EAC74EB45E325C2F7139A5BFB2D88 /* FIRInstallationsIIDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = CD72FF4935D9AD07EEF34CDEC0AFC91F /* FIRInstallationsIIDStore.m */; }; + 78899AEE1FE20941C866289A09E406AB /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = E2631F974453177DD607E7B3C7AFD9A2 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78947210A83984AF9CA92D5382835733 /* FirebaseInstallations-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C56282F270075C6B28A3525902415FFD /* FirebaseInstallations-dummy.m */; }; + 7896A8FE21EE94860B0E96AAC9B61487 /* EDFThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 58FA23D37D8D8DF8F7AEEF92C9A7F627 /* EDFThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 789AF8DAA29E045F7DAEC605CFE51B6A /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DAFAD979CBC200B5DB75C39E4AE29EED /* RCTPropsAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 78A494F42E6BE9DD4C11FFC6BEB36A59 /* RCTLogBoxView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2ED748BD35A98F47D36456871617E751 /* RCTLogBoxView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 78A7C63DDB2CEB5F4DD9E510CF6AB585 /* webpi_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E763E54264B6EE3E48C2E8F9CC09D76 /* webpi_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78D75497D8A4D1E7B532209B05BA4E8E /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 478A05532884A912CEC3CE2A3FBFBDAB /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78DD24A22EAEE029FC0EF5954F72FF8B /* QuotientMultiSet-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F8A79B87F04F432DCEF4AB0A2C2E513F /* QuotientMultiSet-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78E7366A8362328F55824C86CB7F021E /* AtomicRef.h in Headers */ = {isa = PBXBuildFile; fileRef = 486C74AA4878D5F7A4C090DB04C9CE3B /* AtomicRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78EC08F36BDA5D40A3686EAF9CD37F3D /* dynamic-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = DC04B7B67B78CB967E161CCB71C613AE /* dynamic-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 790C1CBCF10E10C920AC90949460AA22 /* NotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = AD590E4013E1628FF06BDECB4388B4EA /* NotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 791B49A6260449B26C147F7ECD101762 /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 909FE8760C800877AB48CD3590A9B3E6 /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 79314B31C855F5FE78CE981BF7A42755 /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 13B7AA56ECC8D13805741C6ACCC28520 /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7941AC9AFC2BDE8C9F65E4C1633F1AD8 /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 50E9B9774D4A3DD88A0582AB9E279476 /* EventHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 79448E08B4EC193283F9709AC0475F49 /* BSG_KSCrashSentry_MachException.c in Sources */ = {isa = PBXBuildFile; fileRef = E4B494359C9B23346165C652A401B302 /* BSG_KSCrashSentry_MachException.c */; }; + 79692A32EA834AB1A73C7CB1FCF0804F /* Synchronized.h in Headers */ = {isa = PBXBuildFile; fileRef = B37CF269BCAE8B7D2A9F579D77ED442F /* Synchronized.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 797454970ABFC8DB75DEA80C02AA629B /* Function.h in Headers */ = {isa = PBXBuildFile; fileRef = C2DA9F23FE8526DB70B1265FB9EDB63B /* Function.h */; settings = {ATTRIBUTES = (Project, ); }; }; 797B776C5B3EB4F16684EEEA7215BBF7 /* FlipperKitNetworkPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8ABA4E5F665B0B8B414DBC00C6F5F45A /* FlipperKitNetworkPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 798154F7AFD7009730AC6BE6DFFF9A62 /* StaticSingletonManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E553F01BE30FCC53EB6EE5B3FA54B6B5 /* StaticSingletonManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 798415BCA442EB1AE81904D6DD7979F8 /* changelist-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3307140B2150CE64DA8836A94A018B22 /* changelist-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7988115843704D8FBCCF8A3F53AF1318 /* SDImageHEICCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B47B609D18EF820F82E8AF062AE571D /* SDImageHEICCoder.m */; }; - 79881A53808E6DB04763C0580434C103 /* HazptrObj.h in Headers */ = {isa = PBXBuildFile; fileRef = EFC449A78C30152FAB91048DC5A53E0E /* HazptrObj.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 798841FEA9F8999A270D12E035552955 /* SDImageGraphics.h in Headers */ = {isa = PBXBuildFile; fileRef = B55ED6D43E31453B520A2C98A7BF77CC /* SDImageGraphics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 79A4799EAA0DB55203FB7960754CFC7E /* RCTAlertController.h in Headers */ = {isa = PBXBuildFile; fileRef = 10B3B2EC3A593F723837AB6318CA9779 /* RCTAlertController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7981C7D4547EC52A33E929A57747F9E0 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EFE75415A489ABB03321806F54AB213 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 79AA16D3A14B3FD53117A93B8A0EB0C1 /* SKObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 40D77212AD7D72BB9EB317A8F71F76AC /* SKObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 79ACDDF1B6A14331E2472A82459AB2A1 /* BSGOutOfMemoryWatchdog.h in Headers */ = {isa = PBXBuildFile; fileRef = 050B7C53220A4001AA3979B6682F4D9C /* BSGOutOfMemoryWatchdog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 79D4549A0FB689908FFAF9BC65FF0D72 /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 16354A3A2E4DC170EAD17BDB9E78058C /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A117409B4D9D5F37FA5557FA84E1448 /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = F7C3AFBD9437924674CF0B2832C89AD1 /* EXFileSystemAssetLibraryHandler.m */; }; - 7A1875E88E7ECD93F7C72FADA6A7D78A /* ThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A56B007166F99AFBC7ED5B55A6B28B0 /* ThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A4A86A72686F948152AA016947CDCB5 /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 3AF1EDF54E00844F994A82D1B8E59CA5 /* RCTTouchHandler.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7A5BDD3BBE43A139E4EA1AB988EB1BBB /* RNBootSplash.h in Headers */ = {isa = PBXBuildFile; fileRef = C251FAFE2013DD0DF9A5B6B62E3B2C30 /* RNBootSplash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A6BD696A5C14B9CEA6F7882E30FA1F9 /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = A5DCFDB86CD8D180B15DDB0B01F95122 /* RCTUITextView.m */; }; - 7A6E49F0888AF5707DA748268651BF42 /* SDImageCachesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 523701F2861A9AF389FC2C6E43D86D49 /* SDImageCachesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A97A809BDF6C1F77E0A32612B59958A /* upsampling_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 469009AF4E41FD57592E38B8933095BE /* upsampling_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 7A9B8BBC0A939B0521FAF3170F08B80B /* FIRCLSProfiling.c in Sources */ = {isa = PBXBuildFile; fileRef = A86457AA05C659AA93937FFB3628D5CC /* FIRCLSProfiling.c */; }; - 7AA790229FB275A0F510573E9170E47E /* GULMutableDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B66C0BC893BAE6AF6FA76CBE2469AA8 /* GULMutableDictionary.m */; }; - 7AB9D1AA66DE0E7EF4B256076B70E5E2 /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BC49A12A1FFA6C6DBE2E137733C3CDD /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79B1C578A132B8F64BAF787C2C32C973 /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = D7356C5A625D90CA214661C8C6D6F794 /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79BD2B37C24FCEA4D340749EB6DBA603 /* FBLPromise+Testing.m in Sources */ = {isa = PBXBuildFile; fileRef = 80633C5A8B082AA86AFAECD105185D55 /* FBLPromise+Testing.m */; }; + 79C100BDA09644B75240324EC18ECF02 /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9973427BC849E103A860FA21364BE7BB /* React-RCTText-dummy.m */; }; + 79DD0BAADE65E8C839FF8CEA48FD77AB /* EventBaseThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6D716AC570A14D99A2182905FE68EC50 /* EventBaseThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 79E9F5A233FE519BCD4C17C56B7CB560 /* ScheduledSubscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 55768652A0C6C1024B76E44458316F0D /* ScheduledSubscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 7A0933F0E3D652CF12F1731560BD8207 /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = F317354C786766822DD67A7E191EA343 /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7A117409B4D9D5F37FA5557FA84E1448 /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DA85919DC6C929D42B9C85978020E39 /* EXFileSystemAssetLibraryHandler.m */; }; + 7A453093A32DF8BF58019348FB62B3C5 /* FIRCLSReportUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 69D3B6CCE8A8969EE3C7CAFE9900BFCE /* FIRCLSReportUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7A4B12E8B954775145887FBAA5047500 /* ScheduledSingleSubscription.h in Headers */ = {isa = PBXBuildFile; fileRef = 55DE32077AF24CFA4B8C6153B81CE367 /* ScheduledSingleSubscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7A5BDD3BBE43A139E4EA1AB988EB1BBB /* RNBootSplash.h in Headers */ = {isa = PBXBuildFile; fileRef = E8407F7D051C127800BA923758D2BCDF /* RNBootSplash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7A75F9FFE1C65984AA22CBBC6B10AA0D /* Observer.h in Headers */ = {isa = PBXBuildFile; fileRef = 23EB914976C05BD72A2209E4A5D7B2D3 /* Observer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7A761194468A5C4508DF4A4380B0F5EF /* RCTDisplayWeakRefreshable.h in Headers */ = {isa = PBXBuildFile; fileRef = D78EEF985308C79B8FBBEB68CCDDFABD /* RCTDisplayWeakRefreshable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AA21B533D5798C73B2EEACC345DA1A3 /* BSG_KSCrashSentry_NSException.m in Sources */ = {isa = PBXBuildFile; fileRef = EA4C94D30D9F5FC1CCCEB7C2FFEA5CEF /* BSG_KSCrashSentry_NSException.m */; }; + 7ABD5D017599151524C29FE32BB27F57 /* RemoteObjectsTable.h in Headers */ = {isa = PBXBuildFile; fileRef = 72631910F86F3EE0DD864035E0C8BB24 /* RemoteObjectsTable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AC001C3E4B80BCF42D9B631D7DADABC /* ParkingLot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA73FDEB663FBC04237C1E36C9FAB412 /* ParkingLot.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7AC267FD6E65A190C5750F40D88B6FD9 /* enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = CC9EC9A93BF2708C130F9C64C754CAA6 /* enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 7AC739868CD617F6BDB0222B3E728167 /* FlipperStep.h in Headers */ = {isa = PBXBuildFile; fileRef = 819501D9827962ADC0B59DDBC46D6313 /* FlipperStep.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7AC9A3D02A1E86F377BEFDBE95DC132B /* FBVector.h in Headers */ = {isa = PBXBuildFile; fileRef = 73E2107DD4CEDAC8631E3F8D4AC29C87 /* FBVector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7ACD71EB14DA9A85D8AFD86F946BC1A6 /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = A170A8E7C8F80324CE523D47AD3BAE7D /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7AE35382E3DD00CC922717F76964F7C4 /* FIRCLSByteUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F648289041B3DCBC9D738576A3D9B2A /* FIRCLSByteUtility.m */; }; - 7AEAFEADBF8BD0D60FD600DC11B8C70F /* MPMCPipelineDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C5800E04BD2368D3CB11E16D4EF1829 /* MPMCPipelineDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7AFDE03A6B9F781CB26EFAF62876158C /* NSImage+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = D5E8E5688B76AA91CD7061A0CF7F37A9 /* NSImage+Compatibility.m */; }; - 7AFE6099E59B8F4F449DF3ADA1EDDF20 /* BugsnagBreadcrumb.m in Sources */ = {isa = PBXBuildFile; fileRef = E1E25A8A3B994036C24CE93E17563EF3 /* BugsnagBreadcrumb.m */; }; - 7B0F91FDE964C491ED9EC59415A772B6 /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BC67473A06331BDC8686DC7ECFC9729 /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B2173FEEB8E653F8777509B00B4DC03 /* Request.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 000558890AD12FA455201ABBBD9084C3 /* Request.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7B2531366A546B86F71C91DD5F523677 /* EXResumablesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B08EDAFE30DCC1ACD8476AF6BAA6AA4A /* EXResumablesManager.m */; }; - 7B83DB364AFFBE0465532E5AD09A50CE /* StaticSingletonManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 09F08A801E02AEB6C1E8F95750DFC75C /* StaticSingletonManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B8CB4EE825252177DB35713E569A4CA /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E4BE2ADD23760C1229060FC4383D9BFE /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7BAF94A22126FD75E9E54E20A112566E /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = FF006A0A412AA1854D689DD897F38F09 /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7BB43190E8130CE506658E17F57220B8 /* signal.c in Sources */ = {isa = PBXBuildFile; fileRef = 19778043EF9C8D5381A4CDCD7EABD478 /* signal.c */; }; - 7BE243874B7D051DBDD92E7803F11E29 /* IOThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5D16A061AC19EBE3F2A997C614F5904 /* IOThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 7BF1A3B53458436E5D022086BD1F3C31 /* RCTJSInvokerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 25070A437821F373BFD985C4F1F101FC /* RCTJSInvokerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C155456471A8D9F4EA9099467F8FACE /* GULNSData+zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = AE886A948A2579DB6EF611D087C1C182 /* GULNSData+zlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C3AD62F632F18AE5B2E676F5A2E9949 /* StreamResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C041368CA726A7C4BA1CF1337AC041DB /* StreamResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 7ADEA04EA038281DECB855D4D14A7D88 /* HHWheelTimer-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = CC14741F8FDEC687198BDBA374E6780E /* HHWheelTimer-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AE9FA7CFFB3766DB0BD22641EE81FCD /* BugsnagConfiguration+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 8658DD24119E5EAE6FFA7E2582255C55 /* BugsnagConfiguration+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B0539B2F5676BAC20F7F72B52A3DB81 /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 40C245091BB61392A5C0FEFAF15BF406 /* RCTTouchHandler.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7B103045F2399439212CA76D5FC9F459 /* Libgen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 31D20C85F5829B2CD3A10D7F0581B896 /* Libgen.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 7B2531366A546B86F71C91DD5F523677 /* EXResumablesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 23EEA2A9DD8C96756CD217E2C8C65B28 /* EXResumablesManager.m */; }; + 7B336AF6BCA40B15F88D91B65EE144A6 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = A67B831BF4C65D29F2045462D7945319 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B33FB22F1E51564603732E2C0E5CD31 /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = 2A8F95830D3F54E598653D2A822A45C8 /* RCTProfileTrampoline-i386.S */; }; + 7B35ED9FDB607FF2BAC61958778E8D25 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 36565EF649A1D1CC9CC7CB756E6298A9 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B36A14A4EFCA658EDF10D5D5239D94F /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BA3E5792BCC8BDA3697E65514DAA0E4 /* RCTDivisionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 7B490EEED30BC49A2E89D5D491F10A54 /* RSocketTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 997BBF1F370A66F6EAD822AE43E3E6F0 /* RSocketTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B5E02FC04FA92D42BE4FB2F809E4FC5 /* lossless_enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 7C8E82EC8AAEA9B4CE0D2B7BCD31E075 /* lossless_enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 7B8CB4EE825252177DB35713E569A4CA /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D0B9B3241560309851012EDF6E8A3626 /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7BA075AFCDB27316C30CDA198DA823C3 /* ConcurrentHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = B490FDB36545F4DD07EA59B9D2ABF055 /* ConcurrentHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7BAEF8B38FF4642539597FAC97925D62 /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A7DC779EC9F79607D650D429C2CFB5E /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7BAF94A22126FD75E9E54E20A112566E /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5EB7201D728C7DB3F37A71DB6AF6C98 /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7BC05BE6D3004430297C9058BCCF689C /* openssl_md5_one.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3A0ABE66A02A244D2459E1093B2CB640 /* openssl_md5_one.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + 7BCECB7A8F72787B3FB4FE1460578329 /* RCTUtilsUIOverride.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B21BCAB8E12847B8E6F62ADC277BB13 /* RCTUtilsUIOverride.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7BD251B6597B6A64B8B3E0E06A70216E /* SocketOptionMap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0D4D83CF4BCF22D89386EBB6F4EED2E2 /* SocketOptionMap.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 7BE06A02899C4D21EE4B2751BFF8C3A2 /* StaticTracepoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A21DCEF09547DEB64B4744FAAD03666 /* StaticTracepoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7BE5B56712FD018392367AC45E7CC119 /* UTF8String.h in Headers */ = {isa = PBXBuildFile; fileRef = B38BE1DD0BFD5C7BECE27605B2D9D362 /* UTF8String.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7BEAD01E849AC4D7C9506CAB5D7F03E1 /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6588EE64A2769BC2FE5EC0F6D78CD8E4 /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7BF8D79B86FDBA7350E8460C878E2DA4 /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5AB44E082B868273CCA855943AA3210 /* jsilib-posix.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7C1E5969B5C22F5FA5DF8BDF5EA60FDC /* ManualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = BB96B5172CA1FDCD97A37E07C1F50BC1 /* ManualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7C2820D4FF4C112DC90A8B3D7B84274D /* CString.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D2390B0DF63D8AA73976078BCD5CB07 /* CString.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7C3EF3CF2AD941A1B0EAF2894E674DA8 /* SKIOSNetworkAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 0004622AC40407B1ADAD515879B469CB /* SKIOSNetworkAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C5220FBE538D63B915E3B021AAA4F72 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 221C3F9BE44D57ECB192722A4047F545 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C7CBE2E1F60A3B5611708962EEB2EB7 /* RCTLocalAssetImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = FA01927C0F34FDE81C05B77D6AB327B8 /* RCTLocalAssetImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 7C81BC8A3A0BC244F1D1F71350F2C2E1 /* FIRCLSException.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0AE8790703D5118D50FCE795027DAE86 /* FIRCLSException.mm */; }; - 7C8D9B86E6A7D7EF1DA3A6A36BB4ADF4 /* AsyncPipe.h in Headers */ = {isa = PBXBuildFile; fileRef = F8FD5A216F32168394C74F3137AD387D /* AsyncPipe.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CC680E4F051DE8B4455E6940B26347B /* BSG_KSCrashSentry_Signal.c in Sources */ = {isa = PBXBuildFile; fileRef = D1B825B8C351A9CC5F57DBA490C5F7D3 /* BSG_KSCrashSentry_Signal.c */; }; - 7CCEE6B00590955B32710BCFEEBE6ED2 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 221D46BED18BA4A887C727B565B3F9B3 /* RCTSurfaceView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7CE5D69CAC0FB24EAAECD91BFFEDD891 /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B7ABF9B133936B32C5EF56502D08238 /* F14Table.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 7D1FCFBFB37D7CC40C03E98E6CC1B0F2 /* Overload.h in Headers */ = {isa = PBXBuildFile; fileRef = A6EFB7B6FFED346EE8755ECD26CD7F23 /* Overload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D4E8AE7A62A6DD917E1E814C7EDA130 /* BSG_KSDynamicLinker.c in Sources */ = {isa = PBXBuildFile; fileRef = BEF046C7A436920433923355E43D95C5 /* BSG_KSDynamicLinker.c */; }; - 7D545BE5A0AD36CCCBEB4391CED71E61 /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = AA7554F551F94D652833E1DD7ED1DDF0 /* RCTTextSelection.m */; }; - 7D6D396798D14E6FF5E43F253556E233 /* NativeModulePerfLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 70B51929E900D9E9A5F019AC15F42EFB /* NativeModulePerfLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D87ADC12BFC6A713541E78E60C1DE60 /* buffer.c in Sources */ = {isa = PBXBuildFile; fileRef = 5EF8A94048C6DB061F18D39393DD8E0C /* buffer.c */; }; - 7D94D7FB203B2287C1355BD5F5F1F784 /* ARTGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E20DE55FBDC168CFCAC3481AAE0AE96 /* ARTGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DA19383B8EBE56C76460343CCC78B38 /* EventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 466E3D289B88C4EDE7CC37D8C9EEC208 /* EventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DA9B28F9CBBDF6527AA0DCBFFF82F06 /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE5F7D2AF7F9C46CCC468E54E7E60FC9 /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 7DAC8D1C648535F28188CF1A488A058E /* BSG_KSMach_x86_32.c in Sources */ = {isa = PBXBuildFile; fileRef = 8BCB4BDAF4E9D1B93951E3D14688C2B8 /* BSG_KSMach_x86_32.c */; }; - 7DB493CFD79BD3C400D7F2CE9EC9B7EB /* FIRInstallationsItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EF4E581C7EAB7D5EBD1377F06CA0214 /* FIRInstallationsItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DD0D9E4067B95BF08990B610E041309 /* SequencedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 80B008CA424CDE6C865EAD3147A8E58C /* SequencedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DD0FF0859AE4D9FC810F1A528EE4755 /* UMPermissionsMethodsDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 2ECF1E41A70CE52DB2CC8C252468307E /* UMPermissionsMethodsDelegate.m */; }; - 7DF40B31F30654207206A4B2DDDF9C68 /* AsyncSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = F9443F644AE9D404E5CF0E1FF4F41249 /* AsyncSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DF51CE7A99B385750B54EA8A2C87301 /* SaturatingSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = E315D7B79159981A3EBB25FF9ED5CAE2 /* SaturatingSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E0EE9D9A71F9556D314AB76548ECF12 /* SlowFingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = A8A50CF4DE81C41A118A56BE7BDB341C /* SlowFingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E3A77F5D64516A17CFF254993B32F7C /* GDTCORPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9230371FE9E5F6AED627EE5E80815F4A /* GDTCORPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E42817EDBFD97F750D208355E50D909 /* FIRCLSReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BEBFA68C05885A1CC3877F22208E6D8 /* FIRCLSReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E4303CA5024E44BD81ED6519F0227DA /* SDInternalMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = F711B71C9191D701EF0B6D739CAF2971 /* SDInternalMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E530F9E021105FE722334AD86C04BC4 /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C9DCC228B654BC693B430822A72F794 /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E5AD39E39DA78EE875C80F028897B9D /* InitThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C2B6BD46CD0D6B84F5DF2CAE06AA6F6 /* InitThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E78A603AFDCC9C1C2271024BA40B302 /* MMBuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 118760F70DE10C3E528868D8AFF69793 /* MMBuffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E7FFA60C1D90B81838454BD4D483BB7 /* StorageIndexer.h in Headers */ = {isa = PBXBuildFile; fileRef = 07C03B5292A7A019BC7C7875FE56D2B3 /* StorageIndexer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E84968C7C46175D88A80A9593ECB837 /* FIRCLSDwarfUnwind.h in Headers */ = {isa = PBXBuildFile; fileRef = ED6C9E7E40237984988F15B2078AE5EE /* FIRCLSDwarfUnwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E8A4F1FE98FC318A0B70DA658FE5BC2 /* ManualTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 08FA31C50853621E0FBE3852C4C240DC /* ManualTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E97C5F8F526ABED9B6C515CF3A2E142 /* EXSessionTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 70CD5ADC760D553E10D65A3B9E09C39C /* EXSessionTaskDelegate.m */; }; - 7EBB911D4EE0D0FF9FB8D051E0602483 /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = 190CE181BA87CD4A25DAAF844AD78673 /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7ECA478038C904DAFA0A2BE69499B9DB /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = 20FB1C46B3A480564D18373330A4363E /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 7ED35590924A69BD3F4743E7CA357D04 /* FBLPromise+Async.m in Sources */ = {isa = PBXBuildFile; fileRef = 7552AC22B045F411D709DEF542496909 /* FBLPromise+Async.m */; }; - 7ED57413B276590C70841215D874F2A1 /* StringKeyedUnorderedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = ECDC3BE6EAC7A6FAD7234E57E15E0496 /* StringKeyedUnorderedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7ED84AB73DA9EA8E20459F68E109836E /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A07089A6630D56DCCD6F6C37D3AA5B9 /* React-jsiexecutor-dummy.m */; }; - 7EFEF14B66CD2196875F302DC27DCAA0 /* GULAppDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = F4DE545BA22392C8F815EBCF42429004 /* GULAppDelegateSwizzler.m */; }; - 7F121A3FBE2FAD2A9EE3897B17D0661E /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C237B5740E47D383CF27A8B511D0898 /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F1CF1C4A667973FC8031E01BCE1A7B1 /* RCTJSIExecutorRuntimeInstaller.mm in Sources */ = {isa = PBXBuildFile; fileRef = BA39ED03ED9990D0E5CA13D415FB2A34 /* RCTJSIExecutorRuntimeInstaller.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7F2747A1AA286CD4C0EC595A8DB18336 /* Atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = 38BBE2CA9186650AFBC919E763904BBD /* Atomic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F51D2F3CAAC13D9543ACF118B7E84E3 /* SysTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = F42986ECFFA483050295D48982F1A735 /* SysTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F61781B2F2A2BCBB2B08DA253F4D8A5 /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 38E4ABBA0ABBBDBB24FA3BD3D40CA755 /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F7F98CF1D338BE8D43345CAF1F00BBA /* FIRCLSMultipartMimeStreamEncoder.m in Sources */ = {isa = PBXBuildFile; fileRef = CBD2370D02EB3B8FBD40A033B277308D /* FIRCLSMultipartMimeStreamEncoder.m */; }; - 7FA50B6EBF221F4B5A2D20272E20AC7D /* tree_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 0060E421CEEA15B5BFBDDC917B0CBD7F /* tree_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 7FB36B9C06A078703E8F36CDC501FE40 /* GULOriginalIMPConvenienceMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = A7F777A235BC6BD096853867E94D2332 /* GULOriginalIMPConvenienceMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7FB3CBE5BFDA11CB860B075A35EE3BFE /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = 91040B04501301457F40B23C9888A8B1 /* RNSScreenStack.m */; }; - 7FB772A2445883A7FDBEECAAF7B6092E /* UMErrorCodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 277268E787A2182104B4413BDA8B6563 /* UMErrorCodes.m */; }; - 7FB9D6751FF39DA25B51C378653BD0DB /* StreamFragmentAccumulator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8412BB89120242D71285FD959BAB4CE2 /* StreamFragmentAccumulator.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 7FBEA7A41800ACC727CBBA6DD52681CA /* FormatTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = E26ADF16295C527BD74FD846E1F63094 /* FormatTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7FC51116344C722A1C50594384507801 /* openssl_aesv8-armx.S in Sources */ = {isa = PBXBuildFile; fileRef = BCE8B2C58C7A5FFE918225BF23BF842E /* openssl_aesv8-armx.S */; }; - 7FD9E1BFD1B299CD76F7E32BC242E22D /* CodedInputData_OSX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD30F9D9684EBC52D35FC0E36B792B13 /* CodedInputData_OSX.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - 7FDED0400C792E4FF7AECC8F26A6F3B9 /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AF174DE0B9C8BBF130307FE01ABE32F /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7FE1865B2B4836D63A18787AB6FBD20A /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = C419D7878BB410D952937F7491383336 /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7FE31000B219334BEBF5BE7ADF1BA386 /* Unistd.h in Headers */ = {isa = PBXBuildFile; fileRef = 49ADD9E9092F2EBE6E2D3FCF1CEF87FB /* Unistd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7FEAA9546ABF03904AAF6FF37C703F86 /* RCTKeyCommandConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 187BDA455038E811AA40EF65B502C8FF /* RCTKeyCommandConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7FEE3901B230D96F94136AA90670A53D /* Align.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D09B9B81C4A268D1194275F7C4547BF /* Align.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7FF11CB761B34E4B8F03FA972DBC626B /* dec.c in Sources */ = {isa = PBXBuildFile; fileRef = BEC8E3B1DECB8985FD462B8ED229F93D /* dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 800174EB8C2ED1E3791CBCA5243F414F /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A519F6518C260D0FF48E82C2A8808A4 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 802CFFE0EB0029815C40EAF9705B3CC9 /* FIRCLSByteUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = C7AB557274CF57A02EC21EC9FDC67657 /* FIRCLSByteUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8047FE35403325F4DADBC219D6DA75D8 /* ARTBrush.h in Headers */ = {isa = PBXBuildFile; fileRef = 74C483730FEC4C3814C78CC526820975 /* ARTBrush.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 80498CCB5C22C35CF0D97ECB67A35974 /* HardwareConcurrency.h in Headers */ = {isa = PBXBuildFile; fileRef = 92A76AE2B586872B9AE72F08122BB086 /* HardwareConcurrency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 809BA0C4B85D298B26F1746657E5EFC8 /* RNCSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FAC915F5B8ABD2A2423DC0F82E68945 /* RNCSlider.m */; }; - 809EADED90885D167F794D3D8E66E2C1 /* GULNetworkURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E981642F410BB1CAC1402953B1C9C35 /* GULNetworkURLSession.m */; }; - 80A1B9144F9A47BA9972134E1AA735D7 /* FIRInstallationsErrorUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 416D359A4FC7BB38FDA1EF50B2C9654C /* FIRInstallationsErrorUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 80CADFE7A596119BCDBDC582F27DAE21 /* FirebaseCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B427BF719A851FABFC69FC83BC0A0D4F /* FirebaseCore-dummy.m */; }; - 80E7699B50C52242C98EFC2BD9235E1B /* REATransitionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 708E9A123344EB6FEFBCEB160EBB895F /* REATransitionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 80FA1A9F4EE87D999EE8DE727165AA7E /* ReactNativeUiLib-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 476A06F8FF3F0291E4E7579E63037F9F /* ReactNativeUiLib-dummy.m */; }; - 8102EC8FD6B413398F99189C0CB9161B /* SetupResumeAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3E9C9ECE7547F686B756902C9B85AD0D /* SetupResumeAcceptor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 81116C5228CC9E3EEF0B49B4EF385D9A /* FIRInstallationsStoredAuthToken.m in Sources */ = {isa = PBXBuildFile; fileRef = C2A38FCFC0C7CBF5FB62C446C28158CD /* FIRInstallationsStoredAuthToken.m */; }; - 81141FF71886B2365607A0CAEB9B8FD1 /* HazptrHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = FA45F4A628D2428B77D2FC2F4E4BD03F /* HazptrHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 812048205AAC120258D5E3A010C240CB /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = E4C2AB318AA3CCF501BBB492DC62B5BD /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 812322C3CC87B65108E87C59381BB278 /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = 371B28F82A1ED21F2AEF3B36D7E0732B /* RCTFont.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 813531654597C927813F20787EA3217B /* vp8li_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = DB583B583C1BD1062181AF46E3326085 /* vp8li_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 813BAAD3B90E2632E341C6C39E69EC29 /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = 185366F633C28434DC61E24706AAFFC3 /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 816175B9B9E7204396C9ADE63F509CC8 /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A946CBA0236163B5D6AD1CBAE7E8594 /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 816EA15EE7B5595B80A9B8AED2E98E32 /* Init.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B58D427C9F4C3FA81D777B5ACD90965F /* Init.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 817034A55851912C5DEDA6271809EACE /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DF983FE232C29D3473CCB5405CB82922 /* React-RCTText-dummy.m */; }; - 819BD444FFC1D4BF303311A671C6FAE1 /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = F163C1A8578037F53699769179CE37AE /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81A2080A9E54A0F2E1CCF57F23D0F503 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CC6D4C630EB514AF39E21E6867D5917F /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 81A2FFCFB7C5FB3DD14807DDA43C839A /* RNBackgroundTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = F524BACD8B4939A2E07564D7F55F5BA5 /* RNBackgroundTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81BD1FAF89DA6AE571C952144C305CC6 /* Try-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 51BFC1D0986C540B6E8C5C8456C71D32 /* Try-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81C8FCC3A3406D88B87A533818B5D181 /* AtomicUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 99AE7D08E695C2160D38F69BBEDC8E2F /* AtomicUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81D6487011468B1EC40E7273F5E54D59 /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DFD8F11B45492A110007D80A1313453 /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81DB6B244BEA795C70DAC9D12EAF7697 /* QueuedImmediateExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0F7ABFB07A02E065BC573837BB2AFFB /* QueuedImmediateExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 81EA10308A527BCB4F3913D83C4734CC /* FIRCLSURLSessionDataTask_PrivateMethods.h in Headers */ = {isa = PBXBuildFile; fileRef = 4100516A2F71C4FCEFF4C192A3E25A5C /* FIRCLSURLSessionDataTask_PrivateMethods.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81EF061BE8AE78033854C2428593B12F /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BB558448356A4D39A31307FD3C409F4 /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81EFF28CA9DB0F08B24762355295F8F8 /* RCTAlertController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F2C29336FD7CFB5BE40D48AF410701A /* RCTAlertController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 8245374A89AA09B0DF62935A0CC2F3B5 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 16E2A7ADA0EBFE30CC6290D890A31F92 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7C8CA8992291A9A75E8DB854A4CC73BE /* Range.h in Headers */ = {isa = PBXBuildFile; fileRef = F0B9BDE093A1DAEEACF5BFC7242457E0 /* Range.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CAE789754D569EFA0A1E48EEA8BCDC7 /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 31D0FBC843D7D2564E682644B2AA4E9C /* RCTUIManagerUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7CB87F458C00A4EC6D11312E0F019199 /* SharedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = B9BE633D011E108B8B50930D8EE40B41 /* SharedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CBC0B786C74863410DA18D1BE7DD73A /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = B6D2E1D1CAC874F5DD7600D748D64C55 /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CC599917A6E93AB56DD25ABBD9272C3 /* UnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = CA7D82AD20F59E7EA3AB0E410CD00BD2 /* UnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D20AD84EBC8559AE1142427250549A9 /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = DD6B376F981D957E30F8608A3BD3C449 /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D617B334260196169E0FE8AD7D20FCF /* HHWheelTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9833E76FD72AA77BD04299DE95E2078A /* HHWheelTimer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7D65E22401B87E8D0DAFEF5834CCA3C5 /* DynamicParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 48040670F59DBB3F85B5BDCCA8100CAC /* DynamicParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D88EE1929DEFE96EF497F85DA08C04E /* FIRCLSAsyncOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = AB2EBB07BB6780F2CFD6D21C26BE1E35 /* FIRCLSAsyncOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D93618A159EA534B4196ECBD2902DB4 /* CpuId.h in Headers */ = {isa = PBXBuildFile; fileRef = F5C5DF4C60B77F8383B42AB7ACBA6C09 /* CpuId.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D94D7FB203B2287C1355BD5F5F1F784 /* ARTGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 480AA8188F9EA701921324A062433032 /* ARTGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D9978DD97658EB943E1EA22B33DAA08 /* UniqueInstance.h in Headers */ = {isa = PBXBuildFile; fileRef = B798703660D7BD3CEAD6BD9B086379AA /* UniqueInstance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D9E6443BD24A99D1B173DCA77B5218F /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 075FCEEF9548E5D0153233C7A55D489D /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7DD0C09C604FE90E8A7194BE8C7DE737 /* CachelinePadded.h in Headers */ = {isa = PBXBuildFile; fileRef = E509FD956BD9317B6C7E872F35A42704 /* CachelinePadded.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7DD7714471F9616142A0A440D6447ECB /* TimekeeperScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = E51825EED7240CC4E05BE009AC454015 /* TimekeeperScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7DE7D30D7C202F40E14C4D074F1951FE /* FIRCLSReportUploader_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 50C41EF12D05B64B2E575D8C73550625 /* FIRCLSReportUploader_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7DE99E010F718BBD8EA0270E477F2618 /* FrameHeader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 046E65A5FA88EDA7B63523764877B119 /* FrameHeader.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 7E51F5112CD885712DFA7EDB05CF47B8 /* FileUtilDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = DDAF0C9DBFFF10B30338CC4C086D1271 /* FileUtilDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E6F72747D10C9B7CD78587E9FE6884E /* FIRInstallationsAuthTokenResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 18571F19C03D63DC9FA1F9030B6EA0B9 /* FIRInstallationsAuthTokenResult.m */; }; + 7E6F9733E017E01726C98AA15FF2BA80 /* BugsnagEvent+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 00F410D95A943CF72FF7F8650F7719CF /* BugsnagEvent+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E739B036E984FDD2D816E2DA1FAFF91 /* EventBaseBackendBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 560446E9ECE8A3E9D5852595DDB3F947 /* EventBaseBackendBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E7C215179C583CC74036539DE29F4F3 /* AsyncSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = F9443F644AE9D404E5CF0E1FF4F41249 /* AsyncSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E7FFA60C1D90B81838454BD4D483BB7 /* StorageIndexer.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AAB951C7E48D6D0976BFBBFE23D2F04 /* StorageIndexer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E97C5F8F526ABED9B6C515CF3A2E142 /* EXSessionTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = CC024E46040AD05842D1554339DB9DFF /* EXSessionTaskDelegate.m */; }; + 7EAB35268C3CC56C21DB094408FEBD84 /* AsyncSocketBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 86DB9FF8A5FF212C97C3C37B038AAD4A /* AsyncSocketBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7EC66A8857EA461928FA8D0D6E7D5155 /* Expected.h in Headers */ = {isa = PBXBuildFile; fileRef = 74331866546A2EF1194D00398E03F336 /* Expected.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7EC9FD40B9B32FE93A86C3612F9B7C73 /* Hazptr-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = F8A293D697BEB0EB90B945383C617400 /* Hazptr-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7EE009D01AF9BF64E81BE23BEE6F844B /* picture_tools_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = CF5736726F34C338E30E0C2E192BFCEC /* picture_tools_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 7EE4BC1ABEDBA90659B24F141AF2AE91 /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = 441502CC4AA123448A17A4F45A9351DD /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7EF5228B349A0A9705737D3366EF9FE6 /* ErrorCode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F0F85D3DB77B73B2A983CB6A7ABF28B /* ErrorCode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 7F0A0E39C4B92F83FED7F63723E33BFF /* BugsnagSessionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AE5CF45ABF4F6803BE087F741E80D4C /* BugsnagSessionTracker.m */; }; + 7F2AF7F6F21535CB0B16803076D6F010 /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = 30775C17AD0C769308C8D4EBB9172108 /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F2C6B04937DE29D98E39DF427E81959 /* cost_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = B9168CE688658C39AAA643B653709B19 /* cost_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 7F466EB6DF3E18B0EC2248B60B6A529B /* GDTCOREvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CF3C79BD496F82B25133B4BBF8480A7 /* GDTCOREvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F545E647D39C256AD2575EC05D96D09 /* dec_clip_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = 52670FF4817FA37ED38D1FAEBA55FE4C /* dec_clip_tables.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 7F78D9D983D7313785567B09AD93F9C2 /* BSGStorageMigratorV0V1.m in Sources */ = {isa = PBXBuildFile; fileRef = F401C944F2D198765DF6DC6A29B04212 /* BSGStorageMigratorV0V1.m */; }; + 7F8BAADDB284D0971026D330A2F1205A /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7FE97DB842A59B5C2F615564FE5857EE /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7F8D9FA55E2B841AEE4E3E70D09BFF35 /* BugsnagReactNative.m in Sources */ = {isa = PBXBuildFile; fileRef = 49835B928F1BD03B9BF8EFAFBC8B036A /* BugsnagReactNative.m */; }; + 7FA84C7CD5E366109C6B77E2A129C827 /* EDFThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1CD803A9BEF9283EC2BA36AE359720AB /* EDFThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 7FB3CBE5BFDA11CB860B075A35EE3BFE /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = A77AADE54BAD99ECC1C2D6DFE43F452A /* RNSScreenStack.m */; }; + 7FC128EEA44FBE52AFF124900D4154CF /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = DECCCE09E7F014EABBD87DC1B1B5C2B0 /* UMUtilities.m */; }; + 7FC583A38AF7701D89913D5C5855A6FB /* huffman_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 32393333791182EC6F342CFCF50B78E5 /* huffman_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7FEAA9546ABF03904AAF6FF37C703F86 /* RCTKeyCommandConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = BF72C69834CD282DFCE8ACCEEB7995E4 /* RCTKeyCommandConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7FF2E7325B201D1B10F7F692F86F6A5E /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A154FC57002D4A7C3A176A9677A855C0 /* LongLivedObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8036795D9FDBFCED6072CEA8AF77C6DE /* SmallLocks.h in Headers */ = {isa = PBXBuildFile; fileRef = 9660208B0CEFAE20C259097910CE9787 /* SmallLocks.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8047FE35403325F4DADBC219D6DA75D8 /* ARTBrush.h in Headers */ = {isa = PBXBuildFile; fileRef = A9082B2BD3226DFFA225E5FFFB855224 /* ARTBrush.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 804C2BF2B5D48E0D4B9D56BFCF064540 /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 33CA2D791B052E6E11AC901556D70981 /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 806D0A8C4C3A3CCCAE6FE0905BE8A994 /* BSG_KSCrashSentry_CPPException.mm in Sources */ = {isa = PBXBuildFile; fileRef = E3BBE7A4CE823D2C68A59F6AA015FA1C /* BSG_KSCrashSentry_CPPException.mm */; }; + 8097093CE2BDB0F92292DB82D8C3E84A /* BugsnagBreadcrumb+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 73C84770ED47B977C24E8DC125B6EC1B /* BugsnagBreadcrumb+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 809BA0C4B85D298B26F1746657E5EFC8 /* RNCSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = A4E5D8024113C04A308B589034455548 /* RNCSlider.m */; }; + 80A1125795308BA217DCA8B8694A9BD5 /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = E9727559286383AEBBDE40C6EC18F9F5 /* pl.lproj */; }; + 80E7699B50C52242C98EFC2BD9235E1B /* REATransitionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D5E991FA1F0360C7AAA387F45E784D2 /* REATransitionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 80EBA8DD6148D9BB730B02135BF4BBF3 /* FileUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = AA074CE31B00318F430EE520E2BB8096 /* FileUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 80FA1A9F4EE87D999EE8DE727165AA7E /* ReactNativeUiLib-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AE8AC1829EFA92E41449AE5D122C171F /* ReactNativeUiLib-dummy.m */; }; + 810C9DA3B4AD46B1EFD35806B7599CE9 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = B66CDF20D4E34DD68D5EEBC0BAE954FD /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8110D3253B83576E967CD129392AF7C6 /* MacAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = EFAF65A558262424D56BC320489FDC28 /* MacAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 811E741095A86BE41D5FFF8B8A57F71B /* BugsnagCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 320D2D9ED3CB8B62056C35DC07E096D4 /* BugsnagCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 813B0A04E9F0D15D00BC41403564F37E /* SDWebImageCacheKeyFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 71EF12AE0C678D1106C73CA089B8FDAC /* SDWebImageCacheKeyFilter.m */; }; + 8140514C7C64A055A01F738AF5FE076D /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = B775B43D0D55C6186D1F81AACAC574A6 /* UMExportedModule.m */; }; + 815232FF104ADC5B9E035083E4E29634 /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 94DB5F79A325AE3462321F5B421B3675 /* RCTSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8167843771E3B47476358AFD9885E554 /* SDDeviceHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 028531ED5B236705CDB771CB2927310C /* SDDeviceHelper.m */; }; + 81A2FFCFB7C5FB3DD14807DDA43C839A /* RNBackgroundTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = F59574F26EAD934B166EC8F9C822F2FD /* RNBackgroundTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81B5731D55B383BBAA088D9AFEA7328A /* SDWebImageError.h in Headers */ = {isa = PBXBuildFile; fileRef = 25706E9BC7882308E1CBADFE1696B9B3 /* SDWebImageError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81CBA279C2D7F9FEDC5F11CE2ECFFB58 /* UIColor+SDHexString.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C64D5E749D0C9E115805E9FF856C854 /* UIColor+SDHexString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81DF7074ADBE7B72728CF21BAD425B47 /* lossless_enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 1C1EE646B96355CEC7249BBC052C77EC /* lossless_enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 81E1BECFF015AAC4B6740FF761011701 /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 79BFEF1825847DD28E26539EE299B92B /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81EFF28CA9DB0F08B24762355295F8F8 /* RCTAlertController.m in Sources */ = {isa = PBXBuildFile; fileRef = E6E79FE021EE1FF1B04B701B1D757EEB /* RCTAlertController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 8200366131B5B6B9EFDCE7A2F71EF9BC /* ConnectionSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 37F4A35654D7581640A4041759FD1C2B /* ConnectionSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8209AB28F2C10DE6E05725D67980B868 /* RCTNativeAnimatedModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6CADFA2A40FBABA870ABD822D9B135E7 /* RCTNativeAnimatedModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 820A37B2380C9A5F617F676F1BD63079 /* HazptrThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E2C60A3260F71E892868D6AD6AEAF785 /* HazptrThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8219A72DF5F0D9ADF8EE6548F22B1012 /* Observables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AE90C8B5FF1EB890795F8EFBBE3B16F2 /* Observables.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 824C84CF6B400E0942B2866D95294CC4 /* FBCxxFollyDynamicConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 6940E70BC2B82A3348601D7EB06E6568 /* FBCxxFollyDynamicConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8259DFDFD3B93BF5248176D9F8B6BC40 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 52AC005AA38CFB40CD236E225477B6B6 /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 825F10368EC9B357F3B1ECEF18334F87 /* GDTCORReachability_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = AA94BB85E6121A9830C7A5CCF2A3185F /* GDTCORReachability_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 826483171982EFD400E7D4EB2963263A /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 17847E24C5904581B8BEF96F70DFCFF0 /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82A1CB92432D12CB36A1174AB61E8F1C /* evhttp.h in Headers */ = {isa = PBXBuildFile; fileRef = 64FDB424456A4DD24183CF1B2202D02E /* evhttp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82A461DB41688B941D47D1C1AFF5284B /* ExceptionWrapper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8D8867473DC9435ABC10784A09B021FE /* ExceptionWrapper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 82BC15B6DBB229A3F365F4F2413B9107 /* json_patch.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A68BE5DE275AC8222532BCA9206A279 /* json_patch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82BE37E1E332BEE4EEF3F39DD585313C /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 781BC3B3D61FB739D337D760CCCFD103 /* RCTTrackingAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 82D0C94537F3C6F51042A0D03868AAB4 /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = A866DE2F2B6102A2E8A9F3FB16CC6A2B /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82EDEDA1EAE1EAC14FE6ED7A201CB435 /* BugsnagCrashReport.m in Sources */ = {isa = PBXBuildFile; fileRef = 262A342626B00C10D2647A70E9D7E86B /* BugsnagCrashReport.m */; }; - 82FCD057B97DA5038B33C0E55925C40C /* StreamResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = C6F45D5F31EF86F02D6CEF8DC22D0725 /* StreamResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 83086E1702478A2D2D4234EC2D303C11 /* SDMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B42749E166A6F32EB791289DDD896CB2 /* SDMemoryCache.m */; }; - 8317678B229ECCA17A5FB85AD458F037 /* VibrancyView.h in Headers */ = {isa = PBXBuildFile; fileRef = F939FF814F33E9FED5111224746689AA /* VibrancyView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 826F3B2FB4ECF5FA48963C64000BDB32 /* SingletonRelaxedCounter.h in Headers */ = {isa = PBXBuildFile; fileRef = 14C7ED7A9BB3E80BD1FFA1CB82001C31 /* SingletonRelaxedCounter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 827AF42DCA6F6EA709B194DFB836C856 /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 1552C077ACD09853FBB69E829A0ACB17 /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8292AD15ACEF94D94BC20F700AD9E23A /* GlobalExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D0C14BFCFF30C61341F3F7AF0BE77AC /* GlobalExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82940B4A35BBAA49939E09C3493C5409 /* ConnectionDemux.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CCA0D29921C0C30861DFC9EA324B1CC /* ConnectionDemux.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 829E92AEC5D3847D88CF8C71C82874B4 /* anim_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 530F1C764011FFBC084B034896A6E8A4 /* anim_decode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 82B7894B29F805155E87F73CD2336CEC /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 42E07FEF574DA0ECD1BC7F643A4EC7CE /* json_pointer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 82E7A8035A91E672B4BDCA59E4E21E99 /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8AD0F0D4592049D910132658A22E08AB /* RCTManagedPointer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 82F65CF078D09E8C005421B6EDD67F49 /* AtomicNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AA7D6C7EE116FB089F092288EDD2DDB /* AtomicNotification.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 83000B2E422499D45FBF61BCF36CEB93 /* FIRCLSProfiling.h in Headers */ = {isa = PBXBuildFile; fileRef = 96A65951DF1FD441212C181B834813A3 /* FIRCLSProfiling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 830EB97DC135460E1D5778A13B643A56 /* BugsnagEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 63C45641EB5DB3C16645B6FADBA569B7 /* BugsnagEvent.m */; }; + 8316E4D799B9260284EC4C167E7C9C81 /* BugsnagKVStore.c in Sources */ = {isa = PBXBuildFile; fileRef = BFF9EC62AB53882036DC920F1DC18E0E /* BugsnagKVStore.c */; }; + 8317678B229ECCA17A5FB85AD458F037 /* VibrancyView.h in Headers */ = {isa = PBXBuildFile; fileRef = E65F59936EEA71AA441C0A9D942FFAEA /* VibrancyView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 83275ADA5A6DB026C1CDBE784270C59F /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ACE5409F7D0811D41E16155430497AC /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; 83344A36E5121FC0C1AAF26F92D551DE /* FLEXNetworkTransaction.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F1AE93585C2CC012BB0818F5C033122 /* FLEXNetworkTransaction.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 833FAD2BA2D02ADFB00132BC309E0C05 /* BlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = B15175F2164C98A39C87EB95FFC28E02 /* BlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 83444FFD2B0B4CC90F27B611491ACE1F /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 917324CD6B8261910AE8FB9D5B5D85B9 /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 836674833A62EB91DFB6BC0960138391 /* Invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = FD6C8D5A0B4CCBA5486FD113C97A9D07 /* Invoke.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8370CA33E3710C7323274314D143AD45 /* GDTCORReachability.h in Headers */ = {isa = PBXBuildFile; fileRef = 885292AF47B79C9F9792145F265F4642 /* GDTCORReachability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 837DAA54A335AE778D45281B9B71687E /* EXSessionUploadTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E21C2D8C67E96DD2E8970568EB72679 /* EXSessionUploadTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 83AE5F2D83383E82F4A6BFDF82EE51F4 /* ErrorCode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F0F85D3DB77B73B2A983CB6A7ABF28B /* ErrorCode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 83B79CBFF090D1980468451601BD08CB /* ThreadWheelTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 55F82640CBEB65A43180581A1F52B31B /* ThreadWheelTimekeeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 83C55012BFF7C1540153C8C7C024D2A1 /* random_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 554C9744B627BCE0D470D29FD391FE4F /* random_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 83E2A25243750B31BA250940FD8AEA08 /* FIRCLSURLSessionUploadTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A29B3E4A16627EEEB36AC28A8C68324 /* FIRCLSURLSessionUploadTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 83E3019758B88936BC88BFECFDEB9057 /* FrameSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = EEC53FB638BA80024B5BEB0C515A1750 /* FrameSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 83E3E194D0A916B8C2C6A837E9E61431 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4769820499D04031C91A6FC6F516BD20 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 841DD1FD281C89C036B486AF2C6E09A3 /* SocketAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BF88558A95843F4AD6A7248E71B60DEF /* SocketAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 842C69C1AC39FB9DAE3131B9F214805F /* StreamsWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = B173169CAFCA51717A0990FA0F85CAF4 /* StreamsWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 843E577D8C3D69B1F9CE81D7F07038AF /* Dirent.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A1451795BAB36BC948A32F0BA98E35F /* Dirent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 843EC8AB2FA5FE648B47C3BDA71178CC /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ADA24494E344DDAD822C6DA6B4EF030 /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84737955FFECD24F403BC8D3423B71AF /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 87D361A17427A801DBF47CD2D9BFCC01 /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 849959EE0BA06E2416135B4049E59917 /* SetupResumeAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ACCE6DDD9D46016A77D2950B591793B /* SetupResumeAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84A56B96EA62B55EE3711F0E8F5AA022 /* IOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = EBB2C777B8701067235AF173874B4438 /* IOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84D0DF1ACA7F8664F9604E1FA444CA75 /* GDTCORUploadCoordinator.m in Sources */ = {isa = PBXBuildFile; fileRef = A90DA217769C6CAEDBADCEFC36C37E03 /* GDTCORUploadCoordinator.m */; }; - 850173D6A1AFB30A009E2C78E4EE08FA /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = 39075FBD60B624D44E193316E50A9AE4 /* UIView+React.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8516BD2AA173117F1779CEE74DFB15F0 /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7CB388056028D7AA7C6FD0156B291F39 /* Unicode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 85187C6716F36616D97B8052A8711C5F /* Foreach.h in Headers */ = {isa = PBXBuildFile; fileRef = F55B26C281E7CC639D090359C95AF714 /* Foreach.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85197273AE3359A249C630DA2757F3AA /* muxread.c in Sources */ = {isa = PBXBuildFile; fileRef = 8DD7506B4DC024949AB693811564957D /* muxread.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8525BFBF4B2B4EF21E7E530E78A32568 /* RCTSettingsPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 91514FB908B2693C38C3DF034DC6F0B9 /* RCTSettingsPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 8534AF5D74395F54040F7119A17F2054 /* SSLSessionImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3A4BB6035141C108E1A0BA59217CE37D /* SSLSessionImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 853E54BF76A353A191896240E43645FA /* SDAsyncBlockOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D7795BE80B6157A02063B428151BA3C /* SDAsyncBlockOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 854784B4A718F3ACFEEDDDD92AA179BE /* upsampling_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = E7D542686358449C4464EF32763BE4A2 /* upsampling_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8550954396173933925FC4FDAB941AF1 /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 87A9DF17D8AC30F800D695E7C1CE49DF /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 85552F3945768C325C46510CFCD23EEE /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FC7615C69023D6C4AA2EC495E61FC4A /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8560D79A6747CD1D47B9092ABA4E0F64 /* AsymmetricMemoryBarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = DA0C110A12A0BD5E9A1907F4493D4C96 /* AsymmetricMemoryBarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 857DF8D89115F9140F7A5EA5409A930F /* SDDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = E9E08C14A6995E6EB264EB5847FC74CC /* SDDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 859CDF5968E158444979D34C8A9D966E /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = D9162D718DE8040C51ADEB85D83D40F4 /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85AA2BA8184B6058D271D4EF78F9A77F /* TOCropToolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 4835786E04114DA8AC9459D9771373BF /* TOCropToolbar.m */; }; - 85AAC9E149E9EF22A22060BB2532D93F /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = CA114D494B77EA5D42F892A8B5959AD6 /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85B477A4C23D78074D75083432DF7754 /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 03A47EB93BA6B8854EFFC0EE9AE61F99 /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85E2C20A0ABC6C424BDDAEA79A59E0DB /* SysUio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC3B6E2A54F07D4CA19C1041C8695202 /* SysUio.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 85FB65FE338D881E8440BB25BFFBED28 /* FIRCLSInternalLogging.c in Sources */ = {isa = PBXBuildFile; fileRef = 62B73A440AD7CB767A967E0875089085 /* FIRCLSInternalLogging.c */; }; - 86038138105C6324C5DB9DCFAA61A2DF /* OpenSSL.h in Headers */ = {isa = PBXBuildFile; fileRef = A8E323CFE2D9B1962135FED636658650 /* OpenSSL.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 860C2C26F70A78C2E11A816C800660B9 /* AsyncSocketException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F9590B544AC71E50DB3D4A1FD459091F /* AsyncSocketException.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 862433EDE7D91078AE3B04AE56489488 /* IOVec.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AF66D31DBF731A2EB5A4616B400EED2 /* IOVec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8626373C08B27B323F58D8FDBEB3B62F /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F94BF3FB54468D1F9CB960B3A59D0B05 /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86483B8CBC74AD79F4E363E5390952B3 /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D0F90F9DD1B215971A05EF66FC3366D /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 864F4F1FF8C36D5EB725FDCAD3DB1777 /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 04B8617080763B511FFA26B4B2883D76 /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8674F959453A32B9649275674294E037 /* FlowableObserveOnOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B11CBC013C592CAFFF90DDC74BBBEE3 /* FlowableObserveOnOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86B436E3C596E2922A926CF7BADE4D1B /* ConcurrentSkipList.h in Headers */ = {isa = PBXBuildFile; fileRef = D72BB39F5E1E5882B7FBD679B664534B /* ConcurrentSkipList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86BB7919E0FC864D3D44FA7E3515324F /* ThreadCachedInt.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BBC025510EABED14B092533E2EA14D6 /* ThreadCachedInt.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86CAAA5A8D7FBD128A1317DA77CF75FE /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = BC06AD0CDFCDE2EBDF8C53D6CA3E097A /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86CF760C678BE3261CC6D1EFA70CCA61 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = D1CD08E515A799E10916C90CF8CE577B /* RNGestureHandler.m */; }; - 86DB7A4F33302597616F5B9ECA487623 /* enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 901A7545398A64492BA691CD54AE2FEE /* enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 86F6DDD55BA2954BBFD045A2EEFA1790 /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = C9C5E6185D9BEB593FDAEE8D9C695E37 /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8705E479C0F70C65AE414EA6F8FEF6B1 /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89313FAE5BFAD3E3EE2F8C5F6AFA9492 /* JSIExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 83474599635C0AB87BD99C9475E49771 /* Flipper-Glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B335892566A9D0203E6E06C4932EBC6B /* Flipper-Glog-dummy.m */; }; + 83560D799D66A44B6025A30F0E203297 /* GDTCORTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 459058C8C420DB25AC00366251542B31 /* GDTCORTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 835772349195398E0BFCC6F418AAA71D /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 92568FDF28118EA53C8947A0124C1273 /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8377AADFCADC26F754FE60AAE8EE5683 /* MPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E75554C6C3D8AB01B1D0B5851FEACB5 /* MPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 837DAA54A335AE778D45281B9B71687E /* EXSessionUploadTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 81EB88AF33AF8FCFE87CD8EACA206B4F /* EXSessionUploadTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 838B6C9A10FAB50834AF50D067369F63 /* BSGEventUploadKSCrashReportOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 574448DDB956D4C4A26897FFD13475A1 /* BSGEventUploadKSCrashReportOperation.m */; }; + 83A90E8B7FDE9818721E8002C5F8D919 /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C5FEF15984208664BD1D21E2627057A /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 83ABD9CC69D169904083B7387D9F9262 /* HazptrRec.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B6B9023DD73576E9A084D6BAB8A8500 /* HazptrRec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 83EE56FE1B991A5596F66613FF207E3D /* BSGSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = CA5710B5600A232F2F638BD59F307CCC /* BSGSerialization.m */; }; + 84124AE25EBFFE6A589291D9F9F408C9 /* HazptrDomain.h in Headers */ = {isa = PBXBuildFile; fileRef = 73E41D6E861C487FF12A532066A0920A /* HazptrDomain.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 84179ECCE7AA9C97A327A6401F722F80 /* TurnSequencer.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F0F007E490BD7A6AD5E2861E1F025A7 /* TurnSequencer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 84242CF4A052DB04E88AF99C26F083BC /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = CB338AADDEBFFCE1DAE9153E8BD54079 /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8426B85C97EB7E927A5B60C8F33BDC34 /* GDTCORUploadCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 23D46A4B7D4AF7D3AD7C0C7AC6357FA1 /* GDTCORUploadCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 842C67398B5E5B183E98774CFDE33CB1 /* BugsnagKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = D03FB8816A2AB881FD70B5B6B25F9651 /* BugsnagKeys.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 845985CF5A68FF849D17450459946D3F /* FIRCLSdSYM.h in Headers */ = {isa = PBXBuildFile; fileRef = FF1E5960C85CE08107861C1055BE68B1 /* FIRCLSdSYM.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 84634F1E1435697C00C422F41292E26D /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 478DF8C445CCDF77B39FA9B32149D61C /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8463995436BC0640AB9003330E55A77A /* MicroLock.h in Headers */ = {isa = PBXBuildFile; fileRef = B4FBBE4BE1E75B75A567276F3B442B94 /* MicroLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 847355C63F4362007816EEEC9C478601 /* FIRCLSDataParsing.c in Sources */ = {isa = PBXBuildFile; fileRef = 043397C0E2974CE55163AFD49A0BFBA1 /* FIRCLSDataParsing.c */; }; + 849264ECD2A1B188F8221C0D9504E330 /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 550F4A1CB3049209E177D33601E9B7C0 /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 84ABD0A337B65FBFB553EDB51835D8D6 /* ProxyLockable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B61349BDE1BBD7581068301130AA7B8 /* ProxyLockable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 84ACD61B97AD00786A33F91D32FD4992 /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = F619F6E9441077F0E51EB483160227A3 /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 84B10907D43DD570150B876D985FB33D /* Foreach-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 84A7E4EA97CD08BAA03992168255DF5F /* Foreach-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 84DC2EA18DF9E7B97321C9B61F1F4A26 /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CFA170F05C3C601903D7C2A7A727F25 /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 84DF6CCEF557C0A6293198D98F755141 /* FirebaseCrashlytics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 54016B7EE3DEBAD705D147B677B5369F /* FirebaseCrashlytics-dummy.m */; }; + 84EA0952DF11169AA9927BCA0AD50CAB /* enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = DE10C6C8FDDFDEA4542FC71322F6D75A /* enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 84EC5DA53066483EC80B2F2110F6AE25 /* libevent-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D196C4EDEB47415D485A0236AC6D8D3 /* libevent-dummy.m */; }; + 84EFF21EFDB35A95B7022ED715485541 /* StaticTracepoint-ELFx86.h in Headers */ = {isa = PBXBuildFile; fileRef = A96FC450C08890803E2BAB0375AA0B02 /* StaticTracepoint-ELFx86.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85043B05FEE95C701F50E019113AE2BF /* StringKeyedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 61C1AC94DA8359D54DFA47BA5050F019 /* StringKeyedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85125DBD7C968CF0836266E8C810EC87 /* FIRCLSDemangleOperation.mm in Sources */ = {isa = PBXBuildFile; fileRef = E0C4E152DE6AB8C0C9C6931C1350B01B /* FIRCLSDemangleOperation.mm */; }; + 8530672DFE52B69CF52258E3A952DD07 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = EB7F915F146B38A65846A157B7FB3EC6 /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 853E8B3E4B9502AC2D1B8BA984123FA2 /* FBLPromise+Always.m in Sources */ = {isa = PBXBuildFile; fileRef = EFDCFE3582FA69D9B77B4B503E169BE2 /* FBLPromise+Always.m */; }; + 854CAD54469506BFE668C1A805B1ECDE /* RangeSse42.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3AF1EEF7F1F5EBC06486735CE5F3E758 /* RangeSse42.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 85633AF74F8624D79B9F700CC67696AB /* Future-pre.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BFB4F0358B1ACEFB5E3C7512D6AD07A /* Future-pre.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8576C2E6FE0D4B9F83AE7BE0B466E1CB /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AE69C4075F10FB677FDB33EC3800CD5 /* React-Core-dummy.m */; }; + 8577C9A386712B9ABF982FE880A1072D /* FIRCLSContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E39C777BCB1CBEC757CF7DB20CD46B3 /* FIRCLSContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8578DDFE959A8B9E849C90273A27334C /* lossless_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = F60B8B4C00F766209BDBF4C89C226F47 /* lossless_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 8587D2228B4EF7D0261FB74DE8EF99F6 /* Format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A1B24C17B642E8896288A691DB8F105C /* Format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 858A0C6D75E5E564AE0AB1C0499498BE /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 838D1BC1B1D71324DA582F1D93B77A63 /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85B417A893DC287D0A57F68E501B497A /* PackedSyncPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = D086FD2DC70AB96A859578DC6120A23B /* PackedSyncPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85B8F33ABCFCEA5D376A43B1DB3AD8FA /* UninitializedMemoryHacks.h in Headers */ = {isa = PBXBuildFile; fileRef = 62DA78B0C8B22C0F5F258C14B2B653A9 /* UninitializedMemoryHacks.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85BD31E00EC5C96D4C167856A04AC9E5 /* CancellationToken-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F9A922675A0AEE799DFC55AF54CD6D29 /* CancellationToken-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85C065D11414723018B96EA8E79BB826 /* InspectorState.h in Headers */ = {isa = PBXBuildFile; fileRef = F2A83070D76D4896271A32C9846E7EAC /* InspectorState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85D704B1FB1B5234CC4748F1634186ED /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E75DC717CE866A378A65C768DBF983EE /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 862D6D73149966399B22478C16E11F8E /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = 60D1A26443E475C946E7CBB625FC3318 /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86454D38412005D85921EEF3D75901B2 /* Poly.h in Headers */ = {isa = PBXBuildFile; fileRef = FF502F3EBDB9A79E6731736B20C705A2 /* Poly.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 864DF121D43C18629973838F25311351 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 37E86C5D337B57126E07CA772629577A /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86651F73CFBD505788C532FA87A02464 /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AE726FBD7EA3190FFA99F5A8DF3F737 /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8672C1643AC92F19E0E0DE401FFEA402 /* Fixture.h in Headers */ = {isa = PBXBuildFile; fileRef = 05C29C67833AA8536353E274D98D3DF9 /* Fixture.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 868340B25C4BA08F09F7064CEF2C97DB /* FBLPromise+Catch.m in Sources */ = {isa = PBXBuildFile; fileRef = F52F845A189384EC9BBD6B8783511AD3 /* FBLPromise+Catch.m */; }; + 869311CB33FA7DDC918D26F9477BD90C /* ssim.c in Sources */ = {isa = PBXBuildFile; fileRef = A61F1D11A4487E7EB38BE9486F5B775B /* ssim.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 869AF1FA3CA8A58E80C69F407728F9C5 /* GULReachabilityMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 071524D959DA1A66674ED6538F569B20 /* GULReachabilityMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86B1E7288D9558909F90EB88F53F5916 /* GULUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 960AFA97C6DCB819D930DEC1EA15BF49 /* GULUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86B534E23C762F4C102C3D057E28B99F /* RCTLinkingPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3B97C66180DF19949AF1558D6A0033C4 /* RCTLinkingPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 86CF760C678BE3261CC6D1EFA70CCA61 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B651F536139C25C10C31A34A85FEFB3B /* RNGestureHandler.m */; }; + 86F4B23D5F969E0293D08F7A3C41AB0F /* BSG_KSCrashIdentifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AF0B370689AA129AD26A1065F12CAE /* BSG_KSCrashIdentifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8706AFEFAB22494BE072E1FEA9EAAE3B /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81A05C8E8890D8184D5C24DB13E3B2D9 /* RCTScrollContentShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 8712A013B77EFFFE014DA5E077E5AD8F /* PTProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F934D5CF6DFDE0A7D00F52698ED4CA6 /* PTProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 871B336D8AE74B3980F8713BF4E334B2 /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3982D712C7B3264E2B4061DE932045C0 /* RCTActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 872604D3641AEDD78731C2697E439A78 /* FIRStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = E84B304A0A3E5E63A9395D43DACFBEC1 /* FIRStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 872A28D5BC91AF8EE1D2AFC6671BF3A0 /* FBLPromise+Any.m in Sources */ = {isa = PBXBuildFile; fileRef = FD05E41D3DBD6CEB5FA70823CF4C4329 /* FBLPromise+Any.m */; }; - 8734047203EB4D44AEBFDDE512D54454 /* BSG_KSCrashC.c in Sources */ = {isa = PBXBuildFile; fileRef = 6ADCBB00B64226BA363D0D887DCBD9E4 /* BSG_KSCrashC.c */; }; - 8739A440984502A55767625628D76132 /* FIRCLSApplicationIdentifierModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EC293F2FD023668E6B3531C1E85E2D /* FIRCLSApplicationIdentifierModel.m */; }; - 87469251DF01A53605D1D124DECD9442 /* RNCAsyncStorageDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DEBC1BAF574AFBE0A240EC4B92B9222 /* RNCAsyncStorageDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 874949D454780D4BBC4EC6B18E073DF1 /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 761205744C0A0C3ECE16EE27DD734BFD /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8755878EF9A2D2643F2A5096B84321F1 /* ThreadLocalDetail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B017EE09913730740C6957C49A600CCC /* ThreadLocalDetail.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 87669BBD749638ADA37D20CD9301AD36 /* alpha_processing_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = AAE7C3A7CFA89498E2F31CD466E8BD1F /* alpha_processing_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 877731A0E0D4164ADDECBC2D9DC1C584 /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = C409ECF3326345D59B43852F76F6CB08 /* RCTKeyCommands.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8790D5CC4F6994202AA168087E057007 /* MemoryIdler.h in Headers */ = {isa = PBXBuildFile; fileRef = 103D85709FAEBE30EE0B816C9B015B9C /* MemoryIdler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87B0261BF8D1B07FDD32A373E7348926 /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9221E41E3B641E3AFDCAE327FA325982 /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87B2317287DAE4FC00B06C9262FBA4B2 /* Libgen.h in Headers */ = {isa = PBXBuildFile; fileRef = 79335A93D83AE486F8FF48BDCC4B04CE /* Libgen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87B66819BA5920D75901C025D09E92CD /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 084464DD1DF0BC6D3E42DE008CC002BA /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87CC0A8D57DA07BF70F0676A40F906B4 /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = A0A9FF330B926B4379D094F6AE01C7C2 /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 87D844AA8BE16811A4A7BDB925ECFED3 /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = C801F07D5D9D36FECABCC66165F6AB63 /* RNGestureHandlerRegistry.m */; }; - 87E1EA8CF3DC8EBA8B8C8633D8445583 /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63E1B74E561C965DABC1A328D38BBD67 /* FileUtil.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 87EAB4D437A3E9B76A1443AF9A0F2EF3 /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 4472B00AC0D4D8655D54A55A0A190E06 /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 88392A36081306E62A9A1474EDCEFBCC /* SequencedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B95CA518AB99C7208289965A486D6FE /* SequencedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8846F50819DCE36877AF3114E53727C1 /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E01591617629535D184939E51F17771 /* RCTSinglelineTextInputViewManager.m */; }; + 872AD763BA18B8492B37B7F874738366 /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 28A8F597A0C2B9228920010A7D3BA31D /* React-RCTBlob-dummy.m */; }; + 873D5BBC800EC81BA055921080E0AD26 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = C33C6F61CDBFDA394DA7D50D55E37F81 /* en.lproj */; }; + 87469251DF01A53605D1D124DECD9442 /* RNCAsyncStorageDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = F28AFBA649D98C9468C89AEAE0F12E2D /* RNCAsyncStorageDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 874929B9211E983EF8666A593A52C81F /* BugsnagConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 74C2665FF0FD8E698863719998648C12 /* BugsnagConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 874B590FD8C3A1294C494CD5F4EA6C7E /* openssl_md5_locl.h in Headers */ = {isa = PBXBuildFile; fileRef = 15286ADE9046ACD7BB6938AB34C77DDC /* openssl_md5_locl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 876A6A5DA33B81786F967190C0671563 /* FIRCoreDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = FC6D40DB7C45B03A921125161D7D475E /* FIRCoreDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8779CE84F6D672DD69A5443A229CB3EC /* FBLPromise+Reduce.m in Sources */ = {isa = PBXBuildFile; fileRef = 0271636F098B9253BAF63D59B427D695 /* FBLPromise+Reduce.m */; }; + 878C0A25C824EF3B277CC512A0220D8A /* lossless_enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = D796A028626A993301936F75D47B1E5F /* lossless_enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 87BC99FFD3F4C09623A5C8D6EA5A8166 /* ThreadLocalDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B6792230C95B3E30825ACD9B116B40D /* ThreadLocalDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87CE2D5341C70A15F3D5CDF03FEB5B8D /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 7580B58FA5ADD47A6A8B642F8F19CB50 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87D24C209ED7E58108EBB3064EA2EE45 /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BB425AA1BAB6D0A9A235C609336095DA /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 87D844AA8BE16811A4A7BDB925ECFED3 /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 34BBD5BBCA8379CE3AC869AF69F13FA2 /* RNGestureHandlerRegistry.m */; }; + 87DF170F86D7B09B7E208D3D667CCE20 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 43FE0A52F652BCA6541CD75F6855A028 /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87E01C152DAB64EDBA5630CF2A452E5F /* FIRCLSNetworkClient.h in Headers */ = {isa = PBXBuildFile; fileRef = FB93C116608C7D0893D4BF7038D99D1F /* FIRCLSNetworkClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87FAE4A24D333EB4AEA5BF72137525E4 /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 603DE106673E866A530CB5FBA50E0F94 /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8803911BE03AAB7FC2FD32E9091C3413 /* Arena-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EC93F69EB17565DC472711C55309B4C /* Arena-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8826F32DD76619864079E4D5AF5D36BE /* BSG_KSCrashC.h in Headers */ = {isa = PBXBuildFile; fileRef = EEEF5FAAE4B42250CBF1B3FF63D486E3 /* BSG_KSCrashC.h */; settings = {ATTRIBUTES = (Project, ); }; }; 884B5F19587F1A3FEA68030A268D572F /* FlipperKitReactPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 8031872DCCE430B11F0E3C6A6E3DC9FC /* FlipperKitReactPlugin.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 8854E48F8D005D8019845DD3D439CADB /* Optional.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B7B1EAFBA5C026A9F7DA41C1B308F5A /* Optional.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8859ED48AD5231787BD69935CDF33F2D /* MiniPBCoder_OSX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AF92831C225D2F0E3C8CE8446FF6B84F /* MiniPBCoder_OSX.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - 885FBA60E6C3486B760EB444BA511105 /* DiscriminatedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EA8AD2545A0AD14865A826A89AF03BD /* DiscriminatedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 887847B8682558ABE425E359B9C9E7EA /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 40957D11A50DE6E72211996E3F5392B0 /* UIImage+ForceDecode.m */; }; - 8879FC468B9A43BD653DB24D3B9550A2 /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9136A8AC5E5A05C022A9E70195FF1DB5 /* RCTInputAccessoryViewManager.m */; }; - 88A15ACFC4BAD3B89013314EE56C6026 /* FIRCLSExecutionIdentifierModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 1480E96A65A01446E22091CDD5C48855 /* FIRCLSExecutionIdentifierModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 88C828CED02CF4F40C3ED7C6DFAB728E /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5029C3F1FAC79F19E9E6338F44DB533D /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 88D179497DEB1D64001E74B069D6EA77 /* ExceptionWrapper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4BA0DC74B20FFB89DC6B793878214871 /* ExceptionWrapper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 88D27AC49E4DA6DA63507E1DA7B4DED9 /* EventBaseManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A18608C4217F3EFA8C0D2A878CF092C2 /* EventBaseManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 88E5DB0CF8ED047EDDF28C48DC88590B /* filters.c in Sources */ = {isa = PBXBuildFile; fileRef = 4C1FE474229C2ACA4C7C4D7B00D43C22 /* filters.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 88F9511AAA30DA2A0F52B87667CC1984 /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FED52E48A4F7480A2C6FF36C02DB30A /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 891616D49632B3D08341F5CAC101D619 /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 102B924AF0ED7E083BCD625DE71BC18D /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 892383031C84145919B28309AF9FCFCD /* AtomicHashMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = AFAAC35F1D7EBA12FAE2CE82168A8B09 /* AtomicHashMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8933F96D1F1AEA7F654D6D23F3C092D2 /* ThreadId.h in Headers */ = {isa = PBXBuildFile; fileRef = C594E33B7F2DC2B31F6CDCF045C05323 /* ThreadId.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 893B3932987EEFA265CB76B8504B952D /* AtomicUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 614BA35B6914DE93A82BE6DC1195EBE9 /* AtomicUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 894B56376DB3875A4E116D9D30E75156 /* StreamFragmentAccumulator.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BF02578CD55A4686096FD853394854D /* StreamFragmentAccumulator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 897486E99902985F26C48BFB7C343DE7 /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = AA8958BB286E0C29D2F0EA92528B5BEC /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8981BE6CBD2FE854DA15E350C601F887 /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9AFBFF50E2E566604FDF32D5D2F1CD7B /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 899FFCA3B165C5CD1981DB5BCCAD5239 /* EXAudioSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B5F5D314E31E7F95E9256E46FC96B037 /* EXAudioSessionManager.m */; }; - 89A5839C1836A902832DDDB250B040AB /* RCT-Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = ADE3B99706E1995C0DCAAE8F4B722ECF /* RCT-Folly-dummy.m */; }; - 89F322351D3894AFFC9FB6B59A135169 /* crashlytics.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5463A1ED9389FDAE33B159B05CD39CCD /* crashlytics.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A01BB6AD1A514C1055039835A416C10 /* Libgen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 31D20C85F5829B2CD3A10D7F0581B896 /* Libgen.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 8A0E6E0B51AD7E17CB274663F7422D32 /* cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 5B226505A9C8CFF13FE2314419290926 /* cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8A0FB5731D30DEE6CC6ABD2712A38551 /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = F54D738D337896E6486097BA312D1F72 /* RCTRawTextShadowView.m */; }; - 8A10D38B39F09203DE1423CFBAD73557 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = CB4581065F9F852C0D03187495A16A5D /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A336ED6CF064845C2E72273A6E8B30C /* CacheLocality.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EBC93F84D6D9CE3D89CABD497B79A55E /* CacheLocality.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 8A381701CE199626875385A565A005E2 /* SDFileAttributeHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = A45B86740B69AAA5C0F05B0A58EDE5CF /* SDFileAttributeHelper.m */; }; - 8A3BEF16382F6DAD4AD25CBEA38B5C07 /* pb_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 5C80621220CDF16B10C3A915E83A66BE /* pb_decode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - 8A3C214369E1E31F6977C8A87F15800A /* BSG_KSCrashReportStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 161F522101C06DF780455CE87AE079A5 /* BSG_KSCrashReportStore.m */; }; - 8A55987C4F771B347469F38084E35465 /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = 78881ECD93FBC810CDA088B42407607C /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A56257D54036A87F06837416A22280E /* FIRVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 747BE71E8C82E7E029D0E1901F01B273 /* FIRVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A6F20BC92FA5CD8F44F825AF8359DF4 /* FBLPromise+Do.h in Headers */ = {isa = PBXBuildFile; fileRef = ED81A5EB12FE3E918B3DCFFEBF9AE754 /* FBLPromise+Do.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A81D21C4AC741B2D6B5C65597671711 /* FIRInstallationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 38DBC4FE53A7D3A0516B8339987659B6 /* FIRInstallationsStore.m */; }; - 8A88B62533E4353E50853BCAF696096C /* ParkingLot.h in Headers */ = {isa = PBXBuildFile; fileRef = 504AD14FE100A20D8DC16B176158574E /* ParkingLot.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A8A7CD3CF609084FB0EFF325FD2B172 /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C95F26847F307E7DCEB16772ED927A1 /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8AA0D7F777778D049475BDE0BBD36A1D /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E99D6C2A288A7C117EAAE21A1959639 /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8ABADC0950BD19424E35803134EEA250 /* FarmHash.h in Headers */ = {isa = PBXBuildFile; fileRef = A84C7960CEE6FB114D2D907465B2C77D /* FarmHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88C808AB0898EEF8B94E01F1A7CEA8DC /* Stdio.h in Headers */ = {isa = PBXBuildFile; fileRef = 98C8C0BAD902465510161FDA9A574223 /* Stdio.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88E117081C5E333018F94699ECC05F16 /* RCTJSScriptLoaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DC86699D7FF06D9AC2D7824184FFD21 /* RCTJSScriptLoaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88EA06C0214D08253801EAB5946BFB7B /* ManualTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 08FA31C50853621E0FBE3852C4C240DC /* ManualTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88FB00DA4C7C599F38772B29B6B39AA8 /* SpookyHashV2.h in Headers */ = {isa = PBXBuildFile; fileRef = 50261AF3C745BB3A0CDFA2344529F574 /* SpookyHashV2.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89013A6DFF0630C6D13CF2DEEEA681E7 /* Assume.h in Headers */ = {isa = PBXBuildFile; fileRef = C86DF7EF0D2DB8F15D67CAB2D5C16B89 /* Assume.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8918DC8B349ABC5E0F857B3F3A79D075 /* GULReachabilityChecker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B718F26729C506A76A2B66E211E6927 /* GULReachabilityChecker.m */; }; + 8927E0F08B36EF9815D7A476CE9E753F /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = C86BB786B3B58004A16C9CAF9B645A88 /* UIView+WebCache.m */; }; + 8952518B702D1DCBAB0EB6FA822A7BBD /* SanitizeThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A27423CFA6F234FE0C8C47A25AA11A1E /* SanitizeThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 89566524B54CD995DD46313D083F8E2A /* RCTBlobPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 89E76C6091B3365DFAFAB90BF5C9CFDF /* RCTBlobPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 896421FEC4C27E1D4527EBA03ECF5037 /* SDAsyncBlockOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D7795BE80B6157A02063B428151BA3C /* SDAsyncBlockOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 896F8CA8A963FD3DA7B78752A73DFDCF /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = A01A966EA9B80F740CA05FDAE563EFD8 /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89797E2212FB09B884ACDE399A2B1B06 /* Sockets.h in Headers */ = {isa = PBXBuildFile; fileRef = FE5C2E5ECE500F046DDAEFBB1AA82A09 /* Sockets.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 899535A2E478C13DA2D193CA3BE28847 /* ipv6-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 72835F36D45E0327A28A757A7B2340F9 /* ipv6-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 899FFCA3B165C5CD1981DB5BCCAD5239 /* EXAudioSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F8D50667E4ED06A26937DE3CB1093BF5 /* EXAudioSessionManager.m */; }; + 89A9FCC7ABF5C38919E8F045224CC8BB /* FIRAnalyticsConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F522791A3F04533C3EE619702346991 /* FIRAnalyticsConfiguration.m */; }; + 89AE893A96F60B5E879214A05480D1C3 /* BSG_KSObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = E2B5FC28C6329188208C5332F782776C /* BSG_KSObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89CC065E38105426D8C34465243945BB /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = 0284EBCEAA398D64FA047A23F7CE1818 /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89CEE170B3342EB702B3A9B2C1AD7861 /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B29C1B4AEAB65007F1EE031667FAF0FC /* NSButton+WebCache.m */; }; + 89D4E55B3B9C400960A626ACF043D719 /* bufferevent-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A1E9C1B0EFF5B1C55F68933D06863DE /* bufferevent-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89E84F8839C0774350C23C68CE2E37D3 /* DecoratedAsyncTransportWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = BFA4879CBA92A53717B01D68F383A73F /* DecoratedAsyncTransportWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89F6EC1FCF0F8D600C23E302E580B078 /* F14Mask.h in Headers */ = {isa = PBXBuildFile; fileRef = 065FBA790EB915D267BFD279DCEA5863 /* F14Mask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A0031FD5982F5CC51FD1C1F189F99F3 /* GDTCOREventTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = DA1A7C7065BBB16BAB98F0BA2DBDF640 /* GDTCOREventTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A098B3129C68AA270BDF0E6212E6B8B /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 66F0D8BBD14EFB8EA9197CDCE644FAB0 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A352045E1BAAC27B90EF7BE3CB24C1B /* File.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFCCD7B99AE6159D261163AC8C4ABBF /* File.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 8A469132AC842D6FAC073671391109DA /* BSGEventUploadKSCrashReportOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B58D254DBD56810C7C07ABA162011BB /* BSGEventUploadKSCrashReportOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A55987C4F771B347469F38084E35465 /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E688FE81B06A10237ADB57140A2DC8C /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A5A286273E341E6CC3BBCF13EE92739 /* BugsnagBreadcrumbs.m in Sources */ = {isa = PBXBuildFile; fileRef = C60F0BD5F22F65B8ECCCB31C20A6C5E1 /* BugsnagBreadcrumbs.m */; }; + 8A5EBC158E3587759189F90128C1E8AF /* GFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = 183DEFA82BC9DB9C9B0C37345C7E6763 /* GFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A6897540FD7F2E503BDB0FF9A072853 /* BSGStorageMigratorV0V1.h in Headers */ = {isa = PBXBuildFile; fileRef = D40C3533BF228493CCEDE27D1FB64084 /* BSGStorageMigratorV0V1.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A6C3B3B30FDE9299D4B64509B9671C7 /* NamedThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = B3C6BFB580171BD8CB2AC2C4D3FDE006 /* NamedThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A736F87F6376165CEF7471B8148F5CE /* GULAppDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FD51AC155A82E1BD08CC8EEB840440C /* GULAppDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A7548CF5CC84894C8EBD3F48A997860 /* SDImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 636EA45DECCDA93699ABC2B3569AB75E /* SDImageLoader.m */; }; + 8A7CA5DBE530728426BE5AA59945F7CE /* VirtualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = B6256683A3DCE9CB6912C1017947136B /* VirtualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A7D91895A1BB38D3CFDBB931E0718E7 /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = BA128D60C396E9F6F2E87021A86DF3E9 /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A8A4A4AEAA9205C8F4C8B12DF5395F2 /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = 97E927B66185AC875950011515566C7E /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8ACE8E6D499B1E6DE4E2918E26526832 /* Select64.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F67A5F42B06C732F114178CBE4CA845 /* Select64.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8AE0F3756B30F9D2A378D68E4596A514 /* UIColor+SKSonarValueCoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 112FB65056DB5FBF8B435ACD05AF3E49 /* UIColor+SKSonarValueCoder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 8B39BD1E44FE91428182C0C0272076AA /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 981EA095E7BCB9C0D4215303F6BB5A4D /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B5C7E01BD1937627E085D9B7882E2B8 /* GDTCORUploadCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 23D46A4B7D4AF7D3AD7C0C7AC6357FA1 /* GDTCORUploadCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B95E90764A6F1C63D21A740E1E7CF31 /* RCTConvert+FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = 643C284C788DFDDA64CE7315DE23C92D /* RCTConvert+FIRApp.m */; }; - 8BA65C19BB40BEDCDABB79A28C21D3E9 /* Cast.h in Headers */ = {isa = PBXBuildFile; fileRef = EB7484EC228A3F3928B29F2172BFC923 /* Cast.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BACD6D08335CACDAC7EC574B832A193 /* READebugNode.m in Sources */ = {isa = PBXBuildFile; fileRef = BC6BEFA45EDA3A3659513A430B566461 /* READebugNode.m */; }; - 8BADD1737DFD5A2D18F8FF8EF4EFB689 /* RNDateTimePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 08EA7BAF8053A40E2918536B6F1CE145 /* RNDateTimePicker.m */; }; - 8BB527F62230ED1D60A76E499B58B239 /* Aes.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3BA5115F9737AE637D285A7D17ECEA /* Aes.m */; }; - 8BC53CDDAAA1C9B0476E9B1D0F83E8C2 /* EnableSharedFromThis.h in Headers */ = {isa = PBXBuildFile; fileRef = D4228F768266D79383C00EDA869BA843 /* EnableSharedFromThis.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BCA66C4DD4699FDB19801EC1D06EC23 /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = B1365A8800228D7EE62CD060F5699BFA /* RCTSurfacePresenterStub.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8BF7ACA43196DDDA01F8B34363138458 /* FunctionScheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 7329DC9DC46804A4F663CE828B7DF7E1 /* FunctionScheduler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C0E75013E850C9F1CB951B57ABEE8C6 /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E1E8657FE2715577316C9E5298CC67A /* RCTReconnectingWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8C13E9563A921EE081786B80F9657DEC /* Checksum.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B95FD1CBD6AAFC3CF3DA514411F74B4 /* Checksum.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 8C341F59EB6702C296FE4472CB9E3D91 /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C3B6BCE228748A7C85DC27F26E7C631 /* EXFileSystem-dummy.m */; }; - 8C5B1BA4840A92F9B1AEBE1EA1761236 /* BSG_KSDynamicLinker.h in Headers */ = {isa = PBXBuildFile; fileRef = 953C90A9AFB9B9CC191BAE4EBC118C45 /* BSG_KSDynamicLinker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C5E8438EAC7E0CEB042DCEC97040AC2 /* FIRCLSDataCollectionArbiter.m in Sources */ = {isa = PBXBuildFile; fileRef = DBD5CDF8A3997C9089262005FF386AE1 /* FIRCLSDataCollectionArbiter.m */; }; - 8C76BE1FF23265DB87D319D3EF570A5A /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BAED0E96BF78EC7982D6B38B4D6D658C /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8C77963E491A79419458208A31FA1A7C /* common_sse2.h in Headers */ = {isa = PBXBuildFile; fileRef = 03B96308C041D885CCF507BE7B0B0340 /* common_sse2.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C870CBF09087DD620249751384E84BC /* EventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 915614263E2FD7EFE2949E5B1BC80034 /* EventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C8E96F03A7BAB6B3647BD0F76CB7810 /* RNFetchBlobNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 86DE22F6FE748461A4460AEF613CB60E /* RNFetchBlobNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C99C499FC2AC2AC1C191A6146CDED0E /* EXAV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A28745EB8CAE1EF817E27C30CA1ACC01 /* EXAV-dummy.m */; }; - 8C99E49ECBB4576ABFFFCD2D33CC80D3 /* SDWebImageCacheKeyFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 71EF12AE0C678D1106C73CA089B8FDAC /* SDWebImageCacheKeyFilter.m */; }; + 8AF95E3907FA15C3A152A802BCAE4032 /* FIRCLSURLSessionTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 98B00F71EF99AF2042883F39A85341E1 /* FIRCLSURLSessionTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B076718314BF12CC935D17DB55025E0 /* GULNetworkLoggerProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = E5FBFF562348BFED4DA0A752A2AEC5F5 /* GULNetworkLoggerProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B710645EC5AA2DACA3445C51FB82FFF /* crashlytics.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5463A1ED9389FDAE33B159B05CD39CCD /* crashlytics.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B8EE6BEDB54E7F2E8211F51AFB1E0D2 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B5DDF99B9B8A7E45B951E939DAB22B0 /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B97D5122D76BF0A49B4A245FF6B161A /* Syslog.h in Headers */ = {isa = PBXBuildFile; fileRef = 21DE4820CB09FD8DF00F8B3310FA446F /* Syslog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8BA94BDFAEBC1986F5E16919F3DFD3CF /* TimekeeperScheduledExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08F7AB15CCBD249EB8343CB69FCE435F /* TimekeeperScheduledExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8BACD6D08335CACDAC7EC574B832A193 /* READebugNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9505DA46341E16895E696AA8B1B082ED /* READebugNode.m */; }; + 8BADD1737DFD5A2D18F8FF8EF4EFB689 /* RNDateTimePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = C9AEE440B62716E7DC763567258B5DB4 /* RNDateTimePicker.m */; }; + 8BB527F62230ED1D60A76E499B58B239 /* Aes.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EC653EE003D3BA9DA51B6784B49E387 /* Aes.m */; }; + 8BB6F6A8D5D7B8E662AA9CE480A597CD /* IPAddressSource.h in Headers */ = {isa = PBXBuildFile; fileRef = B46B99D18C68C5C66A1CED7FA48ADB82 /* IPAddressSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8BBD0D34D3880E1B2867AFE0EE22513C /* SingletonStackTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B7124FEDB72AB8418902207CD8F8B49 /* SingletonStackTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8BD59AB174FB17C09F5A44A5632B9D84 /* pb_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = F75799BE5F54F996D3AE4DDCC29FB260 /* pb_encode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; + 8BF892C4EF966B6ED49D8CBBC5763393 /* BugsnagMetadataStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E29334AD715950C356E291A618D2281 /* BugsnagMetadataStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C02B4C2C15F9CE5B9E2E6093EF8F870 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 297E3326962EB460F2F3DCCB46B61FDD /* de.lproj */; }; + 8C341F59EB6702C296FE4472CB9E3D91 /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 40192D0027FE3F73F92FFE2B8AF7A78F /* EXFileSystem-dummy.m */; }; + 8C611C1AB3CC92E4D9AFCC6B2E3159DB /* SanitizeLeak.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FFEEEAA43F9E2279D73C849BE609807E /* SanitizeLeak.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 8C61FFCE29A8CBBA864BC03EE36A3DE3 /* RSocketParameters.h in Headers */ = {isa = PBXBuildFile; fileRef = BE25E45DF047A25091D66D41617ACFD5 /* RSocketParameters.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C6DB584B29654F57187DA7D2307DC7F /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = B4507C7DFD6A67ED8484D249AA895C20 /* RCTMultilineTextInputView.m */; }; + 8C72EEB1093407065DF28EFD78615266 /* ParkingLot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E79C2D119F2D803A10DD36C7E1C7AC04 /* ParkingLot.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 8C7AF050002526AD3F6E6BC046F6DB2B /* Access.h in Headers */ = {isa = PBXBuildFile; fileRef = 96BF2D34B47DCE54AA42D94CBA7CA081 /* Access.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C8E96F03A7BAB6B3647BD0F76CB7810 /* RNFetchBlobNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = F2E3027F493B38842E9FDBD22E957D27 /* RNFetchBlobNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C99C499FC2AC2AC1C191A6146CDED0E /* EXAV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 93A57444DDE85F66B2D236FA286C7281 /* EXAV-dummy.m */; }; 8CA192619C34A9394EAC3F5090897B62 /* UICollectionView+SKInvalidation.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9A04AB43580B7A96DD95CED1945FA3D0 /* UICollectionView+SKInvalidation.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 8CC0F0CD004FF65F42A36EA181353ACA /* RNCSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DD1F298CEA554A71CA833260EC9F5307 /* RNCSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CC1C6C841AB94CEA8787AF5754571C1 /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 87313FD28D8E6BA857907A1617E2E4F1 /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CDED707F914DFCB3ECC2BE7CE6E6F2A /* FIRCLSUserLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = E2352E5FBE76E56B7B7BA6EF4F362CA4 /* FIRCLSUserLogging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CE5E8B129ED6163557EB3478BB20176 /* TLRefCount.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E0B0B3CDA631795F2F5D588FCF8AA9E /* TLRefCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CF2F757F0A1C6A27E0F36579A466610 /* TOCropScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = B8BFDD279AF1CA07792F3710FF5DC905 /* TOCropScrollView.m */; }; - 8D176871C154B5383584859DF43A6DF7 /* Random.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49223835FFBCC772834BC23A41BF7AE6 /* Random.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 8D27EBDDF0A002BDB9FF045C72FBA1BE /* RNLocalize.m in Sources */ = {isa = PBXBuildFile; fileRef = DEC7BD859FF11D42838748D649E7EEEA /* RNLocalize.m */; }; - 8D420D0FF36627AFAC9BFC2FD28CBD50 /* PicoSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 32C09F0FA9D8B1AFE6F4D9994E4B577C /* PicoSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D5E3926228EC99AA98C8BB5E52426C0 /* libwebp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D2A241AFA45A6CEEA2FA5F519FF56E /* libwebp-dummy.m */; }; - 8D7C15503C98FAC8A720818659B92809 /* RCTSha.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BAA844162D89BF78534CD2CE919D5B9 /* RCTSha.m */; }; - 8D7EDBE452B40174D2A51AD4BFF434AF /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = 37E3F2AB320DD034E64B19E8A465385D /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D8C06438E12DDF9F7EB88FA82E3C827 /* GULReachabilityMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 071524D959DA1A66674ED6538F569B20 /* GULReachabilityMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D8C2479A21CD15D82930E473DD29F08 /* GDTCORPlatform.m in Sources */ = {isa = PBXBuildFile; fileRef = 96CFDA90AB401FBA7E4CFF0BEF711DF7 /* GDTCORPlatform.m */; }; - 8DACDCBDF4CF9ADEE31DFBD8BEB9CB4E /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 297D994A28C40381F01D04E1A3214B05 /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8DBC1454543FFD75374CC0E153501D23 /* EventBaseBackendBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 560446E9ECE8A3E9D5852595DDB3F947 /* EventBaseBackendBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CAB8CB4895B8C60422A6632042C3366 /* NSError+BSG_SimpleConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = 6250AE0BC5C931BC2D8257FEA03EC40D /* NSError+BSG_SimpleConstructor.m */; }; + 8CBD6D0CB530855D2D1E3DC8A7034F91 /* RCTDevLoadingViewSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CB068C3C1090FBC4AC6414F186E9BE8 /* RCTDevLoadingViewSetEnabled.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8CC0F0CD004FF65F42A36EA181353ACA /* RNCSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ED66C4774C8544D1E55121F478A0810D /* RNCSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CC1C6C841AB94CEA8787AF5754571C1 /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 81095CC27AB0AD6D943702F4AAED8A59 /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CDCDE18C697839C023F356FE9EDADF3 /* RNFBVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = D9D89707F1744A3D93B48B799E2D5D7C /* RNFBVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CEB7B8EBD88672CF65829C3F587814B /* RValueReferenceWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AFD581736261F2861B84FE2B7207D9B /* RValueReferenceWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D0784FEB22B291920237AE2737B9120 /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = DA75C4879252CC32645B3BD2E5E3AFD2 /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D0D92757235B7EAFEA4E8CAF5EFE0F5 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 316A90574F4767203686A7B623BD08DF /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D165B355BDB7DE684E2F22405105A8D /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BFF8F1D045AC3CDC40AF33C85E5F676 /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8D27EBDDF0A002BDB9FF045C72FBA1BE /* RNLocalize.m in Sources */ = {isa = PBXBuildFile; fileRef = 88503417B54D3757756715839F7FDEE0 /* RNLocalize.m */; }; + 8D2EBBC706AF49A6626065134CA8E728 /* HeterogeneousAccess-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 509A1E62B3E7BC802847A7DB7EF72A0C /* HeterogeneousAccess-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D6C3F1F79AD9E77B35ADA3F3027D678 /* Sched.h in Headers */ = {isa = PBXBuildFile; fileRef = 7142F1FB30D196FFDE9E3CEBCCCE4C8B /* Sched.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D78EC568FFCF862DCB52A7619379AC5 /* Preprocessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 23DAE6AA300B3D3D134253810C2441BE /* Preprocessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D7A34A51D1BF6496B2B25144BED79BB /* FileUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C4D8DF159A741D57577CD8295426EBB /* FileUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D7C15503C98FAC8A720818659B92809 /* RCTSha.m in Sources */ = {isa = PBXBuildFile; fileRef = 7547F8E6B74F348AA102F489A03E09D9 /* RCTSha.m */; }; + 8D7EF30110E8C8440594225B49A8BEB1 /* MMKV.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AE7CE9F04ED973A0AB63ADFD39B84B0 /* MMKV.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D810A73247D24216F6C059D1B33842C /* StreamsWriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E4B12CEC68F65F6CC49C9E3844577875 /* StreamsWriter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 8D8D8F73E9D672FA84FC9E6D137AAB93 /* vp8_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = AF21403E28C34FCEB1EB5AD97C2AAF24 /* vp8_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D9011DAC5D088182EA6F8AF8D9416C4 /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = C70B44F70601F2E891612366843D044B /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8DE47431F6BBBA3BCD7EFF8AB414BB88 /* Try.h in Headers */ = {isa = PBXBuildFile; fileRef = E4FC8715E1EB40E6DA91B572FD796DA9 /* Try.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8DE75F8DC93F2864EC9A6B622E944672 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D0D88DE9238F87B08F5FA4F0049515F4 /* RCTActivityIndicatorViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 8DE788B27EBABE1BFF153505676730FA /* SKBufferingPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9665E96A1951706C8EAE0C847E4E7288 /* SKBufferingPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 8DF9FF209CBCA347D97154628EFF1D30 /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BD55AF06C4C5D21CB16B94666B41A91 /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E025AC5934977C0897825A06231512E /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 41D19D3BC27AEF5470E562A5FF4378D0 /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8E122355E6BA25746F4CE38701EA9755 /* RCTDevLoadingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = C498AD8970FB8D1E7CC3D03686FD4E34 /* RCTDevLoadingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 8E2616EA0791DDAF44B4CC294DDAD401 /* RSocketRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = F741A695174331064C6F1F03D184685B /* RSocketRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E2FB2C0A1987D6BAA20F55A5AC58841 /* ms.lproj in Resources */ = {isa = PBXBuildFile; fileRef = DE1BFDAFC28F339CABA7846F7BD52752 /* ms.lproj */; }; - 8E30F8AAE465B845B2F19BE6725C2914 /* CallOnce.h in Headers */ = {isa = PBXBuildFile; fileRef = 67547ABBE9B4176AC94A8DF3675333BE /* CallOnce.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E4BEC42D8B47DC1B1FD32279885EF10 /* SDImageIOAnimatedCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 93DF72D593084C73110B41D3BABC0BC0 /* SDImageIOAnimatedCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E4DA017E6B261A12284CEB285594F61 /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 61C5237AA4FF1AE4631BC96A273B9D85 /* SDWebImageTransition.m */; }; - 8E5875CAEB6B9F9A4A20C91FC2082AB8 /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C03C2DE3EBDFE0B44CA7C61777FCC75 /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E59AACDFB5FB3044BAC64861287C10F /* ConcurrentBitSet.h in Headers */ = {isa = PBXBuildFile; fileRef = DD0E1AD5E554C9C1E9D21507A4CEB48F /* ConcurrentBitSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E77A077BF519D91E269E883B85780BB /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BB11E12080EF34974D669D1BB3054263 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8EA786B0D42D615DBA1B530027750D66 /* dec_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 158853D4DAF24639C36E51C1EB0294AF /* dec_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8EA9309A3F09E71B6810A8AE244EEF9E /* FBLPromiseError.m in Sources */ = {isa = PBXBuildFile; fileRef = 13F667B2253495881B8BBB79ED397290 /* FBLPromiseError.m */; }; - 8EBADBD4A48F5BA161B98DE9144AAD7E /* RNReanimated-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 09E180C05B7FD43CD480B81BD6689A8F /* RNReanimated-dummy.m */; }; - 8EC0AAD4C5716AD3E19DA35257F24ECE /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = FEDAF5ACD87B214AAEA697830ACF7991 /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8EC2A66BC8418E3F2DDEA98A9C555257 /* Stdio.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B8E8C68AEE768BDD9E736F62AB3056B /* Stdio.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8ED41BAA2713442B6B8B22476A64C71C /* AtomicUnorderedMapUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = C37A75FDB49EFCEE4A1211875E3F47BA /* AtomicUnorderedMapUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8EDF1BD1602D1A390A8BCAAA4E7846F3 /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E61AF000568669A5DFC17B3D86DFB08 /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8EE469971B328501E2E8F04A467A4B16 /* fa-IR.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 82654E144A90FED84B5D39EE71AF431F /* fa-IR.lproj */; }; - 8EE4B0736B0CEDE6316C8A83608B9BDE /* RCTEventDispatcher.mm in Sources */ = {isa = PBXBuildFile; fileRef = 311D1BFE3AD300DD7B609B6C654D6638 /* RCTEventDispatcher.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 8EE60655ED2E66AB35480E63E444A60E /* ScheduledSubscription.h in Headers */ = {isa = PBXBuildFile; fileRef = DB5DD268804BED7D139485C26E2CEB48 /* ScheduledSubscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F03661183D2F9B3766266878A7D4DAF /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 16CEEBDE7A7E39E101B6CC746BC9FF6C /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F046018203F3344080CEE82E5E5561B /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 728DCD7B35A7852B1FD750F76741E897 /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F0B03E13B45897A47259BF9BE55388B /* Foreach-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 28B56D2A63D67651137709B2BDCEE69D /* Foreach-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F24D7B2BC340084B0DE94FA59D24ECA /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 57D92B45F84540F338A1EEA5DB2FB194 /* RNPinchHandler.m */; }; - 8F3DC51F12812E6CCC59C5F61F590786 /* TimeoutManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B58A282A684CE85411B72C0613BB634 /* TimeoutManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 8F3EEC566EFA73F57828D1A367EB5080 /* io_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 68060AEBDFA64E78B014DA913C5C68F2 /* io_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8F4B46E534DEC70A5EB6B4F3F9AEA488 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 72D64CBEA652505759A9A44431D4712A /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F4BF41141B12FFF4CF8A5F8C8394B7D /* GDTCCTNanopbHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = 524B7125CFC13FA52439FAA76CEAE3D1 /* GDTCCTNanopbHelpers.m */; }; - 8F63AB259A7D51B011EA55DE02E7B0FB /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CE0C4A8B6C2D128A86C2AADF7D4B3E40 /* EXPermissions-dummy.m */; }; - 8F7A8776FC1D4EA1BC600F153C9A098C /* DelayedDestruction.h in Headers */ = {isa = PBXBuildFile; fileRef = 50D23022535AF7BD0EF89E7177B837EF /* DelayedDestruction.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8FC107D74CE5C4C4DC234E85012D98DF /* ThreadName.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63181DA198763B9B8CAD33951BAC9300 /* ThreadName.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8FC3AA74F00B8E3404A48628B8640B26 /* ExceptionWrapper-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3887EC7543C5FB4AF86290527D48BD28 /* ExceptionWrapper-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8FC8BE266412278F6A06262CEFC25FE7 /* RootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E6F67CA2E68EFFC32D7EE11D61642A2 /* RootView.m */; }; - 8FDB5610B5FB519EDFC90A048579B583 /* Sched.h in Headers */ = {isa = PBXBuildFile; fileRef = D74ABFF01BBF287ECFE62FA3E7B8555B /* Sched.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8FE3E5AD96DFBD4163FB2A5A0782C435 /* Assume.h in Headers */ = {isa = PBXBuildFile; fileRef = 03AE25503118EA1D4DE028BBCADCAEF1 /* Assume.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8FEA7CCBE95369836128207D21E7EBFE /* UMModuleRegistryHolderReactModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 22DADB1CFC3AD9AD8407096A834D6C45 /* UMModuleRegistryHolderReactModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8FEFCCA33BC8530E1D2AEBC80611641E /* GULNetworkLoggerProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = E5FBFF562348BFED4DA0A752A2AEC5F5 /* GULNetworkLoggerProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8FF1F351F82100B61EDA02920DE4C1D3 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2424F8AE03455AE0AD4A1E5A7493D364 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9000ED0C5C7BF90A5AD7B407D0EA396E /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 343678FC9AEFDE8EE70E7430AB1C0E23 /* EXConstants.m */; }; - 900498AC6B8C0EBDE2BD1F722CEB99D2 /* FIRCLSFCRAnalytics.m in Sources */ = {isa = PBXBuildFile; fileRef = B2479DB2FE66EE76609DF15B3AB5F1F9 /* FIRCLSFCRAnalytics.m */; }; - 9004BD3B2B71C20129D136519D9E375D /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 007C0C65DFF1B590AA5D587D3A0F3FA1 /* QBVideoIconView.m */; }; - 901C02A4E676987FB55E71C34E6DBB83 /* Subprocess.h in Headers */ = {isa = PBXBuildFile; fileRef = 714617101653AABBA370CB7F07BC74DD /* Subprocess.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9027497226350E7DD3E7914583583DD6 /* UniqueInstance.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E04DE717E041E0009FD97ED613179E4 /* UniqueInstance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90348D3BF20882A243700E6347E77D98 /* UninitializedMemoryHacks.h in Headers */ = {isa = PBXBuildFile; fileRef = E9C8ED646C0773D3BB14C7CEA285BB54 /* UninitializedMemoryHacks.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 903BA03E71D7935246FD52FFC5BF57A9 /* RCTImageURLLoaderWithAttribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 88DDBFC3B61FAB1F9A0438758D23ED76 /* RCTImageURLLoaderWithAttribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9045E03D53BAAC694704403214B4993A /* OpenSSLCertUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E0E6313449FF04D37ED86F79B8A8A3E2 /* OpenSSLCertUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 905C3302B3FB2C87DB25D8818E188A67 /* Fingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D1197EAB8DC51BB58614FA311213FE6 /* Fingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 905D94E8C81E3E4D92885F63365C0147 /* BugsnagConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = CDCA6A0235B5F65867C4FA3B8F76C5C1 /* BugsnagConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90658B34166B9D332212F9F3906EB8A9 /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = ED213EAFD7F2C5486CCED6F2A9B5A25F /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 906F81B02AF6433FF551221C78F8683D /* RNNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = C2FAA18C7812E76A1D3B307E87E9A280 /* RNNotificationCenter.m */; }; - 907DAA01B71691B49CC9BF7CB9C4FBD8 /* FutureExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5009B368367C8DF2D7EF0B5BE9AE61BE /* FutureExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9093E6DB56A62A6BBACB90060CB25F5E /* GDTCORClock.h in Headers */ = {isa = PBXBuildFile; fileRef = 463B9B93FEF2AB780CA5E2E4FC38E86E /* GDTCORClock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8DF7DC8310894831D8646315D603E511 /* CancellationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BF6B2F608C86C28E7AFB5A77D03196D /* CancellationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8E122355E6BA25746F4CE38701EA9755 /* RCTDevLoadingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = AB67EAA6F30A859AE4F167D603F2160B /* RCTDevLoadingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 8E29E3515A4CEE0ED7F3697351C05B17 /* RCTBlobPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = F339762AA8DD6F76C7A6BE4A9051877A /* RCTBlobPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8E2A6C95A1BB81D7E57A02DCCD8A2C2E /* FIRCLSConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = C567B7482E7DA9EA3E8295E3F0050D90 /* FIRCLSConstants.m */; }; + 8E3971C08DB59B15538760096809208F /* FIRCLSByteUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = C7AB557274CF57A02EC21EC9FDC67657 /* FIRCLSByteUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8E4B38B0A7C618B7C40A651DBC09933C /* BugsnagAppWithState.m in Sources */ = {isa = PBXBuildFile; fileRef = 0433A26CA9AB21D0ECDE15D53044AC50 /* BugsnagAppWithState.m */; }; + 8E4CD8279B03971C20A8662740220463 /* Request.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 85E337353277B5A943B144A297742D26 /* Request.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 8E73B3FEAAB27D443738E8A7E1F37E81 /* FIRCLSReportAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 587CA81CE7102CB1AE338DEDA0A1B0D5 /* FIRCLSReportAdapter.m */; }; + 8EB9C98AC989799E41909A8834947C72 /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = FC74A77541F9CFAEA3B265B8EBB9F649 /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8EBADBD4A48F5BA161B98DE9144AAD7E /* RNReanimated-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E495647157E078E4359FE6D76B770AB8 /* RNReanimated-dummy.m */; }; + 8ED434F65C6CD8B824D294363AF15573 /* GULLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 97443E49951B2C31C21D22A095CED0A6 /* GULLogger.m */; }; + 8EE4B0736B0CEDE6316C8A83608B9BDE /* RCTEventDispatcher.mm in Sources */ = {isa = PBXBuildFile; fileRef = 97B763A074EB5BD7EAE91979A432F6AC /* RCTEventDispatcher.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 8EEE2C04C3417139A09910CC35AB10D0 /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = E4A5AC96B92CF782E2E8B80ED46C299D /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8EEF7CD07FA75F69C2C5859CD72C4F17 /* FrameSerializer_v1_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 52BF20AE590FB1B2AEB17652F1AF704E /* FrameSerializer_v1_0.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 8EF11F21E7E5930C0D6029D97BA6ACD4 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = E22B4113FC51C7241A0EF4BA6B002A14 /* NSData+ImageContentType.m */; }; + 8EF24FBD4186CB3967B9A668798F0EA4 /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26E253A144B29FD6ACEB1D84A5B4F6C2 /* dynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8EFC658A04363FD5F4B3429F47DAE731 /* GMock.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D887A378298359AE26B8C8F180008B1 /* GMock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F18BB721E90597C34F381B4FBDAD1C7 /* F14Map.h in Headers */ = {isa = PBXBuildFile; fileRef = 64B3EB06DBD57A098DB73AE093530DC6 /* F14Map.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F1CFE1C548EBA700E1583A4BB38E91B /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = FD028CB98C9F9EFDFAFBE551B94565B8 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F24D7B2BC340084B0DE94FA59D24ECA /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = FBCC9D8F5D3463434F12152F53AD744A /* RNPinchHandler.m */; }; + 8F3404F2E966D28AF2C2B29F9AA66BDE /* Pretty.h in Headers */ = {isa = PBXBuildFile; fileRef = F091B10FC5021AF0D2DC79A4895E6728 /* Pretty.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F4D3FBC5A6E396605A910B085F498A4 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C97FBA18067CC52B4EC4531841DDA970 /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 8F63AB259A7D51B011EA55DE02E7B0FB /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2949045990424B924BB4ACE1FF5B0454 /* EXPermissions-dummy.m */; }; + 8F63D7B66058468FDD54E8BE68B22A79 /* SoftRealTimeExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CB5A4488DD9C1D73C063B5AF6E4F7D2 /* SoftRealTimeExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F655760E09FBC3301FAA0051E37D708 /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 1588731ED24E7943B390F4C87491A950 /* ja.lproj */; }; + 8F7A04661F3A22BE0E2663332D2A6A8D /* quant_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 4FE7B594CF6867E71FE4E2301AFEAD29 /* quant_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 8F91450DD2DCB3F9006CB4AB7EBB9A78 /* BugsnagMetadata.m in Sources */ = {isa = PBXBuildFile; fileRef = D50DC825479EC74D8D93ED11C4676228 /* BugsnagMetadata.m */; }; + 8FC8BE266412278F6A06262CEFC25FE7 /* RootView.m in Sources */ = {isa = PBXBuildFile; fileRef = A49F25B700EE4A6775B874F4E8AD3D62 /* RootView.m */; }; + 8FC9D64BA5DA1D77663ED2FEF2CD8655 /* BSG_KSCrashContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 98F664E7D76100C647C47911BF525392 /* BSG_KSCrashContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8FD0D61258D48BD6FBAD941A36B02F05 /* UIImage+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B7258AD88FCB09A3552091074015F17 /* UIImage+Transform.m */; }; + 8FDC14CCA3C4455A80E93218279CE76C /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8579EF0DCAD00BFCB49994109AB73B0D /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8FEA7CCBE95369836128207D21E7EBFE /* UMModuleRegistryHolderReactModule.h in Headers */ = {isa = PBXBuildFile; fileRef = C4BF2CCBBF5CE374288FBFF0D54C7ADF /* UMModuleRegistryHolderReactModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9000ED0C5C7BF90A5AD7B407D0EA396E /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = D9F75E7DAE922168FF40B90D585476A7 /* EXConstants.m */; }; + 90044CACDD6007A10615C083AB31992C /* RNFBPreferences.m in Sources */ = {isa = PBXBuildFile; fileRef = EBA6F0DD4A3B953CD39A34A3970D8304 /* RNFBPreferences.m */; }; + 9004BD3B2B71C20129D136519D9E375D /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ACD3C341BF3A171077258DD2E353362 /* QBVideoIconView.m */; }; + 9014D8322A35D5B1A0CBBEEB9C9541EC /* Merge.h in Headers */ = {isa = PBXBuildFile; fileRef = 47C84FA9DBDB8034B972C27156F21F00 /* Merge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 901A21999171DB399A3D9A5EFE5F3982 /* tr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 1161903683157589F2902EBB4CEB72F0 /* tr.lproj */; }; + 9030807EEA24116BF4444DEE216C7551 /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EE0C19A707DD76A72F53CE519B41D6C0 /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 903224E1E03C45F810C7705242CC2B58 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7FC102D46DBA597743B98D535FAB2F /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9069E0FA345EC63F1745A5E3E5E9F113 /* SDImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = F2644328A8685FAFB272DAD706AC4A36 /* SDImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 906F81B02AF6433FF551221C78F8683D /* RNNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = D5C9EB3DD6251F36240159CAB9F95695 /* RNNotificationCenter.m */; }; + 90898528AD53B423E23A21318A6F70E7 /* BugsnagStateEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = F1D45A2B71EC9AA7167B5151A6B1F0D2 /* BugsnagStateEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 908DB569499743B13CF4A71098C1597C /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = C9DAB19BAE0886CC6E1FC7AEE195FB70 /* encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 909575A23DA3834C241BB2951C78C9B9 /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0DE80E422D8FB9F62B9655C08E9C59A2 /* Assume.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 90AC36E8F28EC86B055ACB4988775AAC /* FlipperRSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = D1F9BC25A5F9A6EBE79C5FC99E1ACCCB /* FlipperRSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90B72549F0CE756A6EF4649666C7BC22 /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F2AAFED44278DAADE645A90B5973A815 /* InspectorInterfaces.cpp */; }; - 90CCDDA97E024E08FADD26CD4752B0BC /* FIRCLSSymbolicationOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 22403A1A10B620C8AEDD2BB6D04A48F1 /* FIRCLSSymbolicationOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90DA99BD711D5A077253A17D70E2D7AD /* PBUtility.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3B8270C83DA3FCB589B40A874C110126 /* PBUtility.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; }; - 90EF59D897C9BF722596EB11F22C3696 /* Uri-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 450830B6145DACC4C6D5A7DC4011A9DB /* Uri-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9117C01451CE97C7F3D42A02DD74B509 /* FIRCLSSettingsOnboardingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D406C3172FD33987CC90D98C292F301B /* FIRCLSSettingsOnboardingManager.m */; }; + 90B7136DA748BF199BB9AC94575B04AB /* F14Map-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 57296D14B37F4B594C34FDEC9A63E717 /* F14Map-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90BFEB6BD2D9B45D07BAF16DDD09BCC0 /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 051BC3CCB1F2C53A32AE05774FB983A7 /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90C43B022CDB590EAB13056B0DECE6CD /* FixedString.h in Headers */ = {isa = PBXBuildFile; fileRef = 83E759385470971E9A1619229F94FBAC /* FixedString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90D4E356DE236811912A53AF5685871C /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 617B784FD1DFF9097BAFE1E2344EB943 /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 90FD96A7A02207605747CFBF643974A7 /* BugsnagLastRunInfo+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A1AB6D01744E2320165DCECBB1BE4F9 /* BugsnagLastRunInfo+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9107C33AC303B0FDBF48960A1C38A25D /* StaticSingletonManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 20F6BA2AE366AF4C6F7F93F4965CD616 /* StaticSingletonManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 913ACA8018B736349C7F9E1D8A6AAD25 /* ScheduledSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = E081C312DD756143481ED6E7E4B81ACD /* ScheduledSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 91413F1EF37BD8FA6A1CBC584FFF7644 /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F4BA021EFDD407D4A27AEF8D47D838CA /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9145E6F9C497F86A5A5696818E016C54 /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D20DEEC7640A7E26DE4F76A033D9641 /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9145F5B49C89845D76BE58FD9E1ED346 /* Random.h in Headers */ = {isa = PBXBuildFile; fileRef = A954D4E2C3B902244793F2C11C9ED0B0 /* Random.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9156CAE7B51C32678CE8B93FB88C60E3 /* SKViewDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = FBEBC8AE4B5592403820E4F187C46A48 /* SKViewDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 917D30741752F1F7E030DD7C6CE86946 /* SDWebImageCacheKeyFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = E411C8BA0F4807158FF937325ED18B84 /* SDWebImageCacheKeyFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 918420B4EADB7BE296DF3AED54DF3A1A /* AtomicHashUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 210C8413BB03BC4DB926FE8A054C875D /* AtomicHashUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91899FE5EDCF2AC801F52BA0CF7D816D /* RangeSse42.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3AF1EEF7F1F5EBC06486735CE5F3E758 /* RangeSse42.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 9199F2A1FBE0E61F7D9ED8A2753CCF25 /* BSG_KSSystemCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DBD6394E03686C6B6746D6D05F1E81E /* BSG_KSSystemCapabilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91A40C4CD90002A7906155A8A3057A86 /* RCTUtilsUIOverride.h in Headers */ = {isa = PBXBuildFile; fileRef = 660AEFAFDDB0EDC43EFB550CFB6D835E /* RCTUtilsUIOverride.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91BAC73EEA2FBB48091567A31A82E3EC /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 729325CDE10088C9A1033DA3862EF71A /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91C45888F530937FA343C482E222B988 /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = ABF1B552E10C4896CB1C682734BDDECF /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 91C95016F2CD73DB321A21CB071D3165 /* SDGraphicsImageRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6081D20F35C515C6DB4F00B0209A46F4 /* SDGraphicsImageRenderer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91D0BC0B7FEA729E15BDF86C85B51597 /* RNCWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CD9F3D9947D8925A9C81F1B9A1B7E759 /* RNCWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91EDB0A1B5CA4AC9F68124D62ED5ED43 /* ru.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 2054197C408D33E1C62FD02C30E9B296 /* ru.lproj */; }; - 91FDD7B907E719D2F2F085B7BB70929B /* EXAV.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B827111813C069F8F6955AFD74F4A1F /* EXAV.m */; }; - 921A865644DDDAB403CB00BE1F0CA9C2 /* RecordIO.h in Headers */ = {isa = PBXBuildFile; fileRef = F8858511AF37F8A3D53D4FE0D621D8F9 /* RecordIO.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9163C28767CEFDD971EF06E1A97CD6A8 /* dec_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 158853D4DAF24639C36E51C1EB0294AF /* dec_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 916BEC475B5C16D4508CE4054AF30CBB /* Retrying.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D689EB828C16EC54FA9EE86DC83F4C7 /* Retrying.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 91BAAE27526FBD0127C99B01A007C98C /* minheap-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A87D13283D45B725FCA1772F8ACC6C5 /* minheap-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 91C4219B8C33403CBB129D16B3AEB18A /* FIRCLSReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BEBFA68C05885A1CC3877F22208E6D8 /* FIRCLSReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 91D0BC0B7FEA729E15BDF86C85B51597 /* RNCWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 58BEA1567C200E7F5F6B279975DF007C /* RNCWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 91F4D8CB03F3BBCE4923A59D78A728E1 /* Varint.h in Headers */ = {isa = PBXBuildFile; fileRef = 213E5645948B35C26F6888909095F5A8 /* Varint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 91FDD7B907E719D2F2F085B7BB70929B /* EXAV.m in Sources */ = {isa = PBXBuildFile; fileRef = FA857FDABCDE1F76E178BF9A5E3828C2 /* EXAV.m */; }; + 921A650AECDA9052B65E419FFDDEF356 /* PriorityUnboundedQueueSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CE60A3BCA8C0C72394A52F3E828C894 /* PriorityUnboundedQueueSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9228FBB2923CDAF3D6791B69E6835A65 /* Sched.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F26D293A32C713B8BFCD57BD007346D /* Sched.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 923DA1F34D80B84C331142BD8DD784AF /* FBCxxFollyDynamicConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = B6AC1192986FF4E613E462BDDD84A013 /* FBCxxFollyDynamicConvert.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 924FCA48C9AF22A3FD95CACAA85511A5 /* FIRCLSCodeMapping.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BC96ED503285A52E16D54ABA224AABF /* FIRCLSCodeMapping.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 925CF7CD41AE898D4DEEB7616CA5B541 /* RCTDeviceInfo.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8299F6E8BD0F3CCFC1F7B288BDCB3ECF /* RCTDeviceInfo.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 925DB80E624486BB46B826329A1BA9C1 /* ReentrantAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 6533957012F837CCA5A902610A989D73 /* ReentrantAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92660A24E03F4F3C4439B983CB7667BB /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = C153E83D4524A1906529FBE5394FE0E0 /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 926998A0F32ADB050748C38E7318833A /* RootView.h in Headers */ = {isa = PBXBuildFile; fileRef = EAE2B81DBA120D7E747A5AD6AA066AFE /* RootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9269A08DFD1D6E9D293C6AB2B565BC96 /* HHWheelTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9833E76FD72AA77BD04299DE95E2078A /* HHWheelTimer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 92771FAAC4C0BBB0F80182818B230F8A /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81C90EF8F95DD7867ED3541AD3996752 /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 928827B0DC25A9FB624D456128C2171B /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D4FDF46C84B10890F329D83D59BD3CB /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92905B749E27ECF13D19CE8275D42BCC /* GDTCCTNanopbHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = D9891CE4FDE6F86E8136EB0A7555C8DD /* GDTCCTNanopbHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92DB0E1A7EF28B379ACB505392E89EB6 /* ThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 78D4A07F409C5EC209DE0046743FB84C /* ThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92DF4E34A825F667C046C2C56E9F4BC7 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = A421F2EFDBAA96C876AB25BD44230474 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92F05E33FFE965E97E2B8972B84C0ED4 /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7ABB4E8B99C98B574CB424B8DDFAA63C /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 92FE7AAA800B24D5E4C20CE4569B1088 /* LifoSem.h in Headers */ = {isa = PBXBuildFile; fileRef = DEB90D2F0F706C27B95CF613DC87C589 /* LifoSem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93016A61649F76D78403148C998A04A3 /* StorageGetters.m in Sources */ = {isa = PBXBuildFile; fileRef = 773992093A04E0259ACE4B4372CA2E91 /* StorageGetters.m */; }; - 9306524057122CA0859C700BC6E11443 /* TOCropToolbar.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ED1781E466357A234FAA7C7480F39C7 /* TOCropToolbar.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 931C4C1487E0F0C8177E0C8202E8E5E0 /* tree_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = F6841ECB79AB4A38CB837F68495B3AB0 /* tree_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 932B0735C757A51D3A6DED49DC5D6440 /* BugsnagBreadcrumb.h in Headers */ = {isa = PBXBuildFile; fileRef = 24ADE51FB900B21561EDDA6C87068860 /* BugsnagBreadcrumb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 932D71D8D97CE94C6662B5BAB83E84C2 /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 773CD67E1C5C5916902E835142CB8110 /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 924651FEE2C95494D7F5ADBA69D12031 /* SharedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = FF6809C3B5759B98830548E16DE1858D /* SharedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92470F6719AB3B3AAA122E66ED371ADF /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 1892B79315556CD65E27E57D81FA5045 /* fr.lproj */; }; + 925CF7CD41AE898D4DEEB7616CA5B541 /* RCTDeviceInfo.mm in Sources */ = {isa = PBXBuildFile; fileRef = F2C8F1BCEEA27866D3346B8A49A98330 /* RCTDeviceInfo.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 9262F8918746D2B8170AB029AC4D0CD8 /* GDTCORTransport_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = A9AE808ED601364F3208A8ECB8B3C571 /* GDTCORTransport_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 926998A0F32ADB050748C38E7318833A /* RootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C1EE05A18109AA23C61F78E7E447A87 /* RootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 926B192DD06AE82CBAF1291DADFF3A7C /* TcpDuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 8450CF4C473130B21E41CB49420EB6B3 /* TcpDuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 927992BEE5DDAF0315DF981C8C2E3080 /* ConcurrentSkipList-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E9567E0914302535C295590D9E802F2 /* ConcurrentSkipList-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9296EABE38970C4C8CBC5ED4C3B76CAF /* IOBufQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CCD17A67031E9AD6CB5C8FE0052D1EE /* IOBufQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92DAFF1F4ABDE52F6555C4EA66EBA4EE /* evmap.c in Sources */ = {isa = PBXBuildFile; fileRef = 53E6098912BE03536ECD4B1FE675B237 /* evmap.c */; }; + 92ECB1EA9F733DB78D57CB37AC97F94C /* AtomicUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 99AE7D08E695C2160D38F69BBEDC8E2F /* AtomicUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 930062A5A8C222364AD62FB680436D33 /* GlobalExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3552447EDDD2011D9AD21F5EA2B9B7FF /* GlobalExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 93016A61649F76D78403148C998A04A3 /* StorageGetters.m in Sources */ = {isa = PBXBuildFile; fileRef = 67C0A615EC5CE05FBDFF23BFEF29B103 /* StorageGetters.m */; }; + 93067C332A3635A565BB7B4C29D48B48 /* IPAddressV4.h in Headers */ = {isa = PBXBuildFile; fileRef = 18E4B2F4BB2F7FF67DB269B56E4CCDF0 /* IPAddressV4.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 932F771CAD81C4422716974440C09370 /* AsyncSSLSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FB6953130C3692368ABA9E95DDF35CD /* AsyncSSLSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93319A17DA7B2F1F5C2DD3C79FDCA9B5 /* Sleeper.h in Headers */ = {isa = PBXBuildFile; fileRef = F3D4718735FCE29271043BE67B3D5EF2 /* Sleeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 933A07344B992D335D2C0DA6C3451F0C /* SKEnvironmentVariables.m in Sources */ = {isa = PBXBuildFile; fileRef = 8123AF2E83A4B7A6DEE967C1E895AAAF /* SKEnvironmentVariables.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 9370E6E886596AD2DABD6F77AFF096F5 /* Rcu-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 83A36CA920B64E06B7FE6550C363A78E /* Rcu-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 938B2D270EFDA195D2F0642B481042D9 /* FBLPromise+Retry.h in Headers */ = {isa = PBXBuildFile; fileRef = 79EB358D44D6C8AF5B7D86450DD1FEAB /* FBLPromise+Retry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93AAE9218A474CB4A6A9CE5590F6D94A /* SafeAssert.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 920403F95D8B596C5E2AFA4076FF68C6 /* SafeAssert.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 93B1B5AA846FF98B591DE480C117BF1F /* RNNotificationCenterListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CA7ECB7CF77BAF895C2BAB733C0766E /* RNNotificationCenterListener.m */; }; - 93BA2401D00BEA1D9A054E7FAF6230FE /* ScheduledFrameTransport.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B44F205BF9B9D8EE635E4D9543EFAF1 /* ScheduledFrameTransport.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 93BB8C33B0A8657E3EEA4CCDE2A26ADD /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F9C61CA331FC7DDC4C288FE4E047574 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93C0C00B856FEE25CEF5D5233F2EEEA5 /* SafeAreaSpacerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4068FB95892206282347082A92DDF33C /* SafeAreaSpacerView.m */; }; - 93D7D9F83ADE99022A75804C6F58FBC3 /* format_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = BAABEC84C45BD5093160DF0FDE106A1C /* format_constants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93E47AE77105328DF3FD6C2938EE9A48 /* MessageTypesInlines.h in Headers */ = {isa = PBXBuildFile; fileRef = F61399E0062A8409AB83BEB9179FB468 /* MessageTypesInlines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93F410F5D05037DFEBFA7943C06C98EA /* CodingDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 9161C064CF73C4FE3FD901619FBA9101 /* CodingDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 944BB2D01136553E982BF62F78C2C457 /* FIRCLSDataCollectionArbiter.h in Headers */ = {isa = PBXBuildFile; fileRef = A462BE5BC8918B04994A88A4585974A6 /* FIRCLSDataCollectionArbiter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 945549C70EFC3F79AC3BBFDAAF64CEC8 /* EXSessionResumableDownloadTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 506DB39CA9189B2AEAF25CCCBB892C5A /* EXSessionResumableDownloadTaskDelegate.m */; }; - 948DC7DF2AC15E1AD8D421D34AEA37D7 /* BSG_KSCrashIdentifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EF097E2388755E1D73D9DF2E6C84190 /* BSG_KSCrashIdentifier.m */; }; - 948E689D0943BFD42300E232031039D8 /* QueuedImmediateExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2FB05ECB092D5342169D9D9695DF77D5 /* QueuedImmediateExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 949710539212E56BDE2CA347159716E0 /* AsyncServerSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 596F10574E5D420FE66BBA5FD276D16F /* AsyncServerSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 949896117AA04666920F85948D42AD77 /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FBF5EF33427EB1021979F026356D1E44 /* React-RCTImage-dummy.m */; }; - 949C5E0B06899AD7251D6F231446989B /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 534166A3C26B1A407637456375230513 /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94A1D2E0A64D7695409280C57C72C973 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = CF6347AF1735ED878746DADA13233FA0 /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94B4873A40503DFF996F12D1256B7547 /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8ADD9A407E7D7F73D4235E69A029B08D /* Conv.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 94C401FCBE56C3D8E3F9FC8149002F39 /* REAConcatNode.m in Sources */ = {isa = PBXBuildFile; fileRef = CA189323956E570F83670B48623CCB15 /* REAConcatNode.m */; }; - 94C6E36689688F1ACAE3F96E29BF697F /* Rcu-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A897F4C8EDD4045318816540C3C8C81 /* Rcu-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94E92996AA1FFBBE3D1B017FFEDEF18E /* BitIteratorDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ABDE4FF616E844389AC74A4458AFF47 /* BitIteratorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94FAD33C568331D20E872B900F68063A /* Tearable.h in Headers */ = {isa = PBXBuildFile; fileRef = B3D9CC080476DE1289297FCA471067E9 /* Tearable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 951625D6B6D09794C3CDD210CCA7E835 /* FIRComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 63A7B528365B39E6C6E9F68527A0D320 /* FIRComponent.m */; }; - 95333BE9F6A6497BE836A2EAEB169205 /* TokenBucket.h in Headers */ = {isa = PBXBuildFile; fileRef = BA1A677DC8F9D0351B40C2A6CE7308C9 /* TokenBucket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 954A46149565FDAF3203F0CA639E21CC /* evutil_rand.c in Sources */ = {isa = PBXBuildFile; fileRef = 0D9C23B493FEC20AFFD1BE25C3AE1594 /* evutil_rand.c */; }; - 955EC830DB7E6205DE2C545D1430285C /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EF223ED0444B6177C34995C03F7833F /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 957C909D71BC728B4284535ED9040080 /* SDDiskCache.h in Headers */ = {isa = PBXBuildFile; fileRef = A239EAE2E123539A743F11FE6B18B97B /* SDDiskCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9580138E6C22394CC1EEF68FBA633BE4 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B83C5B505E0B8D0D8572D5D9ECEF9D1 /* SDWebImageDownloader.m */; }; - 9589E7EDCD0886FB47F4A713A2FFB263 /* fi.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 8731BAC61933E776D4154A97D7F4D917 /* fi.lproj */; }; - 958B60766C436276FB6F579B21ABADE8 /* MMKVMetaInfo.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 76A8C67765DA89F084B107A64F614A08 /* MMKVMetaInfo.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; - 9596D712D8C904315E0E08E14F0AE12A /* vi.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 725581291AB34A22FDD48D80C8380B6A /* vi.lproj */; }; - 9598CFEB12110059D8E2D1FBD31A519F /* Spin.h in Headers */ = {isa = PBXBuildFile; fileRef = 752F50B33E0456ED5566DDBB00DF1A71 /* Spin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 95A4C86A8CFFFC500F2E8619E8275742 /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 738329BFE8F5DCCB402225DBBF9A323B /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 95BAE69E483B821C1B50A08887664B84 /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F62DCB13F6FE4400AF13DBBAB827945 /* UIImage+WebP.m */; }; - 95C0EAA456A571DE40255FAB0844D51F /* RCTRedBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 29BCC12FEC96FEC825291E3DE577C7AC /* RCTRedBox.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 95DCFFBC918399DF79B93EA996ADFBA4 /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 051BC3CCB1F2C53A32AE05774FB983A7 /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 95ECAEC640C4FB56C38963FA5AF5C230 /* SDImageCachesManagerOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = BD3ECCBE605E838A98E04315AF90943A /* SDImageCachesManagerOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 95F4AA1B07D8C0AB2123DC6E3F118FFB /* MPMCPipeline.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F78E8173F3AD7E6C2E45CB1615BC1F9 /* MPMCPipeline.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 95FA315B184648E897206379AFAD1783 /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 35B92DD54E7AC89C7BAF3A9792630E8D /* zh-Hans.lproj */; }; - 96092E22BA93DC2E6ED706648D531DB5 /* Exceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B5D8681740738084057C0DFFE33BF5E /* Exceptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 960BC2EA28FC20C33B7881DA32154D2C /* evsignal-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F068A4842CE3553A27782E11612DDC0C /* evsignal-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9624DFA3C4B2B4CF6C6F0DE32AF39F33 /* RNNotificationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AAB4A336F5A139D39EACC06BB3355F3 /* RNNotificationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 963828E717410AB81FE2D33085FEB401 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E989BFAB2A9F137B9B90605149AC2B9 /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 963DFB09DAB4DBBE715082D650F56D54 /* RNCSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = F2092C99076BACB5905FEB2806C3CBA4 /* RNCSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9649F384EDD996796FCBE92A18E0C4F2 /* Executor.h in Headers */ = {isa = PBXBuildFile; fileRef = FBB320002E181B764E4B39247F2C49AA /* Executor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96513656A905720A26EE3CB5C45463FD /* kqueue-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F27E3FDA8B6F4EE4FE0EA2B5D213B03 /* kqueue-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 967093221D7E3F5899024EC3E8EF3709 /* FBLPromise+Timeout.m in Sources */ = {isa = PBXBuildFile; fileRef = 51E0ED49F68A92B12E47D0F02CD1C207 /* FBLPromise+Timeout.m */; }; - 9676852A42DF6BFD14E6CD7510BF8F06 /* Futex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4BA812FB89277D12BBAE8052D0AA1C09 /* Futex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 96936C7EC047E4AF1C6DD30F952568D2 /* ProxyLockable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46CDBAA05655D7D881FA38D4BD265FF0 /* ProxyLockable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96970099E6900637B0CE1B47FF4073A8 /* MemoryMapping.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8645C0A09204F941254F04AFF321631B /* MemoryMapping.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 96B99449236C7362C76637F4F5E2ECBB /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = DC6A8B952BF6086ACD4F792F0EDB4958 /* RCTInputAccessoryShadowView.m */; }; + 933DEC12775DEC888B3ABA33F7343DB3 /* TurboModulePerfLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 95996D377A3676FC12259D965827644A /* TurboModulePerfLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9344AC8DA1CA95B1279D92A28B9BEF50 /* FIRCLSByteUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F648289041B3DCBC9D738576A3D9B2A /* FIRCLSByteUtility.m */; }; + 9356480FE2C0B1AC4DD2926EC33872F3 /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D85B1D5F8F87719F04404EECA61FC8B /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9356626D0B8EFBB1DB26262450B668DF /* Foreach.h in Headers */ = {isa = PBXBuildFile; fileRef = FDCC2F6EA2E74361965F0588E6B7717B /* Foreach.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93615681DC11EDA378DE5A6DA28FF2C6 /* UIImage+Metadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E95659D462FBF4F81F91F6EBA259A81 /* UIImage+Metadata.m */; }; + 93647E033464B389D0979DA7305B82E9 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 379AAF32EBE1F942AD81C1C42FA1E080 /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9369E582C7B7E6AEF32D9043CA0C75FC /* StampedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = A8B3E5DAFD46EE56452724AED9AC92DC /* StampedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 936DAFC95400C8B430D1360E1D55C6A9 /* FlatCombiningPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 62BD993AF8582A2D4517FBE2A6DCCB40 /* FlatCombiningPriorityQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 937086FFC7948E4E3A69D50545826BFF /* FBLPromise+Catch.h in Headers */ = {isa = PBXBuildFile; fileRef = 857B28839350C25A775AB9D97BFFFE9B /* FBLPromise+Catch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93740B1B6CE3C60E0001A5B562F5E602 /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CD173BD5FA0D4297EBFCFC4693B7BEEA /* RCTVirtualTextViewManager.m */; }; + 939018139DB23E4D0E2E66A95B4D6B0A /* AtomicHashMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CE91CAD974A0975205D751C86C23139 /* AtomicHashMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93917FF9167C4ADCC440E46FAD552235 /* GULSecureCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A052AC762DA5E58222E584F38CB2FF1 /* GULSecureCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93A006518188D01FA30E1F6365DC975D /* Payload.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CCB7250174E85BADCF71CD4CF0B6F9A1 /* Payload.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 93A08BA6808129C1BDE7A3E06F6AD14E /* PBEncodeItem.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 0C1F0F63DF855EE0FDBA4FD6852B893E /* PBEncodeItem.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; + 93B1B5AA846FF98B591DE480C117BF1F /* RNNotificationCenterListener.m in Sources */ = {isa = PBXBuildFile; fileRef = D25EC3A6EE178FA0BB33279376E6666B /* RNNotificationCenterListener.m */; }; + 93B7CC2BC6377B5EEA2C5AA84798F6ED /* SDWebImageIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 883E39C9150F6F0FFA19107EE0D2FC9E /* SDWebImageIndicator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93B8902F9E4ECDCF100F6D3D75DF2EA0 /* ConnectionAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = EB418C913486EA3E3381B3FE24AA0955 /* ConnectionAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93B9DC0C3F92C778B215E563CC2BFEDD /* FIRCLSUnwind.c in Sources */ = {isa = PBXBuildFile; fileRef = 9BBE384FEBA7D7ECA92B70B0FA235097 /* FIRCLSUnwind.c */; }; + 93BD2606CEB0E6BD13D9B58558E0174F /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 11DAD95EB383741A607A74A0E7158358 /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93C0C00B856FEE25CEF5D5233F2EEEA5 /* SafeAreaSpacerView.m in Sources */ = {isa = PBXBuildFile; fileRef = C19F8470C15F18F4285BAA5A9A8A8BF5 /* SafeAreaSpacerView.m */; }; + 93D79DC8C7DB57CEA927802B73C488AD /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = E2631F974453177DD607E7B3C7AFD9A2 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93F3E16A0AE33535CD7E648C75BFD070 /* Windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 57772953C8F6A7EE7549195AE3766F39 /* Windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 941365C5D1C3695EA97A505E64FF0BDC /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FEC121FD23728582B9C1DF5E28A277B /* UMLogManager.m */; }; + 945549C70EFC3F79AC3BBFDAAF64CEC8 /* EXSessionResumableDownloadTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 413F677E17E91D83904D400E7DF52DBA /* EXSessionResumableDownloadTaskDelegate.m */; }; + 945CBE8DC5A89E8B2A802782D34C814E /* FIRCLSSymbolicationOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 22403A1A10B620C8AEDD2BB6D04A48F1 /* FIRCLSSymbolicationOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 94770C3B5FCE6EA75207AB1A811C6604 /* enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 241FD3A495440FC29D4AC6656455F0FF /* enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 949928E6C313A91D09BB1AABDF665E67 /* filter_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = D811B83316C917BE0F602B3C2A560270 /* filter_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 94A1D2E0A64D7695409280C57C72C973 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = A0B884808F87BC14E17E0C76EDF5FFA4 /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 94C401FCBE56C3D8E3F9FC8149002F39 /* REAConcatNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F028259E27D1417958999A7A7A1310D2 /* REAConcatNode.m */; }; + 94D5DF55DE38E5D656484E932FDAB8A5 /* ChannelRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = E50E37E179D4BCED1B314EEEDDEF6C2E /* ChannelRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 94DE26BC203CCB24065246DC2F5E5241 /* ExecutorWithPriority.h in Headers */ = {isa = PBXBuildFile; fileRef = 284F8BD84956D62791B3DD3B673A9587 /* ExecutorWithPriority.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 94E22A927F0A3998FC7C087A9F6AF8CF /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 932CD41FA6D89BAE46722550106F1928 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 94E8A69947F3D20A3B835B5DA9876061 /* FIRCLSDwarfUnwind.h in Headers */ = {isa = PBXBuildFile; fileRef = ED6C9E7E40237984988F15B2078AE5EE /* FIRCLSDwarfUnwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 94ECE7823125C2F243E5600CFACF196A /* BugsnagUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 37CC656B732014A6AD8CB3244611BEEB /* BugsnagUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 94EF6F8203070585CB312B152F7CCEB2 /* BugsnagApp.m in Sources */ = {isa = PBXBuildFile; fileRef = 86E61A981CF42C4B23BAB5518A622CB0 /* BugsnagApp.m */; }; + 9503F20855D4E3A6AC1EAE8E1417E8E9 /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = 23E0C20316338E7EB9BFE9DF8D664C73 /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9520567DFF1E33FDE004255CA2E36006 /* PolyDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 52BC7916B2B7B219EB6FC9CC2A5AB472 /* PolyDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 952C03C87320F5421BFC44147C0754F5 /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9F7C36C1C750664D152408323FD6AE48 /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9536EFC8A863828718F2E80E09F86040 /* FIRCLSURLSessionTask_PrivateMethods.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EDA96412237D84713DD44019D1495A1 /* FIRCLSURLSessionTask_PrivateMethods.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 953F85698B627AE09C3DD80D5CDDBC0E /* syntax_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = EE8277FB56719177EFE2FAC4CDBCA097 /* syntax_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 954FF1A37B9B52498BA929669D4593FF /* SDImageHEICCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = F24DFCD6A2EC058E56485B04B0AD967E /* SDImageHEICCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9555BE4B01AA12D6D5212D900CBCAC13 /* BSGJSONSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = AFFEB724A1817711BD36B10EF0CDD742 /* BSGJSONSerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 955E1266974E8A5514883D7147B2915A /* webp_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = B95EEB8F6BF6053F409241818BF479A4 /* webp_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 955EC830DB7E6205DE2C545D1430285C /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 21ECF7AE502B94FDB7E0B8BD862E867A /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95682DB918A38BB1030F5C8BAE296186 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A519F6518C260D0FF48E82C2A8808A4 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95814D79AAAA24FC9B2AF1E7B033D9ED /* AtomicHashMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = AFAAC35F1D7EBA12FAE2CE82168A8B09 /* AtomicHashMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 958ED40251156B3487E967A9EE8F6D34 /* Async.h in Headers */ = {isa = PBXBuildFile; fileRef = 3345BB29570C13C9BC107CEF66202103 /* Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9599EE47E7D00E7669EF97CE21CE0F82 /* UIImage+CropRotate.m in Sources */ = {isa = PBXBuildFile; fileRef = BA1EB84932C3877DF0FC3BAC3427CC29 /* UIImage+CropRotate.m */; }; + 95C0EAA456A571DE40255FAB0844D51F /* RCTRedBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = ADEFD5B66F064F5EDDCD15BA9C6B49FC /* RCTRedBox.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 95D9A4E9C6C22BCD760F0B4F98D75CFC /* ConnectionSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E2014914A30DCE80206DBE67159FBDD /* ConnectionSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 95DB4A98C401CDCA6F7B1EB83439FDB3 /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 60914E3939A0BE01C52CB41770FDFB11 /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95DC1F244036A5706D377BEFCC38DA94 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F27B274B4E3C0B45C501A1018E1EDC8 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95FB1B0523025D27006A9FA0B4202561 /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = D9162D718DE8040C51ADEB85D83D40F4 /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 960179F05779105EE3A00DB753C8598C /* FrameSerializer_v1_0.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DADF679A872CBFB525E32F6FFD908B9 /* FrameSerializer_v1_0.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9607920C4F5D89ED64A8627215345206 /* GTest.h in Headers */ = {isa = PBXBuildFile; fileRef = 442ECB432E7884203A62F2A6522EF418 /* GTest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9624DFA3C4B2B4CF6C6F0DE32AF39F33 /* RNNotificationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 312650FE7FD503D2EC40D1882CCEA092 /* RNNotificationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96338E6BC94006C0CE93AE63489A3806 /* BSG_KSMach.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A791F484CACBA763C26A0655365C583 /* BSG_KSMach.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9634AFC21DDFD8E2C548CB40AB4E5FBF /* FBLPromise+Always.h in Headers */ = {isa = PBXBuildFile; fileRef = 5489F8899DE48A12C9A910B77CFBAACF /* FBLPromise+Always.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 963C344D6CDE8CC99B00F13A7ABCEAB0 /* bit_reader_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 45420B71146AFC154A4B2DF43AD79E2B /* bit_reader_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 963DFB09DAB4DBBE715082D650F56D54 /* RNCSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B7929894D1887234B31F855496F5AC9 /* RNCSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 963E3001EC1C7B83627A8380DF2542F2 /* animi.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CD6F641BB6063F13EA12BA92620DE6E /* animi.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 963FAD9160F07C085CC97E4732801A76 /* FIRErrors.m in Sources */ = {isa = PBXBuildFile; fileRef = 34C8B1D1EEFDCEED588CE148E11B47E2 /* FIRErrors.m */; }; + 964568B7F177E0B89B43306339455E72 /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BE088D34B31ACFBDBA428DB61D2FC8FE /* React-RCTNetwork-dummy.m */; }; + 9648B0E231D355C9D5A583D06D200E8E /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 20F579A80884E8844CCC2526B455F17A /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 965AE4D5DF4F8752CE18FB9D7A9EC758 /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = 773F67187D644D69CDBF5E12F7BABA77 /* RCTTextSelection.m */; }; + 9660409D716F18F214C56BAAF05E1C6E /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CBD13E740A98CB3DE73F9DF0337B28B /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96651362E3E2662033FFC90FF27D3907 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 71FC4AB86EE39074E96E5C28674EA949 /* UIView+WebCacheOperation.m */; }; + 966A72D655B9C94BC0A31219C94E0739 /* TLRefCount.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E0B0B3CDA631795F2F5D588FCF8AA9E /* TLRefCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96A10F915F72DE9920B401F3174FAA01 /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = FC77D4B7D9EDE13C7061E4AD80EBDD69 /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96B124D88EDD4869CBC4AA56B706AA1C /* SDImageWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = E737CD50AB9187B1427A4BE435D43ED7 /* SDImageWebPCoder.m */; }; + 96B9900D9BA39ADBED3C0F96B6BF4E94 /* FIRCLSURLSessionDataTask_PrivateMethods.h in Headers */ = {isa = PBXBuildFile; fileRef = 4100516A2F71C4FCEFF4C192A3E25A5C /* FIRCLSURLSessionDataTask_PrivateMethods.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96B99A41C40A1A3169D98FBD78D534F8 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 35B7D5020B6E5BA9A2FE52CC9AE126AD /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 96C4068BF122CA796B64BDFD2468381B /* FLEXUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = BD98F0005A10B45C2B6F183D42D31D3C /* FLEXUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96F9D25CDE261A64D6073D162C99E4BC /* FIRInstallationsAuthTokenResultInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B930A32F432993FA5735ED7FFD3E125 /* FIRInstallationsAuthTokenResultInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 970BAA44A636AAB071E407195FAEB03A /* FIRDependency.m in Sources */ = {isa = PBXBuildFile; fileRef = BD73AA891D62385187260FC9FAF1E975 /* FIRDependency.m */; }; - 9731936760A661DC932C9E800A4FE786 /* RCTVibration.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7873F2160F8B4C80F734A499A5C9FF82 /* RCTVibration.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 973C01CE460F8B33DFEED28E8147AC3B /* DynamicConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = 27C25D4CBD6AD371E662EA30DDEB4FA4 /* DynamicConverter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 973F133058C5C8E3816C64D648CC404C /* SDImageCachesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A1A5738D7D8CEF7C7CE36B9B805C5EA8 /* SDImageCachesManager.m */; }; - 97517E8F5CEB6C1417FA59C32C77EB34 /* NotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E610DED409BEE9089F49167DE8A5A3F /* NotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 975D883BCF41BBBB2F7D9FE954A2DB8F /* SysMman.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E72DF4E8DF7E1FAE2347EB412774F23C /* SysMman.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 97792140452325B57DD2C24662E203F3 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 93765199AE00A9873ED2776D26CD161C /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 97796BC07DD82D811B33C40FB77D9A35 /* Thread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 762BA1FB95C0828800C43D58EBCAB1FE /* Thread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 97805879832810482FA9569DB0F653EC /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 08559A024003E127EC0CC129D72EE27C /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 97BC164D011D7B8E9E42215B525077F4 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 343B97D9EEBAB3B0515FD53C6201334A /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 97DD8CEB5527683983E515401F43F3AA /* filters_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 06F5134F46BE5F3A905A0A76DA52F28E /* filters_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 97DF42D60D472C78ABB42974C4672803 /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DEE1A43A104C13CFC47380A969848F8 /* Orientation.m */; }; - 97F421A5ED692B474FE9A02EF0E88B2F /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B2B8C59FD073EE3821727E5FF2FE7236 /* json_pointer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 9804FE863F09CD1C2130C377DA32D7E1 /* CodedInputData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE976562678AD794F1D9F2F35E89CA6D /* CodedInputData.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - 981161FD3F202C634F438C067D922A8F /* KeyboardTrackingViewTempManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A8C60F36133D0EA0F6FBAAE0EC945804 /* KeyboardTrackingViewTempManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 98144B1DC740485421ED3BDF91CE89D8 /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 366C17B6F7A70E0C496DC59B2EF479DB /* UMNativeModulesProxy.m */; }; - 982155C48A7021CF16135314397F1BC8 /* FrameHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 510790E68DCEBCD3A692226FBC4D7816 /* FrameHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 98233C907F15E128D182386C5ADDA4AF /* Overload.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C8D435674D93881B7111A8FBBEE9D1E /* Overload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 982C8FB9D0E76EC1A0958FDDB77A0866 /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 0151D07F88EA17B45CFF98C3BB020F04 /* RCTAnimatedImage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 983FA7C34B432DDB885AA1DADFA1CE93 /* SDImageAPNGCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = F563103478429FABE9D3126BBB73415A /* SDImageAPNGCoder.m */; }; - 9842003362CDA5EE5001BF6C7A4F837B /* Padded.h in Headers */ = {isa = PBXBuildFile; fileRef = ED305439FEC86D5CE3B0292A6FA4B6DB /* Padded.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9842D63EB263A8791A5B8A8BE3D551C0 /* ScheduledFrameProcessor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4290579F62D9CCDBE1FEE050E84B7F2C /* ScheduledFrameProcessor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 984F9D57A51367F2F8CFC175CD205B4C /* IOBufQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 75363C348BFBE2799A03172F6AA1D7EF /* IOBufQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9852866E2A42A22C90381178A792BD7E /* AsyncTimeout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D2F655E41C63BAB63A290AB9417740CC /* AsyncTimeout.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 9859AF689B767EA33EBBCA0FBCB4D8E7 /* SDImageGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = A1877D4F4969CD370E0D2105E0DBF43E /* SDImageGraphics.m */; }; - 9875185E38C0BFDD3823B3E980F5C66C /* FIRInteropParameterNames.h in Headers */ = {isa = PBXBuildFile; fileRef = B39FA304FAD2133BE2076EF1F90A524A /* FIRInteropParameterNames.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 987965FE9D7E479617C524987676F270 /* ThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A8419792B253793EEFA61EE8E0A6E9E /* ThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 988B3373C0000C51E23D2175FDFFE9E7 /* quant_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = ED04B609E205529A34A85339041DF566 /* quant_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 988D42C8242951CEA30038F87D5F8795 /* BlurViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 68552BEDC89D66210CD1DAC47C465168 /* BlurViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9893816C3E70F236B24AE27C7E8E771D /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = 385A49109272834E21E7E49A478041CB /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 98C57903148C71C2B7711943D7EEF49C /* Select64.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F67A5F42B06C732F114178CBE4CA845 /* Select64.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 98CAC655201F7823AA1E0DDA98F034E8 /* IOBuf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45269C5EE793D1B620BDCB32BD86F9FA /* IOBuf.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 98DC2729F36BC75E1E918D63E71D3957 /* NSImage+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 1848CF67F1E051B439DED093BDF53A20 /* NSImage+Compatibility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 98E5F5CA7733B8349CCC57C5AD78DF20 /* RCTSurfaceProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F8B17942D5B94E95453AD5DB71A89E3 /* RCTSurfaceProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 98EB4C91EB75744195F1DB95CB1220DB /* PasswordInFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 112246D068CDB2E5FEDB9BA4F6062328 /* PasswordInFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 990EFF7C3B8A1D93076F05C4B776CD2F /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 96137BB348C0ED1939CB13E295939E4C /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9919F6E33ED9112EDE8C94603CD3CECD /* RNJitsiMeetViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6748AF569364CD745C071D9CD54291DE /* RNJitsiMeetViewManager.m */; }; - 99206A1302DDAEAC9A05128192E167A6 /* AtomicNotification-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 614730BC9C015864F40F7F79D3DA1546 /* AtomicNotification-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 993E4A07426C1BD4CCAE3221813FC123 /* Iterators.h in Headers */ = {isa = PBXBuildFile; fileRef = F6DAA1715ADF9A5DE86C19321C5B86A2 /* Iterators.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9942698E2787E31B6E78FA530EE28AE6 /* OpenSSLUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0EB0E8506FB986DC31C6541AA2C48B9F /* OpenSSLUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 99622A3B227DFB4AC221096EBC88FCA6 /* ht-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 453EE913EAEECD3E8429629404148DE5 /* ht-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99772E5FC785F88A7A79E0CC2B83497B /* FIRInstallationsLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 3146EE7F2F7253CE4A19AE42577E2750 /* FIRInstallationsLogger.m */; }; - 998CD3EFD568348D997BEF540C870ECF /* Fcntl.h in Headers */ = {isa = PBXBuildFile; fileRef = DDB2BB56871CCE78DA7807E3C85737B7 /* Fcntl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99ACD0B16DE561AF95A010CC2437278E /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = D7356C5A625D90CA214661C8C6D6F794 /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99AEF020AD403D33E3547834F98A6BB1 /* RNFBCrashlyticsInitProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A491F93DC7157267CAA32CAD2943C5F /* RNFBCrashlyticsInitProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99C5D1A2505C37F559A725DF9EBEE1EC /* select.c in Sources */ = {isa = PBXBuildFile; fileRef = E7D0233C155796C1E13046A0A2621FFB /* select.c */; }; - 99C9B07FA4E28482A367FDF7C70A7DB3 /* CheckedMath.h in Headers */ = {isa = PBXBuildFile; fileRef = C1AF891DE00053BEBECE069FAE7BD92E /* CheckedMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99D691DB6CED5EBD5792D297751AFB2B /* endian_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 82908EB5AA22CDA5F63B991A8908CDC9 /* endian_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99EF56ECB29F8B259A2CD05C40BE8ADE /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DAE9BA82BA92370D5416D2AE6FA9324 /* UIImageView+HighlightedWebCache.m */; }; - 99F2EEA387CDFD5CBD4FEF4F527034D5 /* StringKeyedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 61C1AC94DA8359D54DFA47BA5050F019 /* StringKeyedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A0145FCBC76E4595D03BEC2F87E1148 /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B6373BD860EF985B4AE6B20F830A699 /* RCTModuloAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 9A3147B466AE7998605B8908D1CC4C72 /* RCTImageEditingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5A2341E12FAB23D2BD2757BCEDD80427 /* RCTImageEditingManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 9A327A9C8A9580F7BBCE76B89CCE5267 /* EmitterFlowable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C85908CDB0ACD631B1B1E037E04BD63 /* EmitterFlowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A4764272B17E0B5E1B5872BD4975C9E /* react-native-restart-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F027FAF40C0626C6850E1DC593B64CE /* react-native-restart-dummy.m */; }; - 9A4FF98DB595311F2784925D8FFC938C /* GlobalExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 4836A09444BBA1E2ED8276289A682230 /* GlobalExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A5FADAB4F03FE48215FE539AD6CDB6C /* RNFetchBlobProgress.h in Headers */ = {isa = PBXBuildFile; fileRef = 65A10CD384166D4915AA30899818E55F /* RNFetchBlobProgress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A759E5C9FF1AEEE7F6D4A524A6EA493 /* Payload.h in Headers */ = {isa = PBXBuildFile; fileRef = F85832130A3148FE810602F0E05D38C5 /* Payload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A7CC3B6506556A1AFAAF8CE9174F7BD /* RCTAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AB7D4BA2082ECB9E8FE8EEEAC815A5A /* RCTAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A8F74EDC8845731B3186DD9CB2206FE /* RCTHmac.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D330BD11C8CA4C1E679116A9B1ECE3F /* RCTHmac.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A9527627BAB42BAA83CD07FFE47B89E /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EA08206F7B1C3D1D0B9FB48F2F048B4 /* RCTRefreshControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9A984EF6D5D686F54A9ACB57E5F6BF42 /* SysMembarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 973D4FEE9B301EE619FA03B31A4F2933 /* SysMembarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9AB665363DBEC2441685B31EC5B000A7 /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 9633D58929A8EABB54152B6EE014840A /* es.lproj */; }; + 96C813DD10F6E8310B8CF558F76E9EC0 /* FIRCLSNetworkResponseHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 17927E411F9A2BFFE622A58AC94ABD1E /* FIRCLSNetworkResponseHandler.m */; }; + 96E23068A9895BEC6FD614D9A55A7C50 /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = AB332063C3B127E3C0129F7EC7B091A0 /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 970CF579AB845CB452C58353282EB636 /* QueuedImmediateExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = B46883F207ACBB452D6EE32DEAF039EE /* QueuedImmediateExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 970F38B31FF7C1E2F02ADE0593EA6557 /* Codel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 785B606FC7774F8E8A8F2286341D5D4E /* Codel.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 97167D777B4DAC9E490D28F0B718C656 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 96FF04602D313A035A686E37DB0AD9DD /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9719CB28665F8595C191B9535932CC5E /* rescaler_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 4E464EDB507E574CC1C3824FD4BEF570 /* rescaler_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 9720A773DB6EF850CE18B59044EA720F /* GDTCORTransport.m in Sources */ = {isa = PBXBuildFile; fileRef = 47AB360C660F2545750D62C057AECBF9 /* GDTCORTransport.m */; }; + 973E219025889250EFE8533DFE8FF0D5 /* FIRCLSAllocate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E3A58C5C01BED5DD03BE3F5A0FB6D11 /* FIRCLSAllocate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9745509726C4E9561C274CF4B498643A /* SocketFastOpen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FF4A69A3C859B09ABE519C0CD4F41FC9 /* SocketFastOpen.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 9745BB9C64BB16CDB4F6652AFB49C74F /* BugsnagBreadcrumb.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B96ADDB9FD90F50AE207FA323FF1978 /* BugsnagBreadcrumb.m */; }; + 976824E60D18ED9C1634C1DEC3770977 /* SDWebImageCacheSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = CD6D9EE4F9E1E2024338F163648B0426 /* SDWebImageCacheSerializer.m */; }; + 976C56B4C53CD7753DDC2FA9A852BE4B /* GlobalThreadPoolList.h in Headers */ = {isa = PBXBuildFile; fileRef = 8987A4D1D0660908F0E583A0A5E1D8EC /* GlobalThreadPoolList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 976E2CF54F0AEDC5BDF05F775B1DD1ED /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 65A8ACF1D7DE947873F2F653FE01B728 /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97747D78210FB0127E34B55647D55E80 /* huffman_encode_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 3194A8673DB4A5FEE86505230F0E1A74 /* huffman_encode_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97805879832810482FA9569DB0F653EC /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FF9B1705147C4A4C0497F3D38501F86C /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97DF42D60D472C78ABB42974C4672803 /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = 00A8005D412C799A8395E4C8BA76C5D6 /* Orientation.m */; }; + 97E3759E24C3B2EEF1771F0A1320B8AB /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DE10C5B336D195F78AE3691779E4C990 /* RCTUIManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9810B4E23A7B4ED9BD0E96374FE46FD3 /* ProxyLockable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46CDBAA05655D7D881FA38D4BD265FF0 /* ProxyLockable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 981161FD3F202C634F438C067D922A8F /* KeyboardTrackingViewTempManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 05C1523679D85B2912D83941C003FF06 /* KeyboardTrackingViewTempManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98144B1DC740485421ED3BDF91CE89D8 /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0AA408A83949F54272C0B48056AB7749 /* UMNativeModulesProxy.m */; }; + 981C079E747231C729CA0D5E793AA6EC /* SDWebImageDownloaderRequestModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = C1B96F85E728B20381F51A90D5688A0B /* SDWebImageDownloaderRequestModifier.m */; }; + 9828B25D9B287B56BAFC3BFB98771B5D /* FIRAppAssociationRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = 89DBA7C561C5E445FC40A52A05441870 /* FIRAppAssociationRegistration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9831470C75FF63850CF99E426ED06C43 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 395A42BD9767360C5A6BF5EB5CDB1A2E /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 983C07B9FA7CD711227A49EADA39E4D3 /* BSG_KSMachHeaders.c in Sources */ = {isa = PBXBuildFile; fileRef = AB69548D24BE673DDA52B188807B39E6 /* BSG_KSMachHeaders.c */; }; + 984FABFD18FC0EE396366BE536CAA0CD /* Promise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F850DA2AF3D46F85AD5CA6273D824993 /* Promise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 984FC07221CF2331700F4A4A1D041536 /* strlcpy.c in Sources */ = {isa = PBXBuildFile; fileRef = 6E06CF35D5BF7A55466AB24B113BEC05 /* strlcpy.c */; }; + 98674B6F902D96C5C51E908741BC41B7 /* GULNSDataInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = DC2814881692783265682204F533FCA5 /* GULNSDataInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9884E80C7D6E76D1716EE79DCD264E3D /* Flowables.h in Headers */ = {isa = PBXBuildFile; fileRef = 77B4AD5BD0867366BCAC679EF4C7DD7F /* Flowables.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98876F1B587BD92DBD0457B3B0584F00 /* common_sse41.h in Headers */ = {isa = PBXBuildFile; fileRef = 35EE45AAA32375675BA4E409CE39608C /* common_sse41.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9887978226B50484F4C32672E5A66385 /* openssl_cfb128.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4C0D19222FBB7FD8D7B92CB3243EABD1 /* openssl_cfb128.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + 988D42C8242951CEA30038F87D5F8795 /* BlurViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F1CAFDC9749A658C4C770C094DF84470 /* BlurViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9893816C3E70F236B24AE27C7E8E771D /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = 99A6421B152D69680B967E3A392F1F99 /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9897FC31A052A2CA0933518F865E72B4 /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1215CA56CB2009D56FA56A842354661A /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98A56F29B85029091394F250DC9C5FDC /* SDImageIOAnimatedCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 93DF72D593084C73110B41D3BABC0BC0 /* SDImageIOAnimatedCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98ABC6BDC82C7CEAA1173731B394035E /* RCTJSInvokerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 11F4D1232243030A9C086F45393EDA6A /* RCTJSInvokerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98AED2FFC0C16A6D054C24C13543D8E1 /* SysFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 52292E739162D20DA20E175D11C9397D /* SysFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98B07CD7F6BC44CEA3E8579EF59EC375 /* GULAppEnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A2B792B80ED688B169D906DB78A6E39 /* GULAppEnvironmentUtil.m */; }; + 98BD3575D637BF290382049544412C01 /* DrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 2632AD27AF35AE4D7B055CA92A3B1858 /* DrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98D0580987857A7AF9889D71E9361EA3 /* ThreadCachedArena.h in Headers */ = {isa = PBXBuildFile; fileRef = C996B89FC9E4665A6ADF3EF655EC8278 /* ThreadCachedArena.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98D3E4C436C835AF5AB4442A209204E8 /* LifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = A83265905D820ED86E7A6C8F2B1722CE /* LifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98D42452DF576790B4A295BC04E94D0F /* GULSceneDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = BDA60B5F2263D814E171E633B919C049 /* GULSceneDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98D8061FB7CA86CC8EDFA009792BA5F7 /* FIRCLSMachException.h in Headers */ = {isa = PBXBuildFile; fileRef = 4650214C8D06B983E210DAE986824CDF /* FIRCLSMachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98F2601D5231BA9F1361DB92F1692C2A /* BugsnagError+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = E80DD25952CCAFAE57F3977CEC976B49 /* BugsnagError+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9919F6E33ED9112EDE8C94603CD3CECD /* RNJitsiMeetViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 753AAAB7744B065CE8CE50EB04D985B3 /* RNJitsiMeetViewManager.m */; }; + 991AD6B91E69CF3A2F8601C97B028027 /* ConsumerBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 26F915F6B91658E6473DBAF385C33F60 /* ConsumerBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 99606626046C468208E5F53058764E0F /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = B00A3D811FE95BAA79458C70701C7D1E /* json.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 996D279A4E7172BE58B81521E7A164B3 /* id.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 4EEE229A6F5FBD1E1646B6DF98A66DD4 /* id.lproj */; }; + 996F0F0AFA7803AA64EECCD8B63711F2 /* FIRCLSSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = B6951FFCEC3C2314DC3AF5B2C5BE38D1 /* FIRCLSSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 998B3239AD98B6B72E9E1898ADCC248D /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = ED30428981B0CC60BB4328E0F7C7F14A /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 99972D38A478C11F945900513A5B25AA /* StreamFragmentAccumulator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8412BB89120242D71285FD959BAB4CE2 /* StreamFragmentAccumulator.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 99AEF020AD403D33E3547834F98A6BB1 /* RNFBCrashlyticsInitProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = D004E755154C0609093CBA5A993FFB05 /* RNFBCrashlyticsInitProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 99C9141904EB81B6CF2971AB346B5BD2 /* stop_watch.h in Headers */ = {isa = PBXBuildFile; fileRef = 2290DE35F2FE49F15FDED12428AEDACB /* stop_watch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 99D81E8323CC7858CFB0611AA7A21D02 /* quant_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = ED04B609E205529A34A85339041DF566 /* quant_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 99E0CBC11C689E6886E826D3D19162C2 /* StringKeyedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = A56FDAA3345D4565EECAADA887F4A7EE /* StringKeyedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 99F6FE2431580AE74D0EBBE8F19DF850 /* FIRCLSMultipartMimeStreamEncoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 74FC53950672DDDEAE0DC47EA151ABEF /* FIRCLSMultipartMimeStreamEncoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A0EEA24210537F43E8DA92336DA3F8C /* GlobalThreadPoolList.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 86C9BD0FB1C49F89C85AB3AEE0919D46 /* GlobalThreadPoolList.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9A1794F7C3CFD08A0834B1B7BA874C03 /* ThreadCachedInts.h in Headers */ = {isa = PBXBuildFile; fileRef = 467EFFCEBA0775F7D87CA343E87134AF /* ThreadCachedInts.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A235B58B77F5773DEFB23676FE48ACF /* GMock.h in Headers */ = {isa = PBXBuildFile; fileRef = 493DCB98EA5DCFD10DAB11CBB5E00622 /* GMock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A357B71BD6AD9B5FB78741E775AF56C /* Poly-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = C94CA6CA326F12DDC913D558730C0BFA /* Poly-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A3A1F20B890409A02089B1795146204 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F2E5E567F2A3E3F8FACC128F1C8B145 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A4764272B17E0B5E1B5872BD4975C9E /* react-native-restart-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F198B4D94F74E5EB473430661ECBF52 /* react-native-restart-dummy.m */; }; + 9A4C22A2AF221410AE0409CE54CF8AA7 /* UIImage+Metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 3063FC67A941CB517B8CBB84E4A02102 /* UIImage+Metadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A518E0BA688C9DD7F172081CB74201F /* BSG_KSCrashSentry_NSException.h in Headers */ = {isa = PBXBuildFile; fileRef = 435AE9BC5C9E3CF7503A8F43DB6123FC /* BSG_KSCrashSentry_NSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A530787EE154EC14A1E0C2D94DA0B5D /* RCTImageURLLoaderWithAttribution.mm in Sources */ = {isa = PBXBuildFile; fileRef = F23AD8558F75A3F91F8721E980114C00 /* RCTImageURLLoaderWithAttribution.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 9A552D2A35F377A8BC4E5851CB5D592C /* DynamicConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B408B54017E7CCE97492E0497ADAAD3 /* DynamicConverter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A5FADAB4F03FE48215FE539AD6CDB6C /* RNFetchBlobProgress.h in Headers */ = {isa = PBXBuildFile; fileRef = 021802B622F23E1BF04496EDA30089F5 /* RNFetchBlobProgress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A671261BCF03BE822F27247E58DB967 /* FrameType.h in Headers */ = {isa = PBXBuildFile; fileRef = 992BE0FF9C4E7E0A4E2106380FB6AEC1 /* FrameType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A8AF5825B359550081D18DC8E2BDE40 /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EBF0C796FE60145654DE7FB23E26B32 /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A8F74EDC8845731B3186DD9CB2206FE /* RCTHmac.h in Headers */ = {isa = PBXBuildFile; fileRef = 41CD4FE0B9F16B00300218C0DC70ABF9 /* RCTHmac.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A9583FD6786C84B93880BB30FF5C1AF /* IOBuf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45269C5EE793D1B620BDCB32BD86F9FA /* IOBuf.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 9AB6657E83BD14D2C907F19FB0C0F1A4 /* SKNamed.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2C27E6A4B9DEE937229E32BDF9455656 /* SKNamed.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 9AC5ABFACD4A468C1E8FA0CC5BC63F61 /* TimedDrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = E5110EEC4FB7CF35A200C38520B5D6C3 /* TimedDrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9AEC57CC7409696DE53FFEFB034FD0FB /* iterator_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = A86994FD156A22B3C21CE4E425A6D6B9 /* iterator_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 9AF64436659585BF77711DA1CF03E533 /* enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 241FD3A495440FC29D4AC6656455F0FF /* enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 9B11B6E6291F4F3098D973DAB8B269B3 /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6430379ECF72CFBE46FBAD269394ABC1 /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9B4FE54FD42A909734721EDD665B012A /* FIRCLSProcess.h in Headers */ = {isa = PBXBuildFile; fileRef = 52E1F69E1D0368EFA784C9D21D7DBD74 /* FIRCLSProcess.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B59E1060E0EF5612B745A08774FA28B /* AsyncTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = A976071786DC29EB8FCFEB8885F34F6C /* AsyncTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B7A989F69DFE39780130AF9C4C528AE /* CpuId.h in Headers */ = {isa = PBXBuildFile; fileRef = F5C5DF4C60B77F8383B42AB7ACBA6C09 /* CpuId.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9BA15B9892D3EC5C5388D2E7F3505CF3 /* RNFBAnalytics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C08BCD03276C8D7469D408A695758C5 /* RNFBAnalytics-dummy.m */; }; - 9BAA07BFC8AF7E01432B414A3B3BE28B /* poll.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B4FCBFF3CE54A00C2F44A31FB4C5FA7 /* poll.c */; }; - 9BC34D381A89F8AC11F9F444FB7BC9DE /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = CB780F18AF9E3DAFA1FD46D41E5ACBC1 /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9BFE8A8A5EB9ED8674D0B5DAE9F51FBF /* FIRCLSSettingsOnboardingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A7589870AE8D1910F6EEA19A4EBE644 /* FIRCLSSettingsOnboardingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9C0BC1542189A8EBA9B5B8BB2728D0C8 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 0621CFA7E1002C3D06E43D092DC62FBF /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9C0C52960C0A73443BD28E0AA31235FC /* RNJitsiMeetView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CD0551584386CDA882ED878BB3E7441 /* RNJitsiMeetView.m */; }; - 9C1A53ADB907994214772CA595D8D595 /* IPAddressSource.h in Headers */ = {isa = PBXBuildFile; fileRef = B46B99D18C68C5C66A1CED7FA48ADB82 /* IPAddressSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9C2B540D14BB4B97038B2E308C10BE5E /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B04D802C155AFC7BFE192BEA8530F96 /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9C35AD8648A4A797F8B81816D91AE474 /* ThreadLocalDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B6792230C95B3E30825ACD9B116B40D /* ThreadLocalDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9C3AA42A8FD832C36F7A32030EFAA1C1 /* FIRCLSSymbolicationOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 98D20082443CB51499254D58AA1B64FD /* FIRCLSSymbolicationOperation.m */; }; - 9C94DE615283532840F67C5ED18A2A38 /* EventUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = D6DA5D70F73C5260C38572CAB82003DB /* EventUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CA9465DAE9198EB87D250C9814873C3 /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 802CB453B0BAF36161876899B9C007B5 /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9CC00EFDA50D025FD5FBA1FEF207C157 /* PropagateConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F3EFD758F22BA8D07980A6B2CCC00D3 /* PropagateConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CC1C3124003AE97DA620B8DC8B7D16F /* SpookyHashV2.h in Headers */ = {isa = PBXBuildFile; fileRef = C699DCC52925CA7072A737F15E0BA4DF /* SpookyHashV2.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CCA423E7F658356254C660D47E3669F /* RNFBSharedUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = EA9F3A781591A98C0215C292BCED8C5C /* RNFBSharedUtils.m */; }; - 9CCB4E32C86B5F29292A363E0F3D1C0B /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = DE098FD7CE3243CEA8853D0002C7F3B5 /* QBVideoIndicatorView.m */; }; - 9CD49A081624F203BB37AC396F4A7610 /* Unicode.h in Headers */ = {isa = PBXBuildFile; fileRef = C6F73EEAFB5B026BF8C70AC11A3B4748 /* Unicode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CDE874B5F8A3450DA04E06CEA2F7DFC /* AtomicNotification.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 386A37173A1941791DC8E94F369E85DF /* AtomicNotification.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9CE262072BF0E1C32DC1CF6CFADF4D2E /* SysTime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7F7FAEEC6D720AA177A3ABE4D635B2D2 /* SysTime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 9CE707DAE23A72C2DC8C86953464378A /* lossless_common.h in Headers */ = {isa = PBXBuildFile; fileRef = EEAAAEE3BEC255C0C7A96639641B3098 /* lossless_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CEF285ED2794B2BF70A267F68893CCC /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F95F367C474284471D55C9963F1F6D2 /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CF947278DC144F6CC550E615AF3FB83 /* RNFBRCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 577EABC9E9CB6E84A24FED8B74000D09 /* RNFBRCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D05913CCB3E0D52E8D4F50D523353B8 /* OpenSSLUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 141EF977202A47725867A9CCA553B222 /* OpenSSLUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D0F9026B00B8EF6C1DE95475CC46DB5 /* Sched.h in Headers */ = {isa = PBXBuildFile; fileRef = 7142F1FB30D196FFDE9E3CEBCCCE4C8B /* Sched.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D214B97FC48D6FF7190664433AB2F63 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F6F8104994F8DC0891F5424518527FF /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D21D0DCD13BC99905E18F11A5FE7CFB /* EDFThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 58FA23D37D8D8DF8F7AEEF92C9A7F627 /* EDFThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D36840D554737E35ABACBCFC2479CD1 /* FIRCLSInternalLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = B001EE8C196C9E10035286FE7EE84032 /* FIRCLSInternalLogging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D47881F8E3FC2DF7DC76CC3F5FC16D3 /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BAA87E670DEE936E5745F8F7A840F85 /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D47E8478072E94F433A31DF2AC28316 /* IPAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9141D4AE95A883D2B8AEE11992DA5379 /* IPAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 9D5CEABE3CF80403EF074E9F52F0FAC1 /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = C6C40EC25C3A800F0125B8E785DFA33D /* RCTSinglelineTextInputView.m */; }; - 9D63C23D52BACE169649C0E911D38C68 /* FIRCLSRecordBase.h in Headers */ = {isa = PBXBuildFile; fileRef = BF67BBDCA673E1FB5C1DD2309AF4CB54 /* FIRCLSRecordBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D7A7743CE453ADB61FE4F3D2423366E /* NamedThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = B3C6BFB580171BD8CB2AC2C4D3FDE006 /* NamedThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D81100F4C48477434A860FDCEB3410C /* REAPropsNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 31F09DA1D85F78B3EC755EABF4A0442E /* REAPropsNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D87A525D1513285CEBE82E04980E6BF /* RNFBJSON.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B8F97C229DB76EA48CE693024FC5BE1 /* RNFBJSON.m */; }; - 9DA2CBB78605813BBE919021327BDD1F /* FIRCLSFile.h in Headers */ = {isa = PBXBuildFile; fileRef = AFDEB7B9A74282D9812379970531FCAB /* FIRCLSFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9DA81FADCAC891782DD7BFA80365F23D /* zh-Hant.lproj in Resources */ = {isa = PBXBuildFile; fileRef = A890CCB8BF008676AE761ACA4F9AA0B0 /* zh-Hant.lproj */; }; - 9DAC4B45B7C11C0A1A3026FD33CF68F4 /* IOObjectCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 75563EAB5D1BADF587F512EF467D9CB1 /* IOObjectCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9DCDFA688EB66A3D36CB49F387411C28 /* RNCWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FC40ED6C98F0824A871FF77F70F8337 /* RNCWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9DE520CCB223332D4204438DE49F51C9 /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 783BE74482F26E7A96DE2F3A74B7FE6A /* UMCore-dummy.m */; }; - 9DED79BA4098B49C3182CEFE238443AF /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E80635EC34953AA8AD4B2B9D96B1F1D6 /* Unicode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 9DEE91DDACCF3747AD0D8A29C93CAB02 /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 33F8B614EDDB6B06EC53096D867D5B46 /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9DF149278FC34C78282BDC558D4EB088 /* alphai_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 3714F374E87928906502C9E5AF26AEBF /* alphai_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9DF843CA70A2B6521E972D2E03535328 /* FIRCLSURLSession_PrivateMethods.h in Headers */ = {isa = PBXBuildFile; fileRef = AC6ACF007CE014EF66FDD4CA87758D24 /* FIRCLSURLSession_PrivateMethods.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E003E8C0250A351940CD51439FB964E /* BlurEffectWithAmount.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BE4CFE9565176BE22DC0163128A6039 /* BlurEffectWithAmount.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E039FF19DE0DA7D3C3792BD2D50EDA8 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EC7BD368C6B452764445084F34B5EFD /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E0E9268C7D2FFDCCE89E349A544AB95 /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D6B5306D96B23FCD664055914201266 /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E3C56E4ED62B0E9416DACF38811F665 /* RCTGIFImageDecoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5BDA26914C4E565302DAF3E2410D8326 /* RCTGIFImageDecoder.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 9E54290EFDD64D38870FEE9C3923970F /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C15F014F660AA158F9A7CAD4199DFA3 /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9EB80F29CEFAB1E7786440A2BEDA6DAF /* picture_psnr_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 9E6C0F837C54854E825A6330E8F6E8F3 /* picture_psnr_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 9EBD72336ACC0C90DD4297A7AB12622A /* IOBuf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4F58D090ED485B4C0D8704E5502A8CCA /* IOBuf.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9EE1183AD3AE6F8EFA4ADA19FDCE8592 /* DelayedDestructionBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 62F459488D43AA27FF3659559D36B974 /* DelayedDestructionBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9EFEE8CC6FE041A42460BB60A158BE1F /* SparseByteSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 313463C598C757EF8F324DB0BF06F135 /* SparseByteSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F022B06A45F103D28620D20ECE5CEFC /* RCTBlobCollector.h in Headers */ = {isa = PBXBuildFile; fileRef = B59D9C50BCA9A3F5BD94DA9FA5CBBDC0 /* RCTBlobCollector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F2140644E3C319E277EEEFC53474C50 /* FBLPromise+Then.h in Headers */ = {isa = PBXBuildFile; fileRef = 75ACAE008DA57AB16A0C12D15D86D5FE /* FBLPromise+Then.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F2D4D2A7BD02828FF833F3F267BD743 /* ARTSurfaceViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A791E0505E08E5FAB70079C58C924F8 /* ARTSurfaceViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F3EBF7A2F155349BF711C5DF30A776B /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 52487E7EA3FF06EFCB57D1CD9FA0DCF2 /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F5A715BF989F9B54F1AC3AC974CE2FD /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = F6FE7555EDE359A14D2F715534F474C8 /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F6E028E46974378E99055E53A1FF121 /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = CC0A7AB220D618527B2C89D825C275EB /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F76BB5D240F9A56CEDF8EED0F12481C /* MMKV_Android.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8EDA43460C2BF99C5B6F022209E0DA90 /* MMKV_Android.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - 9F7F58E0246EE4AFC13AC9BBD7E2CB17 /* RNCommandsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E1727E8F69A95E33E2459FA916B0880 /* RNCommandsHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F8EB12BC10441086E0A5D204EEBC722 /* RNFBAnalyticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F8EE3835CE05DB6F767B7E0664CEB0E /* RNFBAnalyticsModule.m */; }; - 9FA554EBAA6C6E6593FFA3DF1725AC44 /* Inspector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 884A68A503B81022B9DCDF496B2723F4 /* Inspector.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9FA7282E5C8C6DC7FF06B0E2AA88C47E /* FIRCLSReportAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A3DB7B67BAC8384B203734EB780A8EA /* FIRCLSReportAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9FB6FF7CB396FFD7C2ED8B747F154785 /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 80EF4E07C284504EABFCEB8CA96D7CEC /* RCTEventEmitter.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9FC2D6DC818C2FB3B26CFA8A12A1BCF3 /* event_tagging.c in Sources */ = {isa = PBXBuildFile; fileRef = E551AF1B96A249735565C79072A99930 /* event_tagging.c */; }; - 9FC3813B0D0DB1D1D608353DC276CE4C /* RangeCommon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43BC01F6464C78A7AD978DBF451A3241 /* RangeCommon.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 9FCE3BEEDBD99A18FBE5A30E3DF04D1F /* BSG_KSObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = C8A5CB9496F5C78AB8DC3CDF14BDEE04 /* BSG_KSObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9FF2917107FAFF00FDB75E76F5F610FC /* RNCAppearanceProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 79203CE758071A3F21EAD7781876DC3F /* RNCAppearanceProviderManager.m */; }; - 9FF35C97498281E43410CBAE761F9FE5 /* FIRCLSSymbolResolver.m in Sources */ = {isa = PBXBuildFile; fileRef = FE8D16AF667A7D8A41E9D13981967F3B /* FIRCLSSymbolResolver.m */; }; - 9FF5160E99B84923A6A847416332AF99 /* RCTAes.m in Sources */ = {isa = PBXBuildFile; fileRef = 21CCA9B0D76F7184E75764ADA893258D /* RCTAes.m */; }; - 9FFF116B2B7B65B8BC5628AA1C858302 /* TOCropScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 64AA081DD681754AE4C37B1CF1559595 /* TOCropScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A033FF57E014E471AC021DF4C306BBA9 /* SysSyscall.h in Headers */ = {isa = PBXBuildFile; fileRef = 988D1D5D5262936DBBB6D4BF4F110318 /* SysSyscall.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A036DFBE8301122DE965A54873D9D0F0 /* fa.lproj in Resources */ = {isa = PBXBuildFile; fileRef = FE2D8D8C28338380E5C7F236E7D59928 /* fa.lproj */; }; - A03AE66C673F6F7F861D5896BE8D28C8 /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 25FD3A857C816DC2411312CF09FB956D /* RCTDivisionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - A0550EFEBAC9FA462C6688C54A5035E9 /* SingletonStackTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B7124FEDB72AB8418902207CD8F8B49 /* SingletonStackTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A06D734DEE2B1EA4052EF2B5EB98B135 /* AtomicSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B55A127DD622501C234A7CAB8F25911 /* AtomicSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A06DD21F697C63C54FA1B35DC91F044B /* SysTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = D328775106F074AD45878F03B4247CCD /* SysTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A07187B290B48697E8E081AAB458D810 /* HardwareConcurrency.h in Headers */ = {isa = PBXBuildFile; fileRef = EC939FB768D3C5B9EEC1D46DB5A0FC4D /* HardwareConcurrency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0ACC7F83CDC302F2DF88876292419FB /* RNCPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2346A82F92324792A2DC137D68FD3D87 /* RNCPickerManager.m */; }; - A0B16A8ED149E376671B47003709E603 /* RNRootView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 82FE8D534BF2AFBFA6988C6E000FB2D5 /* RNRootView-dummy.m */; }; - A0CD2A76FE4C0970F1753683D1E65C1D /* EXAVPlayerData.h in Headers */ = {isa = PBXBuildFile; fileRef = 897DFBE6E915403BED169E59A27B41CE /* EXAVPlayerData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0EC40F3934CCAFFC6EF3D498D3F499F /* EXAudioSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 635EDD101CFD063AB290BAD6A17A7E7D /* EXAudioSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0EC8226305F7CDF45D626B173A78142 /* BSGSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = B522D15381A52DFEA720761C7E15BB22 /* BSGSerialization.m */; }; + 9ABB33AEEE09EBBC624F71BA25EDB4A0 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 219E0924E0BE9C7E6130A5F93A67232A /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9ACF5CA7A74E330B5145DAF34CCAF6F7 /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 04EE6D85344BB560A07B1DB6773B6A74 /* decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9ACF83B889FD019FAB8881F0F08518B1 /* TOCropViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 51852D46308FFDE1FBDB5D68507E6D81 /* TOCropViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9AE1BF2B8C06C9D43AB6D88FA2A5D716 /* filters_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 06F5134F46BE5F3A905A0A76DA52F28E /* filters_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B1DBD98BCC78A9847749E8403E3A747 /* F14IntrinsicsAvailability.h in Headers */ = {isa = PBXBuildFile; fileRef = B23643BC6130F9372FAFC59EED9BF7DA /* F14IntrinsicsAvailability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B502C3D5C2C88FD044031F5629F9620 /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F49D2F2C2B99010A57070BFAB8D543D /* RCTJSStackFrame.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9B818382C927F7F0DE02D30CE78C27D5 /* FIRCoreDiagnosticsConnector.m in Sources */ = {isa = PBXBuildFile; fileRef = 65C39BD507722298D52DB1270A2BFABE /* FIRCoreDiagnosticsConnector.m */; }; + 9B91F23E1812387F4DFEF1005D75EE0B /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = A762AC50A28DDAF26213B122E713022B /* RCTRootContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9B9514F43EC1D5BEFC4033B1E6E204A6 /* SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EF4B6BBDDA951ECBADDA983E7E93BAB /* SDWebImage-dummy.m */; }; + 9B9A827789220660BD62DB1C2D0702C4 /* alpha_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 6D394A72631D12B745FC13EBB49EBD4A /* alpha_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 9BA15B9892D3EC5C5388D2E7F3505CF3 /* RNFBAnalytics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E28A2805C79CA4D8B140FB3487A2714D /* RNFBAnalytics-dummy.m */; }; + 9BA8009B2521899A38C7CAC400260168 /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3D16741B2FF5CADCB83B655457C3DF69 /* RCTLog.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9BC0D67BD4D38C4DA73406E7E3B61A54 /* FIRCLSRecordHost.m in Sources */ = {isa = PBXBuildFile; fileRef = 4376713BCD5106D4E76A07353B85BF9E /* FIRCLSRecordHost.m */; }; + 9BE0A66EE0341AE2031B16A946AE7134 /* Format.h in Headers */ = {isa = PBXBuildFile; fileRef = A8C055FC19F0A2F755E33523A31825D8 /* Format.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9BEE00BB7843DECEBCCC9CE448E22BE3 /* FIRCLSUUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 849FC69E990B83A69FC8A87B83C1C2EB /* FIRCLSUUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9BF173CE03826AB08A9316384881F05B /* Align.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D09B9B81C4A268D1194275F7C4547BF /* Align.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9C0C52960C0A73443BD28E0AA31235FC /* RNJitsiMeetView.m in Sources */ = {isa = PBXBuildFile; fileRef = 30CB0B977F5A73E7AFE59076D674E06D /* RNJitsiMeetView.m */; }; + 9C1969845430F861B1864B23D09116D1 /* MemoryFile_Android.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 65F7A0C6C87BF5E149864516855F9BB0 /* MemoryFile_Android.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + 9C38EED02588E7C20459E10CDED18D31 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CC132ACF573618FC05434FE77430522E /* Instance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9C44596AD88361EE037E481F11AFCD46 /* Future-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F893670BC5A985D6ABFC6BDA419F2EB6 /* Future-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9C4F857EE33490DDAF8F64624CB89334 /* MapUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 485C781CBCAEAD3D09B21CB983E20236 /* MapUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9C685250F6657B677C9751191D744104 /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = 37E3F2AB320DD034E64B19E8A465385D /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9C7735F2163F420136DB896DE154101D /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = FAC8A167DF1A7C0901FE50F1DE77AB71 /* RCTConvertHelpers.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + 9C7D6F99CF240719DB4609D8680EF70F /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = 35D047C1E86408DCC29C1953F2CF1AC9 /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9C805678F5165F588DE03BD1325DD1DD /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 779A992D4CEE8008A2CEE3910FEF2805 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9C9159682493E8E331DF45EB0BBF078F /* OpenSSL.h in Headers */ = {isa = PBXBuildFile; fileRef = A8E323CFE2D9B1962135FED636658650 /* OpenSSL.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9C923EDE6371EF17239F4F7972ED20FB /* HazptrObjLinked.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F99A0B6BBCF0E40F9EDF94E751A3821 /* HazptrObjLinked.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9C9DB4ADD6FC782042C672782FC7F9D4 /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EA6CA669DB11D03491E655AF46257689 /* UMViewManager.m */; }; + 9CB817E466F6B428CA0564B061F94D5B /* CodedInputDataCrypt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1158999A56B57AE4217C56B63FFFA59A /* CodedInputDataCrypt.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + 9CC5875E36C76821BB01311FC7311F03 /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 960B662DBF07CC6F9D678776B42D2D22 /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CCB4E32C86B5F29292A363E0F3D1C0B /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 21A6053EC3D1830C964689171A8B773B /* QBVideoIndicatorView.m */; }; + 9CCEEFB441CA6B23DFE4EA82F82CC299 /* RSocketClient.h in Headers */ = {isa = PBXBuildFile; fileRef = ADB42F84974E7CE03E7F919814FB22A4 /* RSocketClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CD7A18C212E1348BF32FF6AF5A105C1 /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1E3906B67AE280892E16D218B31CE65D /* json.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9CFE04F45DC1F039A11B13448B9DC3BB /* WTCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = D7D9D01F1D4E888BD17D69E7D442D3DF /* WTCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D0157C2516C902B0C5668F1D7ECE8B4 /* cpu.c in Sources */ = {isa = PBXBuildFile; fileRef = 54D5F480D3D001B12F3F9B7A708902AB /* cpu.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 9D0AB6793FDBB0A452D2D260D1BE70A7 /* BugsnagDeviceWithState.h in Headers */ = {isa = PBXBuildFile; fileRef = 4206D953AD1F576B3D25AB9DF3998B7E /* BugsnagDeviceWithState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D17F4AEB3B893D699911679E3901887 /* ConcurrentBitSet.h in Headers */ = {isa = PBXBuildFile; fileRef = DD0E1AD5E554C9C1E9D21507A4CEB48F /* ConcurrentBitSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D182943C7340DBD8F9573412ED42D84 /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 48FF49A5736D3E0E27EEF1C0B1B69DEE /* RCTConvert+Transform.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9D18B87E5733F74063319AF98E905A83 /* FIRCLSThreadState.h in Headers */ = {isa = PBXBuildFile; fileRef = 99D63D6DE4959BB4E1B63AC9F0799982 /* FIRCLSThreadState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D195665137A6FD3B32E5032C6AA28F4 /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = FE11B48849D25AB2247070F9E98D8372 /* RCTTextShadowView.m */; }; + 9D31D779DCFDF0E99E28FB0970213820 /* RCTEventDispatcherProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = BED751D1A47742D040BC09C13B8E004A /* RCTEventDispatcherProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D518DF59F149F1D368C6CD8732D5AAA /* EvictingCacheMap.h in Headers */ = {isa = PBXBuildFile; fileRef = F90EED1DC20A348419D2B4FB2DCB70F7 /* EvictingCacheMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D5946C6E9DFE4704357CB5F9284E4DE /* FIRCLSURLSessionUploadTask.m in Sources */ = {isa = PBXBuildFile; fileRef = D1C3457EB97C2E145F1E6A47676EB365 /* FIRCLSURLSessionUploadTask.m */; }; + 9D5F402198C55E089E900CEED637C489 /* FIRInstallationsSingleOperationPromiseCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 56EA0A0FE0344C01612010C4CCF72387 /* FIRInstallationsSingleOperationPromiseCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D6CA7E422AC999BD7D683CCF7A99813 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = 20FB1C46B3A480564D18373330A4363E /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 9D81100F4C48477434A860FDCEB3410C /* REAPropsNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B52C25E241A136F30D3AFEA155BECF7 /* REAPropsNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D846344563C09C82E7CAF7A706A80CC /* AsyncUDPSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 1857653120D5622FD9F39A9D005F8B7E /* AsyncUDPSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D87D311C26340D5D291CFB93D9E9D86 /* SDWebImageCacheKeyFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = E411C8BA0F4807158FF937325ED18B84 /* SDWebImageCacheKeyFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D93D9974E5D46E2B0944764C6CA3D4D /* GDTCORUploadCoordinator.m in Sources */ = {isa = PBXBuildFile; fileRef = A90DA217769C6CAEDBADCEFC36C37E03 /* GDTCORUploadCoordinator.m */; }; + 9D9F5487A0E5A8EA62872F1929529624 /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = F16E8A00A68196A9CE422DD73DF4B061 /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9DBF53CC7EE3CC11DF8C5654E85D1D5A /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F27BB7B44D3D4D6F369D067EAC8C428F /* RCTModalManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9DC24FFC0CCB93AB78DF3B1041915EE6 /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = CCFEC6EEED220D1BD667FF0839451C3E /* Config.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9DC35C14F95C46E9374E20B715F57EB6 /* DeferFlowable.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C399D5AF94FACC5E5C007509E34ABC1 /* DeferFlowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9DCDFA688EB66A3D36CB49F387411C28 /* RNCWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 39494CE5C6E65BE2867714886194D196 /* RNCWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9DF605AC1E79FDBBEEF14DC2C0F98422 /* ProgramOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = D341FB6C784B8F24292A0C10871CB739 /* ProgramOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E003E8C0250A351940CD51439FB964E /* BlurEffectWithAmount.h in Headers */ = {isa = PBXBuildFile; fileRef = 501761ADCF286CCADF126E860D725360 /* BlurEffectWithAmount.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E15132D738425623615DAFB0C2D89E1 /* bignum-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 4993498A328BEB89326E75F6E62CD440 /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E32DF386C7B6419161C5398DD25C077 /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 735F9214AF5AF9C5F1500BB498DBDC15 /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E361E89925BB36D99B2C97D0C635C00 /* FIRStackFrame_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = F905161DEF3AFDF41768E0E23B15FB64 /* FIRStackFrame_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E48A1068E67EEC3A9632F1BAA053634 /* SDGraphicsImageRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = CD5D732B125633DF2A14954BE4893DD4 /* SDGraphicsImageRenderer.m */; }; + 9E52D50A55E938F8DDEBFCA82EA88363 /* SysUio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC3B6E2A54F07D4CA19C1041C8695202 /* SysUio.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9E5E374A990E869A862DB188F141597C /* PasswordInFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 274B19FA8A792CB235E69E5DD624093F /* PasswordInFile.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 9EA5F1348EA8C3A44969FF0B1F1F0D19 /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A039AC3AF9B6A4E8EC9068BFFB63CDE /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9EBD5A167465C22DF34E58C565104D32 /* SDDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 43926C42B8EDE22B6094E95AC9E82CC8 /* SDDiskCache.m */; }; + 9ED2961FDD61DFAB3A56FBBBB219DB53 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 66F0D8BBD14EFB8EA9197CDCE644FAB0 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9EE41C5E1C26BD0FC27AE776729FC792 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F7131E80F05E6182455932994237783 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9EEAD4B922E38308A370C93A16E612B9 /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = 50E5E39E08E43D6230F656F5307A4CD1 /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9EF06D70B0E1CDDEB59C9199483CEA50 /* Tearable.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B9F4EA75F69F6FBF04FED883FE345FF /* Tearable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F0FEA0255A36C897A3DE56B17865AB1 /* SpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = E9AB1651105F9583CE5F40B209236A82 /* SpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F2D4D2A7BD02828FF833F3F267BD743 /* ARTSurfaceViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0717248847249C2F0906B2AF1AC14BA2 /* ARTSurfaceViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F36780B8C742E37C036EE4F8A2B5370 /* Builtins.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6DE2E381F8E1CE4FA0EC39A780E182F4 /* Builtins.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 9F51C6614E341953C2241386E269CF5B /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F62DCB13F6FE4400AF13DBBAB827945 /* UIImage+WebP.m */; }; + 9F7F58E0246EE4AFC13AC9BBD7E2CB17 /* RNCommandsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E049A2A502254569AAD1E846716AAF6 /* RNCommandsHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F8EB12BC10441086E0A5D204EEBC722 /* RNFBAnalyticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BE6ADD1D1BE6811A03AFB71BBB1B55C /* RNFBAnalyticsModule.m */; }; + 9FDCAB9E0D704899E93E71953BCDE16B /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 91A46B091E0CF0D8EC21498BA37BBE37 /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9FF2917107FAFF00FDB75E76F5F610FC /* RNCAppearanceProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C038D726C9B5961986DC385A924ED87 /* RNCAppearanceProviderManager.m */; }; + 9FF5160E99B84923A6A847416332AF99 /* RCTAes.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EC04E43DE6799F166D0E055BB69C5F7 /* RCTAes.m */; }; + 9FF8AD4003970A7474066E65DB8DAEB5 /* BSGEventUploadObjectOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 27B7CEE5273A820E4FE8C0B13071E6DC /* BSGEventUploadObjectOperation.m */; }; + A0208F37510AA099AECED2795C67D8FD /* Barrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 18B7462B3C061DE486F2ECD2DBB0EFC8 /* Barrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A034395A57C117CF6F15AEC3C5C98E20 /* BSG_KSBacktrace_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BA63D71EF3A6A046A72FA153D8D8971 /* BSG_KSBacktrace_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A058862E9D28E12FD2BBED5B2C4639EF /* GULNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 28862980D7EC5653DE2716BB9B13C94C /* GULNetwork.m */; }; + A08031FDC8C48D7DF1EFDA08866F8249 /* CancelingSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 588E2150CDB29AE75B83DC77C9A0D29C /* CancelingSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0810DC5994E2B656E998C7B0700374B /* ProtocolVersion.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DEDF0041639EE57E1B34CD0EB872879D /* ProtocolVersion.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + A0ACC7F83CDC302F2DF88876292419FB /* RNCPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7085CC1C2C2A9C58F7099F2ADC7F4AE6 /* RNCPickerManager.m */; }; + A0B16A8ED149E376671B47003709E603 /* RNRootView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E82EE73F5EEB92B1F189A5C87C94C90 /* RNRootView-dummy.m */; }; + A0C2A7A099376750545501AB6AC0A049 /* Codel.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A4D44FB517A2D94D03CAEC0D755B71A /* Codel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0CD2A76FE4C0970F1753683D1E65C1D /* EXAVPlayerData.h in Headers */ = {isa = PBXBuildFile; fileRef = 304FE7BE8CD5D7068F8DDD996E27BD76 /* EXAVPlayerData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0D84F19DF6A2644B90B33F30528E60D /* Init.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B58D427C9F4C3FA81D777B5ACD90965F /* Init.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + A0EC40F3934CCAFFC6EF3D498D3F499F /* EXAudioSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ED419A662981D7AE5D0F29FA5445E7C /* EXAudioSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0F985796CE79ED953E93EC40DDB214B /* FIRCLSFCRAnalytics.h in Headers */ = {isa = PBXBuildFile; fileRef = AAA30A7DDBAFFF09EFBED557C00B0D64 /* FIRCLSFCRAnalytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; A0FEFACF7FCC7EB50E3D658D8C1A19AF /* FKPortForwardingServer.m in Sources */ = {isa = PBXBuildFile; fileRef = E5DBA3610AA54AC09C951A55CEA789D4 /* FKPortForwardingServer.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - A1073BC32AC8CF68647443FBA3099EDE /* mux_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 53FBAA5077083A561752542CB9651EF7 /* mux_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A11ADF78862987C9E224E155AD213FF0 /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7947BD29451A52BD502A1B3010C36A0C /* RCTMultilineTextInputView.m */; }; - A14EC2E5859E3F7F26ED8E228EAB0643 /* Format.h in Headers */ = {isa = PBXBuildFile; fileRef = B90E21FA5E3F701B8D278B2E7060FECA /* Format.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A13D2953A26A78E54FF5F10BDCC20A73 /* CodedInputData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE976562678AD794F1D9F2F35E89CA6D /* CodedInputData.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; A1511D7B745F233DBE0D869661A2246C /* SKRequestInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A8CCCBE73A3BFD287D74C0DFBF7B010 /* SKRequestInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A167546F740435913FCD1858BE82AD2D /* Format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F7AF7C24195A31AE72C879CAD00133C /* Format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A16C18D9138296744AFF8F7F748CF827 /* HighlighterView.m in Sources */ = {isa = PBXBuildFile; fileRef = 48A2DB68E2356F45E061527A12961AD9 /* HighlighterView.m */; }; - A171B300A8FB00EFDB7AB61C0253D91B /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C174DFFB5EBB89E69CB861B5E3CC4B2 /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A179ADF35BC1DB80953353B6B5DEFC5D /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A9CC50E192B5C6EDAF41409F4688612 /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A18553482DDA095E2AE84E1085A93465 /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 4E806A627D8A3EAEFF2878AC1FACCAC6 /* pl.lproj */; }; - A185AA0D4887B2CE699640D4D7AFA626 /* ARTTextFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = F4D7F8A621A168F0A2BD6A18433DAC6B /* ARTTextFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A1B7A9FD9C702FDB3D8F0D203D4A9739 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2488B905A75D33D2A73E6BC7E0767FD1 /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A15D2CEDFCD3E131001DFF1B971C79A2 /* FIRInstallationsItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EF4E581C7EAB7D5EBD1377F06CA0214 /* FIRInstallationsItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A15F4392D179EEA136BA24FEBE1BE4BF /* FIRCLSException.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0AE8790703D5118D50FCE795027DAE86 /* FIRCLSException.mm */; }; + A168A5FBE5A246193CE358644F7987B5 /* dec_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 56C70B4DCF1B4B7B72930A3391747A64 /* dec_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + A1697D24BEFB10575F03B2B164735B84 /* FIRCLSHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = D232B35AB8CB2A662E1C23302D9213F2 /* FIRCLSHandler.m */; }; + A16C18D9138296744AFF8F7F748CF827 /* HighlighterView.m in Sources */ = {isa = PBXBuildFile; fileRef = 29D8C493EAE7FD366C03A3D9A1E33139 /* HighlighterView.m */; }; + A179F06BD85B96B08B79E6936B455152 /* Yoga-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E8370F57B4CD8FC9815CC109C7CF48C /* Yoga-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A185AA0D4887B2CE699640D4D7AFA626 /* ARTTextFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 58EC4AF8CC887E52459F1B6E3EC87A2F /* ARTTextFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A1869E7C288CC107421EA50CAB3D7A45 /* changelist-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3307140B2150CE64DA8836A94A018B22 /* changelist-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; A1BD3EF5F8E40C42F8C2E6311902DF10 /* PTProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = 57700021537417430A8DB243329E7650 /* PTProtocol.m */; }; - A1E742A282E57E69D1D8AC45902F2D98 /* FIRCLSRecordIdentity.m in Sources */ = {isa = PBXBuildFile; fileRef = F9F717971EB4CADD925F4933F21D6A1B /* FIRCLSRecordIdentity.m */; }; - A1EC6DCFF2AB5006D941627E90608919 /* MMKV_OSX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 162726B5507F0F382038F5353E150133 /* MMKV_OSX.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - A1FC73385AF83AEA5D0268FA16406CDC /* WaitOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6FC51C20FB20896CA9591C38F77525E7 /* WaitOptions.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A2073D96A9717DC83DE641F3EEF9807D /* FirebaseCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 2760A9D6AEC74F2005ED1B8F8B3AFCA9 /* FirebaseCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A208B9DF1228D576CCBB475A7493C95B /* Aes.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D479FFC149586E597ED1DBEEEA60A51 /* Aes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A20934A1553BFE2A0426BE5CEB658A85 /* ARTNodeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3058D8E566C29CDDAF09A479884C6A60 /* ARTNodeManager.m */; }; - A235BE2506F92D282A663AEBB53EA8B2 /* Array.h in Headers */ = {isa = PBXBuildFile; fileRef = EA0EF4A0499795DDFB3E11E94D6A68F2 /* Array.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2629E206CDEEA1C32E2AB02574FB0AC /* TestObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = C259D520D409213364BF1A2188CC03BC /* TestObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A263BFB0D23C860117DC757FDD54EB2A /* token_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = D375D0FFEF2CAE4C446E135EF0E4CEC6 /* token_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A266E9C3ABF1F4CFE0BA14F5C413C025 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = CA1FFE0C05DE24B176E4502BD057F66A /* en.lproj */; }; - A26938F976CB2B53CE4DEB9530901A74 /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 83F37D98A00763F81E61FCC64732810A /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A26B7CEDFAF43088884FE4F5EC8C49D0 /* Sched.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F26D293A32C713B8BFCD57BD007346D /* Sched.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - A285F287E3910C9C4B6EADBF224AEE1D /* FIRCLSRecordApplication.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AD786D1FFEBD9B081A0830735573F7E /* FIRCLSRecordApplication.m */; }; - A2948548A6DB9F642A401081E32DAC07 /* FIRAnalyticsConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F522791A3F04533C3EE619702346991 /* FIRAnalyticsConfiguration.m */; }; - A2961522F44A445F6907DFB5DDAF8827 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DDBC06ABC89E2CF6270F907F76C137 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A29838D1EF56622F3749F84D0B6778BC /* LNInterpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 26D1AF537F43C9CA37FA73214836DC23 /* LNInterpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2B02DD670D2C4BF160232567D2A55CC /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D0EA0C2FB3CE4658DD0BEA5791E77A9 /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2BD4407E849D328D126DAAD113585C8 /* SharedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = B9BE633D011E108B8B50930D8EE40B41 /* SharedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2D84B1EA720620B51C5E6EE68EF40E8 /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CCB20B3F49C91DB8C396C1117E4975C4 /* RCTSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A2F3185241EB14D0A3E7EF848BC90E97 /* FIRInstallationsIIDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = CD72FF4935D9AD07EEF34CDEC0AFC91F /* FIRInstallationsIIDStore.m */; }; - A30156883E20274A8410C2D36F534E18 /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 20AE4B6BA4246F453C9095E3493F6682 /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3031CDC1FBA0BB3258BF144444D16A7 /* FIRCLSRecordHost.m in Sources */ = {isa = PBXBuildFile; fileRef = 4376713BCD5106D4E76A07353B85BF9E /* FIRCLSRecordHost.m */; }; - A32889AFCC3294134F7196F3E30AF084 /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = ACF202B61D194289B0E43EA1932CB5ED /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A1C723DD6E878F903B55C583CA39F0C4 /* dec_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 494B87A43A32CA29805FA67042D33BDE /* dec_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + A1C79D5750AA6CFA04B7291D91E3559E /* Inspector.h in Headers */ = {isa = PBXBuildFile; fileRef = 16CE48BF7953C0C2AE3725FB0BA0A62C /* Inspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A1DF2260D770695708A419261895CF05 /* IntrusiveList.h in Headers */ = {isa = PBXBuildFile; fileRef = 64AEE34E39F21439039BA2068927D0F2 /* IntrusiveList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A208B9DF1228D576CCBB475A7493C95B /* Aes.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A3417FE1B047417425727CDF0DA377 /* Aes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A20934A1553BFE2A0426BE5CEB658A85 /* ARTNodeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A800C3F16DC464A4511CDAE609AFBA34 /* ARTNodeManager.m */; }; + A230A636EBAA3FC7C21F16C0CB813B2C /* UniqueInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 60A78B90FBEAE0D288D92B02DE601C21 /* UniqueInstance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + A243DA45E5E811575BE6D9C8D5D19B0A /* TupleOps.h in Headers */ = {isa = PBXBuildFile; fileRef = 634C827508AD23CC96DA5F402D7C9362 /* TupleOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2460B0823D5836054A3DA49144854D1 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = 567132C080CB36CCAE683AD8A7F396F3 /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A289DB69283EBE2268B03595065884E8 /* RSocketStateMachine.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B5CC4A2C693BCADBAABAD140462B77B /* RSocketStateMachine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A29292B06DA79A3685EBB0F9251FBF23 /* CheckedMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 3756EE7F1DFB6475A746872E741191EA /* CheckedMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A29838D1EF56622F3749F84D0B6778BC /* LNInterpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 365DCA14B065A771C6DEA582FB1A0EF1 /* LNInterpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2AE641A8D2B83A7B992D6949D1CFEE4 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F14D03B87A58FC1FBE0393BB896B286 /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A2B02DD670D2C4BF160232567D2A55CC /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DA0734961EB066403A23D40DD5CB7F39 /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2B4F839B3333CC8F88A58378DB5F8C4 /* FIRExceptionModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 72505AE0D9A7E5D7961E65C7BC1D3030 /* FIRExceptionModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2CAC7A8053A56639056B47EE21F3AD3 /* ClientResumeStatusCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = A5C656C37A50DDE3A50DF9C5554CE5FF /* ClientResumeStatusCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2E238E6B2EE0E3563AFFF989B1A6C07 /* FIRCoreDiagnosticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 26C4479AE2FD2A23C40DCA31F4837852 /* FIRCoreDiagnosticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2E4E857A1D8BFFEE31E4221565D5EA5 /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 940D3485BDD3CAB77D10FE84E6AEE696 /* RCTSurfaceHostingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A2E682F4C51FB0D40F11E29E16B98DAA /* AsymmetricMemoryBarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9761F3CC3B223CD48DD9834FAD2DB33B /* AsymmetricMemoryBarrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + A2E97D51F262F31E91DA87975BB2285B /* Sse.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4CECE588B11B66574740EDC761BC4245 /* Sse.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + A2EBC94A29EB94DE285B6B97F6DD140F /* NetworkSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = AC2EEB1C5D2349E639546215C18B912F /* NetworkSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A328868CCCC1DA31336386A7BE4ED320 /* SysUio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1EF847C047A35D234BA6D2C802DA29CE /* SysUio.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; A32C6F0217B5D8317CF1565279E257CC /* FKUserDefaultsPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 84FCCA45C59E07CDDF03842BAA20E30E /* FKUserDefaultsPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3377E75A6E4A4461B63CFAAC884C5F3 /* UMAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 566570BDA47DC31BBAED8966AF990BAA /* UMAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A344CA3BE4A8959F371E1465EC26C02B /* SDAnimatedImagePlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = C12603CA84D0C123860475E5587EF16D /* SDAnimatedImagePlayer.m */; }; - A34B1B5AE7718D8DCE9F57E1897DC73A /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1062EA23D0B4F9409F464565F3FC0F62 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A35256F1C4939CBDFA017AE0DDD4C041 /* Futex.h in Headers */ = {isa = PBXBuildFile; fileRef = 83D65B87F81FC79D264226D68569D33A /* Futex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A35BE4AF3E646A5A89185A05119B5433 /* TestUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = CF84CF3255A89822E1EF8A2A7F263EE8 /* TestUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3621AFA08B25ED08BAE40F7B67189EC /* FIRInstallationsSingleOperationPromiseCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 56EA0A0FE0344C01612010C4CCF72387 /* FIRInstallationsSingleOperationPromiseCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A37FB8913F1C27F36D6F39F87E0D3F53 /* RNCCameraRollManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 05EA5AE7692D62821313F1550C06B2C1 /* RNCCameraRollManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A39F5E0DFD1980FF36C3009C6C3F4EF9 /* Uri.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5903689357297B6FC54A8D0B3466D988 /* Uri.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - A3B65AB352EDA7A1F5E17B1FE72CDF37 /* EXWebBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = D1F307EB2FDDF4F6254BBE363533761D /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3BDC62CF7250C00872E7AA20E6DCCB1 /* AtomicUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 47C809345916A8DA682664885653FA91 /* AtomicUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3C1976DCC001DD9346DABDCC01247C1 /* Throughput.h in Headers */ = {isa = PBXBuildFile; fileRef = E21871B529EE14E91E52A27A8D1D1F13 /* Throughput.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3C5356460CDED22FCF4B9EB67ACC182 /* HHWheelTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = A9B044D3E141763E51736E7D14D52B9F /* HHWheelTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3C7DCDAB374842BAC330E9F4D151C5D /* RCTLinkingPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5F5208C843EA6C6D04890C6B59961C9C /* RCTLinkingPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - A3CA02D12C38B53C89726C77AB8ACD59 /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A79AC20226EF07587CB7DBA9DBE433D2 /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3D3ADAD13408F1FFDB08A62CE39D853 /* CheckedMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 3756EE7F1DFB6475A746872E741191EA /* CheckedMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3E950D3A4D456ED1E7E7C75A7DA9BF6 /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = F6365F25B9BDB0242DF234892A2C9ED6 /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3EA0D0EE37014E39E597467C937C172 /* EventBaseThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 775D02E0BCC26F06F0C7E64E8F728344 /* EventBaseThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3EE66389AE23C408A84E13950F65C82 /* RNGestureHandlerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CB932C0999124835D917A5C6280C289 /* RNGestureHandlerManager.m */; }; - A3F7D707879A677B502ADDCC7C32A822 /* ScheduledFrameProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = BE9AC67A44540CE72419BBE469231EA5 /* ScheduledFrameProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3FC3B536BE5EE77A056B43413385435 /* GDTCORUploadPackage_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D721A4D99E3EBB65E1C7B97E9D78DA4 /* GDTCORUploadPackage_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A403D0798F75F135A7B06049FEFE0426 /* FramedReader.h in Headers */ = {isa = PBXBuildFile; fileRef = F479CFB21AB01D2A48131512847D204F /* FramedReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A405A60C3D679AD6C3F72464A0EA546D /* JSITracing.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0D3AE6610FC7E51C20F57435DCADF9EB /* JSITracing.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A41761F3BDD323CB9DE64AA112B7085E /* SDImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 25BDB5BBBC679FA82A17FC504F679035 /* SDImageCoderHelper.m */; }; - A42B2D6C9C895BBF10D96F0B9BA51F96 /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F2728955F8CDF5857634CEDEB917E7EA /* RCTModalManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A4349126CC036613DEC92C2A2230E03B /* syntax_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = EE8277FB56719177EFE2FAC4CDBCA097 /* syntax_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A4459DC61F26BB78FC2278D736943C89 /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 244D4B8FB5468A8044F66AB2D782711E /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A445C3442E3D06A4FB5099DC57DA6E4E /* Arena-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EC93F69EB17565DC472711C55309B4C /* Arena-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A455BDC2337B1105C965D6AA66F7328C /* HazptrDomain.h in Headers */ = {isa = PBXBuildFile; fileRef = 73E41D6E861C487FF12A532066A0920A /* HazptrDomain.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A467A52923DA9B89D0726B36B21A2EC2 /* StreamRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A70B7A56F68D3486558EAE18A64C6DE /* StreamRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4684845170A902C70952CDB13A07606 /* FIRCLSUnwind.c in Sources */ = {isa = PBXBuildFile; fileRef = 9BBE384FEBA7D7ECA92B70B0FA235097 /* FIRCLSUnwind.c */; }; - A46AAF7A42339DEEC13CDDF0F836FBB2 /* Restart.m in Sources */ = {isa = PBXBuildFile; fileRef = E23CF948153595DC8E7526D7942981E4 /* Restart.m */; }; - A4B63A1CE30A35AF7211F73A24890A48 /* FIRAEvent+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B00F17CD86E0960793ED999778327FA0 /* FIRAEvent+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4C2F0DCFE8D97F5EFF367A714DF5676 /* ARTNodeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 734F3DC90DCE493473646EE7FBD61D76 /* ARTNodeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4C8E87E2DB18B3982EDE5B615AACB82 /* UnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = CA7D82AD20F59E7EA3AB0E410CD00BD2 /* UnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4D5520D0137473949DA762ED51C1E97 /* ARTRadialGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 288F6C79144FE973185A8730DB2EB91E /* ARTRadialGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4D637C159834E68345DB6B8196C0B44 /* FIRBundleUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = B3513E19B47BF3451C5B25B0E2ED515B /* FIRBundleUtil.m */; }; + A3337963E345B87DD57F81879C9A8BCC /* GroupVarint.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A55EA8DB6FFFDD98AC945B1B3D554C6 /* GroupVarint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3377E75A6E4A4461B63CFAAC884C5F3 /* UMAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CAFCFDEAC634A6E70497DD50AFA9962 /* UMAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3466D1CD3E5ABD9DC1A6EFC5A4DA647 /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 73BE7F7E69A8E5DF009A8FD8C3FE67B6 /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + A3494010791A1B02EDFFFC93611785D1 /* Fixture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C10EF9F124CA4DE97790AECBE28BBB56 /* Fixture.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + A3728DFC1D081CD0D9AE67AB8083DFEC /* TimeoutQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29A82CA43E2FB7A6EF4D228560B1C21A /* TimeoutQueue.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + A37FB8913F1C27F36D6F39F87E0D3F53 /* RNCCameraRollManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B8F219340A061E4C9BCAE205A836076D /* RNCCameraRollManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A38ECAF476A0C28A54DCBCA2A616397C /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AD14B53656A77114A33E2075E243ACF /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A395D179AB5A02E082760F7058AB581B /* yuv_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 228D6DB21FCFE39B36DCB5F42552FB22 /* yuv_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + A3B5C8FA91E861C82F13D5F1B46D4BE3 /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 009BC89DA592B58B06F9C36A0827E973 /* RCTBackedTextInputDelegateAdapter.m */; }; + A3B65AB352EDA7A1F5E17B1FE72CDF37 /* EXWebBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = BD74D03C3EB4CC221C70AE0F7F2DB24E /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3D5109AF9418C4ED1014068A3857A80 /* Random-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C93158493456F2BAA4F220083CADB69 /* Random-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3E71FBB1483CF35881D3F3F7A5E0853 /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2CE7BF3DDCFD977FF416D41F80C473E0 /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + A3EE66389AE23C408A84E13950F65C82 /* RNGestureHandlerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 42961159B1D3A64B02FE53F5D5921D7B /* RNGestureHandlerManager.m */; }; + A3F02B5565BA3484B7A7776FD60043D7 /* json_patch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 97F0CE7DDECCEC0566F9F9C3954CF19F /* json_patch.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + A3FBFA622F9CB74AEEF3B54D50D134A7 /* utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 7963E4D9437C77A4AD380A283F73B8CD /* utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + A3FFB0CDF15C9147801E908C9F77B60E /* FixedString.h in Headers */ = {isa = PBXBuildFile; fileRef = 860239C88599BC26C8132EA2A3B02158 /* FixedString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A40B29DD535C1AAB0BB8FD290362F887 /* AtomicHashUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E36301726B1651C9836AC75A92EAE3EC /* AtomicHashUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A434867A0A2FF3CAAA587EFED4C718B0 /* Spin.h in Headers */ = {isa = PBXBuildFile; fileRef = C420F3C2B52E600E348B204665C68FD2 /* Spin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A442BD5B32CB4C51316F28EE52A9DF89 /* SlowFingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = A8A50CF4DE81C41A118A56BE7BDB341C /* SlowFingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A46AAF7A42339DEEC13CDDF0F836FBB2 /* Restart.m in Sources */ = {isa = PBXBuildFile; fileRef = 85E941E45C8BA1C7C836427904213DD1 /* Restart.m */; }; + A47017A92B6E1B7454CAE81AC13B6D51 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 71AE22565DA82EAA87D9FBFEE7C353B9 /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A47BD48D65FC05A97543388F60CCC4B5 /* ThreadWheelTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EEEEE02F2EDE8821AF6967B644451D7 /* ThreadWheelTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4BC6FA20AC696FFB4D868DEA7EDA236 /* TOCroppedImageAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = ACDE026E7E3436E45FCF245D8CB49C47 /* TOCroppedImageAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4C2F0DCFE8D97F5EFF367A714DF5676 /* ARTNodeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 03617C7B382C83B9380716415C7DC53F /* ARTNodeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4D30486F1E8291816F11D42A5A07BC1 /* BSG_KSJSONCodecObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F1AF0D76254361FAB87C8DBA8DF7440 /* BSG_KSJSONCodecObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4D5520D0137473949DA762ED51C1E97 /* ARTRadialGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 22A686E40495B915A10C8270E6551F91 /* ARTRadialGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4E2278DE2B49437B4CD2FF986432740 /* SDDiskCache.h in Headers */ = {isa = PBXBuildFile; fileRef = A239EAE2E123539A743F11FE6B18B97B /* SDDiskCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4EB397137AF42402B719E65C00F4D34 /* ExceptionWrapper-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3887EC7543C5FB4AF86290527D48BD28 /* ExceptionWrapper-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4F70A8EA65D11D1C2EF962CA3C9D9CA /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F19CC5C35BF909ABD4BC370AB26FF49 /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; A4F849F5F0D9CD393F337409679534FC /* PTUSBHub.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D4EC3A4E9152127A244D35219F44B64 /* PTUSBHub.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4FC5E70F57E6F605AB36D79BD1A85E9 /* REAClockNodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A10BAAA40C57253F593D49C3AD3E930 /* REAClockNodes.m */; }; - A51614BBB290E63F4D456F710FFADFC8 /* BSG_KSCrashSentry_MachException.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C95B85703FD3909D26F4D6F5F09452B /* BSG_KSCrashSentry_MachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A52F7B2DC937D6247E19729A5A808708 /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D94AAAB58755734FE0BBD60EB354D4E /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A53A380D07A4D8DE49FCCBCC063BBDCD /* evdns.c in Sources */ = {isa = PBXBuildFile; fileRef = C8F7A0909CE76DB246CB41A3FF611281 /* evdns.c */; }; - A55DEC19D0E234AA49E6F653521B336C /* nl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 54DE1CD8942989BC6D0340E4917972AE /* nl.lproj */; }; + A4FC5E70F57E6F605AB36D79BD1A85E9 /* REAClockNodes.m in Sources */ = {isa = PBXBuildFile; fileRef = E02E32A237431173E06EC82446A1EB12 /* REAClockNodes.m */; }; + A5105769B93B9486FA7E8B7EA1A1BADC /* FIRInstallationsIIDStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED107C7D265D1E13894AC662AE1149C /* FIRInstallationsIIDStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A5201ED9AAC6F75922AD9ADECE5482F6 /* GULSceneDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 843C93882E727468AB416A5D1983E793 /* GULSceneDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A55AA887E70C89BE11C87C87982C071A /* Future-pre.h in Headers */ = {isa = PBXBuildFile; fileRef = E49BA4E0B5A65C4D0C289A3CE128B70B /* Future-pre.h */; settings = {ATTRIBUTES = (Project, ); }; }; A56001E1BB1E95CAE9BC063E754D877E /* FlipperClient+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = EE722C6B5031C8949D777F1EFEFB3201 /* FlipperClient+Testing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A56D4F3788FB516B0411932137026724 /* DuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = D26852D1F256C76D2220095D278152DF /* DuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A5A541FA67495AD139777D6FE3535E22 /* BugsnagConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D35528CEE3134F3FC43F729A9AD5F01 /* BugsnagConfiguration.m */; }; - A5A9A29C5440AF19A4C9D67AE9C2A304 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 62349CEF1BEF279D189F7115CFD85FD1 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A5D2C9346100374E416A4278C479A488 /* Shell.h in Headers */ = {isa = PBXBuildFile; fileRef = 797A5D5B3084449D2EA9A26C6A00D6A0 /* Shell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A5E4EF8D5EEA9008EB2AA4B08EB5860B /* demux.h in Headers */ = {isa = PBXBuildFile; fileRef = B9703E1EC5B12F2D715115AC6A7FBB93 /* demux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A601DFC7B7CDB8CB3656334BE1584A5A /* FBLPromise+Then.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F3B0002B8624CBE05928C53384482F2 /* FBLPromise+Then.m */; }; - A6321E685DA34D34296031068EC1A1C5 /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2ACB15B509F18CDF482A4FA7D738B34F /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A633224EE850A67463862A0EAB820807 /* Arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BE09AE7D89E67A3549EB8A5B7B2CD7E /* Arena.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A64F283ACE4BE4B63A39C2455E42A6CE /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 46BED2DF70C6BAE76102F1EED1551686 /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A662A7DAFAE85E95A8B9ED1263FFD15C /* FIRCLSProcess.c in Sources */ = {isa = PBXBuildFile; fileRef = 5334928FBB0132296272FEA11164A514 /* FIRCLSProcess.c */; }; - A66D35A6499603EB8A998CA30EF014DD /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CEFD888BCEC574EF8DCF820C4CD47A4 /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A699D4DEDADFC42D669EE52778F04DD4 /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9738B24602054161126702D51638C85D /* RNLocalize-dummy.m */; }; - A6BF3904834387F9127BDE5651E1B8B2 /* RuntimeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 55D7C479CFA836BE5AEDA831A4C43640 /* RuntimeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6E4A36D0545DAC2391D7994A988AFCE /* PriorityUnboundedQueueSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 8263CCFE9BAAD61D8DE661674A7EA03D /* PriorityUnboundedQueueSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6E5EEE860308A0594167C9797B28DFB /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = BFC43567E2E1578407BD24350C578FAE /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6E670FE51ED41A843039A08EB813375 /* BSG_KSCrashSentry_NSException.m in Sources */ = {isa = PBXBuildFile; fileRef = 0722DFF6E36A11A78507E6717291246A /* BSG_KSCrashSentry_NSException.m */; }; - A704344862B1CC3C3281FB107C47F309 /* HardwareConcurrency.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 96E65B84F0413A12D554FE770DB991AD /* HardwareConcurrency.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - A716A4BA6812A415FF3252A6117AB56A /* FIRCLSUUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 849FC69E990B83A69FC8A87B83C1C2EB /* FIRCLSUUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A744F7F25D1C67057BD969F3E362AEAC /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 62378A8F43173332A123B8CB04B4DA3C /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A561094B2C1666262F94C267FDA7E1F3 /* FIRCLSProfiling.c in Sources */ = {isa = PBXBuildFile; fileRef = A86457AA05C659AA93937FFB3628D5CC /* FIRCLSProfiling.c */; }; + A5714B3CE67D965BB55C26E18ADD415C /* SSLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = C68F5547801F990A641A430EE0156A96 /* SSLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A579CFA764794FC388DF642548112395 /* ColdResumeHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 028F059CB4349635173D9E95BC622538 /* ColdResumeHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + A59724AD1F1CE42A2AE041D2E11E6664 /* RCTConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DF7D4E5C52A9D6120E9A575058D3F6A /* RCTConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A5D95892398465BC514EE0762F274222 /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BE1EDF4BEF9F1060858A53C96B4DFD3 /* RCTComponentData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A5E1FF257FB3D23FC44DCF57A2B01DCD /* openssl_md5_dgst.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C482D8D7D2504F96998F7712D5357600 /* openssl_md5_dgst.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + A5E2BA2B8B10761D4471CB6F249BE824 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 37027DF918D6FE52D89F88CB601858ED /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A5FCB6B55E3928F85A22473396309862 /* BugsnagStacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = E1BED444528B620E58346B09FA9CED47 /* BugsnagStacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6171B40A37E1034F69687E3297CD922 /* IndexedMemPool.h in Headers */ = {isa = PBXBuildFile; fileRef = FF259A97C6851A6DFEA8E80CC64AAE13 /* IndexedMemPool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A61F13BCBA8D6AFBE20D1AD144404972 /* CpuId.h in Headers */ = {isa = PBXBuildFile; fileRef = DC98663CBAC5D49967881800F0B876E9 /* CpuId.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A63D3C9078880427DF2EFE45777C1658 /* SDGraphicsImageRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6081D20F35C515C6DB4F00B0209A46F4 /* SDGraphicsImageRenderer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6588D14E11C8EA60BFD863260803D30 /* Hazptr-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = C1A92D7C500C0C8CEF6AC4E77BC0643D /* Hazptr-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6655A84B7D43672CF9624EBF16C90A9 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C2BF6D7D29BA84505F3F81A66087F40 /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6684C723B4BA6FF7F1E3F582A221488 /* BaselinesAsyncSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7F0D2C5FD5821F14AF72DA3AA3FE84F6 /* BaselinesAsyncSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + A66A6A6EEDE7043322F4D35299D8F086 /* ieee.h in Headers */ = {isa = PBXBuildFile; fileRef = FD1A4FB0F4464BD1370B5260F737A4F1 /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A67FF8C3DE0A185E7F2C09BFECA17607 /* SysSyscall.h in Headers */ = {isa = PBXBuildFile; fileRef = 988D1D5D5262936DBBB6D4BF4F110318 /* SysSyscall.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A699D4DEDADFC42D669EE52778F04DD4 /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FE7C4C0DA60ED2DAB89FD5B20737950 /* RNLocalize-dummy.m */; }; + A69BB090C0E7390A0A4467F374AC3750 /* ReactNativeVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = C32367A944FF6A86BFA89489019B2D6B /* ReactNativeVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6E495CEEF8FE8631479CF2DACD79B3B /* UMPermissionsInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A1F19A586D4C0D63EA88B6ECDC690E2 /* UMPermissionsInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6E5EEE860308A0594167C9797B28DFB /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 7799E6AB9741A90186122CF2B9D0146D /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6E6A61A5926512C598F2D930D4E4454 /* AtomicNotification.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 386A37173A1941791DC8E94F369E85DF /* AtomicNotification.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A6EE17CA67549690D6248EC617824D99 /* bufferevent_pair.c in Sources */ = {isa = PBXBuildFile; fileRef = 5E28E5E5D8F3D49FB0BC9C998D181E05 /* bufferevent_pair.c */; }; + A6F4F2B55EAD7992311E5DB8727F38E7 /* RCT-Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = ADE3B99706E1995C0DCAAE8F4B722ECF /* RCT-Folly-dummy.m */; }; + A6FB08F43AC56A72A3E139510B062C60 /* StreamRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A70B7A56F68D3486558EAE18A64C6DE /* StreamRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A700FD1BA7E3BDF2459BCAA513D69E42 /* lossless_enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = BFF4279A327AF0457A60C98234BFA95B /* lossless_enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + A7023EF767996520E6C1098B4D640123 /* CPUThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDAC98E95F85540E8E1A36A7C48A79E6 /* CPUThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A70E9982A76216219772B033E8581976 /* KeepaliveTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 281397F1AB9BD21C08DEE8E0501AACA4 /* KeepaliveTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A71A0589A9470E137E62B8499CE12F37 /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E80635EC34953AA8AD4B2B9D96B1F1D6 /* Unicode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + A728C27174F569E0771AB95FF01601D7 /* mm-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 62241FF2F74F1894A38653432A83E2DB /* mm-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A72D0A3F6AB1CCB1A25B627C50E7A304 /* TOCropViewConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F0EBDA87DC8D3A4C9A7FF510D285709 /* TOCropViewConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A73F59A76E54905051967B30487D7F40 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 110CD94C79C42A487EE1D6CC50098487 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A74285097C22BDE7C1C9243EB0997C39 /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = 597A1AF2A1F2D22B468797A24BCF763B /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A743EF1695A5EB316B236F4632BC0C56 /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DFE6F4142248275D50E279C9D26E398 /* RCTShadowView+Internal.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A755794A98FEDE5B9A152DC8CD92F051 /* FIRCoreDiagnosticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = AD6A0F2BBD4B6CB65337D865E0A1505F /* FIRCoreDiagnosticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; A75F67BAE109D953729054CA3FCE37CB /* Flipper-PeerTalk-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E2800914624977D069D1D05693D208F8 /* Flipper-PeerTalk-dummy.m */; }; - A7606E9D72F1D75FD0524B988F3A42DC /* FIRCLSURLSessionTask_PrivateMethods.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EDA96412237D84713DD44019D1495A1 /* FIRCLSURLSessionTask_PrivateMethods.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A797757BCA62DCB2DA63763AC95E605B /* RNCSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A3940F1B4BCA47EE3978550D1283B3C /* RNCSafeAreaShadowView.m */; }; - A799CFA650578189FC32BF32246EF7F1 /* AtFork.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7108AEA271F505A21FEBB5ABFFBDDCF /* AtFork.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - A7AD0987FE60D826155AADAE2011BB96 /* REACondNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 79B26C58D06F6696F397C92BF8100E69 /* REACondNode.m */; }; - A7C6331DB6A2F652242F979D432627D2 /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = EAED6E802D293C12664DDC6A69AF18D7 /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7CBB4FA781535D20605D6B3D7AEB381 /* RNNotificationEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1636D8949DE4789E5AB30988C7FED07D /* RNNotificationEventHandler.m */; }; - A8005B2E173478D1235C35DFF4E8638F /* Future-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F893670BC5A985D6ABFC6BDA419F2EB6 /* Future-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A81C06AA97BCFD6043667FFC79D093AA /* MemoryFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 52AD7AD43F17197B72F79473014FB75E /* MemoryFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A827C0267395FAACA0C17A06EA590B44 /* SDImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 0632EB5F7E65E53CB0E9FB0623CE095F /* SDImageIOCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A84CFB959809E2E995380C1737DE43C6 /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BC6FFA3EB74673D139D1282043B812D9 /* FBReactNativeSpec-dummy.m */; }; - A84F15E46D8A8D63B4A34D824EE303CD /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C9C6C38C59183D5511A79DC72F3DE4C /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A86DEE20ECD5D200DD2F15034BCB7F74 /* FIRCLSInstallIdentifierModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AEEDE00F48399B38ECC97FB2A33A46A /* FIRCLSInstallIdentifierModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A888AB9A147D572E01262314CF212A56 /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5733AA14A8EDC4682DC0516B0A519130 /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A88C39183F2A8FFFC799523086233DCD /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 909FE8760C800877AB48CD3590A9B3E6 /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - A89928EDCA178C6E56D93AFF76FD969C /* filter_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = D811B83316C917BE0F602B3C2A560270 /* filter_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A89EB640E4BFEE7E1A3E589F901592BA /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D744C16B2F99CC6C399F2964E2BED17 /* UIImage+GIF.m */; }; - A8A6EB4D4A99E980FF1CA0E9A4CECC5C /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = E2775552BE0BE024476C10F95F7A12A2 /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - A8AE9641C68A0067A0CE3312EA3D6762 /* Cast.h in Headers */ = {isa = PBXBuildFile; fileRef = C98E349E86046891AFC5FF8A087E9764 /* Cast.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8CBD903EBE1F4875E736C5DFB3A09A3 /* MasterPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = A7A0905593F2528C6B73F62C34691F05 /* MasterPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8DE9B6998154A180867D834270E977F /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5D807357EC0B10568626B6462BAE2112 /* F14Table.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A8F38BD1A46FC135D0C2EE45CDE1C83E /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B49FDBF3FC01A38C036AFDF31332825 /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A9299705F5E34FBAF29F4AB516144085 /* FIRStackFrame_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = F905161DEF3AFDF41768E0E23B15FB64 /* FIRStackFrame_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A93C5009BEBA9C751EB21D61E9B20487 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 800CE32E685228077687AEA7CCFBF170 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A97C67A1AE452073EF7CE4510A13A568 /* RCTBlobPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 351369DD9071D05A1497877778827722 /* RCTBlobPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A97E82F2ECC85130A0E39FBDF6A6BFB3 /* ARTGroupManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D3990797EC36854380E8D38CF61276B7 /* ARTGroupManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A995BD0C1733104660741A8C0EFCDD8C /* RNNotificationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = C63BCDFA62544D31E8348317DA78A2ED /* RNNotificationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A76A3B0FD8A7A2B9F3F3DDF6DBCB24A6 /* RCTImageLoaderWithAttributionProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 356DA93D46F12173410FCFE8AA805443 /* RCTImageLoaderWithAttributionProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A77D6938B7F3D9408D0B3B7EDD44D72F /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5D807357EC0B10568626B6462BAE2112 /* F14Table.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A792CF240973925FAC1D90216203587F /* BugsnagMetadata+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = CB4CB6D66748FA47C30357F2544B39B2 /* BugsnagMetadata+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A797757BCA62DCB2DA63763AC95E605B /* RNCSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = FCA58601E5C7F004185388335C86AF23 /* RNCSafeAreaShadowView.m */; }; + A79A31C80EE85DF62E6D0AEDED9919D9 /* ThreadCachedArena.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 80482005A3D7C74B5C232B9C7E752CA0 /* ThreadCachedArena.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + A7AC1BCEB4AEB7843724AE600B5AA6DE /* ThreadWheelTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 52B3BD3001DD4C280B48DC3695188A70 /* ThreadWheelTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7AD0987FE60D826155AADAE2011BB96 /* REACondNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 93BBACFC282DB3608E7443B4F8F92F19 /* REACondNode.m */; }; + A7B19110F6C50400AC05B9A114F84C7C /* CheckedMath.h in Headers */ = {isa = PBXBuildFile; fileRef = C1AF891DE00053BEBECE069FAE7BD92E /* CheckedMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7CBB4FA781535D20605D6B3D7AEB381 /* RNNotificationEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 55EDE0BD7CB5DAA7AD533C74F9DEF1AD /* RNNotificationEventHandler.m */; }; + A7CEAC9EFCB3B1F5252F52B12F7C3F07 /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C139F30664C2AC9E917F2E99A29FE32 /* RCTSegmentedControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A7D487DEFB60AB98A44CA314D89B8562 /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 275A1C7F93D8659DCE761FDF9A9267C4 /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A7EA91E9ED828D185AE4832A3C5C14BD /* VirtualEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 429C870EF7851C5214B985CA7719601D /* VirtualEventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + A7EFAF3E7361E6F92B0B20F6F3506DB8 /* Barrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BCE3200B783F0F1D598AC56BA7FD6A23 /* Barrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + A7F4991EEF9FEA3AB0660ED6D057E8B7 /* Futex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6498003091836BC30C2529E6F103179E /* Futex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A80242B51D34FF77020DB9D101761CB5 /* F14Policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D32352F57E8F9AA7298DD4C5C8B23BD /* F14Policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A807D123779294573E8E4B4AEA8A48CC /* RCTLogBoxView.h in Headers */ = {isa = PBXBuildFile; fileRef = 41301A2B164A2E2586DB33EB7EA7DFC7 /* RCTLogBoxView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A82DB05881F02CBAEEBED5C8718D0CA6 /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4138CC76BD93E8D27D33B1DC80BFD1A7 /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A86B1DA2BDDBBD0C6CD613087B93FB65 /* FIRInstallationsAuthTokenResultInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B930A32F432993FA5735ED7FFD3E125 /* FIRInstallationsAuthTokenResultInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8757210B189373A8F6800E3D648FDC9 /* MMBuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 118760F70DE10C3E528868D8AFF69793 /* MMBuffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A87955D2F6EC86549EDA9CEC467A55FE /* ParkingLot.h in Headers */ = {isa = PBXBuildFile; fileRef = 504AD14FE100A20D8DC16B176158574E /* ParkingLot.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A888AB9A147D572E01262314CF212A56 /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = C9A67E3773B8A1005ED03BE3434F1EC5 /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8C55227E7345848AE25DF6256D11697 /* SparseByteSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 313463C598C757EF8F324DB0BF06F135 /* SparseByteSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8F329035721A4811B6D08E6D1F9E3A8 /* ThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = DD9F427E6ADEB4967A1DDC5A41D08DB5 /* ThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8F48D6FDA7DC4F7CD2D730D80338885 /* ThreadCachedLists.h in Headers */ = {isa = PBXBuildFile; fileRef = 598D07341ECC791245D8956E8B93C174 /* ThreadCachedLists.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A90CFB8A65FC740039748C6F0EA9E385 /* EnvUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = E6E9C7C5B109498EC681F09D923E5C93 /* EnvUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A9219290BAFC9320C040414C7C096F8A /* FBLPromise+Any.h in Headers */ = {isa = PBXBuildFile; fileRef = C3F26F9B4FA2A351DDE03859A88225A7 /* FBLPromise+Any.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A941D36C5A98A16B4C7D04F59C0B43D8 /* Cursor.h in Headers */ = {isa = PBXBuildFile; fileRef = AD42BC2ED1D7BE159095952915525A01 /* Cursor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A954EEA377C1E08A74957C57229BF3D0 /* OpenSSLUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0EB0E8506FB986DC31C6541AA2C48B9F /* OpenSSLUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + A963EA2AB502E00FF947FDA166E2245B /* ThreadWheelTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B1E2BB6BFC8F3CCCB19085DD174E8AC0 /* ThreadWheelTimekeeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + A97E82F2ECC85130A0E39FBDF6A6BFB3 /* ARTGroupManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EBDFCF84A98A224047685A16A587A47E /* ARTGroupManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A987BB2EFCFDD16AE5272D1504F2D53E /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = 1555779B195006E8667B063A0B6672BF /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A9880C57EA9B744B76C42C4EF4578501 /* AtomicHashUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 210C8413BB03BC4DB926FE8A054C875D /* AtomicHashUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A995BD0C1733104660741A8C0EFCDD8C /* RNNotificationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 65931E231ED87291782F00320FD5E79D /* RNNotificationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; A998280BDC990828199EFD63CD44BAED /* FlipperClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EFA9ED6AB17B41486EAB2148F8C24B5 /* FlipperClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A9A686A4663EDA1F43F565653E42D328 /* ThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4CED0991748193F85234B92043C467E6 /* ThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - A9AA9CDE56BAF643450BF7D00C02F463 /* lossless_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 22B13775F5C133858DE4AF2F01D40718 /* lossless_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A9B523B94F312589ADE02B6EB92B1C87 /* ThreadedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = E7FA9A7A65259B3BD7831B47502FF765 /* ThreadedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A9B8B050C53CC227C9045AE1DFEE6367 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2AE905F5C8BC97A988CFA795EBE3D363 /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - A9CFA1A8987A50912317352353B9057B /* MessageInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = FD1241FE7FB682EC9FE080EBFF4F091F /* MessageInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A9D6A9F7AE48373388EB2A16E065A315 /* config_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 78805741973DFB53A145A589929A9B63 /* config_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A9D92EE44DAD65F7449C6EBDE94DEE83 /* Merge.h in Headers */ = {isa = PBXBuildFile; fileRef = 0263F9C5636F7B48EF2C7E0CE750C7E8 /* Merge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A9DD7E8AF7A05EEC34AEF1DAC8C9CA1C /* SmallLocks.h in Headers */ = {isa = PBXBuildFile; fileRef = 2579C83AE47641A16DCDEB3AD0508DBB /* SmallLocks.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A9E9BF3EE6DD53C838700FFDA559D5AC /* GDTCORUploadPackage.m in Sources */ = {isa = PBXBuildFile; fileRef = 14558547256AFB38419983E2662EBC1E /* GDTCORUploadPackage.m */; }; - AA019B1A1ECCA5C7D90EFBFD7A5BC34D /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 80313E41FC783BC7ACFB49F771393302 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA0852ACB57A6324AA958B84F2A182B0 /* Pods-NotificationService-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 24DD06DF3760AA8A84A2FD651A74E8B0 /* Pods-NotificationService-dummy.m */; }; - AA32A22A99E3BB1ADCD5277C991A661B /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = B460A23CFB410A25BB9C4EE0C0B25E08 /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA592CE68140FC8E367190B0880C7DB4 /* FIRCLSApplication.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B03784A0DB6018C0A8088E56A9C06FB /* FIRCLSApplication.m */; }; - AA6F899522BFDE950EA57580E4E051A9 /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 14BDA591D15263674DB406B72E60712C /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - AA725C371ED2465746D713B036D28AF2 /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C8E3F87F676BB4FBB8E2BA9B719E892 /* ImageCropPicker.m */; }; - AA9A0BC87A6CFC3676C9CBDFA96BB9E6 /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = FE36B957CE88D2FE6144316620C87145 /* UMUtilities.m */; }; - AACA010E3CE4A8FCFFDE3269F115DE2A /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 04EFE173DFCD42C297A5081E121E245C /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AAE0DA4DAAEDFF116B89344166832D69 /* ConnectionDemux.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E15ED9B4B26F5AD7F6B571B7245EBE4E /* ConnectionDemux.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - AAEB1AB9E7A4D2CDE6C7C15EB19A159C /* DestructorCheck.h in Headers */ = {isa = PBXBuildFile; fileRef = B3DC606F8383444756BD0A8665311ACC /* DestructorCheck.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AAF190F7F93D42B0CD6904B3EEE03C8C /* RNFetchBlobConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 876DC40AD195D742638FA9BF1C0D7921 /* RNFetchBlobConst.m */; }; - AB0930E36F4ADC78248E2DD2185D3139 /* FBLPromise+Await.m in Sources */ = {isa = PBXBuildFile; fileRef = 66EE8C7854B55B201886046863BC7BF0 /* FBLPromise+Await.m */; }; - AB18A726571872F0C8239763CC6D920A /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A9F757B6793A26C55B14899A3F8208BF /* QBAlbumsViewController.m */; }; - AB2050C74EC7886DBA87D8F226BB5C71 /* Cursor.h in Headers */ = {isa = PBXBuildFile; fileRef = 92D2413E4C09A3C32914CC71A085E54D /* Cursor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB2A30E03159CE9A49008FEA0A824CC7 /* PThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A41D7E2DBBC26D635269DD18909A0B0 /* PThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB4B1E844D00E6DFD9C3F848D6BAA0A4 /* SafeAssert.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D57829D18EEE1D92E43BA2B93BFD087E /* SafeAssert.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - AB631A2D9189FEAEE97BF557103C15D3 /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = D25CC58E2E6BE4726CC342479689DE85 /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB68564001D1FA33244592604530CF21 /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = AA46474D1E4058849E8D0F7D8E199CC2 /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB6FEFD9E6C1FD9CC76DBE30F2E6D36D /* FIRCLSSerializeSymbolicatedFramesOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 097D9FA33676D30ACB7766C84788F795 /* FIRCLSSerializeSymbolicatedFramesOperation.m */; }; + A9A3C721A26D345F49174C2DA3FD1DC3 /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = B6D4F2FE824E43B1277BA6B136BEC7B6 /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A9BAF1CE9D7BD16EED813E56330E3DA4 /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 33765EF0361FC5BD317E8134536E9D59 /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A9EE7BC356770E7F447795297AF96EB7 /* BugsnagDevice.h in Headers */ = {isa = PBXBuildFile; fileRef = E1122B8B9816D5222710898DE93C3090 /* BugsnagDevice.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A9F1F8D1A6634F8DF7AAD9A9EC25C55E /* ConnectionDemux.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6AFEA695161609385AB7DFD9B211A61C /* ConnectionDemux.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A9F2A2B5D8116181ED2BF0A26D866044 /* BugsnagFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = E99D032CA45AE795463E8CCFCA3FBE80 /* BugsnagFileStore.m */; }; + AA0BFC9BC59DF4049037E1DD10B705AD /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FED52E48A4F7480A2C6FF36C02DB30A /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA1EAFD3C6E9238FEF569EBABC26F334 /* enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 901A7545398A64492BA691CD54AE2FEE /* enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + AA41B8C492E810ED1AD5292AC4AE26CA /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6497352FEB02FB97EDC668D210D9D639 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA558F7C06E2B933D3E83076DF8F60FE /* JSITracing.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC2640F7778BB7204E46524DA5B3D0EF /* JSITracing.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AA6A169580691D45F4221AB2CDA4A99A /* HazptrThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 55831EB804F47E27775A4F202AAEC9A5 /* HazptrThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA725C371ED2465746D713B036D28AF2 /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 69B4659927463CDABCB118B5DEC7ED20 /* ImageCropPicker.m */; }; + AA79ED9A4703C5F659B3D4D6CB6AA990 /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 5478710FAB2D5DE952BA4AE4F25FEC57 /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA8786B1E717B7028B8C7A29960B1945 /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = 90825145145C82A8F4E45D55BA6ED37E /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AAA732D139B9BE837D80B39EC68181E3 /* Malloc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A250A57F6B6B341255994B45DE729FA /* Malloc.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + AAB5C5B03C4B35890CA385F194E30F0D /* bit_writer_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = D76E8495FF3C4F45E05A1D077E2B3DF0 /* bit_writer_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + AABE0151CF2AA84D99EFD318653A72C9 /* random_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F976042875AB37E3178DA3B51131C0F /* random_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AACAE8B50254D4575DF72C7697FB9844 /* FIRCLSURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = B3EA108D86B0FF481C6D662FACD8A709 /* FIRCLSURLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AADE3C16B51F368C44AC0105848D5EF1 /* JSITracing.h in Headers */ = {isa = PBXBuildFile; fileRef = E4B78EBBF959C2EAF87A2DCF877BD136 /* JSITracing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AAF190F7F93D42B0CD6904B3EEE03C8C /* RNFetchBlobConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 542B769074BF2AB509D9DC76111A3546 /* RNFetchBlobConst.m */; }; + AAFD05B264409A2D51250C69CC85D958 /* ObservableDoOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 469FC656713290E03642BE6E71A20834 /* ObservableDoOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB05625C8EC4E6CA1BB7948F7D17E02C /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B7EC11A8C0A5E64EF001007C760450B6 /* SDWebImageManager.m */; }; + AB18A726571872F0C8239763CC6D920A /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 35D9EBB8F22D3DE7D5E65D8D66CBAADC /* QBAlbumsViewController.m */; }; + AB42CFC583E8514B1472D4E189E642C1 /* BugsnagSessionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F7346407420D349CF5ADF41C420A657 /* BugsnagSessionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB5EEADD611551F76B1652F318B4F2A9 /* SysFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 361B3EAC5B4BA385FD118F17A9B0D62E /* SysFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; AB7755A7FD58CE31155DB8DE775005AC /* FKPortForwardingServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 76F1A8FD599DF8E618FA93B58360A75C /* FKPortForwardingServer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB779F9A692679019B8633CD2190FFD9 /* SafeAreaSpacerViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = DE271832108177A46D669E1BEC4D684B /* SafeAreaSpacerViewLocalData.m */; }; - AB7FC981E25D0FB8E56916DCF5F2B2B7 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 50D1A7BC406CD4E0A549A7972B5922C6 /* RCTRootView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - AB8AF6270DAEE99E9D7B2A54D1E43321 /* Array.h in Headers */ = {isa = PBXBuildFile; fileRef = 311084FAB238D4B04EF72063D8B3C7DC /* Array.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB95B691A9857D6F4787458DFCDBBE4E /* CustomizationPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F9C7E6CC836240AC4DBF3C75028666 /* CustomizationPoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB9FB6976149CA1E01306B33B06CDB57 /* enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 6699132F7FA7337ED210A2AEF692D1CD /* enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - ABC1564A6ED9E3208CB6332C685E9C61 /* EXAV.h in Headers */ = {isa = PBXBuildFile; fileRef = E37AD28B47DFE4FBECFB65FFD94DE155 /* EXAV.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ABE8513BBC56B266CE1C7CE47EC0AC17 /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C7A72327D475A8B2D86CB2E11B72B13 /* RCTJSStackFrame.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - ABF4D290696D3F85BC0626083EF305DC /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EBAA836C4E35678DAB65BA34B873FF7 /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC07949E783BFDF67AC22940998E8226 /* RNCSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 3358A83AEF6EE9650687137594F42E15 /* RNCSafeAreaViewLocalData.m */; }; - AC0A6F40B50AB72EB81DA6A2FC45FB27 /* AtomicNotification.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD5CC643B7659D611CA418FB5BC4A3C4 /* AtomicNotification.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - AC33966492C4EE2242732B511786BD88 /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D4001EC6E1539E580DDA8B4856CBCB /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC43FF2B24EC0DB43DF5226D9E2A8159 /* react-native-slider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B82467061550F63C530C4605A63703DF /* react-native-slider-dummy.m */; }; - AC59529807A704486024AE5B57842127 /* Subscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 30179570988891F43F9A54B32C56A700 /* Subscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - AC5F1F69DB0B68228DD0866AEBBF7E9E /* REAModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 100A4C9D354E9C12632216329A338020 /* REAModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC61928AC253F2947EA636A677E63030 /* Flowable_FromObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F4298341DE529438F567BC7B6605C84 /* Flowable_FromObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC78F31D3BD5771A052F3354B2642357 /* json_pointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B899CF40EB34555A58F17D2D7E0A951 /* json_pointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ACBCCA9DE8DE930FC5E07307C32B8496 /* FIRCLSOnboardingOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 441EAB302C099E80DE9A5B559150B9ED /* FIRCLSOnboardingOperation.m */; }; - ACC15545A3B867AFD9934A6204B866EC /* Sockets.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FDDAAF3643795C5D07BFB71694E8382D /* Sockets.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - ACC69464B363CFA986E1EA156755CCC1 /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AED56F927A549A7619ECF0369EEECFA /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ACC944B56347750B388A08886F8803C5 /* Fingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E4F334248833C97B3656DE81F2B2778 /* Fingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ACCB783FDC8CC8A0BC3FB108E4866035 /* analysis_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 6E28EDF634FF6ECE4803956901A890EB /* analysis_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - ACDFBDADC0ED6A592142E1E878169D69 /* RNFBCrashlyticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 826B9376C887114ACD8AC99586D15218 /* RNFBCrashlyticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ACF0219EF4DF98D0E5CD2CE7F6F72130 /* Combine.h in Headers */ = {isa = PBXBuildFile; fileRef = AC4A668B78FF89E6A3E4160725FD7B7F /* Combine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD17F5E1FB50FEF945BF251757D45D63 /* picture_rescale_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 5415899438777A95114A46A19EB4EB86 /* picture_rescale_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AD23AD4902964B174983FF8D02C42286 /* http-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 964ED3AFCF1FA95EB0D582FF7DD71626 /* http-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD26007B5184B8FC633AB94DA6CFDE65 /* UniqueInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 60A78B90FBEAE0D288D92B02DE601C21 /* UniqueInstance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - AD2FD6DDD1547FEC5CC2FDB18EE4FFC9 /* BSG_KSSignalInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 249322B797E52A0120B0A474CDBC1391 /* BSG_KSSignalInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD3DD021B18EB103C144A17DBB759DC5 /* REAParamNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D898729243217BAEFDBE528BE2FD1605 /* REAParamNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD614B9B1EF1A9D7448F4E86E776C00E /* FIRInstallationsItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 171E2F7335FA3822401B90809CDF31D2 /* FIRInstallationsItem.m */; }; - AD62627C39B5BAF324061B71ECAA46F9 /* VibrancyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FBD9BE306B9C8FC6C6C3F8EA469C13A /* VibrancyView.m */; }; - AD74398D0DD5ADA213399CCB52882A7A /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E86909CA16AF80D052FF852C0CF0F7A /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD811EE43CC60A940768EEA939DCFBA4 /* react-native-document-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A21A31FE37E9BAAC23ECB027320313 /* react-native-document-picker-dummy.m */; }; - AD8F82B5CE40F26AF430FAC55BB077A4 /* lossless_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = DCA962ED9AF42D56D730366FF8D1B34F /* lossless_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AD91D024AD639FACF7D9F42AF6129707 /* RNNotificationCenterMulticast.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BA5299B024B88BB58761B11E1095029 /* RNNotificationCenterMulticast.m */; }; - AD9A37A9D45C3C7070ED66A1AC5F0C39 /* CacheLocality.h in Headers */ = {isa = PBXBuildFile; fileRef = 8784FBC1C5E137B83281BBDA13166A55 /* CacheLocality.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD9FE3139BF87EBD9ED0F9E8FE4A7100 /* FrameTransportImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = EECEF8976E9A1DE282356790E4A04086 /* FrameTransportImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ADC4EE2B042F113F15E71AD58956FBE2 /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = F1D841594AC0B3715C4A76A17BDB42B0 /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - ADCB2E11EABD3A35CFCF7428C21947BC /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = D32F6732FAD1516979A5B9333CC2ED3F /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ADD7AF5AB44803B59EF61295F5811125 /* UIColor+SDHexString.m in Sources */ = {isa = PBXBuildFile; fileRef = 837EFFA6ADD6F536B9A48C66A773DD2B /* UIColor+SDHexString.m */; }; + AB779F9A692679019B8633CD2190FFD9 /* SafeAreaSpacerViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 853DA4003B234224D0BEF3F4ABD94970 /* SafeAreaSpacerViewLocalData.m */; }; + AB950B153635AD4C2EB9D4A5291B0E23 /* alphai_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 3714F374E87928906502C9E5AF26AEBF /* alphai_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB99634DA96321A237AE20780AF99442 /* BSG_KSCrashSentry.c in Sources */ = {isa = PBXBuildFile; fileRef = 4F26628CAEF27009D5B48EE73606060B /* BSG_KSCrashSentry.c */; }; + ABABE611ED362BDA1542225012D4AD12 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 570C4FC163FDB50A3BA899B5D8E85574 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ABBE966D954BB36BDC39ADFBFF1BDE87 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B49A76A77062C6D3136B4DCCE6D2A60 /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ABC045BE3432367241A03F4AFC7F7D57 /* FirebaseCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B427BF719A851FABFC69FC83BC0A0D4F /* FirebaseCore-dummy.m */; }; + ABC1564A6ED9E3208CB6332C685E9C61 /* EXAV.h in Headers */ = {isa = PBXBuildFile; fileRef = F52F4AA3524EB137E5E1FCD4279DD068 /* EXAV.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ABEEBD0673B548D627CC5B3F80BD92D1 /* GoogleUtilities-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 10D3CBD349DDBEDD8BC29FF16094AFD1 /* GoogleUtilities-dummy.m */; }; + AC07949E783BFDF67AC22940998E8226 /* RNCSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = A8FE5B5DF100160357515A6D5DE374A9 /* RNCSafeAreaViewLocalData.m */; }; + AC1E57AD0F2410022F32B5AEC7550E90 /* BugsnagThread+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 784506C0C4C013F8ABF39538C9B3BB10 /* BugsnagThread+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC43FF2B24EC0DB43DF5226D9E2A8159 /* react-native-slider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 17845CAD6F547C1EDF098F0E862265FE /* react-native-slider-dummy.m */; }; + AC544C3109A91CDD8920894107B1E23E /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 62349CEF1BEF279D189F7115CFD85FD1 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC5F1F69DB0B68228DD0866AEBBF7E9E /* REAModule.h in Headers */ = {isa = PBXBuildFile; fileRef = D0BFF27AF933BF8DFC29BAD4589847E5 /* REAModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC5F7A2B2353C1264922FB3A3646492A /* SharedPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F3B6EF4D34085B601971A0296E98F21 /* SharedPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC8ADECF94911C0429EDC66F7B818E08 /* GDTCORPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9230371FE9E5F6AED627EE5E80815F4A /* GDTCORPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ACA90AD16226D5D51376C4FDC175AD7E /* FIRComponentContainerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ACF75B83E9BCF1F92190D41B8827A12 /* FIRComponentContainerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ACB5C9060E7EFFB2CDC6585D543B1C5D /* SocketAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BF88558A95843F4AD6A7248E71B60DEF /* SocketAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + ACCBC0A492904AC439A5C4845F21599B /* Expected.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AE56CA7AC8987C48F156489C4059B75 /* Expected.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ACDF1E6F5B939622CFE95CE1AC11EE8C /* SysResource.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B3BCBAF0DBA3247D26157C240545AF1 /* SysResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ACDFBDADC0ED6A592142E1E878169D69 /* RNFBCrashlyticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = B7882807A6DD96AEF4AE5270F95E61EE /* RNFBCrashlyticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ACE3F48B3A5120CDE5F4C8DDD67A6F41 /* RNFBRCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 992A830F43307EFD1D876DEB3FA56EB6 /* RNFBRCTEventEmitter.m */; }; + AD1034B39445041581BDF4D206FA8229 /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 89D1E92791BD83D34D81B52060907553 /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD31F71541F4A2B0ABF44F822C2B6362 /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = ED213EAFD7F2C5486CCED6F2A9B5A25F /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD3DD021B18EB103C144A17DBB759DC5 /* REAParamNode.h in Headers */ = {isa = PBXBuildFile; fileRef = DC66BC4DB4CD3441B632CC2F80B5ADB5 /* REAParamNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD4255A67BE6756205F692B2552700E3 /* FBLPromise+Async.m in Sources */ = {isa = PBXBuildFile; fileRef = 7552AC22B045F411D709DEF542496909 /* FBLPromise+Async.m */; }; + AD438DD0D0E357DFB295D4272D0333F8 /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = F5BABE80C6537FD2891E8B6959445D25 /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD614F6A78B1F5CDB4EC03DFB6E8A148 /* SDInternalMacros.m in Sources */ = {isa = PBXBuildFile; fileRef = 160095035BD762C24128DBBFF7451196 /* SDInternalMacros.m */; }; + AD62627C39B5BAF324061B71ECAA46F9 /* VibrancyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E329469FAA7DDFFCC66C76EDC885390 /* VibrancyView.m */; }; + AD6B9BBDD9ED6B8402E4100A5A87BA99 /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = CFBC2C9D2EE19A36E1AAE876E3BF5D26 /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD74398D0DD5ADA213399CCB52882A7A /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = B2ECBA9C7F58B36347D49D2C42DC9E92 /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD811EE43CC60A940768EEA939DCFBA4 /* react-native-document-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BE8085DDE5007490C571E6E464198B33 /* react-native-document-picker-dummy.m */; }; + AD91D024AD639FACF7D9F42AF6129707 /* RNNotificationCenterMulticast.m in Sources */ = {isa = PBXBuildFile; fileRef = A25214D7DAAEF582BA04DF499825DF44 /* RNNotificationCenterMulticast.m */; }; + ADA454AA835BAABBB159DB202663ADC5 /* GDTCORLifecycle.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A312051722868095F0B57B9DF72AD23 /* GDTCORLifecycle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ADC23879FB31CC882AE2F80096C8AD2A /* OpenSSLHash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 61F4312D6E2ABF2D879843953CC06ABF /* OpenSSLHash.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; ADFBFD2755F27A89A81F87CF9308A7C7 /* FlipperDiagnosticsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E5C1EF5ACFAEA6C34BD6D5DEDC3FD68 /* FlipperDiagnosticsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ADFF494EB8BFF97EDC8D91C69CF1F31F /* alpha_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 6D394A72631D12B745FC13EBB49EBD4A /* alpha_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AE0195E93037B4A541B7C05657A75124 /* BlurView.h in Headers */ = {isa = PBXBuildFile; fileRef = CB8AFFD93FA677A9A84FBDFA269DA871 /* BlurView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE07BE8059F20CE490D6A7EF9D4CA4B6 /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = FA2E8E55C0D5B46E3138211167244CD4 /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE09978A31CCF063CF697509FDFCCCCE /* evdns.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F787DF75B9E09594E5251817DDFB91 /* evdns.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE113511ACE780880088728E3446AE0B /* SocketAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FB18B497B48508BD83F35E98B89335D /* SocketAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE1209A8CB86E8A9B31565ADE46E64D8 /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DAAC06851A21BA628D7E9B9FA8D2E1B1 /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE16F8F5EA08448BB01360E52C50EEF4 /* Indestructible.h in Headers */ = {isa = PBXBuildFile; fileRef = 37ED6C8E5748E3D977D1C2577627B96E /* Indestructible.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE6417572C1B73A3BC1D19FB6B6E9D24 /* EXVideoThumbnailsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = FC350D2C00A929B13FA17CF6E28392FE /* EXVideoThumbnailsModule.m */; }; - AE6D4C1201A2DB5E6285892E3FFCAC45 /* RecordIO-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DA209082F197D4EEA07EDCF022523BD /* RecordIO-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE6E61DB357F950A05DFA2021C5600F0 /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 34634161DA346CAB6C7B657B670CBFAA /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE73C6FA4EFB0E0D7E31CD9BBE857CC6 /* alpha_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = CF4BDEC955538583A9CAA48843409B0D /* alpha_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AE7EB69088679385A149FF44F1502C4D /* F14Mask.h in Headers */ = {isa = PBXBuildFile; fileRef = 065FBA790EB915D267BFD279DCEA5863 /* F14Mask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE88B638E34A95BEA43FDF30E5D23C0F /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AB4410136A763B5B97A1CB08BD038DF /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE93DBAE5E742A48020E413BB3351BA1 /* BSG_KSMach.h in Headers */ = {isa = PBXBuildFile; fileRef = 83001033CA399D8268EC5116EBCDC01E /* BSG_KSMach.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE97AE7ECD9554CD7EA6ADE6C7322C09 /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = 02C586FEA37641674D3756C271DA84A6 /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE9A5874F81E776BE56EB551C5EA9A9F /* ManualTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 81B637E3ADF97DD6C410CDCA1F53A559 /* ManualTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE0195E93037B4A541B7C05657A75124 /* BlurView.h in Headers */ = {isa = PBXBuildFile; fileRef = C6FC6468868664B70D3E281882C24504 /* BlurView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE020D03524481E7248DE8B85D4747A0 /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DAEA4597188EA7C15AAD0C4B323ECE1 /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE16B4E3BDF61432CDEBCC66CCF4F8BA /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = FFDB251CDA064A494DD8DE2607DC5A3A /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE264A0FE866E63BFC8F65FAA747BBAF /* huffman_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 75FE639F23AD7D3BB243E0AD9988E003 /* huffman_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + AE2B61A3969F93747B7A340C844157AE /* SDDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = B89880C34A22F7D671DEC637659A0068 /* SDDisplayLink.m */; }; + AE4B01E7A1BAD40332ADE43828CB8170 /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB7562BD808A9A1D1BC43A8E0459F7E /* RCTModuloAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + AE6417572C1B73A3BC1D19FB6B6E9D24 /* EXVideoThumbnailsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F633FC9A4ECFED62A7161EF40385593 /* EXVideoThumbnailsModule.m */; }; + AE6CD51389F55D84C7C2A9F3C6CDCE3B /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = DBB54F45B678B6B1A2F5299F690252AB /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + AE803C306F7E05141A38A7EDAC1D7DE0 /* ExecutorWithPriority.h in Headers */ = {isa = PBXBuildFile; fileRef = 349578B9758BE83C43BA33926084D1E3 /* ExecutorWithPriority.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE81BD3229B6B6E342141272C635F1F0 /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = EA8A071B5F6B8CB45234079D7A7C9042 /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE871159CF90726BE1CFFFF3907799EB /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C42293110E4BFCD51D38CDFD8A3C674 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE8E089B1265ED7BBA669E42AAE2C29B /* AsyncTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C418CFFC9F39E1A5FC204E52C134F4C /* AsyncTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE8E8102078EE245DF10219AF7E44E69 /* BSGFileLocations.h in Headers */ = {isa = PBXBuildFile; fileRef = 3572364D36B575E095ED6CF97556C4E5 /* BSGFileLocations.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE8ED93EFCB2EB5E2F103286196BBAE2 /* Lazy.h in Headers */ = {isa = PBXBuildFile; fileRef = F706C3AD388C5F7FBE62C7B79AE8E90C /* Lazy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE8EF360BDF060DE71F36DA2FF79D905 /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = B575DF54154C3EFCDB5A1FF18BDE48A3 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE92AF417DB6D1DA316995270A8DD46C /* Stdlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 974A52EA9574697A6D4F84ABF5566E6E /* Stdlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; AE9D98FE8AB2BD6E78EC9A67AFD995A9 /* MMKV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0529D73D9878D4E0EC0416AE14565F83 /* MMKV-dummy.m */; }; - AEAA759C9F6CC27A7481BAC760E03E6E /* BSGSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = AE637C50AF3036DAB1F1A4E16FE0CA9D /* BSGSerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AEB57C6D41D302792E1A1A02C3AA042E /* defer-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 30D81A3D660D3599BC10A49C1F29EEE0 /* defer-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AEB91D7013215447ABFAC65BFD56A15C /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = 12105428025D405B7878360FB13F8519 /* json.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AEC6E35F009BE910DE364172939FF9D6 /* CacheLocality.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AEA98D17B75654E59BC31D37C4AE24 /* CacheLocality.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AED868A17728B12215B3D613600B5CDB /* GULLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 97443E49951B2C31C21D22A095CED0A6 /* GULLogger.m */; }; - AEDBFA41A35E2AF00D65505FAE8A37EE /* FIRInstallationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 07DF80C3CCE5F07D6160CBD62078D66D /* FIRInstallationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AEFA4BCF48EF838BA8D63687911CBB70 /* Benchmark.h in Headers */ = {isa = PBXBuildFile; fileRef = C56532EC0EFA749A87186D083FF75C66 /* Benchmark.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AEFF6557F209C1857ACE1611D5C7CA93 /* RNFBSharedUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = EA648D6458C99285810BE94E0A081CC1 /* RNFBSharedUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF0BE7E99C8415A6467FF2DC8E797358 /* BSG_KSBacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = A1044899B60620CB2144EF54C230E323 /* BSG_KSBacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF29AB9D8540B001C140973F5C277B97 /* RCTLogBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 35CA625B987F4DE5A24455A8C15791F8 /* RCTLogBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF2CCD6C41FBD59729A86DF976BAD0E8 /* SparseByteSet.h in Headers */ = {isa = PBXBuildFile; fileRef = BD1B5313E3DFB75390C1A4251F51B5DE /* SparseByteSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF31CDC7D3D344F81A4089378CBA93D0 /* ScheduledSingleSubscription.h in Headers */ = {isa = PBXBuildFile; fileRef = 55DE32077AF24CFA4B8C6153B81CE367 /* ScheduledSingleSubscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF6EE48569161C686172753B582E9575 /* NSValue+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 267905E3C815770B71178C6FB405140E /* NSValue+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF8512E6470857A84DDD5DEAC09B52CE /* ThreadCachedInts.h in Headers */ = {isa = PBXBuildFile; fileRef = 467EFFCEBA0775F7D87CA343E87134AF /* ThreadCachedInts.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF9B0F7A753E1E6EFDE5F5C22631AC57 /* msa_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = EBB8FDCD812D4599E46C88E2E592A7FB /* msa_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AFB1FC261EC88C0F1E6C9034AABAA68A /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = ECAFF29EC840527BAAD771DA7AF5C8E4 /* EXPermissions.m */; }; - AFBCCC955650E8A725239795ED9B65E8 /* Core-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A190983119A82156CA0B4A385EE69BB /* Core-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AFC006F15422796DA5FC44A870D6EA79 /* Sockets.h in Headers */ = {isa = PBXBuildFile; fileRef = 3856A7B799D915322E5F6E56FB2ED6E1 /* Sockets.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AFE2809909457783DF468CEFF4B5CA4D /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 712009C99073672BFF4D2D1DB1445FC8 /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AFE5A446BAE5432B9084DC260CC3D290 /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E2AD4DC3C7BAFF897E5295A7023310C /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AFEDCB0704C51A1CAF1A6CBDC4BBC720 /* GULNetworkMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 765C7F6D692CD6A890EC5C076DD04165 /* GULNetworkMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B00C3C630F7AE816924081C1B9859EA1 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 210647A8DAB9BA0BC3CFFB53080E24FC /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B022C64E9B34FD7A35A560546CAD3363 /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = 692604FFEA1609303AF1A54694CA2ABF /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B03099E55FFA58A7071BADC9BAD0D84F /* BugsnagMetaData.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CAB94F5343E60DDEBA8B5150AECF7DC /* BugsnagMetaData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B03BF08C9580DF4D4659EC16D969361C /* BugsnagSessionFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D27A3C49C11A184F74D0B9BA233D1CF /* BugsnagSessionFileStore.m */; }; - B07ACA58CAD85C09D596C59FBAFB1122 /* RuntimeAdapter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B1A183613CBA0C90C910C9D98A739A2 /* RuntimeAdapter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B08366768C7248BBBFD785872703E6BC /* FBLPromise+Timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = B167633F9DF72ADB205A2AECBB9C05A5 /* FBLPromise+Timeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B095CF826013EC08C35B03F19B007D00 /* ThreadCachedInts.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D813A9476AB28E62E3DA121A0362C1B /* ThreadCachedInts.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0AEDB93D15C1D49589432164E0A0DFA /* FIRCLSDwarfExpressionMachine.c in Sources */ = {isa = PBXBuildFile; fileRef = CE30F05F7BDE8ECCE8129CA563DFC777 /* FIRCLSDwarfExpressionMachine.c */; }; - B0B188F88083843E6F8B8F5F9A69EF2A /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C66C86240AE70B8C050EC9A5A6B1807F /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0BC2D22E3418166C76C8D04129CE474 /* TOCropOverlayView.h in Headers */ = {isa = PBXBuildFile; fileRef = 257487F947497776522450F01A975F69 /* TOCropOverlayView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0BF4161D9D94D3D2E3B8FA4DD873F1B /* ReactNativeShareExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = BFEEAEAD0C293AFF05B72E3F5B826452 /* ReactNativeShareExtension.m */; }; - B0C73977F5F9D1708187A11B887D43B8 /* FIRCLSContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E39C777BCB1CBEC757CF7DB20CD46B3 /* FIRCLSContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0DA8371D4294ED2A19873058D58D87B /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = CB623EA6491F7CAF7CDD9F052245936C /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AEA407EB3009BBA61F44A67E705D2FC5 /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = E5D28F0A61F7D7F137B1FB7DCFDA4210 /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AED782460FC95297554B397BBF3C259C /* MessageTypesInlines.h in Headers */ = {isa = PBXBuildFile; fileRef = B5DC539B8635A83E5170C5A413DDBF15 /* MessageTypesInlines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AEDABA06F80505899270CCD9BDD50ECF /* GULKeychainStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = AE1F66FF6A4EA4EFE43EADA7E95E849A /* GULKeychainStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AEDDDA1CAF95B0D1BF5A6109B5D3AE8C /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C237B5740E47D383CF27A8B511D0898 /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AEEB4B35435D6890705DB189DE95AAC1 /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0ED04B806B0C2054B1FD194C3753377E /* React-RCTLinking-dummy.m */; }; + AEF05CDAB81952E555757CD0733C9BD9 /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = 08C0C37735B43D597197AEF6D2CDE1C9 /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AEF90FF07FA0142CD1B5EAB04528B497 /* CPortability.h in Headers */ = {isa = PBXBuildFile; fileRef = DF6F68824D610DAD329C4F8A043CE87E /* CPortability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF164A48C2D0FF88D9316CC0F3E8CA69 /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F879142E2EE93DE74FB3050AB0E2791 /* TurboCxxModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AF248CBAA17691DB46F5335818C47F44 /* vp8l_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = D80FDE7E34FA2982674064A6D85232B8 /* vp8l_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + AF2FEA8132BFD8DF55EE2EC0B9A17984 /* Futex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F21DE85C6358409AE64C374D0EC91C2 /* Futex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AF39B2243320A56D81A8D3362E412803 /* ratelim-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FC593F0F6C973BD78BDD755CB42A289 /* ratelim-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF436367FEB919A330A61CFDD0E84FB5 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 0228AAAC9829BF3F36E457F5D71714FB /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF51E183E8533478637F6D604F2A4C37 /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = 6525E5BC4FA81595E90608B5DC99A111 /* RCTBorderDrawing.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AF6EE48569161C686172753B582E9575 /* NSValue+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = BECE1E300CED3753A0542E5F1E4AF11E /* NSValue+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF82D01E703407AD30DD9F0A5F304C2A /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = D6BB52881A2A5900E7C1260BC6523D0A /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF8453F7B39B8BCC9901A0E7D52BAFC5 /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BD3EAC8DAC65366C406E05DB227732B /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF94C09ED2B735772D41239FA5FD6574 /* HazptrDomain.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EF736721F771CE99651D129AB365263 /* HazptrDomain.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF9DE104A3F8D40B0B59925CC2F17E8B /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B6AF267F4A7C6DE4A649FA84CE33D1D /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AFB0357A2827C867FFCA1ED78A9AD5E0 /* GULKeychainStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = E7D565D7D6C306053C2BDFCF2E18FB85 /* GULKeychainStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AFB1FC261EC88C0F1E6C9034AABAA68A /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = 274876894F46385888D92B5FF70E18B5 /* EXPermissions.m */; }; + AFB718D73456E3985F6A9536B44D463C /* RCTImageEditingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = E93BF2785F1FCD510171B2995196D697 /* RCTImageEditingManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + AFC5D6776D35A4051489751846E0DCBF /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D744C16B2F99CC6C399F2964E2BED17 /* UIImage+GIF.m */; }; + AFD8676AAFE8CE4B71DEB1F0383F8F3E /* FIRAnalyticsConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AD8233600FFB546B71BAF0EBB79D22B /* FIRAnalyticsConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AFE5A446BAE5432B9084DC260CC3D290 /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 92CAD975CD7A20E93B55EF4E59090F99 /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0336447FA8DB6BA8E36A9A3F043449D /* Promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 84F337E321B6C51564FA2BBE9406F7E8 /* Promise.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B040F8366135289459EBCF6D0D6AD2E7 /* SDAsyncBlockOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = FD3B4717E08D79F7EEEE2083AA6BD770 /* SDAsyncBlockOperation.m */; }; + B05662CD367FD21359CC4C8A27AE0083 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 210647A8DAB9BA0BC3CFFB53080E24FC /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B059169033D13B19976DC2F48C6C3D55 /* CPUThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DBEFB7984A9AC1B43EEEAD4ACC05B2E0 /* CPUThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + B0911740F21E6BE59A24761E62BB74F7 /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F95F367C474284471D55C9963F1F6D2 /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0BF4161D9D94D3D2E3B8FA4DD873F1B /* ReactNativeShareExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E0611FB660329A962544FF42EC9A319 /* ReactNativeShareExtension.m */; }; + B0CFA8308BF23AFE48E7688DD862CF30 /* SDImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 30C66852419F645A443E08E8C32C0703 /* SDImageFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0DA64A8BB081A5E63787205F75BB660 /* FIRCLSDemangleOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = E9F3A729CD9D33AD75FD8C1B0BBC0ECD /* FIRCLSDemangleOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0DA8371D4294ED2A19873058D58D87B /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = A8B24971382BB080E93170E98E414535 /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0E8850FC59E770D0425EB8638A64101 /* openssl_md5.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C3297542C5015ECE437ADDA002D57BF /* openssl_md5.h */; settings = {ATTRIBUTES = (Project, ); }; }; B0ED107F3AAF83FDD3035D0B3D864953 /* GCDAsyncUdpSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CB4425DEDB29C7C46FA36E77962311C /* GCDAsyncUdpSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0F16506D1B86D9ACCDE57B756549870 /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BD3EAC8DAC65366C406E05DB227732B /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0F364EF3F557656C5A3AB1B1BE49171 /* TOCropOverlayView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A0A2760653BF9EBB93B810586FD6825 /* TOCropOverlayView.m */; }; - B0F787461650B623C4BDD5E6F91F0499 /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BB74AB265F6AE55D2337D7E434DFC7C /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; B0FF11CF10D681CF091E43272BCF9168 /* FKTextSearchable.h in Headers */ = {isa = PBXBuildFile; fileRef = E46D73F190A6730B576634310DE76E76 /* FKTextSearchable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B1041EDA823212B5AFDA698835C94AB6 /* RCTSettingsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 14E2DBF174F33BB0BA591C5CA4ACB46F /* RCTSettingsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - B1092204B20F8417F1D41A7CC73DFA06 /* ChannelRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = E50E37E179D4BCED1B314EEEDDEF6C2E /* ChannelRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B115AE242FE15EDD3B5D8F37AAC10FD2 /* ThreadName.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B5841F5B83CE4B881DD2006D46B09497 /* ThreadName.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - B11E87712A8225889267799000B56A59 /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 696DE55C286BFCE9ABFD2B09F49FBF2C /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B11ECACEAE4A57B565754A452D010A71 /* HeterogeneousAccess.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F54D13B31B2191DE26549C9CCCE60BB /* HeterogeneousAccess.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B12F2D71ACB5082D9E1D8018D71904EE /* ssim.c in Sources */ = {isa = PBXBuildFile; fileRef = A61F1D11A4487E7EB38BE9486F5B775B /* ssim.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B159EA16ECB07992DA8EDFA18146296F /* EXSessionTaskDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 96BE05BCF5DED1CFEE27DE983EF021BA /* EXSessionTaskDispatcher.m */; }; - B15BAB6DA73075B5BE1FDE6DB8976DC1 /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 15938AB08456A38D35D6BB9136FBA93A /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B1607E1B15779A18CF9BF9ED0B0FEDB2 /* Varint.h in Headers */ = {isa = PBXBuildFile; fileRef = ACF5B261D4C1ED5A6B4EA7D551B4517C /* Varint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B1A44D0554671D78084449385219C9E1 /* Windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 36E4866295DA29143E64F3AADB213048 /* Windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B1B2311533B3B3EEB227E08B05AF0C1D /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = 5399C3596FEA33E4943A0C0900F250E6 /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B1DCBE3D0D6320F8430602944F5D3FA3 /* HazptrThrLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = C4C3CFCA8CF7497E1AF0C2007F1378E0 /* HazptrThrLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B1E38EF1F91A1ED1F06ED8319083FE5C /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 45688CB7F4790EFA9F1BA88B21774843 /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B1EA69629A24FB56EB83185DE0BCD66A /* ExecutorWithPriority.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AD8969F8B8FA962CAE381726C768953E /* ExecutorWithPriority.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - B1EE127F8BEDE606F9EB868BA291AF29 /* AtomicHashArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 094CBF061F9D96166BC5518B23A1D231 /* AtomicHashArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B1F1901CEB255C6FC20EF9C73D90389B /* FIRCLSUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = A76299CA52706D2EDE496A287FA92AA8 /* FIRCLSUtility.m */; }; - B202923B85E9EEB18004980422A47D56 /* pb_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = F75799BE5F54F996D3AE4DDCC29FB260 /* pb_encode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - B215AFC4D7F1C5873E5C98E094E5BE30 /* FIRCLSURLSessionUploadTask.m in Sources */ = {isa = PBXBuildFile; fileRef = D1C3457EB97C2E145F1E6A47676EB365 /* FIRCLSURLSessionUploadTask.m */; }; - B21BCAD9EDD7ADF40DB87D5A07B9AC1F /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C99BEAAE170C7F5ADA4D4DBDE7A9D96A /* RCTRawTextViewManager.m */; }; - B23916E810235023294CAE7298D5D6A1 /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C8AF838B4B48FCC4915595140A0E4514 /* ScopeGuard.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - B23F0327919FAF52CAA0829FEC9E7F7C /* AtomicHashMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CE91CAD974A0975205D751C86C23139 /* AtomicHashMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B24A7823434538AD86BD5B7034F55191 /* REATransitionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BB178A15DE3440AD1634E267C07D5F21 /* REATransitionManager.m */; }; - B24E3BAD29A34380E54D23FC65CBFF04 /* EXSessionDownloadTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = A6610CA1473962CD73207E1614B86652 /* EXSessionDownloadTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B24FB381E9D98CA2A84F7F32753B7B19 /* BSG_KSCrashReportStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C09B299EC7EBF1CD2B386507D0ABF6A /* BSG_KSCrashReportStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B2555222B80E232A42F4EDF2480EBBD1 /* FIRCLSMultipartMimeStreamEncoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 74FC53950672DDDEAE0DC47EA151ABEF /* FIRCLSMultipartMimeStreamEncoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B2B9D88FFE05DB78A3421DF942DF05B9 /* Singleton-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F32DF292FF18701CD4296B0F2A789C71 /* Singleton-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B2C98C0A1B1A36FF8C852A96047B6B50 /* BSG_KSCrashSentry_User.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AEA540EBD145F05A9C283DD8DF728C4 /* BSG_KSCrashSentry_User.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B2DE5654A944556BF20ECCCFFD1FAC9A /* webp_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = B95EEB8F6BF6053F409241818BF479A4 /* webp_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B2E2062939AFC23D321DB5608724EE79 /* REATransformNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 07B15FE024C9E7893EADC20A970C1118 /* REATransformNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B2EC5E89AF281A2A198BDE35E78F9F23 /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = 2581CD6267645E5B2A0298DC41C71DFF /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B2FCEFB342140EB7EAD50A54485A3211 /* Try.h in Headers */ = {isa = PBXBuildFile; fileRef = 690044B01CE1973C18744D256E86F459 /* Try.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B301D02911B9A195D527A7775C003963 /* IOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = A4A32A4AC472CF79969A87EDAEC04E29 /* IOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B33C8228FBA7E3CBC1E0834B77C83A97 /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = C237AB20768CC69CD759CAAD92D7AB9E /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B345CC201A352A71FA8F55C2BE56A0C5 /* RCTKeyCommandsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7161FAB61D36A7B10B627AC4876AEDA5 /* RCTKeyCommandsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B345F83F651B98303C27B3E7EA1A21B6 /* MemoryFile_OSX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0211423EA326AFDF60ED4C1C6496C396 /* MemoryFile_OSX.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; }; - B378540B8FF4BFD70220AABF90E9594E /* HazptrRec.h in Headers */ = {isa = PBXBuildFile; fileRef = C6E690072E939AEE09A66F89F821D423 /* HazptrRec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B37A82522A02F76C848456F62FABC038 /* Builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = D5871C9F2D5BC90B1A9AB94AC972717E /* Builtins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B37D65BDA0F63C2D2678FC8C25048625 /* backward_references_cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 44CDC77F327D712E76506179E42099DA /* backward_references_cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B39013F65F4ADA017C689D7C1EC9B494 /* FIRCLSAllocate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E3A58C5C01BED5DD03BE3F5A0FB6D11 /* FIRCLSAllocate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B39588BD010531FD4B244E28DBA83D76 /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 27BF5FC560FD2FAA9E0CE24B587EF40B /* RCTTurboModuleManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B39D3E474DC765CF375273B41C501B96 /* EventBaseManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B12663CABBD318E5F233935D392A54B0 /* EventBaseManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - B3A1589CC32833673DA1293B0CF60C09 /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 11FBE174F53CE8FC3F580B4B6C3A0CAD /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3AA32970947A631257160EB46B3311A /* Aligned.h in Headers */ = {isa = PBXBuildFile; fileRef = 288958F4742B33959C00CCDA830DEF73 /* Aligned.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3ACD44064DAF1FCACA63C8FA694EDC3 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = ABD9E0611B56F1E52924F8694462C036 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3B30DCDFE20E00A92DBC8EB20991E69 /* Unistd.h in Headers */ = {isa = PBXBuildFile; fileRef = B334C8C9484417B4553E4A2ADA7991EA /* Unistd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3CE83FB9A62D3E60B1526D3077353B1 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 7799E18DBF8044E92CF250F46DCD321D /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3D7A8D8919292B71A7E53674AAD7917 /* RNBackgroundTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = 9903834EFC5CC8654040685802619723 /* RNBackgroundTimer.m */; }; - B3FF49CAE317F2C80E48806AC81FA15D /* SDImageHEICCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = F24DFCD6A2EC058E56485B04B0AD967E /* SDImageHEICCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B402A1F16FEC313339C844E94EB6EAC6 /* HazptrRec.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B6B9023DD73576E9A084D6BAB8A8500 /* HazptrRec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B4048F3E7E850F52D9921AE029F1C4A8 /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B2891362EEAF617C7B3E48B7AA33E1B /* RCTMultipartStreamReader.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B40ECAE9D8623AFA4F2217382A88F082 /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 778E00A85B2819C06A2BF56AA88BD580 /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B413FD58BA8E09B6F94E5F07BFCA02D4 /* SysUio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1EF847C047A35D234BA6D2C802DA29CE /* SysUio.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - B41DDCB897C25F6B9FAFFD56E28E974F /* RCTBundleURLProvider.mm in Sources */ = {isa = PBXBuildFile; fileRef = 78D716DADEB39698A894597E74CFAFA7 /* RCTBundleURLProvider.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B4874BB64E2E480A7ECF3DF5738418F2 /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 44C68B0BF6CD21A146605DA60902B87C /* UMViewManagerAdapterClassesRegistry.m */; }; - B4A306BA67EFEC3EEB5FA91C1C89623D /* TestSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBCFDE5CEA3ACBEA4B2452C2223DD05 /* TestSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B4A3273137F0D431A2824EC7BEF6BBC2 /* ClockGettimeWrappers.h in Headers */ = {isa = PBXBuildFile; fileRef = 836C95D081ECB5434F342E17A88F8CA0 /* ClockGettimeWrappers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B4A4F8D2C74A08A4C9569B56CCD8F223 /* SharedPromise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 647CE40CF1C8A2EB7C6DA7AD4397FDC3 /* SharedPromise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B4B661CB6D518A89233618AE326B75F0 /* EXHapticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AEF49ACB5EF2D4ABA32ECFCB4869D26 /* EXHapticsModule.m */; }; - B4D4AF9AFE2324B8A207F103EDD4EA84 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = A5BBF22C984C128BAC4D55B49D9D106E /* en.lproj */; }; - B50405CDC4B20564676FC1EA89C187CF /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 575C0CA92CD3A201B1E951FA6470DC7D /* RCTSegmentedControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B50F1E4978CBD01E41CEF6E97589EEFA /* ExceptionWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 11F3B1FB18F5565F8113DB73ACB4066F /* ExceptionWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B5179AC5CCF5BC23C85CB3A49F38528F /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = 88B2FF6B7A7D12447B6E80EF8AEB892A /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B521043DC23854EBB06178112A7671F6 /* Poly.h in Headers */ = {isa = PBXBuildFile; fileRef = C00EDB550A0E30C35EF12C0F95474382 /* Poly.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B53382B183DEE05FF356289A6EBEB500 /* MMKV.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5CA67C3517994DD4BC785DB3A2B4FB1A /* MMKV.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - B539C7466CFCE15A26A9AF0A9EC6298F /* Iterators.h in Headers */ = {isa = PBXBuildFile; fileRef = ED61FC0FD69FCF27EEEA00BC72707CD9 /* Iterators.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B542268BDDA8EC0E9448BFDCE2A3D04E /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = B7198677D9634621B1E589E131CAEE47 /* EXConstantsService.m */; }; - B54895360EE4EAFA250CC44FD3CB1A30 /* Futex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6498003091836BC30C2529E6F103179E /* Futex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B5606E908C6124E7D6A0E6C24DCEC017 /* QueuedImmediateExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = B533344AF098D6D3E0A567188723B749 /* QueuedImmediateExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B5703412C1346413E95DA8EB2642FA60 /* FIRCLSDwarfUnwindRegisters.h in Headers */ = {isa = PBXBuildFile; fileRef = EB719189CCE4314E49807A63718D917B /* FIRCLSDwarfUnwindRegisters.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B57B52D7A8E312AEA8300E770D5651DD /* REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 26A671BBA18FD0BAB99D9DCEC2816635 /* REATransition.m */; }; - B5866A63F3253F84C282A517193EFE62 /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = AEDD290D0FF52975B1C82C19D809F8AA /* ja.lproj */; }; - B587A8F153D99D6FABA65A992FA89947 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = DDA7ABA5C0D80550BED808644A658551 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B5886017B34755D6C5F8D35BA13DBC9E /* RCTRsa.h in Headers */ = {isa = PBXBuildFile; fileRef = D007CFEE4AD7FD19ABF8EE56737FC685 /* RCTRsa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B58D29E8C21C8791878961048FE86458 /* Bugsnag.m in Sources */ = {isa = PBXBuildFile; fileRef = 7EEB715F7479DC38EE5268AD369FB045 /* Bugsnag.m */; }; - B5AC9749700A678DEA3E74972950F210 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 7018D19C272BB68149C8AF74788193D3 /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B5BA26B8B2126652A92DAB1387FE4645 /* Arena-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FAE388C4C377F211302B9CBF05455030 /* Arena-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B1013306F4D903EA4671ED172CEFF591 /* GULNSData+zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = AE886A948A2579DB6EF611D087C1C182 /* GULNSData+zlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B13BC297B38927E7038C469BACCDED96 /* ConstexprMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A665DDBA684A68855493C39C9A17880 /* ConstexprMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B1483314748D0FDB00B54C324A0CDE1E /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = D900AC4A16FB055481C7D4BB42394972 /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B159EA16ECB07992DA8EDFA18146296F /* EXSessionTaskDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B6DD548394A644C697223589C5139FB /* EXSessionTaskDispatcher.m */; }; + B1792929E4D558B21151EC1BC3701695 /* EventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 742DFD3C79A95BFA465F215781AFD8CD /* EventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B18CCD55A5094A337C7E6F49212AB06F /* FIRInstallationsStoredAuthToken.h in Headers */ = {isa = PBXBuildFile; fileRef = CD0A3443C6A7213D97CFC3BE33030908 /* FIRInstallationsStoredAuthToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B1917338B3C536A39D7472DF946BD906 /* config_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 78805741973DFB53A145A589929A9B63 /* config_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + B1B15F99542746BAD493CB3FD93D7A70 /* WarmResumeManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 96467C509C117597F95EFD14D4F49097 /* WarmResumeManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + B1B20AF0F14E4DD36E6CC45CA1EB7CC7 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DB991B88FA1191D58DA60D46AA320720 /* RCTScrollContentViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B1C32CD1158DB4B3623222010A8DA212 /* FingerprintPolynomial.h in Headers */ = {isa = PBXBuildFile; fileRef = 270500ED0A569CA88773DA34EB2A806A /* FingerprintPolynomial.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B1CC8805D8F4BD1D5D0FEE58EB4EF70A /* PackedSyncPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 915A7157FB89341848EA3CD577FD6C95 /* PackedSyncPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B1FE94297DF545970CC7AF2A9176D4A1 /* TimeoutManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B58A282A684CE85411B72C0613BB634 /* TimeoutManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + B212CEACA4D5887073A5682158E1CADA /* Instructions.h in Headers */ = {isa = PBXBuildFile; fileRef = 61BC42558FD1A68292D50CDD2D1E6983 /* Instructions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B23770D5542A4EEC3B0989C9F51FC04F /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E0FD9AABD54D4C664E1E35921489745 /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B2459278296D4635FAADE93B461C7330 /* Singleton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E0D470BF6CA037D3474A1794EE56F3EC /* Singleton.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B248E08537C1D8181641399AAC23D4BE /* CodedOutputData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0B8F8F56D3C45B3777329256B1275595 /* CodedOutputData.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + B24A7823434538AD86BD5B7034F55191 /* REATransitionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 08A0BFC7788EA8338F32393B48AEC433 /* REATransitionManager.m */; }; + B24E3BAD29A34380E54D23FC65CBFF04 /* EXSessionDownloadTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 61FFC7CC0B3B4AA85642907AD9B5C5CB /* EXSessionDownloadTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B257932FFE1BE8D5812AD70B932A056C /* BugsnagSessionTrackingPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B8B3AB8E994E97D8D8B5A5956B0383F /* BugsnagSessionTrackingPayload.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B25B6061C19470C58F3C94B4AA16A79E /* FIRCLSURLSessionConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BC2C2D517C3AAECFF85699B7FA6FB09 /* FIRCLSURLSessionConfiguration.m */; }; + B26722E1965B1F4916CCBAFA24446D51 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = A19D959C2D30B646978CC853404DA1BA /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B2827E524051AE5967DDB9E4599BEB18 /* AsyncTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = A976071786DC29EB8FCFEB8885F34F6C /* AsyncTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B290F86C7C26CD71231E7658CCD0560C /* BSG_RFC3339DateTool.h in Headers */ = {isa = PBXBuildFile; fileRef = BD56632D10B1E370B66E12A3E178C53C /* BSG_RFC3339DateTool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B294E1F5467A401A4FC3A346B25C5426 /* ReentrantAllocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E3873CDFC6CC882995CB4188C6285B5 /* ReentrantAllocator.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + B2AD496BCA1C18C8EE984FB2210866DA /* BugsnagKeys.m in Sources */ = {isa = PBXBuildFile; fileRef = 62915D9EE18CF11F2284CBAEA75CC96E /* BugsnagKeys.m */; }; + B2BDB48F0761D9CE87E8893D3EA0162E /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = A81CB8F7CCCAFF5C081E6D88856ABE8C /* RCTSlider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B2C41EF392D8BEDA63316B36023197EC /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = C7A950D965978616E154B786E20C04CE /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B2C53D745BBE33BD353EBF8D8092AE1C /* DrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D26E0223B986942AE9A33FFAB0D09D4 /* DrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B2D0A495E7EEBC80157C48FABCD74630 /* SafeAssert.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 920403F95D8B596C5E2AFA4076FF68C6 /* SafeAssert.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + B2D3B946BBED766A1748B18A5CD870CB /* BSG_Jailbreak.h in Headers */ = {isa = PBXBuildFile; fileRef = A9341F7BF84C0221A1AD1B597F136AD2 /* BSG_Jailbreak.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B2D3DE2F11BBCE706EB59DB6070B2B58 /* Benchmark.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A2F80DEFE681CACE159542DB9E6A231 /* Benchmark.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + B2E2062939AFC23D321DB5608724EE79 /* REATransformNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C9FD89B38C20D172047C1DFFA6CFCC8 /* REATransformNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B2F09CE5B6DEC7861DEB857D857359A6 /* InitThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C2B6BD46CD0D6B84F5DF2CAE06AA6F6 /* InitThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B30E412545D6605AD071B064F3CEB3C0 /* IOObjectCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 75563EAB5D1BADF587F512EF467D9CB1 /* IOObjectCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B314869AB7CEE997246109CF7188AC9D /* evhttp.h in Headers */ = {isa = PBXBuildFile; fileRef = 64FDB424456A4DD24183CF1B2202D02E /* evhttp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B3332A84D9912EB7F5ED71A1311D3D0A /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = C572FF6900F516C43191EAD1DD36F938 /* RCTErrorInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B33B0D66A8DC44143120627EAA48AD19 /* Unistd.h in Headers */ = {isa = PBXBuildFile; fileRef = 49ADD9E9092F2EBE6E2D3FCF1CEF87FB /* Unistd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B33CE41C4988FB62274C9435DC7AC7C4 /* FIRCLSSerializeSymbolicatedFramesOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 097D9FA33676D30ACB7766C84788F795 /* FIRCLSSerializeSymbolicatedFramesOperation.m */; }; + B345CC201A352A71FA8F55C2BE56A0C5 /* RCTKeyCommandsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BD4BC06C4F2B33F49A31B34CEFC5BAE /* RCTKeyCommandsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B34CA863D04544F9C500C4C0D1DBC1EB /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 67A418ACC80C140583AE0AC6CFFA5D8B /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B352754E405D47A9A18AAD81551C10D6 /* SysTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = F42986ECFFA483050295D48982F1A735 /* SysTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B36E026BFA975B0E2972DC9E4FD2F913 /* ManualTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 092F24E4BE5DD6FB8A6ABE16A9CDBF1D /* ManualTimekeeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + B373926EB36227F58E78EAE3ECB9B8FA /* EventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 466E3D289B88C4EDE7CC37D8C9EEC208 /* EventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B384D913C27C00381B305B156B2CE235 /* SDImageHEICCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AA541D7BE961CC64F2D9CCD2719F85C /* SDImageHEICCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B384EC60C20044A64775F3511E0F8741 /* JemallocHugePageAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D2EA741293DB1E455E1E6953536B516 /* JemallocHugePageAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B3A9FF3DB1A3DAB8502F509E47036BE4 /* FIRInstallationsStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 13D532F8576952B1731BD9017ABEF549 /* FIRInstallationsStatus.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B3C78FBA541D3F4F79A193E9A54BAF3C /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = CA5B2F76C7122E579D86F19EDCFF9E89 /* RCTUIManagerObserverCoordinator.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B3D7A8D8919292B71A7E53674AAD7917 /* RNBackgroundTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = 23F38D8B8018A84BB11E245D1381A5EA /* RNBackgroundTimer.m */; }; + B3E6599D03A2A32C1FC3DF33F602CF9E /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D7916C3FADB90D716EC5DFF41BB3D99 /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B40825AF99A25154DD5B39CECF6B91EC /* AsymmetricMemoryBarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 7536C3E69616C9AB111495D6F460242E /* AsymmetricMemoryBarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B40E600B226D6BF07D00DF3545C182F6 /* RCTSurfaceProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 18F0FA4FDA122C17C4DCBEB2AA25B85E /* RCTSurfaceProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B4133E795AF7C7D3E5B416E3F9A45083 /* Try-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 51BFC1D0986C540B6E8C5C8456C71D32 /* Try-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B4159B42027607464FD854F55FCFA0BB /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = A1A2C8C7FD4B43B1CCE15E34F066D5BD /* RCTWeakProxy.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B417219BDCE735A0005816B083301995 /* FIRInstallations.m in Sources */ = {isa = PBXBuildFile; fileRef = 808157E8035BB54AD67EED203B4A8AD8 /* FIRInstallations.m */; }; + B4251A5F7467E8E98DD197694FE2A21A /* CallOnce.h in Headers */ = {isa = PBXBuildFile; fileRef = 67547ABBE9B4176AC94A8DF3675333BE /* CallOnce.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B4262D0FB26F5109D7A33BF8AE598C48 /* ScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D873A659FB8A00376E60A16382DB886 /* ScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B428D05EDCA4A93A1CBD29D4B85FE924 /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 26172BF87BFBC776186999961DEE3E6A /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B42B61CA53608ED500BF6F4844DFF698 /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = 1090A8F0485EF829EB52414930011E85 /* RCTConvert+Text.m */; }; + B44DEBB13C380A2262EEBAB1E9819100 /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = CAF651E25771DF3B08038A53419DD063 /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B456AADA44B434304D44DB6CDED80B31 /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 28E6791CB338BCC501263524B29045DC /* json.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + B45A660C46CF428C44680BE932076DC0 /* EventBaseBackendBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3B752E769E8F38741D11CE8E7DAFF4BE /* EventBaseBackendBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + B464CECAB2AD956A6037B55A3571E4CB /* BSG_KSCrashReportVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 140BF54141B2674E32CB6707116B3D52 /* BSG_KSCrashReportVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B46E92A9BDF530C40112651D07ECD171 /* Shell.h in Headers */ = {isa = PBXBuildFile; fileRef = 797A5D5B3084449D2EA9A26C6A00D6A0 /* Shell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B4874BB64E2E480A7ECF3DF5738418F2 /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 00C2884BADE0F97B775E97637AA0FA78 /* UMViewManagerAdapterClassesRegistry.m */; }; + B496E304F33DC09768D039910FBFEE55 /* FirebaseCoreDiagnostics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 484E5B8BC9CBD9EC6129C95BC0566EA4 /* FirebaseCoreDiagnostics-dummy.m */; }; + B4A4BB0EAC693F443AE4FF6DCC2E808C /* IOVec.h in Headers */ = {isa = PBXBuildFile; fileRef = EC8909AA3E1DF660755798850979DAAF /* IOVec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B4AB02391CC37766B2D39816760ACDCA /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = 142DDC0602F382620626934657D3292E /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B4B661CB6D518A89233618AE326B75F0 /* EXHapticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 68166958B14ADCB402252DD19DBCF907 /* EXHapticsModule.m */; }; + B4BA42922FF158551F2813420C9373F6 /* FIRInteropParameterNames.h in Headers */ = {isa = PBXBuildFile; fileRef = B39FA304FAD2133BE2076EF1F90A524A /* FIRInteropParameterNames.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B516D345CDA82EC5B3371926EFAB0570 /* Overload.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C8D435674D93881B7111A8FBBEE9D1E /* Overload.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B524795FE267A021CBB88BCD94E9ED79 /* Stdlib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E82BBCC6FC3B357369DB911A9DDB8310 /* Stdlib.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + B530C7AAE230E317036FEADA50B18058 /* MoveWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DA348A7D21149FE8CE8BB8E70E897ED /* MoveWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B53EE05F4F890F2B3C687492B3BF9EBF /* DelayedDestructionBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 3151C13364D2D1FBA4AA7C9D512719D8 /* DelayedDestructionBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B53EF4FF2D793FB3C7F88D716621F395 /* FireAndForgetResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 50F2B1496321F64AD7B0998350D4D009 /* FireAndForgetResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + B542268BDDA8EC0E9448BFDCE2A3D04E /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A213939D88D46C9D88D0BBCEF62E13D /* EXConstantsService.m */; }; + B55237054455486BC4B657E185484CF3 /* mux.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CF53837C68C7B590404D59EF0192BFC /* mux.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B55D409363D06F48469D9A32530E329F /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D978CC181C344845AC6FDCFAE716AC1 /* ReactCommon-dummy.m */; }; + B56D782E3B1A2A5796BABBE1D71783B1 /* HazptrHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = DB5270A4484D1B65DE6FE5335163CC17 /* HazptrHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B57B52D7A8E312AEA8300E770D5651DD /* REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = D0ACA1571BAA3C0B215051D0BB3BC857 /* REATransition.m */; }; + B57D74184B1605395EF887E546B3192A /* SingleWriterFixedHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 18C569751F640461AACE7DB4F9B16D40 /* SingleWriterFixedHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B5886017B34755D6C5F8D35BA13DBC9E /* RCTRsa.h in Headers */ = {isa = PBXBuildFile; fileRef = 44849A07404CF4A3B58A4DA314A75331 /* RCTRsa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B594FF6E7040805B0D32D24AE00ADB7D /* BSG_KSArchSpecific.h in Headers */ = {isa = PBXBuildFile; fileRef = 72A91CE4609B0AF92D06577F1DD39A0F /* BSG_KSArchSpecific.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B5997E72FAF27BC4965545B78D6CA9A1 /* event-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 85679925C7418CFBC8047231557F405D /* event-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B59C06871DCE000F9A508FAD6FB2432D /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BF5415DDB9E4FE5CFE25F782B29B7048 /* React-cxxreact-dummy.m */; }; + B59E853C035D262E6A0D83F888AC18E4 /* IOBufQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 75363C348BFBE2799A03172F6AA1D7EF /* IOBufQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B59F6BBF55F0B4C9AF524FFF1EDD30A0 /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = B1E53AC7BC87F814F9DFAFF685664566 /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; B5D0D30876A5170B761E98DB026CE76D /* FlipperStep.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F043E4504C069306DD6A6870ABB75F40 /* FlipperStep.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - B60B4BB14F805952E2AEC4096968CDC2 /* FirebaseInstallationsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 91F251357B1B861D6BECB35B97540576 /* FirebaseInstallationsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6196655F52E19CC5BE9A898ED7C834C /* REAOperatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E1710A20C2C59F20C511135C1A95C503 /* REAOperatorNode.m */; }; - B63C374B79ECE9B593CBCD02CFAE49EC /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = CC96A4E83DA3ACB87D0FC09C180D57FA /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B65AC7880464CCCB5374BBBF9E87AA2C /* rescaler_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 69E9EBCDB1ECAB7A20C2934E5487BCD8 /* rescaler_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B67FB0E28FFCA3B8C42FB2909EBB5126 /* FIRCLSReportUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 69D3B6CCE8A8969EE3C7CAFE9900BFCE /* FIRCLSReportUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B683E6CD6825828E184D022BAC39E5F7 /* GDTCORFlatFileStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = A95381923A4483CA559F35A6430C2197 /* GDTCORFlatFileStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B687AF398DA336FFC7304B04A4BA2023 /* FIRCLSSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = B6951FFCEC3C2314DC3AF5B2C5BE38D1 /* FIRCLSSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B69964744F1853C554C9CF308BE6BA8E /* EXVideoThumbnailsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 82528F33CA02E533E44939A0C2850FC2 /* EXVideoThumbnailsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B5E656D8C4B4823CB7C772A212B84E2B /* AtomicIntrusiveLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AF2C1FE145FB923BB121653B852C92F /* AtomicIntrusiveLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6118CFF7DE16573F36615E1EE3D51FA /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B7ABF9B133936B32C5EF56502D08238 /* F14Table.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + B611B30852DB6AAE303158B5B7A716B9 /* SharedPromise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 647CE40CF1C8A2EB7C6DA7AD4397FDC3 /* SharedPromise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6196655F52E19CC5BE9A898ED7C834C /* REAOperatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 13204C62D0A43D74E6AA57C8A4CDD9AC /* REAOperatorNode.m */; }; + B61FD98A4393A3A00DAC223680A918C9 /* FBLPromise+Retry.h in Headers */ = {isa = PBXBuildFile; fileRef = 79EB358D44D6C8AF5B7D86450DD1FEAB /* FBLPromise+Retry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B63DE8331AD5905142273EE181380953 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = F29E3DA00733EA6D3619E628AEB20A0D /* UIButton+WebCache.m */; }; + B642186F4E6D94051FBB0F12F04B2A39 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DAE9BA82BA92370D5416D2AE6FA9324 /* UIImageView+HighlightedWebCache.m */; }; + B65159AA9444F1081BE92C86ADBC253F /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 761D2449B1CD7B8FA9187B26166B2AC4 /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B669576911541B17F8E380C2F8125FC5 /* InterProcessLock_Android.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23744ABA4509EF6CB80AC27DE1337FAE /* InterProcessLock_Android.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + B6969C5DD8443C58885144AF099B195A /* upsampling_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 469009AF4E41FD57592E38B8933095BE /* upsampling_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + B69795678AEC78B288B9535BB47CFA19 /* FIRInstallationsErrorUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 07B23753CEF78E886235745063A4B131 /* FIRInstallationsErrorUtil.m */; }; + B69964744F1853C554C9CF308BE6BA8E /* EXVideoThumbnailsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 55D1B6B22130A6906F858A24EBA49AC0 /* EXVideoThumbnailsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; B6AC4AFFC191BE0174DE35A9835B2800 /* FlipperStateUpdateListener.h in Headers */ = {isa = PBXBuildFile; fileRef = CA751CAFBA7E102722EC9DE334A0204A /* FlipperStateUpdateListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6D307E469CDE456077315D41A0DD9A4 /* ThreadLock.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC806598F97772C30B60BE5001B27B85 /* ThreadLock.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; }; - B6E3B8FE4853E69FAE33EA711D68C137 /* PBUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E18EDA82B7F891804060AECEF71B5BE /* PBUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6FCE433B32B9E9E087A30B8F196973F /* Registration.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22AD38772A9FE6365A912C0AB9692C28 /* Registration.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B6B8D90E1D9071ADCB74D1E342D9EF52 /* GDTCOREvent+GDTCCTSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 045DC00385FFA069EE7A16F3DED4A670 /* GDTCOREvent+GDTCCTSupport.m */; }; + B6C272BCCC4F51420570C8209ADEA2D1 /* anim_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 58B94465E6740BC4396BE9B1AA8814EC /* anim_encode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + B6DD124EDA34919378A5066C533318B9 /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = B7BAE7EC72A94B862129150291E3A12E /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6E9F5C3D140751D6EC41E094C64D8ED /* Ordering.h in Headers */ = {isa = PBXBuildFile; fileRef = F9AB6E248D04BFEA6DDB12144F24888A /* Ordering.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6FEA1C2CE452A46C58EE49FEA9A8E07 /* KeyValueHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = 3554E36A810D8574E002C2092B9121F1 /* KeyValueHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; B71F61D27BBE4CE6D629DC18A95DB476 /* SKObjectHash.h in Headers */ = {isa = PBXBuildFile; fileRef = DD94706F88D0811C813652FD44EAA9F1 /* SKObjectHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B72C46D9D66F2E67AA2925F77648DE56 /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = 58680E8D1775DE8E7BC44584389F8E53 /* JSCExecutorFactory.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B7366623A279813B35396370231AC5D1 /* Stdlib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E82BBCC6FC3B357369DB911A9DDB8310 /* Stdlib.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - B74B960BD3FF2A4A16863EA813C23F71 /* FIRCLSException.h in Headers */ = {isa = PBXBuildFile; fileRef = 30CCD0C483D6373D7BD16F68B8220D19 /* FIRCLSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B75F28FEB4C8E08B0ABF50EFC7D07891 /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = E0D016825E2950654D7D8820F83BF0F5 /* RNFlingHandler.m */; }; - B765B44F69E81C883C0FB4C0E4060385 /* FIRCLSThreadArrayOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 39A87EC33C3AE727827CE0318565876B /* FIRCLSThreadArrayOperation.m */; }; - B777045A0B6188B81FEBFA6615EEC91F /* react-native-notifications-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CB49EE5918865679957300780193C31A /* react-native-notifications-dummy.m */; }; - B7825D6EE7D7C6A8846FB1675F08444B /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 942FA1F71D2B417268A86A4432668C5A /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B783D2E1E1A38F9724EABE0465101E51 /* Subprocess.h in Headers */ = {isa = PBXBuildFile; fileRef = 7627539D8AF7D002F4A4360B6B27BFFF /* Subprocess.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B798B1162D284D965922F1F24772B114 /* UMPermissionsMethodsDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = B430AED966FDB4631652A1DD9247A3FC /* UMPermissionsMethodsDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B79A65F10E89813D11FFDB4327EBB13A /* huffman_encode_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 3194A8673DB4A5FEE86505230F0E1A74 /* huffman_encode_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B820D11FDDB755D1BE07AD170CF23C81 /* ThreadLocalDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B691F81785E6B2010292AA5926E20DD /* ThreadLocalDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B836C0A62632CE8B23BA2CF0C68433A3 /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C1AD67E8F8D80A069E55A5F294A72CD /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B86EFCB55FBA623C76B9E30E20A96147 /* LifoSem.h in Headers */ = {isa = PBXBuildFile; fileRef = F5C47C24A4E9B381B4471B21AF14D50F /* LifoSem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B87031E1012DF8D89B4E4F66C62BE8DC /* Barrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 58C6E7E33F256B29ECC94140A062E1F8 /* Barrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B88D97A56140E1170E316B8261A40114 /* SDImageIOAnimatedCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = BCFA9E7DF0704A04BDB7768D0ACCCCF0 /* SDImageIOAnimatedCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B893A1A5E35F431E601D05B9DCF5D935 /* RNGestureHandlerModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 111DD6FA99BB64D5C0632FE249834302 /* RNGestureHandlerModule.m */; }; - B89BB820BEA721BA3EF6614EC4082F7F /* BSG_KSCrashType.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DC7A00F522AFE9858ECA2B4700FDC85 /* BSG_KSCrashType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B8B16C3D93BE51E210430FB7B6502C47 /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 568061B962A8628A2583A8F201F9C2E5 /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B8BEC41BD4A147E19C1B528FECD2975F /* PublishProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = F09857F1319ADC4E8AA076419B8A0A33 /* PublishProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B8C2E98E24A78912A98FF5D66D50F032 /* Asm.h in Headers */ = {isa = PBXBuildFile; fileRef = DB1694FAC251DD37A22E57B2BDFFEB94 /* Asm.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B8D646F6CBCA6205FB3192085B61EC70 /* FIRCLSCompoundOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 38F5C29B8BABB356CD6F46011DAFE915 /* FIRCLSCompoundOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B8DFBEDD1CFB816DDA8113AF5A5E5A38 /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 33765EF0361FC5BD317E8134536E9D59 /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B8F11260E7A5F8E716DE12F856D07738 /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = ED716E78774947E880E7508529601934 /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B8F11E9546DFD8D2DE83683E2C11E5A3 /* SysResource.h in Headers */ = {isa = PBXBuildFile; fileRef = C4AFB3459812979FCF112335B1814369 /* SysResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B8FE91A034E7873AF17D2B6BC27B74A9 /* evconfig-private.h in Headers */ = {isa = PBXBuildFile; fileRef = 77E27FA756A6B7F123B5FD0442782FD4 /* evconfig-private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9024D009D8E6E07F6D5694ED5E3D194 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = B66CDF20D4E34DD68D5EEBC0BAE954FD /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B91DC43EC3EECEA7750AA172636128CD /* PublisherBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 211FA11436C5447F1240832819907A3B /* PublisherBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B930FD8CA7AB3F5DB69E3E84ABA1F13F /* GlobalThreadPoolList.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C10A6CED735847F162A4E0FA40C2F42D /* GlobalThreadPoolList.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - B93A901388CD05FFB6BB11421DBD8A32 /* MessageTypes.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3716A19F80B70D0901D21C6CC1F456C6 /* MessageTypes.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B93C83977533A531FCA5D1F8658247FC /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = 116B22E616273DE891DEFDE938A5D623 /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9423B6E166474545888E32CCE8BA700 /* FIRInstallationsAPIService.h in Headers */ = {isa = PBXBuildFile; fileRef = C2C0E90FEA77DD0E5EFF604B618FDA96 /* FIRInstallationsAPIService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B94BD9E370A5E29B80E4C0B95FAD5042 /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = A045463B429A15AE4E7D8C9C7D3D25CC /* diy-fp.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - B9524464C264ACFE1D851B2D06B4C49F /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = C9DAB19BAE0886CC6E1FC7AEE195FB70 /* encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B954ACF1E69614F61F8A26359C33C274 /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A1D49F08EA04CD0332FF2CEDCE38B9E /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B95C9DE52BB6CD7034B3012F0D5F84E1 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BD62FD1EAF86D42FBFFBD61036B233D /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B967F3FA30175BF0214AB09D5355FA79 /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ADEB961DEDA65743BCB157D54689070 /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B97262F67EBB48AB6DD08AEF39CDF101 /* REACondNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 68008AE029AA078C70913264227235C1 /* REACondNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9769963BB3E325D205CF4C61576E943 /* File-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 182A4AD9ECC2018EF67F3EC8BF813BBD /* File-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B977C97199E6A31796E29C5535E90188 /* FirebaseCrashlytics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 54016B7EE3DEBAD705D147B677B5369F /* FirebaseCrashlytics-dummy.m */; }; - B97BAF6CEBB8EA639932F7865DF27E25 /* FIRCLSURLSessionTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 98B00F71EF99AF2042883F39A85341E1 /* FIRCLSURLSessionTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B99941D9C114E272C7E600F5C789D2CC /* Pods-defaults-Rocket.Chat-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1755BCB66039C137A85759A7F94BCBA6 /* Pods-defaults-Rocket.Chat-dummy.m */; }; - B9C7DA0B2D410C618583F62E2FF53ADD /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 170F73120ABD10627FB4ED4DA9672A2B /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9D4C1AA0D160D18DA7EF4EFE2465998 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 61A5623BACFC54B40BECCC9D5CD72BA1 /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA05C6C0F02710235E21FA3DDA419BA2 /* ProducerConsumerQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = A4AC4A18649390E71529D211141C6CF9 /* ProducerConsumerQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA0F784AFF1B24A47A56CA63EDAE28FE /* SoftRealTimeExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = C8755BAEBC83C22B03BD7DB43383D48B /* SoftRealTimeExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA16542A99D85602B6A5A5C45DF73816 /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 421A4791005C1BA0283FE5ED2FEEF2AF /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - BA1F859DA9C7D7E97692E817984C15A3 /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F2683A971E15880EF5B327BD5626263 /* React-CoreModules-dummy.m */; }; - BA23B6E7348E9FC9F495CA35710E384B /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 2617B3D90DC123054065DC048C392F4B /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA2F26CF50000640E27F834339683F3F /* react-native-appearance-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 01A7338442EA1895921865960B882820 /* react-native-appearance-dummy.m */; }; - BA34695A8A48209A201345E8B3FBB569 /* RSocketParameters.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 74CD68F1A3B029127CCDC4D6601C3655 /* RSocketParameters.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - BA46F7D76AA9461875C869116367DB40 /* openssl_aes_core.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F46660C998520D7CE088FE9B174D1ED5 /* openssl_aes_core.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - BA5650A5664AE35B6EEC5FBA0C1CF37C /* GULUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = BD569C16ACD867CA9120A03F34357CB6 /* GULUserDefaults.m */; }; - BA584A5F5BF886495EA96F79154D21E2 /* PriorityUnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FB87EB46998796DCFC2FA8FAB22730B /* PriorityUnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA6AD5A154CFD348FC33E64698DED623 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = E22B4113FC51C7241A0EF4BA6B002A14 /* NSData+ImageContentType.m */; }; - BA742431DAB521727B4EF3438D0D4767 /* lossless_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = F60B8B4C00F766209BDBF4C89C226F47 /* lossless_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - BA75D60A6ABD56D5A3997C2994DCA892 /* Private.h in Headers */ = {isa = PBXBuildFile; fileRef = B37E56A6518D4FD9F770434400B57F30 /* Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA94524314AC897C0BB5CD3D6DB8CB24 /* FIRCLSURLSessionAvailability.h in Headers */ = {isa = PBXBuildFile; fileRef = 45933FD560F9D023DC39B0A5D8792B0B /* FIRCLSURLSessionAvailability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B73A17158667F865B59F6FF3974C9AD7 /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A3F22FAC952E5430A805F4537973541 /* RCTAnimationUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + B74045F762624D00FCC20B887DA4C3B2 /* HazptrObj.h in Headers */ = {isa = PBXBuildFile; fileRef = A1EB5F02162EBF607D4F46A727A08B51 /* HazptrObj.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B754500F6E3CD14107A63C18D06AC057 /* UMUserNotificationCenterProxyInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 58817D2F48C0FC9AF0AB1D02CBEE1801 /* UMUserNotificationCenterProxyInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B75618877550F3FC1A675F1A92F09E8D /* GlobalExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6C1989CBEB6492178FB599E7162B2097 /* GlobalExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + B75F28FEB4C8E08B0ABF50EFC7D07891 /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 59BD0C07D24524D4C340E46EC4907F53 /* RNFlingHandler.m */; }; + B777045A0B6188B81FEBFA6615EEC91F /* react-native-notifications-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A79E6B0FA53228F0C22FDAE97E39A414 /* react-native-notifications-dummy.m */; }; + B784264D390418B691C769B9EBF482D2 /* IPAddressV6.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A7A40CF223EA236B4C3E3A43161EBA8 /* IPAddressV6.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B78EB638E31B896CCFA38A9765572393 /* BugsnagAppWithState.h in Headers */ = {isa = PBXBuildFile; fileRef = BB7A5AF8671A1E7E75DC19F1F6616F9F /* BugsnagAppWithState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7BC620E2F0F296F50DC9DA7BBE977E4 /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = D61D7C469D560268F734071F40F27401 /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7FAC62809E437CDEDC06940F32E5E7B /* FIRCLSCompactUnwind.h in Headers */ = {isa = PBXBuildFile; fileRef = B97145061E4F7F28CDE503B069456A48 /* FIRCLSCompactUnwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B81DB7CFBD37CAA024A91B555809BF71 /* FIRInstallationsVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DB1D8FE765BE7361DB47698214C8827 /* FIRInstallationsVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B829AC4A201437872BBBFE86C77C3B27 /* TOCropScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 64AA081DD681754AE4C37B1CF1559595 /* TOCropScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B8366768FB76A4815B0A90A670780E97 /* ErrorUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 36ECDE525D4C7376F5E88469F9AA0F0E /* ErrorUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B86868C18467F17EA53E7F0160AB5252 /* TurboModulePerfLogger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E6C0041DF66013D73FBEED12E372544 /* TurboModulePerfLogger.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B875EABBD116B4987FD2958D90290146 /* BugsnagStacktrace.m in Sources */ = {isa = PBXBuildFile; fileRef = 6810FE9C38430A012054DCA1F480FCA3 /* BugsnagStacktrace.m */; }; + B87B8695BDEF0D417CCD9B3B07E3760F /* dynamic-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F0DBC971FD93CC9B2793DC0B11B8E605 /* dynamic-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B88263CFE9B9337C1AB4D9667DA89EC9 /* PriorityUnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FB87EB46998796DCFC2FA8FAB22730B /* PriorityUnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B893A1A5E35F431E601D05B9DCF5D935 /* RNGestureHandlerModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 258482B084569DC0C1112CA43660CA3A /* RNGestureHandlerModule.m */; }; + B895839B7E06B29CAF736BAA351D01B4 /* FIRComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 63A7B528365B39E6C6E9F68527A0D320 /* FIRComponent.m */; }; + B898DB08A50FBB4C579539CB1CFEEA72 /* poll.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B4FCBFF3CE54A00C2F44A31FB4C5FA7 /* poll.c */; }; + B8AC3BD4F6CF70F207FCFF3C2931599D /* openssl_md32_common.h in Headers */ = {isa = PBXBuildFile; fileRef = F84D66B66D9C1D0B7FA28AC0AF726DA5 /* openssl_md32_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B8B7AAF4D7B596C9248BB611E889DDCB /* FIRCLSDwarfUnwind.c in Sources */ = {isa = PBXBuildFile; fileRef = 2C1FABDEA357FDEA4376B5426958FB0D /* FIRCLSDwarfUnwind.c */; }; + B8EE199139365259464A9A4E63FB031B /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = F68A5EB0647CE6880D14B79F96C6735C /* FBReactNativeSpec-generated.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + B8F4F7753D9026C4E4123F757B812AFA /* AtomicHashArray.h in Headers */ = {isa = PBXBuildFile; fileRef = DEDFCDEDEC54C491C5F3C67AFD4F3CB5 /* AtomicHashArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B90BC90D6C772811A4998C72B965F487 /* pt-BR.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 25CEA0EDE1F1F4F5ED0DD3050A6FF576 /* pt-BR.lproj */; }; + B92D9B88277945504CAADB5CC35CE28C /* DefaultKeepAliveExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 4652354732BAAD1E1BF37A644FBCFB1D /* DefaultKeepAliveExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B93E4EEF29EEF84B3C95C07BDCBBC523 /* Future.h in Headers */ = {isa = PBXBuildFile; fileRef = 08AB72659E4E8BC3FCDF3F0DEB0E6611 /* Future.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9409907B52C65EE32E83279A15715AB /* UIImage+ExtendedCacheData.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EEC082619F0F996306EE06C9EE41BD4 /* UIImage+ExtendedCacheData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B95952822BE50446EBB4404EB4C8BD77 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E9FC43B02A652C5EFBABABA7B5033D8 /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B96236ABFA0949FD10F5FFF77480787E /* SDAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 96C961D244E629D8F1928A1FD8230EC6 /* SDAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B97262F67EBB48AB6DD08AEF39CDF101 /* REACondNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C60C273209D11C25647302AA4EE459C7 /* REACondNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B97C4023C89040E46F0B1CFDFDF2C598 /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BA3DE51E17B480EAFB1A0B28D2E7932 /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B99941D9C114E272C7E600F5C789D2CC /* Pods-defaults-Rocket.Chat-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F930708FEBC0293B5A61239E13D57DF1 /* Pods-defaults-Rocket.Chat-dummy.m */; }; + B9AA93D67423904B9BD77404229C8CBE /* FlowableOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 49A802672B0D87070DE29302B001CBCD /* FlowableOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9B61BFCB52244663AAE509BAD50BC13 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 99B7A76C5FDAC071619973B54DEF69DE /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9C785E004C42A3A7870E839436ADB3E /* Sse.h in Headers */ = {isa = PBXBuildFile; fileRef = 7368C7BB10308A0411937E8FED486628 /* Sse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9D4C1AA0D160D18DA7EF4EFE2465998 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 02AB655AA81715AD591B40A32DD7A704 /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9E0F2BB25FE380FB287CB60FE2EACFD /* SmallLocks.h in Headers */ = {isa = PBXBuildFile; fileRef = 2579C83AE47641A16DCDEB3AD0508DBB /* SmallLocks.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9F4749C940D6C6A23EC38670DA9336E /* BugsnagApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 70BFA5E481DB2ED2EDD2DC75CC99DB74 /* BugsnagApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9FB9E4F14C22337C2184B19BB95A8E1 /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 124EB0925EE1CAB42EC4BBD5C77ED793 /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA07A5475D4C2C9E8E58363EBE4408E2 /* SDWebImageOptionsProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = B042F5A5AB0621F4132E429D09681A9B /* SDWebImageOptionsProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA0F446E1D8F95413391AFC486FF19AD /* Preprocessor.h in Headers */ = {isa = PBXBuildFile; fileRef = AA8DA18CA91D26D11E1BAE2D71DFBFF6 /* Preprocessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA1F859DA9C7D7E97692E817984C15A3 /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 592DD183E51F970BE56CF088A5393452 /* React-CoreModules-dummy.m */; }; + BA27A3CBDEF6E0931E13F60F176ED32C /* Stdio.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B8E8C68AEE768BDD9E736F62AB3056B /* Stdio.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA2EC5894867731AC833E5117AC88C1D /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 43CFFE187D922E2A69DF28EEEF6CB5D5 /* RCTSubtractionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + BA2F26CF50000640E27F834339683F3F /* react-native-appearance-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AE33E6B0FBB3B12DA4E53484838DA32 /* react-native-appearance-dummy.m */; }; + BA329500D43B9B6E482F57767412CB67 /* FIRCLSDownloadAndSaveSettingsOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D2D7C2D1FF6405FC4F8DCCBEB33D66F /* FIRCLSDownloadAndSaveSettingsOperation.m */; }; + BA39E72B3E5987D3570AB7E33150CDFE /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DDBD5E783F16003D79827A5B335C2E9 /* UIView+React.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BA8692E70D5290EE1836F18FB4D71134 /* ParkingLot.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B4997BE75B671F317C2EF73421AF78C /* ParkingLot.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA8D18096CD1A46BB82D8F529110E8CD /* BugsnagEventDeserializer.h in Headers */ = {isa = PBXBuildFile; fileRef = A8328F6F268BE9F930BB69676027BA42 /* BugsnagEventDeserializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; BAA136554781CBBC00EB2AD138681AFA /* FlipperUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = F5344B45D2A5F2585D79F4084CC0F9EA /* FlipperUtil.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - BAD98EF8DE87C3F73E43CAC7698B10CF /* openssl_arm_arch.h in Headers */ = {isa = PBXBuildFile; fileRef = E54E206E6640A82C57D50C0627552E5F /* openssl_arm_arch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BAE031A7A3DD3A318F307613DF420CAD /* RCTConvert+FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = E7BC5D722F2B2E81A4AEB2E20E18DCC0 /* RCTConvert+FIROptions.m */; }; - BAF7DBC68C422EC3C942F15AB21310C4 /* Hmac.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BA6E2B807EADC6DBE56261217B8CD4B /* Hmac.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB07E758D418B4E656B08709ED18BCA1 /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A35EB1DD452451C041B64AFF1F004DAE /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB18DFF3D4E68865EF9AB7939CE9775B /* WaitOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BAB895311E1541DB93B0995E28ABA13F /* WaitOptions.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - BB26FA800B26347223BA29FCC00686A5 /* EventBaseManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 03AA07AD50C90033067A6D07CFA342DA /* EventBaseManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB464AD22BAE2F92C961F8C99A3E1CA6 /* RNFBPreferences.h in Headers */ = {isa = PBXBuildFile; fileRef = FA437AE1A5188A2FB5942F77DEEE86A1 /* RNFBPreferences.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB80F6DD54A112549C9B211E4D2E07D4 /* GULNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 85BCB73B53578F6422484F9D3075B556 /* GULNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB8BCB0E1254BF4F09B3E09CB67501F0 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 00EEA1483806636CBFBC40852FB14F41 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB912E27167B0C11C86C2B280779C8FC /* YGLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 49D53E5ECAFF69A7D6F6C7CCC60D004A /* YGLayout.m */; }; - BBA859A9BD350CB609DF2038E4976EA8 /* Time.h in Headers */ = {isa = PBXBuildFile; fileRef = 842065B8B3BD58AC120D1C31CB5FB335 /* Time.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BBB5C88065746C3D7414167C89AD1E0C /* FIRCLSSerializeSymbolicatedFramesOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F5467A50B2433558AF81A19C71F11A9 /* FIRCLSSerializeSymbolicatedFramesOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BBCA45D0BC4E0B116345A1B6E4EDA811 /* RCTStatusBarManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = E08E31C62C6E60E41E4F672168A2A72F /* RCTStatusBarManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - BBFB67ADDDF938347BD74D90E99C8C8B /* rescaler_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 65C4D9484C6E95E9F01F5CA361F5F57E /* rescaler_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - BC0FAD8BD5EBA7289102C07A5F7E870D /* MoveWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CF6006987F5370C7D44118131A77BA4 /* MoveWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC12B69CA750CC5DA95627308CA95689 /* TOCropViewControllerTransitioning.h in Headers */ = {isa = PBXBuildFile; fileRef = 495EB46C90284196792D3BC2F73D02C9 /* TOCropViewControllerTransitioning.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC2E89F8D82C209DF700599CBB398BC2 /* RCTView+SafeAreaCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E5D9DD3FAD6AA13E27482A54160D3DE /* RCTView+SafeAreaCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC5FFE2C59E2E35E07E3780852E520CA /* MallctlHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D9E57DF4A08C75F2004E8D4518455E9 /* MallctlHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC7E55A776CDFCD7D54EF579B10B8236 /* ReactNativeShareExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = C9F18BDD06EF321764D8EFE3830C7EFF /* ReactNativeShareExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC875CAEF53539746800651BCD300033 /* RCTDevLoadingViewSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = 2078F51123D0A8E7CD3B49B2B0AE322E /* RCTDevLoadingViewSetEnabled.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - BCB94D920D9304C0F6C6B4A97211F740 /* RCTRsa.m in Sources */ = {isa = PBXBuildFile; fileRef = AAAF0A755C7FE38117F06CF845AB381C /* RCTRsa.m */; }; - BCC1BBE162E3C4498352B192A8F7F093 /* ARTRenderable.m in Sources */ = {isa = PBXBuildFile; fileRef = E0577486E915045CDD02736A660C2F7F /* ARTRenderable.m */; }; - BD04AEE284580698144C49395CDD897A /* IOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = 07CC778AB6214B8185DC0E6A75BB8F83 /* IOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD0DE0A19711F724704D0626DE3E86F3 /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C54F02D722B48B0AA6F0F2997F6DC92 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD186137B210BDEE0479BF8275367291 /* RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 29A7CD22B9B99E12469FC6E951B08C6A /* RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD280DCD333486DA5F4DFF8DAAEED23E /* BSG_KSCrashReportFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = B9F268B576CA5D1D929CE9A592F8E017 /* BSG_KSCrashReportFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD3E548E6DDD59B5F2B7833A743CF9A8 /* F14MapFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D72FDDBC60397E485A899802B6F59BA /* F14MapFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD4D383324DAA45C6AF9FFED88637083 /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BE6963548902B3345CE6319C1EFC46D /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD5DDA97AA9E4938F96BC384018A764B /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 04A72F1A35F3AF83F8CF67BF995DB8DF /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD6059CFC7E6751CA6359402858246F7 /* FIRCoreDiagnosticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 26C4479AE2FD2A23C40DCA31F4837852 /* FIRCoreDiagnosticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD61AD23A7D87A144D39A1D00EF8A085 /* DynamicParser-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E7FEFE9C75C4B0D2872A9B3DB2E10D6B /* DynamicParser-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BDA517F8ED368C5E815F3A8471A2B338 /* FIRComponentContainerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ACF75B83E9BCF1F92190D41B8827A12 /* FIRComponentContainerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BDA5EAFC37948EA0397FA37DC751853F /* FIRCLSReportUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = C21363F67760B2C4D800FA5E6E6B6A07 /* FIRCLSReportUploader.m */; }; - BDBA34B09E7AFD88F98E4C667697C777 /* Dirent.h in Headers */ = {isa = PBXBuildFile; fileRef = A568645E3EC4F41A6B8E54985BE21DD0 /* Dirent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BDCBB80E11DE09D07B1C60C2DB99A048 /* IntrusiveList.h in Headers */ = {isa = PBXBuildFile; fileRef = 64AEE34E39F21439039BA2068927D0F2 /* IntrusiveList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BDD4376E6A2CE0570E7368F809AA6392 /* MemoryFile_Android.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 65F7A0C6C87BF5E149864516855F9BB0 /* MemoryFile_Android.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - BDD44F1CFF07108A25C920F2096997FA /* FIRCLSSymbolResolver.h in Headers */ = {isa = PBXBuildFile; fileRef = D8DC5D16E9213B3F499E8791592C12EC /* FIRCLSSymbolResolver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BDF36BDAC8009EEEE90A62CAD258816E /* huffman_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 32393333791182EC6F342CFCF50B78E5 /* huffman_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BDFAB2364B1AC7F21521F1F16CA23654 /* FutureExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = C37B23A8A1B5BEEEB622D8D6A3A35F81 /* FutureExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE19AE06EF5878BAB8A999F87B1085F6 /* ARTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F2FF19D8BFD77A700EB6457E8DD9F0D /* ARTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE3AD8DC1B73FBF200860533860DF790 /* BitUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = A04A93F8CDEA87F765B1BFC853A4AA40 /* BitUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE80076EDDBE03972DAC73594F3D1D9C /* SDAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 96C961D244E629D8F1928A1FD8230EC6 /* SDAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE9111930A53F9427B75DAEC76358FAA /* RCTI18nManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 28C355D499A3CBBB9DDF01674BAD2BD3 /* RCTI18nManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - BE9151386B4667D9C62341DA5B973C84 /* RNFetchBlobProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C2F19B01CDE0E540916BF36C0D235C2 /* RNFetchBlobProgress.m */; }; + BAAED780974B80EC0F40FA7F16FB68B2 /* Bugsnag+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CEF6312A691D6DB22CF8785A46A0F92 /* Bugsnag+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BAC849F7D7DCDBE9A0E3F0EC732EBB9E /* BugsnagStackframe.h in Headers */ = {isa = PBXBuildFile; fileRef = 74EF1021D13B81EA41A5928C1E898140 /* BugsnagStackframe.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BAF7DBC68C422EC3C942F15AB21310C4 /* Hmac.h in Headers */ = {isa = PBXBuildFile; fileRef = 7350AC9E8B2BC0D2157BBD0C505BCEB7 /* Hmac.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BAFD461E05A8B4826167309DA792C604 /* MPMCPipeline.h in Headers */ = {isa = PBXBuildFile; fileRef = EF66ECB1C963FF6FB3F5A9F987CF61D3 /* MPMCPipeline.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BB03B83D12B84257758E03B1E7B338C2 /* Flowable.h in Headers */ = {isa = PBXBuildFile; fileRef = E0363F552304962F69D4227E89A03FD4 /* Flowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BB2157B9CBD4FC48ECCCACB047F27180 /* AsyncServerSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 596F10574E5D420FE66BBA5FD276D16F /* AsyncServerSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BB3D2B73FB11475D233EC0141BA67FD3 /* BSG_KSCrashSentry_Signal.c in Sources */ = {isa = PBXBuildFile; fileRef = 54491F5B3AE4721132EE26759F4E88F4 /* BSG_KSCrashSentry_Signal.c */; }; + BB4F6AF89A15D0B403F5AAAB5360A704 /* GULLoggerCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 842CE69EF38520DDAA52171D3B28A041 /* GULLoggerCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BB562842ACFA3EAFA7C91E495616B572 /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 29C3FBC8358D2B9354ADE309861B9CDE /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BB95A3870C6FC9F84284FAA4BF733FEA /* FIRCLSUserDefaults_private.h in Headers */ = {isa = PBXBuildFile; fileRef = E0E7621907959CFCC82A5725717C078F /* FIRCLSUserDefaults_private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BBA3BA78EE75EE6BE23A64B27B6B7FFB /* FIRCLSProcess.c in Sources */ = {isa = PBXBuildFile; fileRef = 5334928FBB0132296272FEA11164A514 /* FIRCLSProcess.c */; }; + BBAD67E32BECDCD7F5E0D56A64ECFD72 /* BSG_KSString.h in Headers */ = {isa = PBXBuildFile; fileRef = 308C47CE2D3A09406168330B0D50A90F /* BSG_KSString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BBBD6E8CB02C498A552D18842EE4D1D9 /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = E4A6BA210B4EFD203AABF20E4E4B840D /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BBC28273B135F97C57377B610C5BDA19 /* Semaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 701E5530C6B17E2445815FABEF3968E4 /* Semaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BBCA45D0BC4E0B116345A1B6E4EDA811 /* RCTStatusBarManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0D4E47CF87EA1B46B2B44533C1B5C444 /* RCTStatusBarManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + BBD515D6180E71256A0A9CB0BF778447 /* Promise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 272CDB0FA827230F8DE743CE89D46813 /* Promise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BBE575A5924112AFBCF759BE914C6D8D /* event_tagging.c in Sources */ = {isa = PBXBuildFile; fileRef = E551AF1B96A249735565C79072A99930 /* event_tagging.c */; }; + BBF12E0628081E0A6B307FA2D6AF6BC3 /* BugsnagPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = F9AF0CE3E531CB7ECF512BA158A835A9 /* BugsnagPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC0975A30F8FEEC9A8E5F8798F052344 /* MemoryMapping.h in Headers */ = {isa = PBXBuildFile; fileRef = F7A9DDBA9BFFE646492645017B4ED408 /* MemoryMapping.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC1ADA4083FC3463E1592442D3AAD071 /* BSG_KSDynamicLinker.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B87A5BBA8FA573F708551CD582ECB53 /* BSG_KSDynamicLinker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC1EAA3E5AE771CFB2E8C2F44E3ABF8A /* ScopedLock.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 792D7911DF2A48D00794E7EC7357C1F8 /* ScopedLock.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; + BC2E89F8D82C209DF700599CBB398BC2 /* RCTView+SafeAreaCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = B40DF7C2CDE03744D98968D0D2ACF035 /* RCTView+SafeAreaCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC55C7CADBBAE050ED0BB3E32A64E9AF /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9942BE296BDC9338E1E5B26D1CFF0853 /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC5940202315DE2869ADDF89548E4809 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C5A833DB4603F418D6E176A275CB16F /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC7D90C5BB326EA7771348567FB2BF44 /* FIRComponentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 03E7B4CBB3C83D80F339CB90C1B315FE /* FIRComponentType.m */; }; + BC7E55A776CDFCD7D54EF579B10B8236 /* ReactNativeShareExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DD200BF5701502D7B4E9ACFF160CDC1 /* ReactNativeShareExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC8F5A06EB0ED683D5CA55D7E6D84C44 /* rescaler_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = FE0A9EDABB70F6E69735C65E4CB586B9 /* rescaler_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + BC9A6B52422C58DE5EDE6E4CE44BD9A0 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 331FC717C92873188CC5A657D146E0CA /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC9AA287DB9D1F3C1E2E37BCD07E16EF /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = BA82B896587B196F261A9B1D9428EEB3 /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BCB94D920D9304C0F6C6B4A97211F740 /* RCTRsa.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C2FF72F433B5B816D4642C6E2EEAB91 /* RCTRsa.m */; }; + BCC1BBE162E3C4498352B192A8F7F093 /* ARTRenderable.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C0B43A991C621D8375536967E7F702D /* ARTRenderable.m */; }; + BCD14AAD371AD7DBACD31606BCAF0EA5 /* SpookyHashV1.h in Headers */ = {isa = PBXBuildFile; fileRef = D64E5F3C5FEBB3D23A3B391A2C24C43A /* SpookyHashV1.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BCDDD0F39B08EFCAAD199EBB7569352F /* ProxyLockable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A94A8FADCF705A06FA759CBDCA969EB6 /* ProxyLockable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BCE6AFFBB228B0AB83252F2EA6716C7F /* RequestResponseResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E503A206DA16C1284D11C3DA57A0F135 /* RequestResponseResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + BCECA4F80E7AE8459C0C0D8DF87D5DB9 /* Hardware.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 681A1AB2EE91831DCFF815571703FE6D /* Hardware.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BD162DFD42C21940FDF960095DEF6686 /* GULNSData+zlib.m in Sources */ = {isa = PBXBuildFile; fileRef = 040B1FEA4D1BB34B7A5D3231137088C5 /* GULNSData+zlib.m */; }; + BD186137B210BDEE0479BF8275367291 /* RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = E8A17AD3EF22B3EDE7BC6C2E0715F83F /* RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD19592FD2EE47C1DF3DBB4264F6BD9B /* rescaler_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 3C69E16660B149ABB112C2C8F03FF6CE /* rescaler_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + BD2D7E41781C3994DDE1CA5418311905 /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 3653433E05093D7DD292F6CF1840A064 /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD31373787DBDBEBB6B55B5DB5B9FA1B /* SDImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 25BDB5BBBC679FA82A17FC504F679035 /* SDImageCoderHelper.m */; }; + BD5DDA97AA9E4938F96BC384018A764B /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D4C7960CE956C5F384C6FCFE3EF90FF5 /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD6272FAA0121FB7DA4977388E4B983F /* FIRCLSURLBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D035BF61D6DF1BDDA08411148CE3E73 /* FIRCLSURLBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD7457227DA7BF85700073928C5DAC6B /* cost_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = C9147CB539C346522CDE0A26BEEAD07A /* cost_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + BD77429A83C5A96A341E7EFE5CD6D1CE /* Checksum.h in Headers */ = {isa = PBXBuildFile; fileRef = 30E0158E717F1ED37C490CDF675CB681 /* Checksum.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD8052DA6717CAD254815B690E2DF5AD /* TcpConnectionFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AE6FF8CF2D49101587FD8DFC0377561 /* TcpConnectionFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD8C01AEC83FACC176791E1F09374054 /* Pods-defaults-NotificationService-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 38811FF30BDDEC853CE21220CB6EF709 /* Pods-defaults-NotificationService-dummy.m */; }; + BD8F8D1E2C7AFD6EDD1E52E3BE2728D8 /* RCTDevLoadingViewSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = BCABB017733DA167CDCE49C71D027269 /* RCTDevLoadingViewSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD915EF6F0525B2E12C96CF877C5261C /* Util.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AF8240480B74734E9ACF9DCC64540B5 /* Util.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BDA86160C344F123B4DFC750293BAD3B /* FIRCLSApplicationIdentifierModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EC293F2FD023668E6B3531C1E85E2D /* FIRCLSApplicationIdentifierModel.m */; }; + BDC40C36D8665788E5F4C11F8AEB049B /* evdns.c in Sources */ = {isa = PBXBuildFile; fileRef = C8F7A0909CE76DB246CB41A3FF611281 /* evdns.c */; }; + BDF55DAA84EC07ACB12B59E6FD9E58E9 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = A421F2EFDBAA96C876AB25BD44230474 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE19AE06EF5878BAB8A999F87B1085F6 /* ARTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 10E8EE79A039D0EAA20868FC060EDE3C /* ARTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE1EC289878D8BA4F3AC01EC2E153E53 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 32049DBA956FAF95AB8A99703E214354 /* SDImageCache.m */; }; + BE23A68225DE90277929A9DB9E0EBA18 /* GULNetworkURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E981642F410BB1CAC1402953B1C9C35 /* GULNetworkURLSession.m */; }; + BE43F0800E11F3DDB0951EBCF34A13B5 /* RCTBlobCollector.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CCC914F4F5E3F78B40CCDAC0BDEB908 /* RCTBlobCollector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE6D9D39189D07C4D778D76C8C6C8ADD /* BSG_KSMach_Arm.c in Sources */ = {isa = PBXBuildFile; fileRef = 0916BB36DF829DD5FD4D51AA3D725A7B /* BSG_KSMach_Arm.c */; }; + BE71D068B4CFDF3DADE649849D6A9BE7 /* SequencedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B95CA518AB99C7208289965A486D6FE /* SequencedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE77BF5D3D009AA27EA6E3E6B0863A9C /* LockTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = C27DC7AE4DE697B574D21F7A3A57FB75 /* LockTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE82ACD42D28685F5C61C944DD7C167F /* MemoryIdler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FED12E0BDD67E0F93E53BEFCF504D270 /* MemoryIdler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + BE9111930A53F9427B75DAEC76358FAA /* RCTI18nManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0CAE1967C4A341DC0BBDF6A55DE59DAC /* RCTI18nManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + BE9151386B4667D9C62341DA5B973C84 /* RNFetchBlobProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = 659AF947B8078759249913E120B5CC48 /* RNFetchBlobProgress.m */; }; + BEA051E333B51EA6833E9916AC3ACEDB /* BSG_KSCrashReport.c in Sources */ = {isa = PBXBuildFile; fileRef = 4B5B3779D6AB8FEFC561F8749A3E7170 /* BSG_KSCrashReport.c */; }; + BEBA37988A07D40FBA4A1EFB2A777324 /* IntrusiveList.h in Headers */ = {isa = PBXBuildFile; fileRef = 1859134AD65C65ED5257C915403A0415 /* IntrusiveList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BEC08D7CAEEBEA53D39B959B139BADB8 /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 92DC2AC6A377D3C7250197995BC60280 /* RCTInputAccessoryViewManager.m */; }; BEC8B8C8F9282C3EF2B5699365285652 /* FlipperConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BA1950E3338CF90E6291F27458625C5 /* FlipperConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BED62A2EBAAA67482181337F81F12CD8 /* epolltable-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DFA608104A26481888AF421986C11E4 /* epolltable-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BEFF65FAA8F7B2B5FB2115CE2677082A /* LockTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = FD7CEB9400B120D3967B693B0B157334 /* LockTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF0CC37295C622B2F421D4389EDFD43C /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E8FF1F99E46ADCCA66C1EA96CA8EC1C2 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF1622CBFF1FD03F4586E65A67EBE56B /* RCTAnimationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8992EC690655551AB49DB2B1245424D9 /* RCTAnimationPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - BF1C0AC2AEBD330465A27CCB83FC0B60 /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 93DAA541CC6780D4B35C40AEE7CC080B /* RCTEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - BF1FB723523FBBCF304DFEA53549C8B2 /* RecordIO.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 60F3BCBDD6A323B314E65E8E2810E3C2 /* RecordIO.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - BF2CFBAFB34AEC8FC5F154F36CDE62E0 /* GDTCORConsoleLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = ED59A322A00B63535E5F9FE1CC01764D /* GDTCORConsoleLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF32CBCC76B709BED1E3B73274406472 /* ProtocolVersion.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DEDF0041639EE57E1B34CD0EB872879D /* ProtocolVersion.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - BF36C47B969919C688B90BD62088EA24 /* LNAnimatorTemp.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ADAAA98943D36345D16BD28DB54FAFB /* LNAnimatorTemp.m */; }; - BF40CB68DCAFA3F0942CCE37A02F3107 /* upsampling_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = F656E9E9B098FF51164E8EDD69ECDCB0 /* upsampling_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - BF4D85BAB8D5C7802AFF5D050F344AD9 /* FBLPromise+Recover.h in Headers */ = {isa = PBXBuildFile; fileRef = 624B9F811291F5AF60BF66DA62A4BC33 /* FBLPromise+Recover.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF67BB6DFCAA91BDA1D750970C036682 /* FIRCLSPackageReportOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = C335D0C23B2DA8C1FF4D4D1B65B1F207 /* FIRCLSPackageReportOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF87FF4C58C5344F8CA31925E21CB32F /* Subscription.h in Headers */ = {isa = PBXBuildFile; fileRef = B4A78ECF85E46B193729EC71AE037CAC /* Subscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF9EF11CBFCB398001ED6495C859CCE4 /* RemoteObjectsTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 87A42002CE935D81735F7BBDC468920F /* RemoteObjectsTable.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - BFAC2A31967D18362DE39231B68C71C0 /* SafeAreaManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B316F3EB3F04EB82A40DE42C29374D4 /* SafeAreaManager.m */; }; - BFAEA5D97DECDB082C552F0E72872834 /* SanitizeThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A27423CFA6F234FE0C8C47A25AA11A1E /* SanitizeThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - BFBF4C0E30D8324B8B74B6913E713C30 /* Access.h in Headers */ = {isa = PBXBuildFile; fileRef = 96BF2D34B47DCE54AA42D94CBA7CA081 /* Access.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BFC196CC5EB077882137266B9B1ACE56 /* FIRCLSRecordApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = D7E5EC94D71759DD5DA4BF40DACD91FA /* FIRCLSRecordApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BFE5D33FA497C1078345F79EA17476E5 /* REAAllTransitions.m in Sources */ = {isa = PBXBuildFile; fileRef = 048FEFFAD7A72CEC6B5E45B4E2D690B9 /* REAAllTransitions.m */; }; - BFE5F3EB96097C7B22C5A8D5C694BB08 /* Subprocess.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2FEB54F65AC6BA164AB7601C6A11F0B /* Subprocess.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - BFE76612EA1566B36EA5E570C88367F0 /* Pods-defaults-Rocket.Chat-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FF15DDF56C721A3A36BEBEC97A731D5 /* Pods-defaults-Rocket.Chat-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BFEDE59416E380750A27049D2B666B3B /* RNCSafeAreaViewMode.m in Sources */ = {isa = PBXBuildFile; fileRef = C883504AA5CD6F532DEBF8F06A2A2C51 /* RNCSafeAreaViewMode.m */; }; - BFFAFF0909C8B3F654F9C46A5F14E5D6 /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = F23755F3F289AC1B3AF09C62A34A01BA /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C029E26863B3C57950073AD8BF04163A /* RNFBCrashlyticsInitProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = C1B03222D4A28884A627F8CC29DADD17 /* RNFBCrashlyticsInitProvider.m */; }; - C03DF4D899E960F47142782B9B71EAAC /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = F1863201D0BA8344F02D2910F23AADA4 /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C03F07C44F05DC644F9089A4D36603A8 /* BSG_KSMach_Arm.c in Sources */ = {isa = PBXBuildFile; fileRef = 309DA7B93B5E0A0EF006A0404ED94E73 /* BSG_KSMach_Arm.c */; }; - C03FDB5BD0BA11C8D88F8A1E82EE2733 /* SafeAreaSpacerViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F5B310E73AF1F9C6C5E3ACCEDE8B248 /* SafeAreaSpacerViewManager.m */; }; - C04E268E7EAAB326E18AD5C56B102AAE /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = 68B62AE30242F2428DF3825991AFC489 /* RCTProfileTrampoline-arm.S */; }; - C05DCBBA9F6DA51AE216938DDCF68E00 /* AtomicUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = F581E23D64DDD0F3D518E17717970CA0 /* AtomicUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C06F91905861B033D97337BA79FE2468 /* GTest.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E191E90BBC4E5C7147A7B5E598B5512 /* GTest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C081A79F8F8929B30538C781F6A6C27A /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 53270434087F128640352E5B81C521F5 /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BEDC718C7FCEC1777A0E533CBC49F5BA /* UIView+Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = EBDAEB955E4ABF88F7711DF389E903E3 /* UIView+Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BEF36AF189692C55712C910F23773B20 /* BugsnagEndpointConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B513B2654AB7DD415E90B2561132369 /* BugsnagEndpointConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BEFBD45A13D450C763FF87FB1D1F70CD /* TimerFD.h in Headers */ = {isa = PBXBuildFile; fileRef = 34AB1BEDE616A3B49F4EE42ECC2C6D3C /* TimerFD.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF36C47B969919C688B90BD62088EA24 /* LNAnimatorTemp.m in Sources */ = {isa = PBXBuildFile; fileRef = B1E561BB53064F378156F22F2A0939AC /* LNAnimatorTemp.m */; }; + BF4FF9EB6ADAFF86757F337E0621AB1D /* Optional.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B7B1EAFBA5C026A9F7DA41C1B308F5A /* Optional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF5652FC75DEB65387D6A531F402A0D4 /* FIRCLSHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 43169030F1ECA77C243FA88624499E18 /* FIRCLSHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF816AB4447CFFD40BFE770CC740F8B6 /* Likely.h in Headers */ = {isa = PBXBuildFile; fileRef = 0153F266157533ACE5EA59284B4E8922 /* Likely.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF99C118754DCAC57106804DA2B0F10A /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 45688CB7F4790EFA9F1BA88B21774843 /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BFAC2A31967D18362DE39231B68C71C0 /* SafeAreaManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B46F85E40519FA5AB0A27F10596B9823 /* SafeAreaManager.m */; }; + BFAD310B725A5C5BA13A9CE769B4406B /* GlobalThreadPoolList.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C6E28B05FDE1F1220AB6DE4481E0C48 /* GlobalThreadPoolList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BFBC129906C693DBA91C528843C87CF4 /* FIRCLSCodeMapping.m in Sources */ = {isa = PBXBuildFile; fileRef = C94A27A28BC851B411267E9F4705266D /* FIRCLSCodeMapping.m */; }; + BFCE2633AC63D06451B82D15550FE863 /* util-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = EF9EDC6CDBDDC9EA7F72BB6CE3AF8C23 /* util-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BFD3F91EFE71F86F85736FC76F0931E5 /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D260A02AF49F7EB75B4F755BE42C822 /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BFE5D33FA497C1078345F79EA17476E5 /* REAAllTransitions.m in Sources */ = {isa = PBXBuildFile; fileRef = F16498BF973941A83EFADF8207428D45 /* REAAllTransitions.m */; }; + BFE76612EA1566B36EA5E570C88367F0 /* Pods-defaults-Rocket.Chat-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 91275ACC299A3B0CAF165A0981B9252D /* Pods-defaults-Rocket.Chat-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BFECB647E8A5B6D24DF0DD022EFF5C4F /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9F2555743479256A7A6B651E39603366 /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + BFEDE59416E380750A27049D2B666B3B /* RNCSafeAreaViewMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D9709598D5DB757633AC6B35AA28861 /* RNCSafeAreaViewMode.m */; }; + C013E60B226CFB6918496978B17A0794 /* FIRCLSURLSessionDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C0C072C906C75C8B707432DD2546F53 /* FIRCLSURLSessionDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C01CF57D26F45814D82273CE3DBDC613 /* MicroLock.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01FC364F6C6E3B591535A7FC19249754 /* MicroLock.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + C020B7AA6210B61D38BE6D61E8872D1E /* FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = 592DC2321A8788889B3D76D68D24B042 /* FIRApp.m */; }; + C029E26863B3C57950073AD8BF04163A /* RNFBCrashlyticsInitProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 7EF1B4B664E008E8F33B1CBE45A07A6F /* RNFBCrashlyticsInitProvider.m */; }; + C035DD39E1A7B709C3EA4B0B04A4558F /* cct.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = E9F2CFBAAFD22F8C32D71F9E71BC5619 /* cct.nanopb.c */; }; + C0387547532533C56F624CBF18875631 /* dynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = B868B6CA52D88A582EACBA25D7B6A530 /* dynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C03C41AB03FEA74D617CECEDBC2FB5D3 /* SysSyscall.h in Headers */ = {isa = PBXBuildFile; fileRef = 80840BAF96C12C2F4F42314F720FB483 /* SysSyscall.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C03FDB5BD0BA11C8D88F8A1E82EE2733 /* SafeAreaSpacerViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FA635843704EF8F520FAF3EEA7C13FB /* SafeAreaSpacerViewManager.m */; }; + C0494C79337EC8400F085386EFCEC26C /* FIRInstallationsSingleOperationPromiseCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 487D1690697E71AB3608BBB1B971C59D /* FIRInstallationsSingleOperationPromiseCache.m */; }; + C04E744AF14D144E1D90678E2CCACD1E /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E28708E421A551C02DCD2DDE407CF2A /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; C085F4A89DD1B12F07E9A72DD99F9358 /* Flipper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1139C8C34759E7654D2D541DBF65F60B /* Flipper-dummy.m */; }; - C092722397B8BF01DA62B022C82E29B6 /* MallctlHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C92973A386C0B253E39A7584ED55CFFC /* MallctlHelper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C09482001515A5198E9D89B64396BF1F /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 876970F6A9EA5AABD769FE441E0644FF /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C097205645B7E94B66D690CC07083D1A /* SDWebImageDownloaderDecryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = EC23D8DB996B1FE92A084940B1F28352 /* SDWebImageDownloaderDecryptor.m */; }; - C0980C83E1D4C6F49A33A7BADD565AD2 /* GMock.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D887A378298359AE26B8C8F180008B1 /* GMock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C09D2A795632FF3661D7A2A9F4B9D33E /* MMKVStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BA08BCE9F42463588E3E97BD471CD11 /* MMKVStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C0B78C5B829C2C6B87C83B9B646235D8 /* RNFBVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 98D4659209D7A8E6E0AED3B955D2C667 /* RNFBVersion.m */; }; - C0B8C5BD6789054006E1A25C4473561C /* REASetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 47E86F3C39AFA523236DE69000D99039 /* REASetNode.m */; }; + C087E4ADE4EBFE4CD26F1C47857ADE15 /* FIRCLSAllocate.c in Sources */ = {isa = PBXBuildFile; fileRef = 4F3909692D2EB196C7259A673D4E0BC7 /* FIRCLSAllocate.c */; }; + C08F8BD457CE8D7EA3488BCFE7B34EB8 /* BugsnagSystemState.h in Headers */ = {isa = PBXBuildFile; fileRef = C9BD5139DF22D21BF4CB4F97E6819226 /* BugsnagSystemState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C09D2A795632FF3661D7A2A9F4B9D33E /* MMKVStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = B558A1DF0DF86EF02FB44FA2DBAE46B7 /* MMKVStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0B76728A1CD3342EB4E66B93E233712 /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 26870246B6A46B10CD4C9299DE8C3D25 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0B8C5BD6789054006E1A25C4473561C /* REASetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = D560D51D8AE4A5857AA12820C4EE5243 /* REASetNode.m */; }; C0C189D972DCCFBE746A1C449F9650ED /* FlipperCppBridgingResponder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 108C40B5CEAA44D87AFF2EFE6CE2ADFF /* FlipperCppBridgingResponder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - C0D10909471E3E750DB1ABA48D87A677 /* Promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 84F337E321B6C51564FA2BBE9406F7E8 /* Promise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C0E6CF88032F2B652D2EF6C1D4440C6D /* GDTCCTUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = AEEFB0BA442774E323DD9CC6CD76ECA4 /* GDTCCTUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C0EE5BAF2E83CAD0AD161539B2EAE5CD /* FBLPromises.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C92285652DE1BEBF56EDE5BBC235C1B /* FBLPromises.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1029F544C1EAEFF447B868DBF2A54C5 /* TimeoutQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 36FB2386D2E70E78CC8780D01AEE8E72 /* TimeoutQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C108FA979DCB3CF86BF2F37240C1A08B /* Sleeper.h in Headers */ = {isa = PBXBuildFile; fileRef = F3D4718735FCE29271043BE67B3D5EF2 /* Sleeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C11886AC04728959171CF88DAF4406F3 /* Sockets.h in Headers */ = {isa = PBXBuildFile; fileRef = FE5C2E5ECE500F046DDAEFBB1AA82A09 /* Sockets.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C119C3F9E83F2247F749457FB83282BA /* RNFBUtilsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = A15F026963BAE73C359F1DFA620736CA /* RNFBUtilsModule.m */; }; - C132C820EEF133A8621D3AAB3CFCDF5A /* GULSceneDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = BDA60B5F2263D814E171E633B919C049 /* GULSceneDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C143E3E13F095EBE4BC73FDC291FD9FA /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ED1518F9B4D91C7212B1DF24337648F /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C147901966B3F66F598F310C7384A6CE /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6D77E7395968BFCF421B518C6BB9797B /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - C14B18A7EC253AAD89F84D382C12E6FC /* RCTConvert+FFFastImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 757A0C01A2A62533D19E98342F8B5D0D /* RCTConvert+FFFastImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1502005908A186AC9A30DEA43FEAC04 /* SDWebImageOptionsProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = BC10A03BA6895C6F997D6FD59A9DBCB7 /* SDWebImageOptionsProcessor.m */; }; - C16208FED98960DEF7807F5A7B7E82A4 /* FIRInstallationsItem+RegisterInstallationAPI.h in Headers */ = {isa = PBXBuildFile; fileRef = C20492402F9EA7E3B8AD53A1D41FC5D2 /* FIRInstallationsItem+RegisterInstallationAPI.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C16D987B1794AD748EED58CA78FE71A7 /* ThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 6325EB92C709FD51590164146B016D32 /* ThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C16FF662C29C5B4458A9EB585225B459 /* EventFDWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 01F562B383893768D4CE562C173AF28B /* EventFDWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C18426DF4189F67B152E5BE63772FEBE /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4D3155513AAFB39104552D310A857A30 /* RCTCxxMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C18CCD1694FD5D8DF79D896CACBD50B5 /* BSG_KSSysCtl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F5C23727738AD16DEAFEE50EF7F3466 /* BSG_KSSysCtl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0D3909925CECE8527B23FFFF3CE3D46 /* GDTCORClock.m in Sources */ = {isa = PBXBuildFile; fileRef = 189DE0E4F9AFDB2E31C4C4257EE2E2BF /* GDTCORClock.m */; }; + C0D6679739C9A0F93BCA9B8766246421 /* lossless_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 1426D4C7456CF932B66DD1B74A1CC592 /* lossless_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + C0DD2D64498DD9D944EA6DD68F513E55 /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CD0239177EF8EE0D59AB9A4F5F3C1F4 /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0EAB7F81C5DBB752E7A7A6287547EB9 /* ScheduledFrameProcessor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4290579F62D9CCDBE1FEE050E84B7F2C /* ScheduledFrameProcessor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + C0ECD621AE5138605933B8C0EFD6D52B /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 32C94E4DC8CC970EE989EA673AF074B6 /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0F09C80CA920E9A4B8C4B4E52DBE162 /* UIImage+WebP.h in Headers */ = {isa = PBXBuildFile; fileRef = AAEA2C6C59C3DCDBD6EC36A6FF34CCDB /* UIImage+WebP.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C123F40DBFEC89D122E463D9E04781A7 /* FiberIOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 990A00178717052F257E58B288D15A84 /* FiberIOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C14B18A7EC253AAD89F84D382C12E6FC /* RCTConvert+FFFastImage.h in Headers */ = {isa = PBXBuildFile; fileRef = D34F0718894EB8BF26A6311E5213A124 /* RCTConvert+FFFastImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C15CDAD20752647B75E3142709C89414 /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C1679586971637160054AD84FFF9389 /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C17DF4E10EDA251A28D14E0D2595D4F0 /* MMKVLog_Android.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0B128A0B7CEFBBB191EF90420A0CCC0C /* MMKVLog_Android.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + C1835068B045C9D229AD59B8EEE34442 /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 8759EFD10AA0DA5C62FA058D4B47E9E9 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C1AD23EAFCA7808C317A7CB7BF9046D9 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E9BC6BA0472A721C157966D72DC29E8 /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; C1BE8CB912D009C1F46C370E0445F88A /* SKApplicationDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 944C0D1EFE3AB1A70D936F9AB2715AC3 /* SKApplicationDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1D069AC95F986AAF9195C4CFE296DDC /* RCTDevLoadingViewSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = 173016ACD0D682A252A2E1BC67C390D4 /* RCTDevLoadingViewSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1D5E9F2C280C04E59479369157BE9D0 /* Executor.h in Headers */ = {isa = PBXBuildFile; fileRef = 30AF8D3CCB290A00C1F861CCCCE68A94 /* Executor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1DDA6616CA61F08B39CED694C92DD94 /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 08EA6725AF069CFBC31F57266BD61BF8 /* RCTTextShadowView.m */; }; - C1E11C92911E5AB9158E2903FF73A0D8 /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 02DC901724352E63C0DE82E4B2EF6FBE /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1FCD6D2E9519977F4876D6C45C68D27 /* BSG_KSObjCApple.h in Headers */ = {isa = PBXBuildFile; fileRef = FC59398D9683C51FA1488722D3DF0DD9 /* BSG_KSObjCApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1FFCC96EB6F537B8C0BDE6E21B6FC79 /* RCTRedBoxSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BACC82935E1E9692F2F8809B0DB218F /* RCTRedBoxSetEnabled.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C202B9AB7F9B4CEAFD1B1F2F2540DE8B /* ARTGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 237C663D9AB664CA0DCC2E4C41D2EA60 /* ARTGroup.m */; }; - C216217C06A81C3EEC1F4617AB1C338E /* MMKV_IO.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E31156F425D164A2ED4E39B2E9028DD3 /* MMKV_IO.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - C232CBAEC7181CBA052ED2536B1E8DF7 /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = B5EB34D7CFAE513CC4DC0CB1BF38A8F4 /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2395C7CEF72E3402F78305804A0957A /* FBLPromise+Always.m in Sources */ = {isa = PBXBuildFile; fileRef = EFDCFE3582FA69D9B77B4B503E169BE2 /* FBLPromise+Always.m */; }; + C1CEF38AAA3E585D09D4A4A027680D5A /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7343CA8A9C7528DFE57EC1F85F33C409 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C1F5B6C056D7E7B8A752E8F986E7EF6E /* MemoryIdler.h in Headers */ = {isa = PBXBuildFile; fileRef = CD6D627770512A04521700EC63B07BE2 /* MemoryIdler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C202B9AB7F9B4CEAFD1B1F2F2540DE8B /* ARTGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E6FD3789AE32FF2039C5FC657EAA0A4 /* ARTGroup.m */; }; + C23992AD3B76C2513FC792700ED6576F /* IOBuf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4F58D090ED485B4C0D8704E5502A8CCA /* IOBuf.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C2441B05A32F5CCC1A7DB2CBC81756FF /* AtomicRef.h in Headers */ = {isa = PBXBuildFile; fileRef = 39558BEC676CF0090DC6F863F28DCF08 /* AtomicRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; C25BD3B0B908A21A015ED5632EF26214 /* FlipperConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 7283439E2F42BB1F01D41FDBA247CAFE /* FlipperConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C26022AE4E0AF9C7657F9A63CE7550F4 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = C6E1B1212C5D216DCE70D3FACC3B83DB /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - C28B6B45F7CCBF5B71FDF574FE221879 /* InterProcessLock_Android.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23744ABA4509EF6CB80AC27DE1337FAE /* InterProcessLock_Android.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - C29383C95DAA4151606860668D3457C0 /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A944C7B5220B25C71845EE68969C16A /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - C2A3436B70E577B9739F31C94BB18D63 /* GULUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 960AFA97C6DCB819D930DEC1EA15BF49 /* GULUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2AA1E7D63BACEBAE5B900277E222DDD /* FutureSplitter.h in Headers */ = {isa = PBXBuildFile; fileRef = E288C521FCC2E603C406F068150CCF85 /* FutureSplitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2B63DD08E0DA2724A9B7B6376A4EED1 /* ThreadCachedLists.h in Headers */ = {isa = PBXBuildFile; fileRef = 685C9C5FD5924F761267DFE1A9612E80 /* ThreadCachedLists.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2BCF75C56B247E42DA93CA00E6D8501 /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 86A0D72A3E8E03D802DF437E0C04E8B5 /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2C6FEAC14263B0A5A00635D335ECBEB /* BugsnagKSCrashSysInfoParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DF06812AE678B08CA60D0A615011B6D /* BugsnagKSCrashSysInfoParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2C8CB3FB581C04C725A957181552139 /* FIRAValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 6691DF0CB8F296A5B4193C56713D9084 /* FIRAValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2D81430D5E3DF53F43A8495ACFC0031 /* ThreadedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = B56F12B746CB0F16C8001E746A25E3D0 /* ThreadedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2EB4F914DEB2857ECA6C9B58356CB25 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = C7B025FD007B78D44180E76CEE1D3173 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C32C2D0AAAA70DD39C569CE01927CA2D /* FFFastImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = FE04340EFFCB5BDD23F2E89A693A4C15 /* FFFastImageSource.m */; }; + C25EE53FE53FC768EB023382FA5B9F23 /* ThreadName.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B5841F5B83CE4B881DD2006D46B09497 /* ThreadName.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + C26FB6F2F864B104FF3EE4A1F2E8AEF6 /* GlobalExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 4836A09444BBA1E2ED8276289A682230 /* GlobalExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2A48E4D38C30AEC19ED20923D2B1310 /* SSLSessionImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 1336466C47E2463B99D3F5FB5F02507F /* SSLSessionImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2A9A93881649082F6BC3B439811FD4D /* AsyncTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 279EF3E4CDD5ED4115C487922F3CCA98 /* AsyncTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C2BA117A9770B59539D70AC8CF0B3919 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A466DFCCBBD36B9700AC88D7B170FE2 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2BA80FAE37E31948F0DF31B11EF0C61 /* ThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4CED0991748193F85234B92043C467E6 /* ThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + C2D371BCDE127B5878F0FF77DFCDDEF3 /* FIRCLSDwarfUnwindRegisters.h in Headers */ = {isa = PBXBuildFile; fileRef = EB719189CCE4314E49807A63718D917B /* FIRCLSDwarfUnwindRegisters.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2E005149D9E34D4CD8B3898F64A6557 /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = 81191814B978606260CA5B4EC460E41E /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2E529124A3E05FBCD4753DC5CAC5BDB /* Builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = A4B11545965ABE6C7AB237B1765A88BC /* Builtins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2F1D652887DB52DA555C2A06DECE80F /* FIRCLSDwarfExpressionMachine.h in Headers */ = {isa = PBXBuildFile; fileRef = FD1931A7004B7A0B8E31C246FAE641BB /* FIRCLSDwarfExpressionMachine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2F7D57AEBD6F80C32C61B4B8808F394 /* InlineFunctionRef.h in Headers */ = {isa = PBXBuildFile; fileRef = 921B4C6825D843743335AA43D91F5D25 /* InlineFunctionRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3038ABE6CAFF664E7F866CF64C2981C /* Singleton-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F32DF292FF18701CD4296B0F2A789C71 /* Singleton-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C32C2D0AAAA70DD39C569CE01927CA2D /* FFFastImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 340F84EFB61AC1E0D0E05C5702D390AE /* FFFastImageSource.m */; }; + C333CA1C76B724128394EB60F3035FD4 /* dsp.h in Headers */ = {isa = PBXBuildFile; fileRef = D4E5EA08053591079B41F2327DF440C6 /* dsp.h */; settings = {ATTRIBUTES = (Project, ); }; }; C346B099F2CA0366B622C1C587648F56 /* FlipperInitConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D3A80EE210FFA27031327E4B6770689 /* FlipperInitConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C348C64EBF69F3657D82EF1069B12786 /* Flipper-Glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B335892566A9D0203E6E06C4932EBC6B /* Flipper-Glog-dummy.m */; }; - C3526B4559076B3A4B3E014D48676190 /* RNNotificationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = D87FBE06E359D8DF84E696F78CA6F1DA /* RNNotificationsStore.m */; }; - C352E931E9708460024B6A87B5A60EDA /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8200E5D8453D570E848614A7B5E0A803 /* EXReactNativeUserNotificationCenterProxy.m */; }; - C3692378EA630CCE7A46952DA63A906A /* ShutdownSocketSet.h in Headers */ = {isa = PBXBuildFile; fileRef = B5354F53863FEF868B169393D964F0FA /* ShutdownSocketSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C36ABE3418506DD9715BC80FC4E20E5A /* GDTCORStorageProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = BC5FD72C5B1D80E461FC33D412719E91 /* GDTCORStorageProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C38517A6615EFA7230325766EF37867E /* EventBaseThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6D716AC570A14D99A2182905FE68EC50 /* EventBaseThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - C3A4A568AC3B844E967D5406CFAEA8E5 /* AtomicNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = 78BC83CC850F23118262A47B9213D1B4 /* AtomicNotification.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3CF319F909DFC13CF6D756301A8D92F /* LifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EA9D6AF988840673AF7540C73AF91E8 /* LifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3DF7118E9F1F5C597183775BF94DB27 /* SerialExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 11EA49134E74A72B02BED62851EB1823 /* SerialExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C40EF30753A2D6FDDEE70FE80955D848 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A95B6FF5792E56C7262B028418ECB65D /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - C4269D1165E163993D21861274D217A5 /* FIRDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AEA0EB941EDBAE9DCC795D9615CD443 /* FIRDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C42E1F16E0F51239BE06518DDE68F430 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 218686AD810DEA476DDD6BF4C3AFEBFE /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4564D9CC9FCA5A75FE31071364E9ABD /* EventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9D175055633CCF57160228809C16FCB1 /* EventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C46F05B3ED722664DFDBCE04571A60DC /* RCTHmac.m in Sources */ = {isa = PBXBuildFile; fileRef = F949EE0C22F3B9A07AA2BC2F5F4C78A6 /* RCTHmac.m */; }; - C4846B9FA9726F7CFBD38730648B4331 /* Constexpr.h in Headers */ = {isa = PBXBuildFile; fileRef = 2249782DAE38F15094B7368177F456FD /* Constexpr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C49C00B5FDD2EC49A7FF7AA91FF9FD09 /* Preprocessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 23DAE6AA300B3D3D134253810C2441BE /* Preprocessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4AAB943DA9F6995FA8E3FEDC496C6E2 /* Sleeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 70675BE4961BC87599BFAD42BBF644C4 /* Sleeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4B313EDFCA9B79B1A1051EF8D13F312 /* Varint.h in Headers */ = {isa = PBXBuildFile; fileRef = 213E5645948B35C26F6888909095F5A8 /* Varint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4D29BC84C56A1B069BC5767BCF8E820 /* ReadMostlySharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = F64742258C6EF3E1F9C88DADBD27295E /* ReadMostlySharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C50B020193675D2F7B8E989A0A94581F /* RCTUtilsUIOverride.m in Sources */ = {isa = PBXBuildFile; fileRef = 3439454C3088C0170A716389B9D5053D /* RCTUtilsUIOverride.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C51B76CA0A311CBB4EAC489CD4644390 /* PicoSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 00F6CAA287AF03669BD8E004E864BFD2 /* PicoSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C51D2745A4DFF9987D2F6F4A45FB0EC6 /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CB7AC735F132CEDC3BE002987E90B2F /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C54300E7D1A20676479781630519CA52 /* ARTNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E92B17745BEDC6F2E61FC46B5A44A20A /* ARTNode.m */; }; - C5803ACD8750DFD253BF64D33A18C28D /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = B471D9F4E3A99D0C4ECD0EAC118A4C34 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C585CA023A459EF884487FB67BE827C9 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = F29E3DA00733EA6D3619E628AEB20A0D /* UIButton+WebCache.m */; }; - C586D634D95E7C695024F7E565F686C5 /* RCTAccessibilityManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 226503FB82E50409B9100D2540B4EC08 /* RCTAccessibilityManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - C597BFE833CEEA56A0679A9F36CF9BB0 /* Arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 761B0A90B62FD46941587EE7D33277AE /* Arena.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C59FA6B6B639F8F4FFFB9921C484833E /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 71958D0A1F6512F350E97FAA14DCFAB9 /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C5C01FEB3DE38C2BF5335818F8A3C645 /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2CE7BF3DDCFD977FF416D41F80C473E0 /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - C5CE8DC9D1004FE40380E6B4640DB48D /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0383F1CD0B209346494C1EF992A090CB /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C5E123DAA022BA23098E21BFAA523FB2 /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26E253A144B29FD6ACEB1D84A5B4F6C2 /* dynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C60370730B64FACB81EBC4DED2EC3C66 /* ScheduledSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = E081C312DD756143481ED6E7E4B81ACD /* ScheduledSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6122A97490C5B383EB8BCEA0479E12B /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 75FCAC09D5C0F159E4617EB14AF7220D /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C61F9FC05E49A74638DD7F61C4743917 /* FIRCLSHost.m in Sources */ = {isa = PBXBuildFile; fileRef = DD7A1D12AC47F0A2F9DB230C5B19CCA8 /* FIRCLSHost.m */; }; - C62313BAF82E4F36D5A6992675B008E9 /* cost_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = C9147CB539C346522CDE0A26BEEAD07A /* cost_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - C64E230A77C8A52C02AADE1E41D8D360 /* GULKeychainStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = AE1F66FF6A4EA4EFE43EADA7E95E849A /* GULKeychainStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C65749698B8885CA2132F429F6C086E2 /* BugsnagCrashSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = 4204176EF5A4030028F636FFD1E8A41B /* BugsnagCrashSentry.m */; }; - C65E75965EF403FBEB399FF19D6534F7 /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 79A9637B9FBB5335261BF42C8A47D090 /* RCTLayout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C686EA5A54E0B2FBBF8C5759E3AF027B /* SanitizeThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 909324D1FAB7D91BCC27BF30156B1037 /* SanitizeThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C69D9B151AB8C075F17658B73790BEBD /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 0626E1B283A3C17E4DDD638BFB4C834C /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6D559847B799DD140EEED1460C7F6F4 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 82420E82EA187A1162875A5F912F175A /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C6DD7662A66E9530CD7725875E9DE9CA /* BugsnagCollections.m in Sources */ = {isa = PBXBuildFile; fileRef = D04D2B4497FF26DC6A3E500C1A921B86 /* BugsnagCollections.m */; }; - C6E11F383D9AEA2AE26AC331C44C62C4 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C598E27AD7DB764D597A04471162067 /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6E59E5EB55E0C8BCEFAC58933F3CE75 /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A5B26A920688D9E84AA2D974DC794F6 /* RCTImageUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - C6F4BA46AD7C80265340802E164930BE /* EXAppleAuthenticationRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DECE3AD29CC36E9C2CC1FFBA3546E9D /* EXAppleAuthenticationRequest.m */; }; + C3512E455DD3243F4A667ED18E596E42 /* SpookyHashV2.h in Headers */ = {isa = PBXBuildFile; fileRef = C699DCC52925CA7072A737F15E0BA4DF /* SpookyHashV2.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3526B4559076B3A4B3E014D48676190 /* RNNotificationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 26205161AA50954D082DD6F48826695F /* RNNotificationsStore.m */; }; + C352E931E9708460024B6A87B5A60EDA /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 952F961F3F5395DE74B427AED838B647 /* EXReactNativeUserNotificationCenterProxy.m */; }; + C3662E2AE7983EC94BDF96703E99BC9F /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = 15565FCA1BC916623C1F71E4B5EDA377 /* NSTextStorage+FontScaling.m */; }; + C36B9283425F12ECC2050D75E1307C9F /* AtomicLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = A767B1B3873B1AF05F2881B4DAC3C7F2 /* AtomicLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C36D239092F494BA227E1E009150FA44 /* fa-IR.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 82654E144A90FED84B5D39EE71AF431F /* fa-IR.lproj */; }; + C36F2E30F11858A980A2B0AC4D51176F /* GULApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = D2CB543418A0278B8EA4AF0B5E8165B1 /* GULApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C36F9D27CCEF65B13958231B7A8507DA /* RNFBRCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = BD56CEF8B6BCD247C23E4101C7DD84AC /* RNFBRCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C391D6D135F86F6C014A27F72E5BF051 /* BSG_KSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = BBE9C3596335651D37543687ED4457F1 /* BSG_KSLogger.m */; }; + C39C5C5F077C288B8E7969B9469E6FDD /* FBLPromise+Any.m in Sources */ = {isa = PBXBuildFile; fileRef = FD05E41D3DBD6CEB5FA70823CF4C4329 /* FBLPromise+Any.m */; }; + C3CC5C2D318326E54F2BCE9CCC8D7D91 /* EventBaseManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A18608C4217F3EFA8C0D2A878CF092C2 /* EventBaseManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C3D4AA82F90AD3E88C29B68BB710A6E3 /* TOCropToolbar.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ED1781E466357A234FAA7C7480F39C7 /* TOCropToolbar.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3D701FECC2A441C37B153E09D524DC0 /* AtomicHashArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 094CBF061F9D96166BC5518B23A1D231 /* AtomicHashArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C406FEEF31CF686493465384620506F8 /* FBVector.h in Headers */ = {isa = PBXBuildFile; fileRef = 73E2107DD4CEDAC8631E3F8D4AC29C87 /* FBVector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C40D96F3F09D91117D896EF643057452 /* openssl_aes_core.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F46660C998520D7CE088FE9B174D1ED5 /* openssl_aes_core.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + C42DC65831F83CAF2411C9871984741D /* evutil.h in Headers */ = {isa = PBXBuildFile; fileRef = 7194150125DD93BA2E704772FCAE9146 /* evutil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C448184D7074A255FA942FAABF63BE3E /* FIRCLSDataCollectionToken.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DDF6F91919BA6848F310D266B5EF1FB /* FIRCLSDataCollectionToken.m */; }; + C4578E50CF2B8BDF7FD4D24DB5366E0D /* ScopedEventBaseThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 344D4B81A4B4C0FF7F5D353EC4EDC00A /* ScopedEventBaseThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C46F05B3ED722664DFDBCE04571A60DC /* RCTHmac.m in Sources */ = {isa = PBXBuildFile; fileRef = 519F01F1D80CFDFC7A49BCA212123ABB /* RCTHmac.m */; }; + C4874BB8745D0F5C2CAB6CCD454A21B6 /* AtomicNotification-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 614730BC9C015864F40F7F79D3DA1546 /* AtomicNotification-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4875AFE3E0E6ADCCD55A92826E4D0E6 /* kqueue-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F27E3FDA8B6F4EE4FE0EA2B5D213B03 /* kqueue-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C48D2F9E3CEBF11D9A51339919A361F7 /* OpenSSL.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 134DA3EF0958741484AC765F914EC417 /* OpenSSL.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + C4C03E773E3F2039EDD4608040AE1A16 /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = 37BED821BCAC65D707441E38B19A810D /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4D8D303C627D8C88E7EFDED3136DB7B /* GDTCORRegistrar.m in Sources */ = {isa = PBXBuildFile; fileRef = 482C6BFEBA32EB9077DAFBC6513FFC1D /* GDTCORRegistrar.m */; }; + C4EC8520030171572ACEBEDC3F411692 /* SpookyHashV1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29DF24F2AEDFDE6DADBA573079529B6B /* SpookyHashV1.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + C510A95FDA87CDF78A5818FE2557E543 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 6471F18D06F32C511636C48B2D479CCC /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C51547B8E83E413BD853C0992A778242 /* fi.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 8731BAC61933E776D4154A97D7F4D917 /* fi.lproj */; }; + C5180F74035A4324B3B91F835CBD9C4B /* Uri.h in Headers */ = {isa = PBXBuildFile; fileRef = 42C85A45524DE2BA8DD6A46943FFF9E1 /* Uri.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C52C91728A295B9C27A0BE06655C1356 /* pb_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F73A7482432ABE08919D16E9DCE3ADC /* pb_encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C54300E7D1A20676479781630519CA52 /* ARTNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C7493E37DFFDB0A29EA930EBD0F25C2 /* ARTNode.m */; }; + C55EE5DD5BAA32F483004324C2B7671E /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = EAF8ACC31CCAED2FF89273D035C7A486 /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C564CA1C948A4164A7FDE6A21A6CE060 /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = C761D7AE50CD6FB34E193946254D6163 /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C56A64527F4D082866908640566D58C6 /* StringKeyedUnorderedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = ECDC3BE6EAC7A6FAD7234E57E15E0496 /* StringKeyedUnorderedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C56C88C4EF0ADD5B7799CB8F250F2CBC /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = F47828A6ACE63FA46BE094630CED9783 /* RCTInspectorPackagerConnection.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C579D78A093916EDC93710ECD7155D17 /* MemoryFile_Win32.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6E1E0315F092C2654B08337CEF9B874D /* MemoryFile_Win32.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + C586D634D95E7C695024F7E565F686C5 /* RCTAccessibilityManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 708F4376C358D7131052A82B9135C4A6 /* RCTAccessibilityManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + C5E6305E57CB33EF0A786E636755F86E /* HazptrThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 03749A1A62575AF10C8C927110589F8D /* HazptrThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C5E7721E5278C44044B620EA795E05AC /* muxi.h in Headers */ = {isa = PBXBuildFile; fileRef = 0296DE86E440E4C1E3E73A957A6FA40E /* muxi.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C5F1C24380ADC624375A88C28E32A692 /* Event.h in Headers */ = {isa = PBXBuildFile; fileRef = 80C0413E19A2DBCC3F6918891B6DCA41 /* Event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C5FE71B6895178CA7BA0718E5D7A6E2F /* Ordering.h in Headers */ = {isa = PBXBuildFile; fileRef = 9388BB3EF820E441837B5478F65B29FC /* Ordering.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C603C2ABD8116FEC72AD491A1E031FB6 /* CodedOutputData.h in Headers */ = {isa = PBXBuildFile; fileRef = 38E1632332F89B9EB75BFF0DB62BFA66 /* CodedOutputData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C61571D703CD4F1C642EE0DBB8115596 /* CppAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 61FAF4CE050658BE2F201783FE487029 /* CppAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C618C6F3031111905EFA16B7DB2507CF /* Stdlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 759AE7B54AF92C3EFB888E9A1E4A49F9 /* Stdlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C626BEBCAB1B039F085164B1E759495B /* SDWebImageDownloaderDecryptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 99BC38F149A766A810843A66109219B8 /* SDWebImageDownloaderDecryptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C628502E7671AF7DD973E0C886FA4D81 /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 43D4CFD7E0C1B4DBC898DD936DB82101 /* RCTTrackingAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + C654408A00FA87DE8365928FF35EB9A9 /* BugsnagEndpointConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = B374D73EA1612B85750D61AE6F16271F /* BugsnagEndpointConfiguration.m */; }; + C6558249403AA8AAAE7A66D934535A3D /* EventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 915614263E2FD7EFE2949E5B1BC80034 /* EventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C656765D42B2A46EEFDFFC5BDE9C3A6F /* Likely.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E7FEF0E48A56300697B528E63674E6A /* Likely.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C694C902CB6B08D83BF780CD3242470A /* RNFBApp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FD122D95D3FA4E6535A1CA894145D057 /* RNFBApp-dummy.m */; }; + C69D732CBF9BD36348A06DC1B7E219AE /* SDAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = EE109F48562DC7EEFB22086F85702B57 /* SDAnimatedImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6BD1291B903A8C016CFE78F28898570 /* Fcntl.h in Headers */ = {isa = PBXBuildFile; fileRef = 37A59588AB9E695C969A7A078928DA45 /* Fcntl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6D877AC27DE164D09C71E13AD485D57 /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 05FAE5D72DBDBDFEF33497FEB33A3454 /* fr.lproj */; }; + C6E11F383D9AEA2AE26AC331C44C62C4 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = AF492A2FAAF74AC6ADAD5E79DCE6A08A /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6EB1C1A102CC2220F0925D864BD6978 /* SDImageCachesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 523701F2861A9AF389FC2C6E43D86D49 /* SDImageCachesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6EB2487A325317FC7C079B1857B45A4 /* BugsnagHandledState.h in Headers */ = {isa = PBXBuildFile; fileRef = FF4FBD82B67BC08F0D6292D2D201F97D /* BugsnagHandledState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6F4BA46AD7C80265340802E164930BE /* EXAppleAuthenticationRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 8448FB44BB6062AC013CFCC3DDC33FDD /* EXAppleAuthenticationRequest.m */; }; + C6F8F9EE91335E210D1EB79F6CF83C0D /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0D2CC58B4BCB1C4FF563AF13F3F12026 /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + C6FECF61DE6E81971764C4B0ECA900D5 /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 37E96A7AD6E875A29E6DCE288196CCA0 /* RCTTextAttributes.m */; }; C70664E2F987CEEEE7E2B242C4FB1F8D /* FlipperDiagnosticsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A0DE597E4F93AA89C807FF6F46D7B65 /* FlipperDiagnosticsViewController.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - C70964CDC023CACDC91D3E5ED472BE24 /* Common.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BA7064702BBDD1BA702AF42B10B58528 /* Common.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - C70E081685DE4CFD34A5AE12291629A8 /* FIRCLSThreadState.h in Headers */ = {isa = PBXBuildFile; fileRef = 99D63D6DE4959BB4E1B63AC9F0799982 /* FIRCLSThreadState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C7245F17C026B0EFDDEDE3DEE0FBAEF9 /* cost.c in Sources */ = {isa = PBXBuildFile; fileRef = CFB354F515813222413E2132DB870EBF /* cost.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - C73B2ABCEBCCB28B91711A4545444B33 /* Ordering.h in Headers */ = {isa = PBXBuildFile; fileRef = F9AB6E248D04BFEA6DDB12144F24888A /* Ordering.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C7067CD5CB8611FA35C12D47EF3C85FE /* crc32_armv8.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 67801958A02500B281EC81392CED35CE /* crc32_armv8.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + C70DA51A309ECBB13EBC57C271D30CCF /* glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A9A235A975FFA925CF1A128115C1D9A2 /* glog-dummy.m */; }; + C71804C09B6FFDDDB87274633968E06F /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 773CD67E1C5C5916902E835142CB8110 /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; C74CA2044C99BC7C2C412810E4966DB6 /* SKBufferingPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = BA6C0D4B6015D75E5E7148299643A578 /* SKBufferingPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C751CB8EC8698564E9876BF59CC7CC25 /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FD6C64DACC2AEF625B83C48FB2D4325 /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C75E3A1BBECEDAE8505FD827F3D80D05 /* SanitizeThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8200BAC2C1DEC23C001DE5C895A8CC79 /* SanitizeThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C75E9D0653002448B645E98C4B2FFF79 /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = D065B9C577E4DC606496BB1350D1FCB6 /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C7657C0ACEBF275180FC66F5D819862F /* react-native-safe-area-context-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 651A1E9A9371528060742E73ED50B7BE /* react-native-safe-area-context-dummy.m */; }; - C78DBC77289BD4105D250297DA0B8247 /* FIRCLSUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = C16EB91026B1EF04C1DC87BB87155F18 /* FIRCLSUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C799D50AF668B26893FFCA305D8833C6 /* react-native-netinfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AD500CA9047F7D164BB55E65F0DF3A04 /* react-native-netinfo-dummy.m */; }; - C7A9EBB8B1EF2EA2969A43802F0CF471 /* VirtualEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 429C870EF7851C5214B985CA7719601D /* VirtualEventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - C7B0DB3B4CA5214CF159193B9ACE6794 /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = C4F0251CC441D77332657E2CF0267616 /* RCTImageCache.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - C7DCEF74DAA0D4D05A17BF18D376D524 /* SDWebImageCacheSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B86A59900D99654F5C7B2EBC25EA41E /* SDWebImageCacheSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C7E3C7A5D4F591E8A5C64877734D5083 /* BSG_KSCrashSentry.c in Sources */ = {isa = PBXBuildFile; fileRef = 789B2B29325D12DE736E8759DF579A7B /* BSG_KSCrashSentry.c */; }; - C7F41C9FCBEDC4ED2CC4AD9F2B6BC4AF /* F14Set.h in Headers */ = {isa = PBXBuildFile; fileRef = E267A724BD8FE80839D12EA727B73AA5 /* F14Set.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C7FE7FB93B2ED06F208703EE04B43D07 /* IOBufQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BCFB13C2659CB7FE3E33BC3301B57589 /* IOBufQueue.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - C7FF0543728E14087CCB564FFE6F7EA3 /* PolyException.h in Headers */ = {isa = PBXBuildFile; fileRef = 4225A60B45A95BED41217E53FC10BDDB /* PolyException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8042DF2686D3155983066ADA089D092 /* FIRCLSApplicationIdentifierModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 01609FC711059045DED41A7F851F5D95 /* FIRCLSApplicationIdentifierModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C826EB90D1A9F3FA578350CDA5629F9D /* SDImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 636EA45DECCDA93699ABC2B3569AB75E /* SDImageLoader.m */; }; - C82AA31805A940547F8138D26E9CD549 /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DFA9D4608861726508384EDDE3CEA62 /* EXFilePermissionModule.m */; }; - C84173121CA8086C72E706B418B02819 /* TcpConnectionAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45194B070A74DA7215769FF55734FF1C /* TcpConnectionAcceptor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - C846ED362FE51392351E8309A69BBBA5 /* AsyncPauseState.h in Headers */ = {isa = PBXBuildFile; fileRef = AA98D1F2E70C5F4BC293DFD94CF99BEC /* AsyncPauseState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C85EE0E24F66E1E1FDA5FA9538E4345F /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = F4894891D2683756B59E4356267E11C3 /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C86E6AEDB0A3465CD70282876E7905C8 /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D62110C771F401145F6AE0AA0561CA /* RCTProgressViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C8789FDFFAB6A45D3BA2E8CD4378CA1A /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 78B1D287D193C79CB46C20485CFBF225 /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C89ECC4C1FB476EF4E939D2329345C7B /* dsp.h in Headers */ = {isa = PBXBuildFile; fileRef = D4E5EA08053591079B41F2327DF440C6 /* dsp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8A338C8BE98F7EA7521441E89790845 /* SDAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 984F1BFA478C3F2BB470222B51A85C46 /* SDAnimatedImageView.m */; }; - C8B9E1AC869E039A7C341ADFF07E6018 /* FIRInstallationsHTTPError.m in Sources */ = {isa = PBXBuildFile; fileRef = 82CD836887898CD56425D5AE3E6F3813 /* FIRInstallationsHTTPError.m */; }; - C8C5AC2B22074063028A0D3D4974C004 /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = 886591E5AA46B071E652AC8CFBB30BDD /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8EDBAF25071F684BABAFD5E41CE3CE1 /* GlobalThreadPoolList.h in Headers */ = {isa = PBXBuildFile; fileRef = 8987A4D1D0660908F0E583A0A5E1D8EC /* GlobalThreadPoolList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C90AFF718E45E2616D23519AC26AD09A /* UMAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 3687848C4EC6E4E90F824D15E4A2D4E3 /* UMAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C918B262B36820B5E0F08F9C3B048892 /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 960E6CB59CE9718F259B725D0F6285C0 /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C96494FD735C4FC73914D8B02E1240CE /* FIRCLSReport.m in Sources */ = {isa = PBXBuildFile; fileRef = B93E72F5981D76CB887E4C865D7B3A1E /* FIRCLSReport.m */; }; - C96643B1BD79B7299338F65C18CF8C6E /* ExecutorWithPriority.h in Headers */ = {isa = PBXBuildFile; fileRef = 284F8BD84956D62791B3DD3B673A9587 /* ExecutorWithPriority.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C97BC47545E7812D1AB0470BA08F55E5 /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 738329BFE8F5DCCB402225DBBF9A323B /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9833A22EDC0882BB095204E2A3EAE5E /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A633E0CA8CB3074AE2B42AE8864C4D0F /* RCTTransformAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - C9866DDDB6564356812930FAC1B7D651 /* yuv.c in Sources */ = {isa = PBXBuildFile; fileRef = AFFA37E0D240F51E9319F97795876607 /* yuv.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - C99150D11AB7AE2BE36656F9041C0FE1 /* SpookyHashV1.h in Headers */ = {isa = PBXBuildFile; fileRef = D64E5F3C5FEBB3D23A3B391A2C24C43A /* SpookyHashV1.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9C7CF75EE28741EE713C238FE1A065F /* Likely.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E7FEF0E48A56300697B528E63674E6A /* Likely.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9CA2D576A1C8A85395C1BC710980977 /* StackTraceUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DADCE70A75208DE25BE7771DD9DF0DE /* StackTraceUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9F091EBFCD1B28579C37C1295E00F0F /* ManualTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 44D271098B5BCC88549B07E033D7938E /* ManualTimekeeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C9F0F07B5EF956BCCB24BF2D13ED65F0 /* dynamic-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F0DBC971FD93CC9B2793DC0B11B8E605 /* dynamic-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9F7E51C065E930077F465834B70EEE9 /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = F3489AA7582FB320BAC9935E0E332756 /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA016AE200109D8BD1A48291712FE5A3 /* BugsnagSink.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E01BF33F859C8BA6324FC306CB52D2B /* BugsnagSink.m */; }; - CA357C1A85C269D378851D6768D81EFD /* GDTCOREvent+GDTCCTSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 045DC00385FFA069EE7A16F3DED4A670 /* GDTCOREvent+GDTCCTSupport.m */; }; - CA382FA23A46F7F4FCDF19A1B256403D /* FIRErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ADFD1409A834BF3CF99EFB686438DC2 /* FIRErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA4443AC5FF6C50365F461BA35EB3A67 /* GDTCORLifecycle.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A312051722868095F0B57B9DF72AD23 /* GDTCORLifecycle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA55FD2F5BF2D01EDF0D2E4D1370BF7C /* RCTWebSocketModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = C0007036D74FF1A32EA14AFEAA31CDFD /* RCTWebSocketModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - CA6BB3B625081AFC8B80169A077DDB81 /* SDImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 30C66852419F645A443E08E8C32C0703 /* SDImageFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB10868FD40307CF8D271BE6A105E38E /* FileUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = AA074CE31B00318F430EE520E2BB8096 /* FileUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB1A1D5871DA51A5CC8AF1239DC478FD /* ObservableOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 06D9659F8777F15807BD0E8F05A9A56A /* ObservableOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB1C2DA6263130DFE9AB3916BF00F318 /* UnboundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = C5AE0C796CB2CF1C33E96DBE07AC523A /* UnboundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB2272586ADEBEEB05A3FD7501F2B118 /* FIRLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B18306BC869E0A6F64DC3423EC37D63 /* FIRLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB3524DC3E17FC8B7F57599ECFA16F1B /* BSG_KSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = CA245AF31F2F671A9F300EE5ABE66DAC /* BSG_KSLogger.m */; }; - CB5BA34E553A19B398F371E4C40F90EE /* crashlytics.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = DA3D9803A70D7FC57E9B8275A62D4EEB /* crashlytics.nanopb.c */; }; - CB68BC9E9EE2E32B3DF1CF3F6E309D3E /* ScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 105C6BEDBE480010F2F7F515B213FBBD /* ScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB7A32BFA88E3BFEB07BCBEF2683FA92 /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 842BAEFE6645458EE0F6E3A333F9C324 /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB7BE0DE0518E43F7FB4E62F1CE760FD /* AtFork.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 56519DD0C7D108E7542EE6CBD4386759 /* AtFork.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - CB7FA644601BC9BD11E0C52E632D96B5 /* SDImageTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 670D865981D234F25D9D09BEEA071BAF /* SDImageTransformer.m */; }; - CB989E3A517112AB092D4235AD7E8213 /* WarmResumeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F16029932C4F596513746C170634EF45 /* WarmResumeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CBAA4BECCB18DC6B03C986FA8A3E4B2E /* FIRInstallationsStoredItem.m in Sources */ = {isa = PBXBuildFile; fileRef = CA53479D1F7EC6FB3472EFF20F157B6C /* FIRInstallationsStoredItem.m */; }; - CBBAEA519940464F344C345D766E104F /* vp8l_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = D80FDE7E34FA2982674064A6D85232B8 /* vp8l_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - CBD01FB3A6A049D4C44AB4AC827A23DE /* Format.h in Headers */ = {isa = PBXBuildFile; fileRef = A8C055FC19F0A2F755E33523A31825D8 /* Format.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CBDCC34FBC2F2C6B561441FD0C201A04 /* Chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = 0846660998DB5993367CE75C3BE71D85 /* Chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CBE810423FAB7CCF9CB2114BE153A744 /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4E73EEF74DB33CC28663FD33E8340D37 /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - CBF862AF51B4967E7DC9A5D682B9C4A8 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = E17FD458C86F4EF0292E673908AEDEAE /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - CC02B44932594CFFE5B5F6D237E0D5CF /* RSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45819A60A49C114E82122B36C16F91E0 /* RSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - CC2E33FEEA476F33BDE151AF3CDEB468 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C1BE94B78666F93E3483BC08C0CD380 /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC3173CFD0C36AEE56899DBF0FD36B63 /* picture_tools_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = CF5736726F34C338E30E0C2E192BFCEC /* picture_tools_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - CC4EDAF839AE6AF02012B2BF32D67D1D /* bufferevent_pair.c in Sources */ = {isa = PBXBuildFile; fileRef = 5E28E5E5D8F3D49FB0BC9C998D181E05 /* bufferevent_pair.c */; }; - CC60B0C4E3972C7D8E3B86C89D8A020D /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 793356BA3841923C3ACCC6E6566E9430 /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC74B37D9C57A58E9EB4C844E769CA62 /* FingerprintPolynomial.h in Headers */ = {isa = PBXBuildFile; fileRef = 270500ED0A569CA88773DA34EB2A806A /* FingerprintPolynomial.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC7F248FB402AC8A36A89A9DD717590B /* Pretty.h in Headers */ = {isa = PBXBuildFile; fileRef = 144B46E1E0D1B4E0404E9472E9B7ED9B /* Pretty.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CCC84C35A4690B73C0ECD674B60F4B11 /* RNCSafeAreaViewEdges.m in Sources */ = {isa = PBXBuildFile; fileRef = 734948868FD3466401304F71E4D66AA1 /* RNCSafeAreaViewEdges.m */; }; - CCE1BAB038B969B90B6F629B555BFCF0 /* Uri-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = D5840566E7BBCE62361B020239DE8975 /* Uri-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CCE9497BF1ABDBD37B0B6CE34C2561B4 /* webp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = D00CE9B3086FA1A05219E162F854B74F /* webp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - CCF14197FDD2C32ABD799E0CE8675E2E /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 629B984ED021E1DCFB8A9837C7E2B90B /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C751CB8EC8698564E9876BF59CC7CC25 /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = AA115C6C6F3591F70233C194A5D280DA /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C7657C0ACEBF275180FC66F5D819862F /* react-native-safe-area-context-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CD4624DD0FCA9E92E21136ACCE7F269 /* react-native-safe-area-context-dummy.m */; }; + C76CFF4115D2E081E952EE6BF2989503 /* TimerFDTimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 761424EAD5660486653AC7FB3BFC141F /* TimerFDTimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C7912E805DDDEA5097A95753ADD42CD0 /* BugsnagCollections.m in Sources */ = {isa = PBXBuildFile; fileRef = ADC303935FF231B0CA9192400CD9661F /* BugsnagCollections.m */; }; + C799D50AF668B26893FFCA305D8833C6 /* react-native-netinfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 97EEA106B8FDE670E90842205BDC5135 /* react-native-netinfo-dummy.m */; }; + C79D3C861913BECF40F5A4EFCDE0E522 /* UMPermissionsMethodsDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = A353F7E086D2B4C0BCD3F3CF28DF872F /* UMPermissionsMethodsDelegate.m */; }; + C79DA87A08D4B20BB5BCE3EEB056EB35 /* AtomicUnorderedMapUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = F308F629276CE5EA8D6AC34229F4156C /* AtomicUnorderedMapUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C7A4F66306C901380D5E82734D65BFCC /* RNFBMeta.m in Sources */ = {isa = PBXBuildFile; fileRef = 16D3F3AAD051C0568C7766CD69007D0A /* RNFBMeta.m */; }; + C7A8454E5AF2F4AE893EDD450EC30FF0 /* Fingerprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC33911EFC3CBBE0C2DBB62F33FEE78B /* Fingerprint.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + C7AF7002CDF38300F56C322257D16E4E /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = A4B57CE6698F52AC38D62EEC7933FC7E /* RCTNetworking.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + C7BF157D628A84C29ACDC5C41CB2D195 /* ExecutorWithPriority.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54A5A7C199B2EF8C220DCFD279A36398 /* ExecutorWithPriority.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C7C1574B8782249D7BA1D934090957F8 /* dwarf.h in Headers */ = {isa = PBXBuildFile; fileRef = 74B062219A682207723A6303E2CA31A6 /* dwarf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C7E766F4F82FADDE4BCDE8E6DF6ADB6D /* backward_references_cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 44CDC77F327D712E76506179E42099DA /* backward_references_cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + C7F308C78C338F122701BB6A918721FE /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5029C3F1FAC79F19E9E6338F44DB533D /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C80F54D99C2A289E5258B468883E4ABD /* QueuedImmediateExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = B533344AF098D6D3E0A567188723B749 /* QueuedImmediateExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C82AA31805A940547F8138D26E9CD549 /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = A9357393A4888576CA047A140A767760 /* EXFilePermissionModule.m */; }; + C82C3F004F3331A254FE01488C0CB011 /* picture_csp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 9827822A10AE401C50A145D0783F598F /* picture_csp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + C82EB4D749EA8DB61D3C0D6715FC06F3 /* FlowableObserveOnOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B11CBC013C592CAFFF90DDC74BBBEE3 /* FlowableObserveOnOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C84A2013A7C8788C1F6EE1194635FD71 /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = 116B22E616273DE891DEFDE938A5D623 /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C851F91C454485DBA39BA50F76DAE48F /* InterProcessLock.h in Headers */ = {isa = PBXBuildFile; fileRef = C3DE00015B04BC59D5769982E8B2F861 /* InterProcessLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C871BAE6DCFE636B9F7FD7C7DF0E43C9 /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = DF924119346381ACE894F12EB6E0AF5E /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C877547EF57278560C6623670718DC5E /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = BD92A024E058A1F1ACA50D8C9EA59838 /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C89897F473DA6D4E875D2025BDB8FC8F /* FIRCLSUserLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = E2352E5FBE76E56B7B7BA6EF4F362CA4 /* FIRCLSUserLogging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8A5CBB006E2DC0331B7AD53115A8B72 /* TOCropViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = FB1C906AA0D780C3960F0FCABF91285B /* TOCropViewController.m */; }; + C8E107F9EA155DCF846D2CC4796ACF23 /* IOVec.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AF66D31DBF731A2EB5A4616B400EED2 /* IOVec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8F768C639AF094247415FAA7DFEEA67 /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = BE6BA2C9AB3AF5A8930FB3A8745D4505 /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C8FAE77DBB29DE8CFA5B0E79264BA50F /* FIRCLSURLSession_PrivateMethods.h in Headers */ = {isa = PBXBuildFile; fileRef = AC6ACF007CE014EF66FDD4CA87758D24 /* FIRCLSURLSession_PrivateMethods.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C90063E06BC4D2C17D1A547337D1889D /* RCTFileReaderModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1742A79C0C3E90899FB5F9FBA7D59CC0 /* RCTFileReaderModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + C9077969FC06CED405C91255F82B5E47 /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 85DF6CE874D2DF49B49C7EEA5F4E7BD7 /* RCTScrollViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C90AFF718E45E2616D23519AC26AD09A /* UMAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C4AB3BD3F116A129775D8C459F218F9 /* UMAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9146A02C705D1F930D4F7A4F6EA2BAA /* BugsnagConfigSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EA0D8520C977127B4CFE93E6E40CCE0 /* BugsnagConfigSerializer.m */; }; + C918B262B36820B5E0F08F9C3B048892 /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B679B86B635682E764C49E591251FBD /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C946491B429ADF2746E9B82FE02E1DA9 /* Indestructible.h in Headers */ = {isa = PBXBuildFile; fileRef = 37ED6C8E5748E3D977D1C2577627B96E /* Indestructible.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C95C73195D66781C2965906E821593AF /* enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 6699132F7FA7337ED210A2AEF692D1CD /* enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + C9605C8430A5D8564D15A04ADC9566D4 /* UninitializedMemoryHacks.h in Headers */ = {isa = PBXBuildFile; fileRef = E9C8ED646C0773D3BB14C7CEA285BB54 /* UninitializedMemoryHacks.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C96875B5DDBA407587AEE0D39BEFE2C0 /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = F4158AE7E59BBE121CFE1EC34EF5D4B8 /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C96C23DD35B35085A98FAA492DD88019 /* CPUThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 252927535F70E0F87C20A16C6B6C1BE1 /* CPUThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9747AC666B1A6CE845FA9468C46617E /* FIRErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DAEC44B30FD86D9A2F84B6E93CE9B64 /* FIRErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9B171CD2F985BB6100973AC2085042D /* FIRCLSReportManager_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 17C0CD6ADA9BC193B0782803DC4943F7 /* FIRCLSReportManager_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9B3319CB6BB4B73DE7650348A98AA88 /* CodingDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 9161C064CF73C4FE3FD901619FBA9101 /* CodingDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9C8B73891305304B88FBF37BD8A1463 /* GULAppDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 181AF9851716867B9D19B12D9C435955 /* GULAppDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9D678DE52EFAFAEA7D75268855D5BC0 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C42293110E4BFCD51D38CDFD8A3C674 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9DA35E6875F7CA08B65CE508A400D9B /* mips_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = E9EB53456EF9DFAB70B1BF7C11D270BC /* mips_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9DB3F6776E8ED6731FC38B3F8CB8B80 /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = C9BE03A9ED4C0B01D14B481322AEEF98 /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9E59730EEF2DC8EAF2A569B46A51C29 /* neon.h in Headers */ = {isa = PBXBuildFile; fileRef = D844116E0E005795AB0B48CDE2A3E004 /* neon.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9EA62D21D56735F45703DF41D755994 /* SharedPromise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 14451A0D609106DE62DD81E5F0B87427 /* SharedPromise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9EF7E847E879A6A606BE532188EF26F /* TimeoutManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 62AE8B9F5D600E833DBC71FCA6DD3A00 /* TimeoutManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CA151941369D6E7C1501824B9461475D /* color_cache_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 116093A73B32F5F786FD46E2F9307F24 /* color_cache_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + CA215C84F48DBB4875A89A8BDFC578E7 /* FirebaseCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 2760A9D6AEC74F2005ED1B8F8B3AFCA9 /* FirebaseCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA240718EEF2AE9F8B429FCD8CB52C0B /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D14E9A01BCC594A2A85D381466E888B /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA320FCF97D98AFBA7A1948E8188AE81 /* Rcu.h in Headers */ = {isa = PBXBuildFile; fileRef = F69B4FD77A2ECAB40F80D5B29BFC7385 /* Rcu.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA40EA20D735E45DBAE1C1563AEF5EC1 /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 9572A0E17A29F17FD5B5BA89C0AB5DE0 /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA4BF0650049C0816C537A89740D27E3 /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63E1B74E561C965DABC1A328D38BBD67 /* FileUtil.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CA55FD2F5BF2D01EDF0D2E4D1370BF7C /* RCTWebSocketModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 000055EB58F9954C08827947C49DEAA3 /* RCTWebSocketModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + CA6FCC4C5E3A724C6AF340E43C604318 /* SDImageIOAnimatedCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = BCFA9E7DF0704A04BDB7768D0ACCCCF0 /* SDImageIOAnimatedCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CAA1D5E69DFF645CDB4B918BC511F924 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = 350DD9B6FE8FD8B0CC9BC694C7DF881F /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + CAB146FAC6468A8D16B74FCEABAE5013 /* UIView+Yoga.m in Sources */ = {isa = PBXBuildFile; fileRef = 4773ED3ABA888E69EA224359149F325D /* UIView+Yoga.m */; }; + CAD4AB3BDE57B4104B82BA05EEDB698A /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F8F686F684238FD8D654AA6C5D5B1DA /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CADB5A27752BEE26409B9BC2F040DA41 /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 794E673F0C3BE71ED6B7DD19CAB7EB7B /* SDImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CAE644D7DC0F3CC3A1A3326AD7F1991A /* SocketAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FB18B497B48508BD83F35E98B89335D /* SocketAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CAF3E80D9F68C3ED544BBBF1CD35C3C7 /* StreamThroughputMemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DA377E3CB010F7FAD6550A7731DC2069 /* StreamThroughputMemory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + CAFFC17E94ACA75D2EECDB6D7BA90684 /* RCTTypedModuleConstants.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7AF194825F5D1BAADE276FBE93BA8106 /* RCTTypedModuleConstants.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + CB14643836801BA417C2F336D66E589C /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 70D108EC355DF85A27E3C4DBC75DF773 /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB21F25297C33C46791DC1D290564FCF /* predictor_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = E3E88B0CE350E5F46AB94F51A3084A92 /* predictor_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + CB508CC193CBEAD7FE7C1FEDF3911E98 /* dec_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 463C40BF9D263B0F0FFCC31EBEE4F3DD /* dec_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + CB520E5F2F0C61DD826B07B0C8279521 /* FrameProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 16AB2D3191B6E98E712415EDA749A526 /* FrameProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB65070F7A8D8C6D2C6C72FA4C6C28E5 /* BugsnagSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E3C403950789D25A935DB168DD8426B /* BugsnagSession.m */; }; + CB664A38E158F561D73C35981A9D3413 /* AsyncSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D96F714DCDDAD43778C9DE25AB46587B /* AsyncSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + CB7660AC037B89E2E575D95CB7D3C7EE /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A1D49F08EA04CD0332FF2CEDCE38B9E /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CBC0D7D83AC8DC707FC09ACB3A9FA910 /* Barrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 58C6E7E33F256B29ECC94140A062E1F8 /* Barrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CBCBD455CD0EB79AF0127230B36FC289 /* vp8li_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = DB583B583C1BD1062181AF46E3326085 /* vp8li_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CBD6809F52257DFD2A9A398DC32C1B40 /* sorted_vector_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 12899CF7B0A4C003456EED43A6AC7EAB /* sorted_vector_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CBE16D2BBDA9C7A285BD7EB7F33EC804 /* rescaler_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 452CC8CE14DB69F8B48468BE79829A20 /* rescaler_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + CC21BDC9851642B380A4486829931AC4 /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 26DD49E2C4934CD535EFBBAABC571FE2 /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC283DD0AD2A7B28AB323189E63F03E1 /* DiscriminatedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EA8AD2545A0AD14865A826A89AF03BD /* DiscriminatedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC36D278983BC52DC73CCEB939A04CB9 /* FIRCLSSymbolicationOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 98D20082443CB51499254D58AA1B64FD /* FIRCLSSymbolicationOperation.m */; }; + CC3B88AB958F404688AE62BDA3A6C3A5 /* da-DK.lproj in Resources */ = {isa = PBXBuildFile; fileRef = F7B36E0655F52B09126B8CB05E74753E /* da-DK.lproj */; }; + CC61627241CDCD59428B70C9024D03E2 /* lossless_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = DCA962ED9AF42D56D730366FF8D1B34F /* lossless_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + CC9EE1EA9BEAE99D7BC6F4D5AC0F445D /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = B21A11DD91D2D39B41DAC66618429CFE /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CCABE8B4469A6526D2B920DFBC343B30 /* RequestResponseResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 7878CA8D54C4B07AC9493E905F05E20B /* RequestResponseResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CCBFCD926376358EA3F8C9CE60AD0690 /* NSBezierPath+SDRoundedCorners.m in Sources */ = {isa = PBXBuildFile; fileRef = 7878050845433B5C208F692C2F294BE2 /* NSBezierPath+SDRoundedCorners.m */; }; + CCC84C35A4690B73C0ECD674B60F4B11 /* RNCSafeAreaViewEdges.m in Sources */ = {isa = PBXBuildFile; fileRef = A6B53E018BB1410AE17A0898B3DB1F13 /* RNCSafeAreaViewEdges.m */; }; + CCD630CAA821C053BC16E2FFCF600165 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D0B5D9A2C2A0FC990882F9357818AA7 /* SDWebImageCompat.m */; }; + CCE3AC1E9995394EED23A43954C1756C /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E5F7C4CFBBA3148E9239CEC7A806D43C /* Assume.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CCF14197FDD2C32ABD799E0CE8675E2E /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CA405638D48DB19A0E0CFF3F8B4738F /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; CCF179687494CAF641F6DBDA486E39B9 /* FlipperKitCertificateProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = D3747BB10FAC0DDEE8A101726C4278CA /* FlipperKitCertificateProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD3402479B3B68645EA36F84C6DD71CE /* SDWebImageDownloaderRequestModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = C1B96F85E728B20381F51A90D5688A0B /* SDWebImageDownloaderRequestModifier.m */; }; - CD4D62E1F9528311A4263EC567C7FE1D /* REATransformNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 212CF5559DCE659E3DA99B08DDCD4DF5 /* REATransformNode.m */; }; - CD68C0EEE1873B1ACE6D6EE341F95088 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 47E979636E1E0DF746A3AAB12AFC7949 /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD72921CBE89270EA3400182F3C335D9 /* GlobalExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3552447EDDD2011D9AD21F5EA2B9B7FF /* GlobalExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - CD7E96E24046A883539E7495B9F71D08 /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9F7A5AF71B7686A61CEB3242ED1C0219 /* RCTInspector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - CDA603B9AC860C0E294349309A1EDBD0 /* FileUtilDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = DDAF0C9DBFFF10B30338CC4C086D1271 /* FileUtilDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CDAFDC454DE3DA63640EB10907034FE5 /* ScopedEventBaseThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 344D4B81A4B4C0FF7F5D353EC4EDC00A /* ScopedEventBaseThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CDC1AF775E101B11CB53C8D353ECC4EB /* evmap.c in Sources */ = {isa = PBXBuildFile; fileRef = 53E6098912BE03536ECD4B1FE675B237 /* evmap.c */; }; - CDD71246625320F6C13F19ED33845384 /* RCTScrollEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 221EBEA1DCF0618E7E6D62958BF7250E /* RCTScrollEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - CDDAB42EE52D15AC172595DCE3BADF02 /* TcpConnectionFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AE6FF8CF2D49101587FD8DFC0377561 /* TcpConnectionFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CDF918B53BB741CF59B09E5F5CC09603 /* GULSecureCoding.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CFB0570DCDE324E6BE1532D8CF0082E /* GULSecureCoding.m */; }; - CDFA55CA7093E6E8C9B64078C98A6E08 /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 51C4E5F5418C933B54618D04FE90B1EC /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE03D15F31E1B5604554331CFF8CB627 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D95A4792658552AC3DAC799FFAFD857 /* RCTStyleAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - CE218B5DC7F3DD4571628384243D2742 /* ApplyTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F2ABF8C2BEA2939B53F3C2267EF8A0A /* ApplyTuple.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE2CE42DF8B4E7774E166CA0D0185836 /* RNCMaskedView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 826D8E801EA68CF54FD3D32F7EFFCEED /* RNCMaskedView-dummy.m */; }; - CE3A8EE442E180BAF013357781A8BA77 /* BugsnagErrorReportApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 61C3A2D07C40B6FEDB9157CF5121EDB3 /* BugsnagErrorReportApiClient.m */; }; - CE3DCB701721124C62283C4ADD022EE1 /* REAClockNodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 5766F4C74896E331137F2B2E94327B16 /* REAClockNodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE4B52C51120C8BE3B053B0357A109BE /* EXSessionTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = B2253C90BA1A0E6FCFF5C7668D984D3E /* EXSessionTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE646C7BE87AD44D08D7B7AEBB4A295E /* SharedPromise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 14451A0D609106DE62DD81E5F0B87427 /* SharedPromise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CCFA88517B1E1E998517D844FB53B076 /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = E3BEF7877F768148E3E79A624A08A9FF /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD13073FA6A65CF6B4E5496AB2E10B27 /* RCTScrollEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 91C32104C640587A2B646FD89013D4BF /* RCTScrollEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD18D05EC7A3744FB5CB0A864892D1F9 /* LockFreeRingBuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = CEE0941739C9D8C648BEE31B28E6BAB0 /* LockFreeRingBuffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD2D9BAD0026BA6D30BFA2A89C346B6C /* FIRInstallationsIIDTokenStore.h in Headers */ = {isa = PBXBuildFile; fileRef = D9BD28134A368C0AFA8B5E2C29BC4702 /* FIRInstallationsIIDTokenStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD3A30F730893D1F4841FD531134835A /* ScopedEventBaseThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 42E9A5F1D01E71AAEF7A1C0EE956D535 /* ScopedEventBaseThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + CD4D62E1F9528311A4263EC567C7FE1D /* REATransformNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E366B66C03DB791740DF2536692620C1 /* REATransformNode.m */; }; + CD538293A04683B38F16D55B9CF35F8C /* RSocketServer.h in Headers */ = {isa = PBXBuildFile; fileRef = FAD7A3F2CAE2409B8C2A9B0EE30BF275 /* RSocketServer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD6AF50A5B8935155294A78A2118C81D /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 54E3357E369C5F5A2A821A386ABF801A /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + CD85334FA3FB2C48BDDCFD5B7582A33A /* Subscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3675C963C782F3ECF1D355995424942C /* Subscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + CD906EEB88C36C351AFB0F56A02B1366 /* PublisherBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 211FA11436C5447F1240832819907A3B /* PublisherBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD99725614EF09BD6C2DE0E7B16332B9 /* RangeCommon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43BC01F6464C78A7AD978DBF451A3241 /* RangeCommon.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + CDA2371D774ACA93CE19FF42E7153242 /* EnableSharedFromThis.h in Headers */ = {isa = PBXBuildFile; fileRef = D4228F768266D79383C00EDA869BA843 /* EnableSharedFromThis.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CDA331C833BF7FDEFDED3067EA1790EF /* enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = CA9DB25258DD17465318AC4999B7F0F0 /* enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + CDAFB2F61C2414EB9B05177D1C5983FA /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E84CBA71F965032851FABF0DCEB5989E /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CDBE4F53CF3FD78516D49F0BC0795396 /* PThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CE71E32B1F316D819469B576AFFD0199 /* PThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + CDC8CD8304521025E708103ECA714DBF /* Chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D4E753D377F1A7B0CEEECEF14FBDE54 /* Chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CDE9592C89D6616496AE868975DAA166 /* VirtualEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = AD234ACED22A090F331A623760C1DA2E /* VirtualEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CDF8D44C2F9F90A60B89872332770571 /* MallctlHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B72CF035DDDD520F1E8BB2BAC516F3B /* MallctlHelper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + CE09119F5E89BD9B7BBEAF10739BB37F /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C0A0A6CB3381FB125B7DB0B51F1D7DC /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE2B3B182A9C3A9220DC7E1DA756810F /* Common.h in Headers */ = {isa = PBXBuildFile; fileRef = 80AB0B92F34862EBF7AAE62BCD3BFB2C /* Common.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE2CE42DF8B4E7774E166CA0D0185836 /* RNCMaskedView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E55D28053CED82024BBF5606B125B4AD /* RNCMaskedView-dummy.m */; }; + CE3DCB701721124C62283C4ADD022EE1 /* REAClockNodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 867184BCA9B2D56CB73DAE176DC85425 /* REAClockNodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE4B52C51120C8BE3B053B0357A109BE /* EXSessionTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 09C6346F854CFF3D0E2B723676D88233 /* EXSessionTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE5BBBC50EE983AD02227AA651A7CE08 /* RCTImageURLLoaderWithAttribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A61FEF3F9A3004BC803F9B58AF3184B /* RCTImageURLLoaderWithAttribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE6C2C115033C2392F23079D5C9ED359 /* GDTCORUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F996B391DAE5F571B5F458C5A371768 /* GDTCORUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE6F2163B7B0C45E141427CB6E333B82 /* signal.c in Sources */ = {isa = PBXBuildFile; fileRef = 19778043EF9C8D5381A4CDCD7EABD478 /* signal.c */; }; CE710677CE3345C396654665122297A0 /* SKHighlightOverlay.h in Headers */ = {isa = PBXBuildFile; fileRef = 998986BB30812E936C369038CBD6799A /* SKHighlightOverlay.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE8DFA45D76A6B2B6B82BBA7E038EF91 /* StreamStateMachineBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C11E1C5E45CC15821A35863F16FA1B0 /* StreamStateMachineBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - CE906D7048E9EC8C8616926E9787DD26 /* FIRCLSDataCollectionToken.h in Headers */ = {isa = PBXBuildFile; fileRef = EB5BB0A2EBE0C8E9B64B96F6CE49737A /* FIRCLSDataCollectionToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE959CBE4EF0CC3E221C7F25F5D4EA48 /* SDWebImageDownloaderResponseModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = CAAEF98599CE9874378A568A022A2BC7 /* SDWebImageDownloaderResponseModifier.m */; }; - CE975AA7DD86B64588E5307378BB41B1 /* RNCMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BB81D79FA1A86216D5C9D6D2DBD42AE /* RNCMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE9FF264619B1F1663D8A47C88AB0ED0 /* StreamsWriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E4B12CEC68F65F6CC49C9E3844577875 /* StreamsWriter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - CEA0041A9189F89EFD7DEA5303718668 /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F37800457A2105A9E1F7E9F05B64EC7 /* RCTImageShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - CEA1C22AD73EEC05EE3D0D9295399A31 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C5A833DB4603F418D6E176A275CB16F /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CEB1E58162A49E2197F919AC89E691FF /* EXVideoThumbnails-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BC8B87DEC1D51EACDD0B4492796C767E /* EXVideoThumbnails-dummy.m */; }; - CECE6755375DA6C953FE2D9E92E2C0DF /* GroupVarint.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A55EA8DB6FFFDD98AC945B1B3D554C6 /* GroupVarint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CECF9B007DE9090D1E1A46E169820DE1 /* TOActivityCroppedImageProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B0DA798E2D2355D319142E0A3A2AD19 /* TOActivityCroppedImageProvider.m */; }; - CF46A2F93CDFE9DB77D7EF26ACC643C2 /* RCTAppearance.mm in Sources */ = {isa = PBXBuildFile; fileRef = CA69FA11B7E7B4330F772D39D3B16DA7 /* RCTAppearance.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - CF4E027FA379C2086B118784308B2B38 /* FIRCLSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 9372AC00A3DB1B500E10C1F4B72DB57E /* FIRCLSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF661D46F67B05CAA1A98F292AC57F06 /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = CAB163CC453CB671E735393A50963940 /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF6BA204DAD8E3F3E2B3A7A7D0E7939C /* UIImage+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B7258AD88FCB09A3552091074015F17 /* UIImage+Transform.m */; }; - CF821E5BD023BD6A38DF3D23A8A2C548 /* Rcu.h in Headers */ = {isa = PBXBuildFile; fileRef = F69B4FD77A2ECAB40F80D5B29BFC7385 /* Rcu.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF85C419F3E2F4D17108127CF6D02E9B /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EA38016D925A891156C2CD4F49C291C /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE80A7D32D993EC9B26559195F7F4F26 /* AtomicUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = F581E23D64DDD0F3D518E17717970CA0 /* AtomicUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE975AA7DD86B64588E5307378BB41B1 /* RNCMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 739C26D6C8C0848BCEE6E33039D4CA57 /* RNCMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE9F206E287A434B5255CBDBFD61798F /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = BA30F381505351432375646265A3BE63 /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CEA334A548F00533CA7D6C97630A1361 /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = BF1A76C52BB358B20970029ABBCE6EB5 /* UMSingletonModule.m */; }; + CEB1E58162A49E2197F919AC89E691FF /* EXVideoThumbnails-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 467A1C2E44EBBD5913A8C578602C5AAE /* EXVideoThumbnails-dummy.m */; }; + CEB6202FE80A2AD4486BCF529B2352A8 /* ThreadLocalDetail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B017EE09913730740C6957C49A600CCC /* ThreadLocalDetail.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CEC9AA9E45792542573CF4B0282DCC83 /* TLRefCount.h in Headers */ = {isa = PBXBuildFile; fileRef = C52D5EEE205E1F7DD0555001CB7F2C05 /* TLRefCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CECAD9C08AC9E06EFB4EFF3228A1D74F /* MemoryResource.h in Headers */ = {isa = PBXBuildFile; fileRef = CF92CB2DC5E901A2117D9D01EE01BBBE /* MemoryResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CED362515D3FA00D4CF4C576A0029C56 /* PriorityUnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = C336B4D8990B6662D77B53EDCBDC9C6D /* PriorityUnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CEDC5C22EEC8745138C80BC61242BDC3 /* alpha_processing_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = D6CB014D6F64A3F8BA9B0124907F5578 /* alpha_processing_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + CEE7978CF238C44FA9EED8927B72164E /* DestructorCheck.h in Headers */ = {isa = PBXBuildFile; fileRef = B3DC606F8383444756BD0A8665311ACC /* DestructorCheck.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CEEEE8755AB696A190B0B8D14314E5A5 /* BSG_KSCrashType.c in Sources */ = {isa = PBXBuildFile; fileRef = 6BB250331658AE5163B01B81D50B014F /* BSG_KSCrashType.c */; }; + CEF7EB0FFE0CE09AF8937C1946D2D8CB /* AtFork.h in Headers */ = {isa = PBXBuildFile; fileRef = D03E0BDAF9B99DCFE7142FA24C3753B9 /* AtFork.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF089CD590B8378757174BA76641D10C /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = DC257BCEEAB24E409CAE1A8E70D2C27C /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF0E2747232F5A846554C68D23BA09D6 /* StaticSingletonManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 09F08A801E02AEB6C1E8F95750DFC75C /* StaticSingletonManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF2226F7606A7188EA83A3592C4B1FAA /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = DF5DAB21386A74C921BAC62E663D7583 /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF370A828F7AA0767B77ABD35B3EBE37 /* event.c in Sources */ = {isa = PBXBuildFile; fileRef = 598202B7E8219B4266CB62E0A114604D /* event.c */; }; + CF3993166467D7999DCB674C42CDADBF /* ManualExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66A3E0F59BFBF183C03632E2F93359A4 /* ManualExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + CF46A2F93CDFE9DB77D7EF26ACC643C2 /* RCTAppearance.mm in Sources */ = {isa = PBXBuildFile; fileRef = C32591EEDE3377EF9F2D1BAFD2185D97 /* RCTAppearance.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + CF59274ACA4E2644E5611797A10AF8FA /* Cast.h in Headers */ = {isa = PBXBuildFile; fileRef = C98E349E86046891AFC5FF8A087E9764 /* Cast.h */; settings = {ATTRIBUTES = (Project, ); }; }; CF8905DB51A1A790C4044CC84CF6661E /* SKTapListenerImpl.m in Sources */ = {isa = PBXBuildFile; fileRef = D19A4CA590DD20503C9910C053E7E6EC /* SKTapListenerImpl.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - CF9E4FB680AF4AB2A75D026D0E9B3967 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 37E86C5D337B57126E07CA772629577A /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CFB7BF555DF79252AC2EE212826AE604 /* alpha_processing_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = D24C2A558A4C2CF8CAD1BE5E4935C980 /* alpha_processing_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - CFC42EF5F9AEDB8D3FC9A01837C19166 /* common_sse41.h in Headers */ = {isa = PBXBuildFile; fileRef = 35EE45AAA32375675BA4E409CE39608C /* common_sse41.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF8B47CC905105974FF7ACAE6FA8A302 /* FIRCLSOnboardingOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 441EAB302C099E80DE9A5B559150B9ED /* FIRCLSOnboardingOperation.m */; }; + CF9D6BE88091A67009ED603CF200C617 /* FIRHeartbeatInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A8F7FA2623FB4162CFFE9AC380521F2 /* FIRHeartbeatInfo.m */; }; + CFA9E0CDEB5E1E0ACBA68783BFCD46DC /* SDWebImageDownloaderResponseModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = CAAEF98599CE9874378A568A022A2BC7 /* SDWebImageDownloaderResponseModifier.m */; }; + CFACDE4788C46861F0CEACE722EC0289 /* FIRCLSInstallIdentifierModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AEEDE00F48399B38ECC97FB2A33A46A /* FIRCLSInstallIdentifierModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CFB71CF502F8556C04CDBD00948319A0 /* File-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 182A4AD9ECC2018EF67F3EC8BF813BBD /* File-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CFC44134A09EF6B00F5A933A61E8EB00 /* GDTCORUploadPackage_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D721A4D99E3EBB65E1C7B97E9D78DA4 /* GDTCORUploadPackage_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; CFD8C0C1E94C6D25D401F425ACCEC229 /* FlipperKitLayoutPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = F3DD32D017B1DA9E161BB9E0F4188B94 /* FlipperKitLayoutPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - CFEA95947479AD072E3978BA308C6E9A /* RNFBAppModule.h in Headers */ = {isa = PBXBuildFile; fileRef = BCBD15405D042D8A8F4FFB0D2457382D /* RNFBAppModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CFF3C1D309761F67BEE88FF97D90A94A /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E4812FF48A336ACD6F87BD77BBE8FE4F /* React-RCTSettings-dummy.m */; }; - CFF6D2A92EFD32D4EEB15223C98B26A9 /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 33CA2D791B052E6E11AC901556D70981 /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D0069E977045411B013D0ADD8CAFC48F /* RNFetchBlobFS.m in Sources */ = {isa = PBXBuildFile; fileRef = CE82711FB9B6F57CED5C24549CED4969 /* RNFetchBlobFS.m */; }; - D01426B8957821374017155DD90F01E6 /* MMKV_IO.h in Headers */ = {isa = PBXBuildFile; fileRef = 20DD2DCEC6778419564746DE9727F304 /* MMKV_IO.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D033FD51797A9CE8A87D9E92317A581B /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = BD53164FA67EF8F1844D6FCCE10D3DC3 /* SDAnimatedImageRep.m */; }; - D0436E60D6C2DDACADBBBDE556416C60 /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5EFC72E888F0DEF201C70085870D40F /* QBImagePickerController.m */; }; - D05125EE35E520E3E9AE90F4E588A56F /* Allowance.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A5EB232FEA7CEB1E0F7D4D8788C470F /* Allowance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CFF1CD9585A08783617CCBE27165930E /* BugsnagClient.m in Sources */ = {isa = PBXBuildFile; fileRef = D30DBF5B6FCBC3771FC82D8F61B0DDE1 /* BugsnagClient.m */; }; + D0069E977045411B013D0ADD8CAFC48F /* RNFetchBlobFS.m in Sources */ = {isa = PBXBuildFile; fileRef = F1A2D374367175141CF15B034A500836 /* RNFetchBlobFS.m */; }; + D0097323F911AA507C33D0394B4A737B /* FIRCLSProcess.h in Headers */ = {isa = PBXBuildFile; fileRef = 52E1F69E1D0368EFA784C9D21D7DBD74 /* FIRCLSProcess.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D024F7482C4086F306FA04A9F5B1F3F4 /* SDImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 52707312B51286806012D175CCFF6E9E /* SDImageCodersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D0436E60D6C2DDACADBBBDE556416C60 /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 269B79E04D74D32BB3857DEFBC2B344E /* QBImagePickerController.m */; }; + D043B51DB08FE072B47051B436D37103 /* GULHeartbeatDateStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = E815744FFA2710E1B7D0A4B6EED45E59 /* GULHeartbeatDateStorage.m */; }; D05968B92AC18C1A9BA37F4C96B5649A /* SKRequestInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = DB9FFA6AFE6BDC6D8DC0FE90FDB23935 /* SKRequestInfo.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - D061E580AAB732A7947B811FE9F13041 /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ECD30BAF89FB6DDEF50CD85F2E4AAB7 /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D067B1536928CD56A53B4FC47745C6C7 /* FIRCoreDiagnosticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = AD6A0F2BBD4B6CB65337D865E0A1505F /* FIRCoreDiagnosticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D090683926D38381625919E4AB2A721F /* InlineFunctionRef.h in Headers */ = {isa = PBXBuildFile; fileRef = 921B4C6825D843743335AA43D91F5D25 /* InlineFunctionRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D0DD6DA2B94CB88549356E80E17B0118 /* ThreadName.h in Headers */ = {isa = PBXBuildFile; fileRef = E0ACDEC4D4AAA9175FD58CD68F056807 /* ThreadName.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D0E3A497018B59493AFD813009021094 /* STTimerFDTimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EC1FD54A43DE7F6BA21F2B42197B5B6 /* STTimerFDTimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D0F4B5A89DAF267184E07CC08B725384 /* pb_common.c in Sources */ = {isa = PBXBuildFile; fileRef = C6AF3E49B2DBFEA9ACFC6345FDDDB37F /* pb_common.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc -fno-objc-arc"; }; }; - D0F7B2D66885EA0FA527E9FC5916DF84 /* EXKeepAwake.h in Headers */ = {isa = PBXBuildFile; fileRef = 99C00ABE78361BEB9CC0C172FD927951 /* EXKeepAwake.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D11167094B593E79B881FA7D25E49DA8 /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = F3E3C00251FA9B60545F0823AD069F05 /* RCTBlobCollector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - D11760032317B4F998FCF69F6154827A /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 92F324CB45068E03D0ED4F3EBBD493AC /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D139A50B1CAC9BAAF88C42F477CB3675 /* SDWebImageDownloaderDecryptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 99BC38F149A766A810843A66109219B8 /* SDWebImageDownloaderDecryptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D14CC40466DD0E093BB6C5749B33B254 /* evutil.h in Headers */ = {isa = PBXBuildFile; fileRef = 7194150125DD93BA2E704772FCAE9146 /* evutil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D159D4E11432836449A732BACDD0E057 /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = D0C2DD91A9EBD4168DC911AF0073DF62 /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D16DE515D8344421701B7A512DF153F3 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 45252E0FABE010F3C70C129164C32B79 /* RCTActivityIndicatorViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D17A1709E4F641840C6BEDDF86E1FA01 /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 2979DA3846E886A4084515E8DA2D76C7 /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D182608FDFEC21E7230DFE29FA430907 /* RNPushKit.m in Sources */ = {isa = PBXBuildFile; fileRef = 844DD2443B6ABF176775F2DD005A932D /* RNPushKit.m */; }; - D182D0BF3DADE78B6689411CAC9BCFCA /* DistributedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC65BF4B9DD13A49749589F7DAC592CE /* DistributedMutex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D1978CAF1D6697F082909CA3EB177F03 /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F2B7B521B5CB97DC3E8275845FE10E8 /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D1ACF18017C8DF3EB608229E1F07EFB2 /* BugsnagApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E47B9632C6D7E9318BAA491685EC3DC /* BugsnagApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D1AF1BCC8B901AA67C8C0CCB927CEA59 /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 28B9E2C90E2A68EFCBB472D555EBEEFC /* RCTScrollContentShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D1B534C9B6F6903D46EC67331F80EC2A /* GlobalShutdownSocketSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 77ACDDC07D639F420CA1C30073310AC8 /* GlobalShutdownSocketSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D1BFFA6549997B10B94E89080A58C54A /* StaticSingletonManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 20F6BA2AE366AF4C6F7F93F4965CD616 /* StaticSingletonManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - D1C31A83063B0A21CF36717D96EA3A21 /* SafeAreaSpacerViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F18239889D5C128EA1402D289AE5CE6 /* SafeAreaSpacerViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D1C92D801797F95F41F5E311D68244E1 /* UncaughtExceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 444A46906D8E12F1A3B33616C40E9FE0 /* UncaughtExceptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D1CA942A6195E56CB77E753515F9FEB5 /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = D2230E534485C9E75F15FFB2F67318D3 /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D1CF36D112CFA630EFAC4224BD2F3F37 /* FIRCLSMachO.m in Sources */ = {isa = PBXBuildFile; fileRef = 2777CBD18D9C43C9A3474489B0460131 /* FIRCLSMachO.m */; }; - D1E8F3822A217C968B0C80D1F85A9611 /* GroupVarint.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F67315E7880925AA24F1ADCA8867579 /* GroupVarint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D1E99A81A2ECCFD2EC16C81E0705C213 /* FIRInstallationsIDController.h in Headers */ = {isa = PBXBuildFile; fileRef = 00D323FBBD73EFACF837D4D6D25372A0 /* FIRInstallationsIDController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D1EEA583ADDB0581B7FF470C62413DAA /* Hazptr-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = F8A293D697BEB0EB90B945383C617400 /* Hazptr-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D1F3C3379E51B6EEA764532C4AA6FAAF /* GroupVarintDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C7DD8FD043A47577F15DC6CF75B2B5F /* GroupVarintDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D212327C84977742B0DB17D99593791C /* InspectorState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 491287C43FB178F30432173009BDD921 /* InspectorState.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D2131FA279278426DD17C64005108DB9 /* SanitizeLeak.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FFEEEAA43F9E2279D73C849BE609807E /* SanitizeLeak.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + D06DFFD00B69AF3A2D1EFF973DE6E084 /* BitVectorCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 5617917CB20E847E1CF7B0488DD757C5 /* BitVectorCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D0986605E0627CFF3EB4026422617121 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8040A7E3C4F4E92E5B9FC6E74CD3B7B0 /* RCTRootView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D0AB34E28BFD9EB328F9B831521843F3 /* TypedIOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = 64C7DEA7D869F455672B981CDD297434 /* TypedIOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D0DD0C14147CA8C77BA30A1B8F208588 /* FBLPromisePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 59ED6F706C9D0F558FED09E373412B9C /* FBLPromisePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D0E0C10F5F95F06BEC438F95275F3312 /* WaitOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = D967B64E4416C42C87B408BA762B2AB4 /* WaitOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D0F7B2D66885EA0FA527E9FC5916DF84 /* EXKeepAwake.h in Headers */ = {isa = PBXBuildFile; fileRef = CEEE463F217CBE6145E587648B5C4980 /* EXKeepAwake.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D13EF0014C8F8FA12C590F99457D9E70 /* FIRAValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 6691DF0CB8F296A5B4193C56713D9084 /* FIRAValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D157303F63B79D99F4E20DE11AF439B5 /* CacheLocality.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 167F8EE3DCF2AB9B35CD71207B01ED5C /* CacheLocality.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D15946E73D70CB1841EB5B5F5BA8572C /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CD2507059F1C896B0B80005FEC8F1CC /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D159D4E11432836449A732BACDD0E057 /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = BFEFAFEBF84E9FBD4F8AD032AB419A71 /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D182608FDFEC21E7230DFE29FA430907 /* RNPushKit.m in Sources */ = {isa = PBXBuildFile; fileRef = AF88246064A0F24D2BEA1AAA4535D82C /* RNPushKit.m */; }; + D1C31A83063B0A21CF36717D96EA3A21 /* SafeAreaSpacerViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = F328B6D74BBFF9B06C0F13B48B5952DA /* SafeAreaSpacerViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D1E586071A86357590A2A4FBDE39BCEF /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 96137BB348C0ED1939CB13E295939E4C /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D1F3694BF15942027B96B7B51C44037E /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 939CB389DABA0DEE02F6290050EF69F1 /* RCTImageUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + D1F820E1B9CF092DE1DDB26D3B359259 /* MacAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = B7554BFC029B0AB8A8E3D5C447DEA119 /* MacAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D208C88D025D7E970BB9010A96C747C1 /* fa.lproj in Resources */ = {isa = PBXBuildFile; fileRef = FE2D8D8C28338380E5C7F236E7D59928 /* fa.lproj */; }; + D2196EA9298C2730B852270880A3D2A3 /* AutoAttachUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C1D2B47E1C5431346888E77888673620 /* AutoAttachUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D227A3BB1C487095211B979FBDB76050 /* FLEXNetworkObserver.mm in Sources */ = {isa = PBXBuildFile; fileRef = B373A07D6A1D7A65054827E179FE0B52 /* FLEXNetworkObserver.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - D247ED174D1AD98E5ACCAF6E5E5B1CAC /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = DBB54F45B678B6B1A2F5299F690252AB /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - D281F95737C609E9EEC741291FD379EB /* FIRErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 867B29A1250B07A84E8BC281E2916F23 /* FIRErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D287512894095C23778F97D18579BF75 /* GoogleUtilities-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 10D3CBD349DDBEDD8BC29FF16094AFD1 /* GoogleUtilities-dummy.m */; }; + D2307735353F2006466FDE9A67651D61 /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = C50601436C1024EC64C217FF43FAB96F /* zh-Hans.lproj */; }; + D2897D08B1DA43E504A3C24516E47151 /* Subscription.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D874C0B29A25EF40764F5DBF1F06554 /* Subscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; D28CD09BFDFD2E5AC3DF534BA5C77D0A /* SKHiddenWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 8910ED61EA488A224272FCA22AD8C114 /* SKHiddenWindow.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - D28D75DAAE56917719D8170B98F0FA5D /* quant_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 4FE7B594CF6867E71FE4E2301AFEAD29 /* quant_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D29760FAD4D69F06FF9A81876EFC1A2D /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3FF6F8DBB4B5B0A8A057D76CA075B8CF /* RCTDevSettings.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - D2AAEC5DBFA46DDE544625396C250E62 /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 50CAFB8F24C41D94870BC72414843960 /* UMModuleRegistryAdapter.m */; }; - D2BF86335890522417EEBB4EBA7E17E7 /* alpha_processing.c in Sources */ = {isa = PBXBuildFile; fileRef = DD97A2E781B1133BD6C71C1544A56098 /* alpha_processing.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D2C1D2EDB1CCF7AA9217E2DBEED0EAD0 /* Fixture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C10EF9F124CA4DE97790AECBE28BBB56 /* Fixture.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - D2C46297E238837283738F57F4FFBD52 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 16E2A7ADA0EBFE30CC6290D890A31F92 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2E2F7FEFA1C15C7A0E8C4D9B24436E0 /* FIRCLSMachO.h in Headers */ = {isa = PBXBuildFile; fileRef = FFDB7FAA8CFF007C8D2DBF497D5F7D2C /* FIRCLSMachO.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2F8EBBAA3709B5E428A78A91D56D425 /* FrameSerializer_v1_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 52BF20AE590FB1B2AEB17652F1AF704E /* FrameSerializer_v1_0.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - D2FD6483BDCA4DACB29A7F55BEF92BB4 /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 24EDE437CEF92978BF7AFEBCADB858BB /* RCTImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - D3065438961ACF2FC44B48C0379426B1 /* GDTCORTransport_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = A9AE808ED601364F3208A8ECB8B3C571 /* GDTCORTransport_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D30DD85EAF9B877F834B6C37FB115269 /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 50E9B9774D4A3DD88A0582AB9E279476 /* EventHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D32B657D547BE1E8C2D053F1E81C983C /* RNFBVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = C04103D32BA694191D9D739DCC7149D9 /* RNFBVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D32E122C1F2F03E28A234757BE695CD7 /* UMPermissionsInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 57E758D75B96F7F59C307EFF1E38FA75 /* UMPermissionsInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D340B0F6688F4968DFA889FDECBB74BA /* HardwareConcurrency.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1BB261D6EBB0A06A931BB83D097DB32C /* HardwareConcurrency.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D359BF04EE6C33F619435E8258BD9D84 /* SysFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 361B3EAC5B4BA385FD118F17A9B0D62E /* SysFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D369B9052DA6F4A1E689FBEBC7B3D204 /* MoveWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DA348A7D21149FE8CE8BB8E70E897ED /* MoveWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D36C033AB6880185FF9448881D28BF18 /* F14Defaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 29BB2342D6548FB4328A430E838AF6D1 /* F14Defaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3751571D5412DDF07AD3924F2558FDA /* RNCAppearanceProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 166DC0AF1DADC78C02FA2D58071387B5 /* RNCAppearanceProvider.m */; }; - D386146023749E669569309813E8B5AF /* EXAppleAuthentication-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B07F6CDC189F85A34478B0D84841E15 /* EXAppleAuthentication-dummy.m */; }; - D3A2C8EA7A047D17A4541373EA9EE652 /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B1752A0E44965AE4FF13FEF2603B4F52 /* RCTVirtualTextViewManager.m */; }; - D3D07E02BBB41E576E28BB2CC81B555C /* RCTImageView.mm in Sources */ = {isa = PBXBuildFile; fileRef = C88B75A182B9FF27AEEAC3DF6B2B28DF /* RCTImageView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - D3EE36FD52C27DA3FC46CDC4A1007EE2 /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = B8FF33E3248604EAAD1185ED8CEDA331 /* RNSScreen.m */; }; - D3FD0E574D7E770F66977B31BBFCBAC8 /* Promise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 272CDB0FA827230F8DE743CE89D46813 /* Promise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D41E48CCE6E3175C669600A59D32C451 /* FutureDAG.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D8BCB33436BE48FAD4C6E8DD4A9C0C6 /* FutureDAG.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4308ED74305D47D4E2BB5D0357C306D /* MicroLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EB7532A0A3B8B481335D17280B270C0 /* MicroLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D434D9CAD89E6917A58F0EB087A726F7 /* SocketOptionMap.h in Headers */ = {isa = PBXBuildFile; fileRef = A09AB235098FCF4BFA9D0D5B5E22A857 /* SocketOptionMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D437449A4FBBB7F14D6515944DE4ABCA /* Foreach.h in Headers */ = {isa = PBXBuildFile; fileRef = FDCC2F6EA2E74361965F0588E6B7717B /* Foreach.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D43776DBE5699849043A09A9D384C0D9 /* DefaultKeepAliveExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 4652354732BAAD1E1BF37A644FBCFB1D /* DefaultKeepAliveExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D44BF8A3C2B7D58F114CFD67F569D0B0 /* Try.h in Headers */ = {isa = PBXBuildFile; fileRef = E4FC8715E1EB40E6DA91B572FD796DA9 /* Try.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D46643CE3FC304A26E3BFD6D55C7BC10 /* RNCPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 809E57C2926BEB5289728A671F93A914 /* RNCPicker.m */; }; - D46E620C751EC79F37B27D8568520CFF /* GULAppEnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A2B792B80ED688B169D906DB78A6E39 /* GULAppEnvironmentUtil.m */; }; - D47BDC467C8A4711F0F267FCE4B39338 /* FireAndForgetResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 50F2B1496321F64AD7B0998350D4D009 /* FireAndForgetResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - D48D41F415FE57414EF31449DAFFA0AE /* Unit.h in Headers */ = {isa = PBXBuildFile; fileRef = BBC73BC2EAC1CDAC3847AABE5647B8D4 /* Unit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D49264E31D0396BC7B225BD5A42DE88B /* LNAnimatorTemp.h in Headers */ = {isa = PBXBuildFile; fileRef = 487CEC89AFF0DCBE9337BAEF7F1F156A /* LNAnimatorTemp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D29760FAD4D69F06FF9A81876EFC1A2D /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5ECE145F88E238B706A47CA042E7F8C0 /* RCTDevSettings.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + D2AAEC5DBFA46DDE544625396C250E62 /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = EFD07F0983ABE92891B7D4414B44854B /* UMModuleRegistryAdapter.m */; }; + D2B3C29CBC3E151E266D33F83C27BDC6 /* BridgeNativeModulePerfLogger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DCE53D3A2A477839449B9C6C35566704 /* BridgeNativeModulePerfLogger.cpp */; }; + D2BA301327CE06F4657E997B1B814C4A /* FIRErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9881046FDD9C36E6167F04A001FF345A /* FIRErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2C18CE6DA881FC9208B52198C458A61 /* FBLPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = DA6C6CDB3F61B53988510109BBA0ABDB /* FBLPromise.m */; }; + D2C6862CA0D2BE7734CB670D76F5F41D /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 786DC84CE97474698A7E3B5134CC6EB1 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + D2C6965AD9CC35C97016CC32EA67D671 /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EE70FC63C3A4A9EC29E4C29EEEF55D45 /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2CC01F33EC29210743242BD1913E7F7 /* FIRCLSProcessReportOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6B215909BFDC7A355DECAD3E931417 /* FIRCLSProcessReportOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2E12B7DB0913B55C4CF2D24C1AE4B7A /* FBLPromise+Wrap.m in Sources */ = {isa = PBXBuildFile; fileRef = 95D457B73EC18B3EE005F27734E9C2EC /* FBLPromise+Wrap.m */; }; + D2E714CA017CA0D99284441DB9C445EA /* SanitizeLeak.h in Headers */ = {isa = PBXBuildFile; fileRef = 080AB2B7CB8699758B3D6C0D17453CBC /* SanitizeLeak.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D3231E825E527E678ED877374F3A8D24 /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E759369F67438720C9E32980E6886097 /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D32AD22F447180DC0416C806572DD1BC /* FIRDependency.m in Sources */ = {isa = PBXBuildFile; fileRef = BD73AA891D62385187260FC9FAF1E975 /* FIRDependency.m */; }; + D35ACE0CEEF80562686C638C5DA76039 /* Executor.h in Headers */ = {isa = PBXBuildFile; fileRef = 30AF8D3CCB290A00C1F861CCCCE68A94 /* Executor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D35C269AED058F51D41E7E3310A0CC15 /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 234F0314DE67CB4B3A250EF8DDD92405 /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D36112C86BBBB1C82A9B4E0B61951F7D /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 3165B7C50B8D93136632716AD3961A52 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D36CBFFEDA290CB706D0E0195ECAE5F6 /* format_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = BAABEC84C45BD5093160DF0FDE106A1C /* format_constants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D372D81C9F919B230772EFF5A44BAF7B /* FIRCLSRecordApplication.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AD786D1FFEBD9B081A0830735573F7E /* FIRCLSRecordApplication.m */; }; + D3751571D5412DDF07AD3924F2558FDA /* RNCAppearanceProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B4BC89835F0B426BA24544643826522 /* RNCAppearanceProvider.m */; }; + D386146023749E669569309813E8B5AF /* EXAppleAuthentication-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C2CC138F3EBFE8E6414F78D511270704 /* EXAppleAuthentication-dummy.m */; }; + D39FCD8AD6F41BD4D52BC9BC3069712B /* FIRCLSDataCollectionArbiter.h in Headers */ = {isa = PBXBuildFile; fileRef = A462BE5BC8918B04994A88A4585974A6 /* FIRCLSDataCollectionArbiter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D3C9B0E55EDFD3B00CDE51CF4FEC5843 /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = E5DD2E4A3E1B76BAD034115D0188B153 /* UIImageView+WebCache.m */; }; + D3E5CA72D9FBC6571203CAC3C2F50D70 /* FIRLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B18306BC869E0A6F64DC3423EC37D63 /* FIRLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D3EE36FD52C27DA3FC46CDC4A1007EE2 /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = AB37EFF737ECCA2E5C39C1BB53DB1638 /* RNSScreen.m */; }; + D3F2A2007343CB68F1B43CD7359A7FED /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 492C2F67A9C418ADE27FE61B3781B974 /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D42F1F4E5EBE1986A2CB8A2C3D76706A /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C4686785AFDD41B0581622BD388B30E /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D430141FB77ACDCE8D23AA0CF9AB2496 /* BSGEventUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = AB2B5D58205F45FDC1B97AF9658D4492 /* BSGEventUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D436A5EE1529A25F83A9CFE1B803E04D /* FIRCLSReportUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = C21363F67760B2C4D800FA5E6E6B6A07 /* FIRCLSReportUploader.m */; }; + D445613AD4881CC441E92192D9EF211E /* GDTCCTPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D86212C9EE02C3B1D98668EF11183C4 /* GDTCCTPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D46643CE3FC304A26E3BFD6D55C7BC10 /* RNCPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 08383837DC6D5400661DBAEDFAC174C8 /* RNCPicker.m */; }; + D4897215571C3F50ACC5A323696E6BAC /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 87F3ACB4AF1829993FE242559CF76FCA /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D49264E31D0396BC7B225BD5A42DE88B /* LNAnimatorTemp.h in Headers */ = {isa = PBXBuildFile; fileRef = 992D41F7A137097278CF3EDB63F141AE /* LNAnimatorTemp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D4A2368768AF9A79E6798B8B6AC659DD /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = DFBC3A559DA99D3C1938A7085FF679F6 /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; D4B0113D7006C10EECE8D98AB9C402D4 /* SKSwizzle.h in Headers */ = {isa = PBXBuildFile; fileRef = 7581311455DB6CDA5EE85DCA93A6D7AC /* SKSwizzle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4DA57B0F2DE4236A38709ACE2587563 /* kqueue.c in Sources */ = {isa = PBXBuildFile; fileRef = 19D8F967D64197E724B3530AC7D14799 /* kqueue.c */; }; - D4E6A1FE753E7C31DD77D3F9178FABA3 /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 298EF32294E39FCD41FAC2AE85517610 /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D504D2730CEC60A9F716A26401314A48 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A466DFCCBBD36B9700AC88D7B170FE2 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D511AB9EF6B01E734C9D2AFE1AC460DD /* SDWebImageDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AD3167E0123CD275B0C9FCABD515EA8 /* SDWebImageDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D5168DD0B6EC2324400750C5FC03E2DD /* event-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 85679925C7418CFBC8047231557F405D /* event-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D51730E29AA4D2A594E0BEAF9A214FB9 /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 3547C5EE598BDF27BF5868CF6E1B4764 /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D51B640341264A4C1C39B2E9E17F520D /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = A0E7DE312BB0A7E371784C7A0DDCFEEA /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D51BA848FEBF2385B7D00A17192E8125 /* InspectorState.h in Headers */ = {isa = PBXBuildFile; fileRef = 736EDBC0DCBFC91C303ADD0406ADC0C4 /* InspectorState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D52C85AFE270ABCF61A5371751645F85 /* BSG_KSString.c in Sources */ = {isa = PBXBuildFile; fileRef = 63A5C562EC8E993C5AC57AB81FEBC9B3 /* BSG_KSString.c */; }; - D535F8F9E20C7AD76E6DCD0398E04BAD /* SDAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = EE109F48562DC7EEFB22086F85702B57 /* SDAnimatedImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D5373EF968A10927FABF0B41D2466A11 /* Asm.h in Headers */ = {isa = PBXBuildFile; fileRef = 7936B2B68C9F299497D44B44C6790BD2 /* Asm.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D55CCB9642A3528250A3B1E3231FCD54 /* near_lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 93C97B60047255164EA4F8718B8EC42B /* near_lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D55FB1347969B0F41503588C7C558D38 /* MessageConverters.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 65DCD89017277DA042318CC0C4F6A952 /* MessageConverters.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D570E8D48A9B65FEA255788B0CCCE60D /* BSG_KSCrashSentry_User.c in Sources */ = {isa = PBXBuildFile; fileRef = BD673995F60C9E61AAC2C639D5BC3CC5 /* BSG_KSCrashSentry_User.c */; }; - D57242EEA45E10DEA9B85529CD0F6D1E /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F9E5087DC25C01058CCEF28892B1C75 /* SpookyHashV2.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D59A4FE9C688CD8B987E7549D85219E6 /* Tearable.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B9F4EA75F69F6FBF04FED883FE345FF /* Tearable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D5BB24CD4D82D48AE68984151DF21DA8 /* RNFetchBlobReqBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 944FA174EF87D2543731F5E05EF8AE7B /* RNFetchBlobReqBuilder.m */; }; - D5DF92A877B2CDEC4D3F2161748F5F5F /* time-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = C9DF09F69040AFECB8B414130D0B901C /* time-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D5E1A1C1D6E093187239787342FD4906 /* TimeoutQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29A82CA43E2FB7A6EF4D228560B1C21A /* TimeoutQueue.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - D5EB92A602170EED10EDF074306EABD1 /* ARTShapeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 02A7A7612AE64E315D438425C8024FDE /* ARTShapeManager.m */; }; - D60904D430DAAB8DBB0A2C5B1CC6BFCE /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EA2A03A95AE9DA815982AB1C06B501D /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D61F03C559E92884248EF73D7FFBF798 /* EXAVPlayerData.m in Sources */ = {isa = PBXBuildFile; fileRef = 95E0C7FCF12FCDB434C7EF04710EB0E3 /* EXAVPlayerData.m */; }; - D62CEFC5FFE2D0D1E6A526806353A616 /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 926F89BC8EBC38421D981C9C7D4EBBE3 /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D66730DAC3D36B39891FABD9BDCBB137 /* RNCMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FC501E102B843C7936DD95D5D5B667D5 /* RNCMaskedViewManager.m */; }; - D6798C24A2CB7D6410845A9C432023E3 /* SDAnimatedImagePlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = BE8FE5ABD07B445E6E17FBDE8B6AF829 /* SDAnimatedImagePlayer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D680F53BF8235C81CC85143F86FF604F /* UIImage+CropRotate.h in Headers */ = {isa = PBXBuildFile; fileRef = 6358C91D6EFFFEE83C8D79EAC09C685D /* UIImage+CropRotate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D6945C969B73D5D3D0BDD77B28BD11AE /* FIRCLSCrashedMarkerFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 464D88FB4501E834EE17D24AF6A393EF /* FIRCLSCrashedMarkerFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D69D1C3CE91B89704C5D3F65E4C4C153 /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DC1F0B6DA7032667B72AE5ACDE4227C /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D6A4CB7D75E3E43A684491B7B4C0D44E /* project.pbxproj in Sources */ = {isa = PBXBuildFile; fileRef = EB722064956A2C065476D34F14303583 /* project.pbxproj */; }; - D6B32C3AD42324A5518538A12FAE8B94 /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66B29694F66CA2A9B64C6C6276003DB6 /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - D6B706DF527F79D46421A1AB781116DA /* Rsa.m in Sources */ = {isa = PBXBuildFile; fileRef = 19B8A2A9818EEDF91CCBE35B0BDB5F50 /* Rsa.m */; }; - D6C125C668E7615F2F55DD347A778032 /* OpenSSLCertUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = DC49F5F953C7FE75F85B0FE2D307C478 /* OpenSSLCertUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D6DB74F81F3469C292D22A23A3B1ED41 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 691F68D1104C3DC9EC6978403FEACA7D /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D71D560281D155476B0448B03C3C896C /* FlowableDoOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = E1F7A0D97DA95FFB171D971F6CDBA8A3 /* FlowableDoOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D72B98A4B8C84CC69B1484B9EEC337BE /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 33A7E941A4206E08C5B025F4C63C64D2 /* ScopeGuard.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D73024A7B759EDBBA989A06EABDB7DEB /* RCTEventDispatcherProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 384B421008057686598A7C179F7362BA /* RCTEventDispatcherProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D790C310AEE786AC552557B9DF2B5CF4 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C0708A1487C3ADC35CCAD20713FAD496 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D79BBC9C82851EA6E6D98C007EFB88EC /* GDTCOREvent+GDTCCTSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 58FDB347CF2505169C6622AA7F6B1624 /* GDTCOREvent+GDTCCTSupport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D7A68A1C097762915261A2A3B43306E3 /* ARTText.h in Headers */ = {isa = PBXBuildFile; fileRef = A83BD1F97D7CD373957C3D179FB9308D /* ARTText.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D7AAA2D560CE0B395FE464B0A4113C21 /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 25578B9A60447C91AA98CC57642AD848 /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D7B2C1DB9F8C5EED745E33502D19E28E /* MMKVPredef.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F1DA2CEA3CE04463B0A7359D8CA5609 /* MMKVPredef.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D4DFA298781F60CC6ACB3953617F78C7 /* FIRCLSURLSessionDownloadTask.m in Sources */ = {isa = PBXBuildFile; fileRef = AB3C3EBE83825F847588B9C5EFE94821 /* FIRCLSURLSessionDownloadTask.m */; }; + D500045B4F3FEA85B3CDE453BA7F6AAA /* StaticSingletonManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E553F01BE30FCC53EB6EE5B3FA54B6B5 /* StaticSingletonManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D5080033449BA3D8EFC1FEEBC05DF097 /* GDTCORAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B1D16C4FA2EE254799289AADD10A332 /* GDTCORAssert.m */; }; + D51D97CC1C3D3A0CB163946FC25C5FA4 /* SocketFastOpen.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EFAA1EC8ABC4B195F6D05DB2149CC0A /* SocketFastOpen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D52FB42711662B1E4BECDD8DC3A84AAA /* BugsnagReactNativeEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 208FA81342E93D1EEFE65C0E4EF49F03 /* BugsnagReactNativeEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D53F1CD39BA109B297DB22917B41C7AC /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 2361CE3F774C1F8B37B55A13CBBD1863 /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D5771A96DEDA22780A943A3205E9911E /* PropagateConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F3EFD758F22BA8D07980A6B2CCC00D3 /* PropagateConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D57AACE4DA19F9E8ED579B02426AED39 /* TOCropScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = B8BFDD279AF1CA07792F3710FF5DC905 /* TOCropScrollView.m */; }; + D57C62ADF8D8109993292B4D8CF6839D /* SerialExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1EC50934E3A2BC5FF287395B8A34E26E /* SerialExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + D5A0723B8486950B12A5102C4FEFB89E /* Pods-defaults-ShareRocketChatRN-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DA65FEB8FD5849A062819A27B8A4586 /* Pods-defaults-ShareRocketChatRN-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D5A5E45A6B3AE55F375F492CE662497C /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B5104E51CBBF3CC7204A871489BF7FA /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D5B239CA770C23F84A2E2CF134FC8BFF /* SysStat.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 38EEC9DFD8C2803A99DE518F66CAE9DD /* SysStat.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + D5BB24CD4D82D48AE68984151DF21DA8 /* RNFetchBlobReqBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = DF395A5AE875959199CDB011ADB83A79 /* RNFetchBlobReqBuilder.m */; }; + D5EB92A602170EED10EDF074306EABD1 /* ARTShapeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C9A7663B51899E9286FE8EFD38D72255 /* ARTShapeManager.m */; }; + D5F055E6D09FB50DFC8C8803944C6797 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 72D64CBEA652505759A9A44431D4712A /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D5F05C28E40410B6532F191DCFBCB88D /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 226310A8D5AB574DE177101E74A1DE17 /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D5F415B8677FEAC11CCE89E120FC6E7D /* NativeModulePerfLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D7771767C0A64A4CFEC135F4E46E7A1 /* NativeModulePerfLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D601647EED2BA32715513D94C6430635 /* Arena-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FAE388C4C377F211302B9CBF05455030 /* Arena-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D619026D176024695BC48B605229A5CA /* IOThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AE40EC74114F2FFBD6CF82143D0C4A4 /* IOThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D61F03C559E92884248EF73D7FFBF798 /* EXAVPlayerData.m in Sources */ = {isa = PBXBuildFile; fileRef = C7C2268BCC9BE5C1853C9EEE1432E4DB /* EXAVPlayerData.m */; }; + D62CEFC5FFE2D0D1E6A526806353A616 /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = FE3BF3728F1CB1F893F7BFC06E6505EC /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D63727DCE35DE5DD0587FA1FD2B24E75 /* BSG_KSString.c in Sources */ = {isa = PBXBuildFile; fileRef = F426EC127A24804A5AF0A94BBCFFD9E3 /* BSG_KSString.c */; }; + D6379F6D470211E5CA23A286FD7DECC4 /* MMKVMetaInfo.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 76A8C67765DA89F084B107A64F614A08 /* MMKVMetaInfo.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; + D639203BB1E71731E27F44A2B455D821 /* BugsnagStackframe+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = C7A634C0809C6C8B3F48DAA06217C421 /* BugsnagStackframe+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6417458F7CBA6609D7995D851BD4FB9 /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 92E81D540171FAD8E231E1AF4066DB6B /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6588F6CE574B0985EF73B75894AA779 /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = C546EB9A217A4633A47E8498CCE72DC9 /* RCTSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D66730DAC3D36B39891FABD9BDCBB137 /* RNCMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A5105BEB6D09F367043F57348917EBD3 /* RNCMaskedViewManager.m */; }; + D697AF9D7C3AA5965359BAF7F01CB8F3 /* BitIteratorDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = B910507E6F3163603403C8E93367A32B /* BitIteratorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D699743FF4AFA471649D7C40F6A197E2 /* GDTCORConsoleLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = D77046677C44FB3A05A464AB21EAB128 /* GDTCORConsoleLogger.m */; }; + D6A4CB7D75E3E43A684491B7B4C0D44E /* project.pbxproj in Sources */ = {isa = PBXBuildFile; fileRef = C184B7335460D0CE1CA51D5B2D27A070 /* project.pbxproj */; }; + D6B1752A123903CB7F7336002C074DB6 /* Align.h in Headers */ = {isa = PBXBuildFile; fileRef = A8BE121CC2AC61A2582FB032C7E7D75D /* Align.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6B706DF527F79D46421A1AB781116DA /* Rsa.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A11218245C003EDA9A0CB086BF522E4 /* Rsa.m */; }; + D6CDDF35F148CC13038E00192E23F228 /* yuv_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 8ACA5A3A6CD82F1DFA5BA81BA8BA4E2B /* yuv_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + D6D72FF37F4A4847471FA94F09191175 /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = C8644BEA899187C9860C8C5A4BCE9404 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6F133DEE22C4D0EE2BA65C1F5DB9ED9 /* BSG_KSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EAC3F88A630AB3DF219B13A70581EEB /* BSG_KSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D7064E936651DB1B199C98919E3DD50F /* SequencedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 80B008CA424CDE6C865EAD3147A8E58C /* SequencedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D719FD0D9C43804E35518A8345E76621 /* InterProcessLock_Win32.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F857F1D4F6B0DA51D90C2E47D9113790 /* InterProcessLock_Win32.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + D71ADD949E5B71AA9A76AEC37C234894 /* SDImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 655AB00308011B638B5EA2AA6AE30280 /* SDImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D733A734F0541967B73273D3D8CFBF80 /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 4647C9AE1DB91B4C22C79A10ACFCDDC6 /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D73B7BC25E0A81E82E9A72BBFB787DDD /* Request.h in Headers */ = {isa = PBXBuildFile; fileRef = 9915685C01F70A36E07105E093943607 /* Request.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D73DF66D11E2F433F4565EA01E85C62C /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = FA40170E5CE0A56BEF48BE0B6D7955AA /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D74C449490F2547B3074E72651672C3C /* MessageConverters.h in Headers */ = {isa = PBXBuildFile; fileRef = F5851EAB8954DE15BC38C794A0139EA3 /* MessageConverters.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D78258F296A9A39EBBDAD892C9BEFE1E /* muxinternal.c in Sources */ = {isa = PBXBuildFile; fileRef = 1C846DAFD37C35A25F692FCE7C6E93F9 /* muxinternal.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + D78F88D509A69BC393D2D42308D3FE23 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 73E46AB944E91B060A550C4C5605837C /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D7A68A1C097762915261A2A3B43306E3 /* ARTText.h in Headers */ = {isa = PBXBuildFile; fileRef = 00D7029CDF36815B074ED319C2F18BE3 /* ARTText.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D7A7DAC5E6DDFA5D837FF09AF577F7B9 /* upsampling_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 924EC671F2BB84B649EB05BB2E750512 /* upsampling_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + D7B16A5FCA924A6B5753536F5BA2C70B /* PublisherBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E72D1BAC77A444AB18BD08E79FF60128 /* PublisherBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; D7B9E25CD820E32E1A7169C913D64D26 /* SKResponseInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 069B7DCA8602CC04FFB29B10C5827D79 /* SKResponseInfo.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - D7BDE86F5429FC91EC5AFE77B646263C /* ARTPattern.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F4F629A06B57337573242D35CD5AA6E /* ARTPattern.m */; }; - D7D28401F9B963EE79B7DC82C8D50692 /* BugsnagReactNative.h in Headers */ = {isa = PBXBuildFile; fileRef = B53E7F80E8EA3C88D4B762C16A7A1285 /* BugsnagReactNative.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D7D3E4DF9F097B5C380A18F4D95B58DC /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = CF5DBBC056AE612B13B56FA8EE6EB845 /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D7EB42FBA7AFBD650650607CDE299557 /* StringKeyedUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 3737F11E4FA8A02C2FB84B43465555B1 /* StringKeyedUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D806F59838BE2ED0242EEA460D890E34 /* Format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A1B24C17B642E8896288A691DB8F105C /* Format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8255D0AE896958D3D6DC26E1D27169D /* FIRCLSdSYM.h in Headers */ = {isa = PBXBuildFile; fileRef = FF1E5960C85CE08107861C1055BE68B1 /* FIRCLSdSYM.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D82A6841B202F23715929FE0F4221F22 /* RNNotificationParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D0E62BD41B5014578C906A77BBF477F /* RNNotificationParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D82F20D4AA86A844E4E68E4B4973D9F6 /* ExecutorWithPriority.h in Headers */ = {isa = PBXBuildFile; fileRef = 349578B9758BE83C43BA33926084D1E3 /* ExecutorWithPriority.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D83177DFA388B5DBAA47F4C89082D489 /* FBLPromiseError.h in Headers */ = {isa = PBXBuildFile; fileRef = A2DD810F8278E0F12D995044E5BF7A15 /* FBLPromiseError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D84E163D51C6027FF4ABFC25F29FE9F0 /* FFFastImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 35D427331095E2422EC9BCF3C8D91CA9 /* FFFastImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D868C791C7090946449BDF4A8B622530 /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0DE80E422D8FB9F62B9655C08E9C59A2 /* Assume.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - D875A4DCD029F48FC8D7C3C9A3A572A4 /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = A9805BB28DE03E79698B2F89C119243E /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D881BDD9CC2ADE6E38BB569732FB013E /* BugsnagCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = CFB0120437DBF02A9931E932317AF9F7 /* BugsnagCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D890767C55F5DCC57AA0C55FE007C251 /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 244400CF8D1E8B78B81B69A6F6764C81 /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8AB3783797E40BDE4D869E83CEBF939 /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D99450DAAD42748A2271809EA7BA1CA /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8F1685C32645B1B10937F98FC269A39 /* InlineExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = E6047876F69097A9838EEBDAF3540193 /* InlineExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8F68B4B5854465B668950E9CD98350B /* Sse.h in Headers */ = {isa = PBXBuildFile; fileRef = 7368C7BB10308A0411937E8FED486628 /* Sse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D912F026DA26D182C2EEBB5FFC9C629E /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E2572FDC01A536DEB900645D6705743 /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D913F93C31A0C37A068FEEE5952951FF /* LNInterpolable.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CD4CAE338C22B95462CA8D64D75BA67 /* LNInterpolable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9344A51107B98167528B899DD0A5CE5 /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 78565C447D42AA93B9742D7D0974078B /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D935EA7375339063A45ACB4F349BE7B2 /* FIRCLSFeatures.h in Headers */ = {isa = PBXBuildFile; fileRef = DD6E84E7343B2D60B6A59A0E7D041EEA /* FIRCLSFeatures.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D7BDE86F5429FC91EC5AFE77B646263C /* ARTPattern.m in Sources */ = {isa = PBXBuildFile; fileRef = 9846051E8163DD05F07AEFC5926019F2 /* ARTPattern.m */; }; + D7CA9A41BEE6B7F1F33F91BEC2A2A6A4 /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = B9B3872121E4529E8679F086AD34150F /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D7D3E4DF9F097B5C380A18F4D95B58DC /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 16E471A27712CE9EB296524FB0C8DBB3 /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D7D40BF7CADE1583366937B309F97F1F /* cost_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DAB026597DCEA620D82C5772AAF6B91 /* cost_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D7D4DEEE9049C83D3E986C0D603E0EB3 /* BSG_KSFileUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = FA91F551FEA0B48AF49F7EDFF5C38E56 /* BSG_KSFileUtils.c */; }; + D82A6841B202F23715929FE0F4221F22 /* RNNotificationParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B981C23504E6D05D84784151C16C344 /* RNNotificationParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D82F397694B952F8BF294D1848C1B499 /* FlowableTimeoutOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FF6612843F3346BFEAF10A6DC11B13E /* FlowableTimeoutOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D84CC55B6501F56A726E04E5767D2901 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A95B6FF5792E56C7262B028418ECB65D /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + D84E163D51C6027FF4ABFC25F29FE9F0 /* FFFastImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = A7BE38DF3D2C4B8BFB184F5F4F3B0276 /* FFFastImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D8A40B9FDC860CC977827E0A51177CBC /* Flipper-RSocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E7C44F8E7F7F762E989594768FD709E /* Flipper-RSocket-dummy.m */; }; + D8AFFF6B833110971D9FF24ECBE9D53C /* FIRCLSFileManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 145B5155DFCA70A7E41B34A4765E2C92 /* FIRCLSFileManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D8B8414B0EEDB283573099875A60B927 /* SanitizeThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8200BAC2C1DEC23C001DE5C895A8CC79 /* SanitizeThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D8D97FEE8590A66A86E60AED24888D48 /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7516BE3DA685CEDF74312C0C1CA78095 /* RCTFont.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D8DF1DD9A5F06AEFC5CE19ABD243C9AF /* RNFBAppModule.m in Sources */ = {isa = PBXBuildFile; fileRef = B98CDF7AE9D73022D3C6DAAA3A63DBE7 /* RNFBAppModule.m */; }; + D8EB44941D789C53931B41B40870ACA3 /* BugsnagApp.h in Headers */ = {isa = PBXBuildFile; fileRef = B8B04429ED933128C921E875024E3240 /* BugsnagApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D8F73E92507A63E4729A5D0D2883C892 /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = DA0A31425FD62D5681ABB35C58430178 /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D906CEAF253DA06916C5F4C4C0072313 /* Constexpr.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AE90D932F5FFCC1DBCCA7B9D17A6B0C /* Constexpr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D913F93C31A0C37A068FEEE5952951FF /* LNInterpolable.h in Headers */ = {isa = PBXBuildFile; fileRef = A84D4EF51DA254BE4994B6F594A91701 /* LNInterpolable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D924EBBC6FC0EAA7CD07BCA4407045B4 /* FIRCLSSymbolResolver.m in Sources */ = {isa = PBXBuildFile; fileRef = FE8D16AF667A7D8A41E9D13981967F3B /* FIRCLSSymbolResolver.m */; }; + D92707BDC9E09F40EF5EF92F91137001 /* FIRCLSDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 70E5267514362AC438D2016BFB6782C3 /* FIRCLSDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D92C788B6791E1E36CF211895BB1F275 /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 9EF4F1EDCD4553A3703C9FCDACB61264 /* RCTPicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D92DF2B418F87CF4D9ED49621C1EAB78 /* DistributedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC65BF4B9DD13A49749589F7DAC592CE /* DistributedMutex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D933C1F78DB716F99CA801EAA8AEC422 /* StaticConst.h in Headers */ = {isa = PBXBuildFile; fileRef = F1CC8DA0187F606BF5BF0A4A91CC75AB /* StaticConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; D93AC3A2690A202A9C45D9C1DA332413 /* SKMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 153D793297698FE9116592E393746B99 /* SKMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D98D5E0F70D655730F87FDEF7277F9B0 /* REATransitionValues.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C38396678B7BDB25D669DB58C1C6B60 /* REATransitionValues.m */; }; - D9A03ED09FD8CF0E290FC649E97D53A4 /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7844B99C090843EDAFD2A13939C66B78 /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9A221A4D8C2277FE9AADCDD1BA5CCBF /* RNNotificationCenterListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 673AC98601EA685ECC95DCF683933C54 /* RNNotificationCenterListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9C42EE9452E591C5BBCCBDE6C0BFAA6 /* SDWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = CFADAE6600C315D4EFB5CC5D47467A27 /* SDWeakProxy.m */; }; - D9D7640C312E4F5D10B045C66F25D16D /* RCTConvert+RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = CCDB30CF5A656CC69458A78528C52015 /* RCTConvert+RNNotifications.m */; }; - D9E6889BE1390C1ADDD017DF60828CAA /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = E94541184FBC811C9D5D5AD893DADF82 /* QBAlbumCell.m */; }; + D94DE5C6E9898C501FA251E8465C01A4 /* Launder.h in Headers */ = {isa = PBXBuildFile; fileRef = 48D3CB40A59D83C6E945D88CC2CC0214 /* Launder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D95040C0CF3CAC10FF5AEA99C35E1E58 /* SDWebImageError.m in Sources */ = {isa = PBXBuildFile; fileRef = 34D668980C096A561A31A2EB2F6A66BC /* SDWebImageError.m */; }; + D972F5EC4D1CE557AB25C327414C72B1 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 60048274722CA6F80CC4A99152E981E4 /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + D9738A5D5063C4AAD2E2DCA6BBBEA999 /* F14Set-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 69B07D62B4420F1F79859BE4CEBE6317 /* F14Set-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9816DA79E4A89D012EDC77D599C79CD /* FIRCLSHost.m in Sources */ = {isa = PBXBuildFile; fileRef = DD7A1D12AC47F0A2F9DB230C5B19CCA8 /* FIRCLSHost.m */; }; + D98D5E0F70D655730F87FDEF7277F9B0 /* REATransitionValues.m in Sources */ = {isa = PBXBuildFile; fileRef = 225B31F9882865796B3764AE575F14B9 /* REATransitionValues.m */; }; + D9979D4C0853054CCA71AB8B13AAE6D2 /* FingerprintPolynomial.h in Headers */ = {isa = PBXBuildFile; fileRef = 93F5D0BEA9EEDC395520623630745A92 /* FingerprintPolynomial.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D997D811B799C6F563F7A549E2622A89 /* Singleton-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E0F792E72F8179297D7FA3C6EDE6C734 /* Singleton-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9A221A4D8C2277FE9AADCDD1BA5CCBF /* RNNotificationCenterListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 660AB5C7E94D9F3FEF94F33259865B5F /* RNNotificationCenterListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9A4B1CEC3F8F1E58D71FC63B7157A77 /* FramedDuplexConnection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DDC9FC6CAA3FE7456CC806F378220131 /* FramedDuplexConnection.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + D9AA422172FB18F295A44E0E50907FCF /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 68C9E6D3EB09E903470E81DBF85202E6 /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D9C007F8515910F392AE437FFFB668B7 /* FIRInstallationsHTTPError.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CD4739532193BEA6F2B46CE2CAC3A2A /* FIRInstallationsHTTPError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9D7640C312E4F5D10B045C66F25D16D /* RCTConvert+RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = ADC19C5F25BC45B39BBB809E36798BF8 /* RCTConvert+RNNotifications.m */; }; + D9DB265BD5ECBEB3A4CA1F30BF923A0E /* BSG_KSSystemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 357963FAA9DC468CA01E17439E7FDD5D /* BSG_KSSystemInfo.m */; }; + D9DFBDF32AB87D1C4EB6859F8A76C74B /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 76DC70ECDB4F06A59740A2EF006983BE /* RCTPerformanceLogger.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D9E55E55808083151D350DFE70673992 /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = C1E1432BBE969A04A27A1692A1197129 /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9E56CAFC3D3CA6E9278C409750D1D92 /* IPAddressV4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 100412FA16CB816F8170F047DB52EF09 /* IPAddressV4.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + D9E6889BE1390C1ADDD017DF60828CAA /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = B02D8D43A8E6786CF62BCF30E24A36D9 /* QBAlbumCell.m */; }; + D9E9C329BF597E2E428C2D675E8A86F5 /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 792FFD4B7461BB989E9DBD562EAB13A6 /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9F50AD2C225F2BAFB37B63EE3342763 /* SDAssociatedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B4CE6901EC9E33F4A67CF767719781D /* SDAssociatedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA0273ED3C6B6C8E35B2179344B3425E /* RSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 552069D1E4D7D8A5F376A2B75A54636F /* RSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; DA12577AE96A6BA6526A239AA272C315 /* FBDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CEEAEB3328E9D73020B5EB925D69D19 /* FBDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA1BA0560F327508EF0FD5D6AFCB7B58 /* AtomicHashArray-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 68B8924F51A5D653C23A9DA652BE953B /* AtomicHashArray-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA323FFCFF624A6EB3DC5FE1608F4B27 /* TcpConnectionFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B1CC5F300C379D9AFF7A7F9E68C4BC16 /* TcpConnectionFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - DA46DD69E7DD446DE9AAC5F2700E6FCB /* CString.h in Headers */ = {isa = PBXBuildFile; fileRef = BE4B2EC9E780573AB23F987993FB301D /* CString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA4ED7B7A3A35358A2CA5DE4CAEF4B42 /* AsyncUDPSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 1857653120D5622FD9F39A9D005F8B7E /* AsyncUDPSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA6D334DE6700654AC345035E758B4FE /* SharedPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F3B6EF4D34085B601971A0296E98F21 /* SharedPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA8B54BAAEE5456EF6B32D9F2633B2BE /* PriorityThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 55B349C864E792E7F69E016CCB3CD3A5 /* PriorityThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA927E3A65AB77F6EF1CB19193C7A2D6 /* vp8i_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 4340B7430F3D81B338E9EB775A64D8D7 /* vp8i_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA9AA176337618B6466E7F9E7EB803AB /* react-native-simple-crypto-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E369252A69920EB832267852262ED84 /* react-native-simple-crypto-dummy.m */; }; - DAA0799B6C29AAC2C864FDC8198FD70B /* JSITracing.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B1C9F71987AC60FCAFC42E3641B09FF /* JSITracing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DAAF066DFEA301397BBBE5F80072A851 /* FIRCLSReportUploader_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 50C41EF12D05B64B2E575D8C73550625 /* FIRCLSReportUploader_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DAC40F37997A253C771E98CE0FFD7358 /* SDImageLoadersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D4E8533611C40EE3FCB6EF0597A4181F /* SDImageLoadersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DAE297CF10DC946177FD909FB0EC5F21 /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = FC5DBB2DE839D5DDED62B77AABF05CB8 /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DAF721E8B4DD480D082BEAAA7E85CFFC /* F14Table.h in Headers */ = {isa = PBXBuildFile; fileRef = 289FAC143E9FC44F43C2C9F3BFD11E1C /* F14Table.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DAFA4F79B80F4FD701C7B5E282C1BF6E /* LockFreeRingBuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = CEE0941739C9D8C648BEE31B28E6BAB0 /* LockFreeRingBuffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB0000E6D0AF3CDDF957D43DFC579FFB /* FBLPromise+Reduce.m in Sources */ = {isa = PBXBuildFile; fileRef = 0271636F098B9253BAF63D59B427D695 /* FBLPromise+Reduce.m */; }; - DB28987D50CC4087ADB240C15EFEEF39 /* CppAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 61FAF4CE050658BE2F201783FE487029 /* CppAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB33AD22673372B02DDC3AC3545D1B66 /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D3CE76F3A02E877482F1A9980ECEC0FC /* React-jsinspector-dummy.m */; }; - DB429C6AD36DDC50FBE3D0D0196DA61D /* REATransitionAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EE14648D3ABB02A2BE71F10A6166BE8 /* REATransitionAnimation.m */; }; - DB5501D8315E2BCBB882A376AED5DAEB /* Pbkdf2.h in Headers */ = {isa = PBXBuildFile; fileRef = E829F714475EF6F063CF6C938929BFEE /* Pbkdf2.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB5B46E4B13B21942A608C38709619D0 /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 04EE6D85344BB560A07B1DB6773B6A74 /* decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB719BB2F98F2A9E41B1D82572BBC44D /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = AAACB7805F83ACF416453DB8B5686EE4 /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DB864CC7CBFD594EB9D998C477FBA93C /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = E4A5AC96B92CF782E2E8B80ED46C299D /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB99EB0A32181DCD61F85DBAB6B42247 /* FrameType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CBB9ED84AB9A1E593EF7C4C7413E06F0 /* FrameType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - DBAAA332FD61231ABFEEB0A5E42637FF /* ipv6-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 72835F36D45E0327A28A757A7B2340F9 /* ipv6-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DBB2F9754690951A904C68188C09ED2D /* REAJSCallNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B754C3879846382CAEE216F479D3A81 /* REAJSCallNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DBD18AD3708BEB80066E59F9D6B40A57 /* ConcurrentBitSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 12B923F05BC76AE6BE7912614DF2CFC6 /* ConcurrentBitSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DBD6364290F60D7AE034FC194936D145 /* Flowable.h in Headers */ = {isa = PBXBuildFile; fileRef = E0363F552304962F69D4227E89A03FD4 /* Flowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DBD9D1B31B5CAC9117044B7203139470 /* LifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = A83265905D820ED86E7A6C8F2B1722CE /* LifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DBEDE29DC3CA3CD032C223DAD9F5E29C /* dec_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 56C70B4DCF1B4B7B72930A3391747A64 /* dec_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - DBF97A0339381FA0FFAC4E7D150BBF1E /* Fixture.h in Headers */ = {isa = PBXBuildFile; fileRef = 05C29C67833AA8536353E274D98D3DF9 /* Fixture.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC02A348C83446CB68ABB15F665514F4 /* DistributedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F02EE84B34FF166699B9607FA173C25A /* DistributedMutex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - DC1B79ED45D977B2D98E7BA55FBE9338 /* OpenSSL.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 134DA3EF0958741484AC765F914EC417 /* OpenSSL.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - DC41E7B6211AA15B2E8AB03B6C8BC00B /* UIImage+CropRotate.m in Sources */ = {isa = PBXBuildFile; fileRef = BA1EB84932C3877DF0FC3BAC3427CC29 /* UIImage+CropRotate.m */; }; - DC430A28D94C37FFE31A9ED77DED3466 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = B09923908C0ED67A7B5131B7BB580CEE /* de.lproj */; }; - DC4C623B109F8BA865FBD66631EC4A3C /* TupleOps.h in Headers */ = {isa = PBXBuildFile; fileRef = 634C827508AD23CC96DA5F402D7C9362 /* TupleOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC68BDC2BF42803A5517D4482C7C58C7 /* InterProcessLock.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A922CE6E628589CA169E46B45E4FEA3D /* InterProcessLock.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; }; - DC720744AE85D7F996DBE494F42502BE /* GDTCORRegistrar_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D0AFB3AA334082BD476F588855D6AE5 /* GDTCORRegistrar_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC79F9E518ECE962C6156DADC52E9FA7 /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = 45FB3F7CC6A63A51F47CF5D70049EC1B /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC94B415B76001754FA46BA55FCDD2DF /* SingletonThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = D980C0A62EE8742795B8DE601B15EB93 /* SingletonThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DCADDE3A158A8723350275DB2579DD73 /* GDTCOREvent.m in Sources */ = {isa = PBXBuildFile; fileRef = E15545D395D44A2CB1B9694E05BA0A65 /* GDTCOREvent.m */; }; + DA26A62676193E5AE666016857349688 /* FIRCLSConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 02A8C77EFD540D767BD0CD3496846B86 /* FIRCLSConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA3A6D4B91E98084D3B36D771775F171 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 50CEE436DC02365678F6BE65F5CB4CA0 /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA5B234D2C7447805A850DD2CF2ACD7C /* FIRCLSApplicationIdentifierModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 01609FC711059045DED41A7F851F5D95 /* FIRCLSApplicationIdentifierModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA5E041BEFF72C59C071D7258A59A8FB /* F14Set.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DDD0E4D55A3F32EBF355204599D60A0 /* F14Set.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA91581A135FBD08725A415CD0ECDC13 /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = ED50B52E1E0AF213DCD66EE91D277AA9 /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA91A5760E369728340BAE8F57D0A9A8 /* rescaler.c in Sources */ = {isa = PBXBuildFile; fileRef = 7397E539A39B1BE430B7A86A3D7AA9B3 /* rescaler.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + DA9AA176337618B6466E7F9E7EB803AB /* react-native-simple-crypto-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 86F6DE72AF784651FC53232D648747AE /* react-native-simple-crypto-dummy.m */; }; + DAA5228B008C0185D8C176AF7531098D /* NSBezierPath+SDRoundedCorners.h in Headers */ = {isa = PBXBuildFile; fileRef = 06ECDC5ED362821B60045388E5F81984 /* NSBezierPath+SDRoundedCorners.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DAC5C94AF7AB1BA34AF6931A68C5EEA4 /* QueuedImmediateExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0F7ABFB07A02E065BC573837BB2AFFB /* QueuedImmediateExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + DADF7CC02FCF98E38F97F37C36E88327 /* FIRCrashlytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D62A205D7B6D909481AF0182C083272 /* FIRCrashlytics.m */; }; + DB1270F702F323E608761D625B2F42AC /* GULSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = A1BF68D59DC67100D469927A60889975 /* GULSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB24AFA9CF5BE1A91B8F5ECE5C2E31C2 /* FIRCLSUserLogging.m in Sources */ = {isa = PBXBuildFile; fileRef = BF6EEDE5D31E9583322CA71355AE74EB /* FIRCLSUserLogging.m */; }; + DB40E542043D4AC2BFCDC4174D8AE521 /* cost_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = DA6EA58A70A87346A369EECF66BD4BC8 /* cost_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + DB429C6AD36DDC50FBE3D0D0196DA61D /* REATransitionAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 32423B2579BF05539AC55667519D1939 /* REATransitionAnimation.m */; }; + DB5501D8315E2BCBB882A376AED5DAEB /* Pbkdf2.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EACE304750D1CAA3FD4150AB0A736B1 /* Pbkdf2.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB7262BBB4F834F3A01B925C36904813 /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = 27AFB0003553227843B979313B68397D /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB7670CDFE36D5ABD929F278C60440DA /* OpenSSLThreading.h in Headers */ = {isa = PBXBuildFile; fileRef = 37920939AB5D980EE983073A8D803CDA /* OpenSSLThreading.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB7B67449561234FC6D01F91A37A14D9 /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 83F37D98A00763F81E61FCC64732810A /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB8B3B153135F5ECF31EE1AB8F2E6DA7 /* Poly.h in Headers */ = {isa = PBXBuildFile; fileRef = C00EDB550A0E30C35EF12C0F95474382 /* Poly.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DBB2F9754690951A904C68188C09ED2D /* REAJSCallNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A40D35B3E223EE3A59C70211AF70DD57 /* REAJSCallNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DBC6FACD2511EA706CC5B0A95F5DAD28 /* StaticConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A04C5093939CC2837C05F0DF48DDCAA /* StaticConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DBEA75B0AE2F043D833BACC0A562B65A /* HermesExecutorFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4D2FBE8FEFA4D8FD974BDC25702872C8 /* HermesExecutorFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DBF2434A96C2E42D1ACC6988DBB62BA7 /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 95C952DEB1AD9F4915CC2757BC264465 /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC0803998AE54A4AB8530C7E5B4B513F /* FIRInstallationsErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 0799A00B1DC38572550D734432304845 /* FIRInstallationsErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC0EB06A66F21984C2EB2E996098C5DF /* AsymmetricMemoryBarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6697BFBED15299BCC3A039345ADA674 /* AsymmetricMemoryBarrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DC23E3E8977BCBD29CEB5F71651AA6E1 /* FIRCLSThreadArrayOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = A6B2FA02FE906EFA9535232DB0BAF5D0 /* FIRCLSThreadArrayOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC2C1429201667273E0DDB3D64838FB0 /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = BF3037CDFDFCB0CB5E66960695EEF907 /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC41021FE286A094DCAC89B11B6E4B99 /* RCTFileRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6F1A6CB5AD58A8B648B42C549671774B /* RCTFileRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + DC4D5E9EB8940AF380BDFD5C67A8C252 /* PriorityUnboundedQueueSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 8263CCFE9BAAD61D8DE661674A7EA03D /* PriorityUnboundedQueueSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC52B33D5A84CFEA074BFAA9C4B4EE3C /* SafeAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 733ED06FBC1F2020F12228873F997D20 /* SafeAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC5381B47E4756E84E90722FA138338E /* epolltable-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DFA608104A26481888AF421986C11E4 /* epolltable-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC6E6A1A98E8B24F39EA0D6181805A66 /* RCTGIFImageDecoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8BEA84648DD179648D9C23A7512E5D32 /* RCTGIFImageDecoder.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + DC7C5DDFA528B734F5DD2CF9D567E2DB /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 80313E41FC783BC7ACFB49F771393302 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC7EA3F3EEA542ECA961CDACE2717DF6 /* FIRStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = E84B304A0A3E5E63A9395D43DACFBEC1 /* FIRStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCB4C62D443119ED8477FC9E8B8D97FC /* FIRCLSUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = C3266B4D8442BC0F9230B842A2B712B9 /* FIRCLSUserDefaults.m */; }; + DCB591F70D024C7AAC42AA36CCB49F25 /* FIRCLSDwarfExpressionMachine.c in Sources */ = {isa = PBXBuildFile; fileRef = CE30F05F7BDE8ECCE8129CA563DFC777 /* FIRCLSDwarfExpressionMachine.c */; }; DCC3DA2DE9E5E380C04A72257BAAD392 /* UICollectionView+SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = 25A3922725F2DB608224CDDA8A856D1A /* UICollectionView+SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DCCFE3AA2D4114BBBB16B880EFD0687A /* SharedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = FF6809C3B5759B98830548E16DE1858D /* SharedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DD135A8F355394D6742305617485FF53 /* SysTime.h in Headers */ = {isa = PBXBuildFile; fileRef = EC68D88BEDF536EA7336B88F76A1E0F8 /* SysTime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DD42C48821A03478C4B7EA14AFB70EFE /* AtomicHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 770C9E7B377482C3CDAC5BFD3DBD94DE /* AtomicHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DD655438562A2CA74B65D9DAF0843833 /* CString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 90358B946F0DAB2C5B52E737964E5B0B /* CString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - DD7237B98108490885E4BAF5E8AF6EB4 /* Flowables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23FF30501568EB42FA7C87FC4B4E0038 /* Flowables.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - DD75B565DBEA6008653F92BEA8704A9F /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = E4840827025F06AA40F6ECA03F460647 /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DDB71F3A4E02B8BA895E7C3F505D0F0C /* OpenSSL.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FDB606CC614250FF6B4EC84434F465A /* OpenSSL.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DDBB3A437E7A71A3F4547461F9C13038 /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 07E05E20935578086C3DCD67D966155F /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DDDFE4F0A99DC9E468D79C082CC014C7 /* Poly.h in Headers */ = {isa = PBXBuildFile; fileRef = FF502F3EBDB9A79E6731736B20C705A2 /* Poly.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DDE6B41F7094F1C60CB1ED6956E903FE /* IPAddressV6.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46CD1A9F5FC1F1EAE2FBD43827A6D039 /* IPAddressV6.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - DDFC9C22402CE4D3A0BC2C1F6465FCF5 /* Semaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 701E5530C6B17E2445815FABEF3968E4 /* Semaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE01B4FBF2AA159CA5C25A61A3FAD949 /* HermesExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = ACF4D2F029752CBF4A1A59669F8AAEBA /* HermesExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE100BA58C61CA92EEF6031EF2DF6068 /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E3EA0186C82A8DF7D7102BB4982E1AF /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE141D9D8A59E7BB0A7EB5457FDC36FF /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 4257DE517EBD8606610FFEC462A56B0B /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE1739256BEBB8B308A4D3372925DDE8 /* rescaler_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = FE0A9EDABB70F6E69735C65E4CB586B9 /* rescaler_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - DE1BB499D5F47309D10E947E3E612271 /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = 1425036E1E70E9B6A854C3FF2021A238 /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE1D10CA3B3E0943FE5166C884369971 /* IOObjectCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B2797F574294906070F7BE48ECC1B64 /* IOObjectCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE3B56D5420B33673E24DDF32E842FAC /* REANode.m in Sources */ = {isa = PBXBuildFile; fileRef = 974A272B4732005D116BD3E0A4F87873 /* REANode.m */; }; - DE3DD7AE80760AAAA9172BCB6FA4EC79 /* yuv.h in Headers */ = {isa = PBXBuildFile; fileRef = EC406A8E1DF9CEE11C8A055B76618D94 /* yuv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE3FD4F9D818FF85FC81E842A74F24F7 /* FIRCLSDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 70E5267514362AC438D2016BFB6782C3 /* FIRCLSDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE47991D1CDF1A1F43FC1AFD8C200FC9 /* ar.lproj in Resources */ = {isa = PBXBuildFile; fileRef = D138EEBF36D8E69C1BB1C575F483FB4B /* ar.lproj */; }; - DE63DE9A38879C344A03A442684C8E4B /* Pods-ShareRocketChatRN-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BAED847E8A22919EDDB894F3B4C38BFF /* Pods-ShareRocketChatRN-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE797632FFBFC6A8A40B7311AF186654 /* FIRCLSNetworkOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 88F8A7279BB40AE2387BE1D231002F03 /* FIRCLSNetworkOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE8AAFD75F72F9350D0F14B73468990F /* FirebaseCoreDiagnostics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 484E5B8BC9CBD9EC6129C95BC0566EA4 /* FirebaseCoreDiagnostics-dummy.m */; }; - DE907C27F82487B7CFD1CE3DF43BB72D /* BugsnagReactNative-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B8968D530ABEFF71757BB9BE16BF12EA /* BugsnagReactNative-dummy.m */; }; - DEC61401CCB38577E3042ADDC12B340A /* GFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EBC48E874B62E68701ECFA4FB7CA363 /* GFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DEEA9075164808E3035CB093BC7FC653 /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 3501A0E8858D7CA4FFF44669F44ABF9D /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DEEEC939BBAB6D133EE4AF8517F3D6C8 /* BSG_KSCrash.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BC5A4A6BDAEACD8A00C4CC082D99FC7 /* BSG_KSCrash.m */; }; - DEEF43CE8752A67BD4D3C2EF4CB10764 /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D21615D5B7787BF89AC75BFFE8280EDF /* RCTBaseTextInputViewManager.m */; }; - DEF8B1D8A1FB45872B984C27BE64024F /* HHWheelTimer-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F2C767F744E3778FCAA39E128F8FBF0 /* HHWheelTimer-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DEFC9E125F84D6F8E772B1CF4D916A07 /* FIRCLSCompoundOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DFF3208242ED749C395BE3D2E37E627 /* FIRCLSCompoundOperation.m */; }; - DEFC9EC89AB6962E3F5C710B1A591E3C /* RCTLogBoxView.h in Headers */ = {isa = PBXBuildFile; fileRef = 61BEFA697114506898F5EF0F02F44C7C /* RCTLogBoxView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF2CE038D932876A40DCC80498C14B17 /* FIRCLSURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = BA68EB70167AC162F9C6BF90C3190740 /* FIRCLSURLSession.m */; }; - DF2CE400AE17613CBF36FAC15EA1E5A4 /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AAE599F3880E67FC8440567F9FAD422 /* React-jsi-dummy.m */; }; - DF67DB63E2520633BD1403999726214E /* GULHeartbeatDateStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 41FA13DF57954BD5E585AB26E68DE195 /* GULHeartbeatDateStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF723ACB675EA209AAF7AA94150D5CF3 /* FIRConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D491A5BE778C93D4886A5C866040891 /* FIRConfiguration.m */; }; - DF887D34E44D534ABE630EBC09666D91 /* cost_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = B9168CE688658C39AAA643B653709B19 /* cost_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - DF9556B84ADFE4CE9EE11C32BE59194F /* REATransitionAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 8362362156D5E925271D7E0EE22A1520 /* REATransitionAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DFA4E5575927B7F13BDFD59D212B5C15 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CBD13E740A98CB3DE73F9DF0337B28B /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DFC0957D191C9C66AA9B842ABC8215A0 /* InlineExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 71D33565832EF9643AF1A9C72CFC9A05 /* InlineExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - DFDD7C67B994BF274564A9C23B13DAE4 /* NetOps.h in Headers */ = {isa = PBXBuildFile; fileRef = C702EBD3C9260919ACAA7E0A82E95960 /* NetOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DFDD8E138C927BEA0355808117563ABC /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CCB552BE9C6ECDBB89B41EDE178BAAB /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E00057AB5B50445806AEF992AF09CD3F /* NestedCommandLineApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 3358D2CA5F4B26E8D42DF90BC66436BD /* NestedCommandLineApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0280F71D9916D399E7EEAC0AED82CB5 /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 21329FB0685D071C3B316738C047E981 /* UMViewManager.m */; }; - E02F1491F16B8B79AF9002E9058B104F /* FIRComponentContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 294353905D4A2AB06259E346B63186D5 /* FIRComponentContainer.m */; }; - E0374AAF32D6DA68850F5E67636EB887 /* MMKVLog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F8D2E7E327EF00F423CF3CB0003837EE /* MMKVLog.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; }; - E04085550F0C1672275BA45AB5C13DE4 /* Foreach-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 84A7E4EA97CD08BAA03992168255DF5F /* Foreach-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0412738C37357D395B72011E437EBD1 /* Lazy.h in Headers */ = {isa = PBXBuildFile; fileRef = F706C3AD388C5F7FBE62C7B79AE8E90C /* Lazy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E041423099612909D4CB8E39DEA1AC33 /* IOBufQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CCD17A67031E9AD6CB5C8FE0052D1EE /* IOBufQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E05070D25885B36129E52C0862B2E5B2 /* ARTGroupManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EB50F3330ECA296E55E98523B523E7E /* ARTGroupManager.m */; }; - E0857B46FD1EA2B56B7D051FA3CC5C61 /* REANodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 79E3ED98C72D10CEA3B2407F751510F4 /* REANodesManager.m */; }; - E0B59B9295BB44A284B36AE953330A80 /* FFFastImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A45D5B7698A7B7C901DDD3AE54564605 /* FFFastImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0C74EBAD5EA1E588C4565B77D8D13F1 /* RNJitsiMeetView.h in Headers */ = {isa = PBXBuildFile; fileRef = 001A02A83A7692A8A79F45A266DB1EAF /* RNJitsiMeetView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0CBBC046E288B0AD21A91C31B30C24A /* MPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = F350699D1059C8E80FBC4C4DF05A2B0E /* MPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0D9BCDA8D66172E73C082BF536A8B09 /* GULUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = F80EFFD5CEFD057F6C9AB017625E04C0 /* GULUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0DFBC1B4CDB50066A06D702EDB7A048 /* RSocketException.h in Headers */ = {isa = PBXBuildFile; fileRef = 9029E13E354946400DACF29547B6439D /* RSocketException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0F4A1FCDBCAC49E10D1CFBBEF678B1E /* picture_csp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 9827822A10AE401C50A145D0783F598F /* picture_csp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E0F7F9C64E82E9B5773758CCEB3EA788 /* vp8_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 058BEC2FCC8D1DBEBCBBF9C636C2C347 /* vp8_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E0FCE871C2AC0B08E05A42D7F52F6754 /* FIRCLSUnwind.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EA1D92786FCD194CDB476F296BED4AD /* FIRCLSUnwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E10D5565299FCDC9BAACFBA2698A5584 /* BugsnagSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DB9CD724A87ED3DB923BB48DADA5884 /* BugsnagSession.m */; }; - E11114F0DDAF5BECE3F6FBF4045F8097 /* PropagateConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 06EF2F083C06FEFE6A287DC283072E67 /* PropagateConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E112BA47CE3D96CD65F22715DD33479B /* FIRCLSOnboardingOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 08A2D3ED61203699C6E69AEB06D1C0BA /* FIRCLSOnboardingOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E1200C7EEF81966A8D8DA8B96352E2D4 /* bit_reader_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 45420B71146AFC154A4B2DF43AD79E2B /* bit_reader_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E1510AE684E1E887D55C08635B4BFC58 /* Checksum.h in Headers */ = {isa = PBXBuildFile; fileRef = DDCF0E1C73520263E3B6793D999FC73E /* Checksum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E15618937B890A90D42451BA942282E7 /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ECDFB77ED55DDC152572476C28A6383 /* RCTSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E17FC522999B7418C2EFE30B6E02BC04 /* AsyncTimeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 81EBB074B75AC78031E9362402A44DAE /* AsyncTimeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E181EFF1D82F2C246F3C692C681462BC /* REAModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 007537A3AE7D930968AB89BB4298297A /* REAModule.m */; }; - E191687099E50C3D1C1293565FB786B2 /* Future-pre.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BFB4F0358B1ACEFB5E3C7512D6AD07A /* Future-pre.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E1AA5FAF7E97B66515FE85FCE84E1EEB /* FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F0271863C4BA41E4574C7D6BB595537 /* FIRApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E1C3928127A15444EFCEA2752E3F6429 /* RCTJSIExecutorRuntimeInstaller.h in Headers */ = {isa = PBXBuildFile; fileRef = 31434764D137A55B9F46647ACC703C8F /* RCTJSIExecutorRuntimeInstaller.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E1C92AEEAF907D9FBB3D536670867DE4 /* UMAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B21F32BA07D0FD9583EA741D25ED58E /* UMAppLoaderProvider.m */; }; - E1C9B71A4922A8BB6BAF9D61EE6713F1 /* FlowableOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 49A802672B0D87070DE29302B001CBCD /* FlowableOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E1E8D74B6DEAF85073752EB8E2E0C9A3 /* RCTCrypto-Bridging-Header.h in Headers */ = {isa = PBXBuildFile; fileRef = EC800AB4F913D98C62850585DA4CDB3B /* RCTCrypto-Bridging-Header.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E1F30758C1110495B90CE71EF933B62E /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = 677A0291688B635D3F8CBAEE82288760 /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E207C9154C834D67A2562D1BF8EE75E7 /* FIRCoreDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = FC6D40DB7C45B03A921125161D7D475E /* FIRCoreDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E23296DA156E1D70D51A62956262932C /* Synchronized.h in Headers */ = {isa = PBXBuildFile; fileRef = B37CF269BCAE8B7D2A9F579D77ED442F /* Synchronized.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E243AEF29FE58D827CC07DD118AC0F1A /* SDWebImageIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 883E39C9150F6F0FFA19107EE0D2FC9E /* SDWebImageIndicator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E248E48878708B282398DE8B8F152568 /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = AB22F01A08BB12BFA3F69194EBE722CF /* Config.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2494524ACA7CCAC62E1BCC82E2D2A63 /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 234DFB6C65D79446F64AC817870B9DC0 /* UMReactNativeAdapter.m */; }; - E24CC29D5F85C3BD523EDC2D9BE20006 /* libevent-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D196C4EDEB47415D485A0236AC6D8D3 /* libevent-dummy.m */; }; - E267F1B0D559FA8608FF5D8C599C87F9 /* ScheduledRSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 98CA4C533F56EA8774B37B7E5CFD6E7A /* ScheduledRSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E26FC3B985D2A23DFDBF98617DB5BF9B /* FIRCLSConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 02A8C77EFD540D767BD0CD3496846B86 /* FIRCLSConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCC486E06B438F7952630278E1089691 /* FIRInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B32040CFCC394F3ABA8903C6AD30C71 /* FIRInstallations.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCC4E9743FB4D744B3F776C28E2CA9BC /* Executor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 472D02EEF0092AF824E9106FFB083347 /* Executor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + DCCA6EF3D161D03493D6CE42AE0C4725 /* HeterogeneousAccess.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F54D13B31B2191DE26549C9CCCE60BB /* HeterogeneousAccess.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCE446F21BA7F3772780ACCD62C28739 /* quant_levels_dec_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 5E650516DB771BA1A51A67A821704DA4 /* quant_levels_dec_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + DCFA2E2EEE02F9B231D85A8D66D82089 /* GDTCORFlatFileStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = A95381923A4483CA559F35A6430C2197 /* GDTCORFlatFileStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD081433E41DE52CCBBAE3180F4101D5 /* BugsnagUser+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = B50E418173626EB95A687FAA9F1361ED /* BugsnagUser+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD169F5C2F1D754944D10F6145EAD5DC /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AFE9F1D8D32C245F4D11F96848D588CB /* RCTSwitchManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DD2AA1140A7BD95979BE03E8D2686ACA /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = BC06AD0CDFCDE2EBDF8C53D6CA3E097A /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD3E6E1902E40CC6F8AA31C643F4C811 /* evbuffer-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = D567A3C8BCF2DBFD5392F80573BD4FB4 /* evbuffer-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD4F379A9919A17472C3446915D48F66 /* lossless_enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 181BB8553F5626DBE6B2445592F321BF /* lossless_enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + DD50E4101B1B9D10BE6E079AF19111E5 /* HermesExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = D746FBE13B9C27EC693E1F439D3AB800 /* HermesExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD5A91C88C50B6E345164EE16875FCD7 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D3F24519187C0062D2335EF4A06B631F /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD5D2ABF03FE9935FB11BF0F64FE9638 /* BasicTransportCertificate.h in Headers */ = {isa = PBXBuildFile; fileRef = 95ADE5F1DC7D299FB47B126861411FA9 /* BasicTransportCertificate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD6A7331C782135D32653E0BED52374D /* firebasecore.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 31F5A89B5ABCFC4ABDCC5D2DE0378269 /* firebasecore.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD7FDFC771C3584A42A21F45609A0DF1 /* TimekeeperScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = A09076E9363084BD2F32C9CFAB0F4542 /* TimekeeperScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DDB186BBB355BAE984A900B3699294F8 /* GULKeychainUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 14833B7595C20284FE302A11D245BE8D /* GULKeychainUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DDC59E287FF049BB667BB0B791D9BDF7 /* EventBaseManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 03AA07AD50C90033067A6D07CFA342DA /* EventBaseManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DDF6DFA184C997891626C5C3A47C257B /* FIRCLSFeatures.h in Headers */ = {isa = PBXBuildFile; fileRef = DD6E84E7343B2D60B6A59A0E7D041EEA /* FIRCLSFeatures.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DDFBC3EFC013D9246025E07C6DACD3E7 /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 533BF04B4077FA2D7C5F3204BADA4DAF /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DDFF865D8D064E0B6075E1461369807B /* RequestResponseRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F8B9DD0F5D0C01D1578E7363E4E1DC9 /* RequestResponseRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + DE1C14D01E85896B387B87D2284F4AB3 /* FBString.h in Headers */ = {isa = PBXBuildFile; fileRef = C79056AE4E814424756A05CE2F5F997D /* FBString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE2671A20D07FD176748B24C52A40828 /* CString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 90358B946F0DAB2C5B52E737964E5B0B /* CString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + DE37170FE1DF4C4A49165D0441232C6D /* DistributedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 2739ED4AC4CA3076A994D92159F6CF55 /* DistributedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE3B56D5420B33673E24DDF32E842FAC /* REANode.m in Sources */ = {isa = PBXBuildFile; fileRef = F42A2624F056C94D80F5503354B73FFC /* REANode.m */; }; + DE58086041812271F3833AC3559B3404 /* ScheduledSingleObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = D90A516468223E4268E626853F28BA1E /* ScheduledSingleObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE7817AE8DE28073A58E0980D75417D5 /* EventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 26785966E130F952CD8CB3ACCFD3A7D6 /* EventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE7DC2A119709F925CFF7C472006F34D /* Unistd.h in Headers */ = {isa = PBXBuildFile; fileRef = B334C8C9484417B4553E4A2ADA7991EA /* Unistd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE7F31B717C1AFF9AE9855BA794E870C /* IOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = 07CC778AB6214B8185DC0E6A75BB8F83 /* IOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE9A812C1D07F06E232DAF78B5F275CE /* SDDeviceHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 041B9921682550847342142D5C565844 /* SDDeviceHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE9E6432F63DE00E6C4E76AA48F5B3EC /* evutil_time.c in Sources */ = {isa = PBXBuildFile; fileRef = 8069BAC4F69AE5E45CBB8F33CB396B67 /* evutil_time.c */; }; + DE9EECAEB02E90C521E3EE1E8FA0E1EC /* RValueReferenceWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 955FF74652B28A8FB2FF9E3F715C9545 /* RValueReferenceWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DEAB09F0EA0C46D82A7CB5A98B9F93A1 /* bit_writer_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = F20A431211371FE48A41C08351C700CA /* bit_writer_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DEB2EB6994835EE62BF927E7D5FFCE42 /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1758A6F4E7F4EDB8C7347927B69C4110 /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DEC474ED66B696D8408365EAB5156FE3 /* Builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = D5871C9F2D5BC90B1A9AB94AC972717E /* Builtins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DEE1DE6BAD057DE55A402BAB9EC971C1 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EC7BD368C6B452764445084F34B5EFD /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DF16F4DE7431CE790556C323F0863251 /* Observable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E456B5367A75D26021F4533FD7F0291 /* Observable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DF181CC0649D43E56891EB25905C1BAB /* CodedInputData_OSX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD30F9D9684EBC52D35FC0E36B792B13 /* CodedInputData_OSX.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + DF41FDC835C9BCC2D838A0AD84DBF932 /* BugsnagReactNativeEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = F136C717FB0B4F7B7A23AF3EFAA2FF44 /* BugsnagReactNativeEmitter.m */; }; + DF44B3B16907193F463835D0D8134D16 /* FBLPromise+Await.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E88485AF27879EA1753CBF403408C7A /* FBLPromise+Await.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DF4B52A0F364CE66DE67D667D69DFC2D /* FIRCLSFABAsyncOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = F71D2A9EEEBCF6C9678A20634F0036C8 /* FIRCLSFABAsyncOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DF5366DCF4A15500578057AC06F9B0B4 /* TokenBucket.h in Headers */ = {isa = PBXBuildFile; fileRef = 23D92F955B626161AF653427B4BBB71B /* TokenBucket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DF5E2EA62D02D4D4A1246CBB2ADB8F8E /* IPAddressV6.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BFF647876CB7C31171CD68C2B2688E5 /* IPAddressV6.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DF6155000965C82531C7D91B846B7BA7 /* near_lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 93C97B60047255164EA4F8718B8EC42B /* near_lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + DF63D688EF74C85087F01384D4F70504 /* FBLPromises.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C92285652DE1BEBF56EDE5BBC235C1B /* FBLPromises.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DF7AC9B4F2B180734337D0063EF08A6E /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = F7E66212CF7771A3C2BB41F23B4A3798 /* RCTShadowView+Layout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DF85E8B7E8DA2537CB6C5868CFAE92A6 /* FBLPromise+Validate.m in Sources */ = {isa = PBXBuildFile; fileRef = C8C92828DAAD3DF19095AB319D64147F /* FBLPromise+Validate.m */; }; + DF9556B84ADFE4CE9EE11C32BE59194F /* REATransitionAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E386DC9A27321FB9860CF02FA9F8D03 /* REATransitionAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DFCE9FC9D7B2760398E849A1405D3783 /* IOThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 28D50C0EAC121DA5EA76E53EF81A12AA /* IOThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DFDB8A745CC983AD5A277564FF3B8372 /* AtomicHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 734E703831B26FFA5CD930FA8D15BE86 /* AtomicHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DFE59671B86E2E11EC0F3234177CDD9B /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E0CDCC5D6ED7F4BA5BD967EE9279F4B /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0074BF3D32BEE86A3053A56AA83EF78 /* GDTCORDataFuture.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A097A82EB5F9568D3CD84603C037131 /* GDTCORDataFuture.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E007E02271F546E9B8D8376023177D50 /* FIRCLSCrashedMarkerFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 464D88FB4501E834EE17D24AF6A393EF /* FIRCLSCrashedMarkerFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E02250DF77C1E2EAA629A4823968E917 /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0935676F54EB3972A0752F9B8008D1CC /* RCTProgressViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E05070D25885B36129E52C0862B2E5B2 /* ARTGroupManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E2C4F5D506247FD844878A1AA9B5B87E /* ARTGroupManager.m */; }; + E0739E40731A4673DF29B8721AA3F9D7 /* BugsnagLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 12BC7C47A9E234FC866C54A93E6763D3 /* BugsnagLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E074A92FAFC9BA43A47C45F5F611B6C5 /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = 18FFB6B8E3B72F4BA864DD9530CC7A6F /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0857B46FD1EA2B56B7D051FA3CC5C61 /* REANodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D700921BD027F1AA96650E3B71E9DC89 /* REANodesManager.m */; }; + E08EF91F51F1271B2BD7F533727AB7BC /* FIRCLSFABAsyncOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AB921F5A3DEFCBC88A0237C87AA2066 /* FIRCLSFABAsyncOperation.m */; }; + E0B59B9295BB44A284B36AE953330A80 /* FFFastImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 345FF1F313D26A85327F53FEF66D5C49 /* FFFastImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0C74EBAD5EA1E588C4565B77D8D13F1 /* RNJitsiMeetView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46F8E31A46FEC6CF9983BA7069B34C96 /* RNJitsiMeetView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0D01F18FBF0E7F1BFE86D87EED1B044 /* NamedThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = CEC466FD202E23F29881E8BEB39E7530 /* NamedThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0D527B58633D3FF8CF9FA991A945A4D /* FIRCLSReport_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 454E9EA0FB4C60C3075490BC8A0DE5D9 /* FIRCLSReport_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0E93A84EBA20CDD445AAB056E39D70A /* DistributedMutex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 53BC247758C79B3738AB7B8F4964FCEE /* DistributedMutex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E12A5DA02DAAED067B7D62596133CAF6 /* BSGOnErrorSentBlock.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D6A7D1051A44C58772B267CE3C0CB9D /* BSGOnErrorSentBlock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E130BDA5A728FB1624154E19747F60D3 /* F14MapFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D72FDDBC60397E485A899802B6F59BA /* F14MapFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E13D2DBC0C5F739D44100A7E44533913 /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C470A77658DF10376C0D0C59415D547 /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E16B561E1E6DD97CFF1FE312FFAD1FA5 /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F492C284CDCC72A9270CF65696729407 /* JSIndexedRAMBundle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E1721A2CA9E2F8E0A07ACF6F63792BE4 /* RSocketConnectionEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = A93E8BB7D84136FC86255E9EA99F0019 /* RSocketConnectionEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E17965B0328E7F8BE6634B28269E67EC /* GDTCORDataFuture.m in Sources */ = {isa = PBXBuildFile; fileRef = 9411A527A4DE7B8E9CA14E97E7DDA16C /* GDTCORDataFuture.m */; }; + E181EFF1D82F2C246F3C692C681462BC /* REAModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 20A19B867E87A3F15E66D9D7C0D9DE34 /* REAModule.m */; }; + E1846F7769E342C8CC122EFCFDFFFF49 /* FarmHash.h in Headers */ = {isa = PBXBuildFile; fileRef = E72C685352DEFE901EBBF6470E4C2F4E /* FarmHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E18E958D2C730FEF152AF9E45CB29DE0 /* BSG_KSCrashState.m in Sources */ = {isa = PBXBuildFile; fileRef = A81B190C680DAF19D634822AB23DBCAD /* BSG_KSCrashState.m */; }; + E1A0B76EB7A3746A55E41F8DB7C14008 /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = BDCD4150CA90CA54D93291168F2D3975 /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E1BC0D14ED3A587781CAE3748E5012E8 /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = C90799EA218551C7B83AA144EDE89E53 /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E1C08D8BB37248117121A8AAD57619B9 /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 479E5A6756BD9FAFAF7BDE8B58EA1D30 /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E1C92AEEAF907D9FBB3D536670867DE4 /* UMAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 042CB045CACE7AFFA4B656B882496E4A /* UMAppLoaderProvider.m */; }; + E1E7F6AE0FA5552149A6DAF46A638E17 /* FIRVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = A1017F5C6F53C539BC0122C7CDA019A9 /* FIRVersion.m */; }; + E1E8D74B6DEAF85073752EB8E2E0C9A3 /* RCTCrypto-Bridging-Header.h in Headers */ = {isa = PBXBuildFile; fileRef = AC997D5A6CE46D81B2A9839825070905 /* RCTCrypto-Bridging-Header.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E1EC97CD6A2CFBFBEF3A7C1F95357D0E /* Enumerate.h in Headers */ = {isa = PBXBuildFile; fileRef = B69368CC35C431BE1843055E90E0E6C7 /* Enumerate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E1EE9A2383D47B81240AAC2F8A5180F7 /* BugsnagConfigSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E14464624A16C87A3E048A7BD5D4F68 /* BugsnagConfigSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E20F8D73A5558DB8A285D2348303FBB5 /* FIRCLSThreadState.c in Sources */ = {isa = PBXBuildFile; fileRef = C95ECC7C9717D97B9AC7FD144C98ADF2 /* FIRCLSThreadState.c */; }; + E2103F6E72B586B0B789AB5AF1129ADA /* Checksum.h in Headers */ = {isa = PBXBuildFile; fileRef = DDCF0E1C73520263E3B6793D999FC73E /* Checksum.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E220520B33F0E2BB0B58F5DB6E7BE855 /* Executor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC3C2EC41A218DD33B6276EB82F35EF5 /* Executor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E238B035225EF52CD614F5A43D1D1842 /* BSG_KSCrashSentry_MachException.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AF4330BD6DD0F1AAC8EAA362E56F1F4 /* BSG_KSCrashSentry_MachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E23A708DCF25B7E9D64B8E5A35C925E5 /* DynamicParser-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E7FEFE9C75C4B0D2872A9B3DB2E10D6B /* DynamicParser-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E24306CF618953F06E4CEFE26434420D /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B9BACB0377CD8C8008AD405848F4D2C /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E248DDA578AB249E354FF39B372C5B20 /* GULSceneDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 842663EF20781EC453C3AB321DD4BF19 /* GULSceneDelegateSwizzler.m */; }; + E2494524ACA7CCAC62E1BCC82E2D2A63 /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FD65F73976A789DD9400A46AC219377 /* UMReactNativeAdapter.m */; }; + E24E2880B9541172E92097A2F2A41F8F /* FIRCLSUnwind_arch.h in Headers */ = {isa = PBXBuildFile; fileRef = A81308D786A9569FA6C94767535A684F /* FIRCLSUnwind_arch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E24E6BB4A43943E203A932C0E62A7E54 /* Flowable_FromObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F4298341DE529438F567BC7B6605C84 /* Flowable_FromObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2678CB85A787B8F52CFC6D6ED563BFB /* Enumerate.h in Headers */ = {isa = PBXBuildFile; fileRef = 92F409B54F566135765FA15FF2FD4B10 /* Enumerate.h */; settings = {ATTRIBUTES = (Project, ); }; }; E275864857518C091CD5FF4CEEE87FB0 /* PTChannel.h in Headers */ = {isa = PBXBuildFile; fileRef = 13BE33B0C55DC851925EE31F13B66FAE /* PTChannel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E278380EF8CEF766A5A20E0C27CB3DE8 /* evutil_time.c in Sources */ = {isa = PBXBuildFile; fileRef = 8069BAC4F69AE5E45CBB8F33CB396B67 /* evutil_time.c */; }; - E29BA7D776737CB8A0161E8D4D48569D /* anim_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 530F1C764011FFBC084B034896A6E8A4 /* anim_decode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E2A3567CDB3E36CB123037C1FA6D4E81 /* BugsnagSessionFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DA5A99E2912A30539AFF1F629597D6D /* BugsnagSessionFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2B38B0E73DFE014ACC3FCBFC43496FD /* FFFastImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CA9C2CF15A63F4CA8A773271762C929 /* FFFastImageViewManager.m */; }; - E2B428F0083AE8D04B8E7A27456E34A0 /* Codel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 785B606FC7774F8E8A8F2286341D5D4E /* Codel.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + E286B125FB87DD987B73E01676C9DF73 /* alpha_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = CF4BDEC955538583A9CAA48843409B0D /* alpha_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + E287F3777D57C93AED5AE1838AFF1954 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 35B7D5020B6E5BA9A2FE52CC9AE126AD /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2B38B0E73DFE014ACC3FCBFC43496FD /* FFFastImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A930981C438F317DEF84316287E3A808 /* FFFastImageViewManager.m */; }; + E2C0076B7E76F787D079378C56AFB9E4 /* GDTCCTUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 46BA6E771CACE78454D8AA68F8424498 /* GDTCCTUploader.m */; }; E2D24444928BD2DA8C9796FB4B3A7EFF /* SKButtonDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 39AE4BCE95194D82309404D0B73449CD /* SKButtonDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - E2E034EDDDFDF4C7C023BF02025214CE /* FIRCLSURLSessionConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EC80EEA530279E219DA9C2BAFC44698 /* FIRCLSURLSessionConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2E16C5A891AA50B977D10AD3A13CE5A /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EA951621CD10F5E6E3B6F7D75726431 /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2E48AEC67BF098BED6273BF509A95FF /* TOCropViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = FB1C906AA0D780C3960F0FCABF91285B /* TOCropViewController.m */; }; - E305AD2343F0D956FA7C26674134F2DB /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = BDA2A69E14FB628DD6843A24D005F18D /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E312281FD29F99F67D349635D1F088ED /* SafeAreaSpacerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ABE5571AD63590AB00E15F3FEC1E582 /* SafeAreaSpacerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3189CA4D7BFEF893F93E00F4659392F /* REAAllTransitions.h in Headers */ = {isa = PBXBuildFile; fileRef = E8988CEE467F80B83CD7E67E6837241C /* REAAllTransitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E31DA284BBDEF115C9066C6B6B838354 /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = CE27789B9B6612735667ACD0E55F8916 /* RCTImageBlurUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - E321DAA163435E871927CCA5ECD93A45 /* FIRInstallationsStoredItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 9141094EE1ED49F64CDFCC8C60B96156 /* FIRInstallationsStoredItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3235463E1CF44E7439F108EC9102330 /* FBLPromise+Wrap.m in Sources */ = {isa = PBXBuildFile; fileRef = 95D457B73EC18B3EE005F27734E9C2EC /* FBLPromise+Wrap.m */; }; - E3239B9D7511E2FD8198BD173EED3C7C /* strlcpy.c in Sources */ = {isa = PBXBuildFile; fileRef = 6E06CF35D5BF7A55466AB24B113BEC05 /* strlcpy.c */; }; - E328E8141AF969CC6B6E80958E20061B /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AFEA62D8AC734CEDFAB8C2360CA6080 /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E337A352D98F019135869A85CEDF4D41 /* GDTCORConsoleLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = D77046677C44FB3A05A464AB21EAB128 /* GDTCORConsoleLogger.m */; }; - E341738B130ED4CB85C14610CCD846CD /* UIResponder+FirstResponderTemp.h in Headers */ = {isa = PBXBuildFile; fileRef = AF414C89E5926FFEC87E1AA4BC09DA62 /* UIResponder+FirstResponderTemp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E34DE4DDE53B27536429559F370BC7E0 /* Codel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 293C236F257F950E2F2BF615684CE878 /* Codel.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E35141DAC06BD31C5A25C318DBD30C88 /* rescaler_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = AE6427E508F8E6A55971C77A7E65FEB1 /* rescaler_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E373BD1E813C120BA7D43D7B324ECA80 /* Pods-NotificationService-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 44036119557B4464513ACB6E0DD07799 /* Pods-NotificationService-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E37D91BE2112753AE112EED619B9C078 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 491C51CD28536CB3C58BBB9969764C6F /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E384FD68FEA058A67C14E8D1AE72AEE0 /* BSG_KSMachHeaders.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F02E024C09230DF9E2BEAA09CC8986E /* BSG_KSMachHeaders.m */; }; - E387AC80127AF773EC4191DA2EF93C2E /* json_patch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 97F0CE7DDECCEC0566F9F9C3954CF19F /* json_patch.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - E3AC056FC9664BC9837604638EAC7650 /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = D93D19030EFC176E09F964D68B313EC1 /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E3C967D8097916E383795485B9F7FC8D /* AutoAttachUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CDE8084C7A68B06FE7B02019398D952 /* AutoAttachUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3D35F9AB7EE6C6F322066168C46B0D3 /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 853C1CF66632CEC2D68C7EFC135B6D39 /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3DE9999A175695C33756F33BCD4B1DB /* Stdio.h in Headers */ = {isa = PBXBuildFile; fileRef = 98C8C0BAD902465510161FDA9A574223 /* Stdio.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3DF0DE9BF123A4AAAB980CAF783EAAD /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F7131E80F05E6182455932994237783 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3F24F050E10E05C03542DBADB501F66 /* BSG_KSBacktrace.c in Sources */ = {isa = PBXBuildFile; fileRef = D217320973674B8E59AECC75D4D826C3 /* BSG_KSBacktrace.c */; }; - E3FB4C82F3051EB3F455388CD7BC1513 /* RNFBUtilsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E0832E339DA9B9BD8D53C61E368C8471 /* RNFBUtilsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E415E0C759C0124DEF47E663C9C067B9 /* Sse.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4CECE588B11B66574740EDC761BC4245 /* Sse.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - E42BB20DC78FE3B948010DDA9956A22F /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 431C91E68C9AE179C2CAFD56C3051B9C /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E45B11B652B4F0F6A84E02B3DA8C2391 /* OpenSSLHash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 61F4312D6E2ABF2D879843953CC06ABF /* OpenSSLHash.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - E46AB4A1F4011A352ABAC15FBEFFE12C /* RCTDevSplitBundleLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = A78ED850FD9D3360266D85CFFB779D70 /* RCTDevSplitBundleLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + E2D6ED674D98986B806DDBEA7B6E5741 /* FIRInstallationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 07DF80C3CCE5F07D6160CBD62078D66D /* FIRInstallationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2D8B411A8238AA3D624F4155EC28400 /* BSG_KSMachHeaders.h in Headers */ = {isa = PBXBuildFile; fileRef = CADCD6AC0A44BC12DF3E31CFFCB2A47D /* BSG_KSMachHeaders.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2DB19525BA7F7B8A4FFBD0D59429E8D /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 6319E115C683CD8817790D3D6A945E4D /* RCTEventAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + E2E16C5A891AA50B977D10AD3A13CE5A /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 50046DFFDEC7605D743CF83B7EB9EB5B /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2E18A2DBE2732797495B41D2EE5416C /* BugsnagSessionFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 07BABC1C04DAB1CEC0A77A7D6B220B6A /* BugsnagSessionFileStore.m */; }; + E2FEB34C99A3FEE2F60E0E5D878D9839 /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A1622AFF8166C9BC2526873A6A31D07 /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E302A08DFACD7D2D968BECA274855770 /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = ED716E78774947E880E7508529601934 /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3081231821B59ADDD2818523005B20C /* ThreadLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 9728A1D78B6345338374226E0BB3DB05 /* ThreadLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E30B1A23959255EC0E8B0D2B79865C73 /* RNFBMeta.h in Headers */ = {isa = PBXBuildFile; fileRef = CA557537137B6A0D183A619E100A10F7 /* RNFBMeta.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E310D21896D715F3DB403CAB922B0986 /* FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F0271863C4BA41E4574C7D6BB595537 /* FIRApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E312281FD29F99F67D349635D1F088ED /* SafeAreaSpacerView.h in Headers */ = {isa = PBXBuildFile; fileRef = F26E8EE3627DD007995E38872AAFA34A /* SafeAreaSpacerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3189CA4D7BFEF893F93E00F4659392F /* REAAllTransitions.h in Headers */ = {isa = PBXBuildFile; fileRef = AB0B72218F11A875FF74D719EE5216C6 /* REAAllTransitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E319702B13D890B6693825B6D4960D0F /* BugsnagSessionTracker+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 10EE657F01EBB6BCF4637D1124C1343B /* BugsnagSessionTracker+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3231EC68447E270A1CA6E248D40AED6 /* Cursor.h in Headers */ = {isa = PBXBuildFile; fileRef = 92D2413E4C09A3C32914CC71A085E54D /* Cursor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E32572B49BE011598A41D34DE5749AA7 /* FIRCLSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CDE6771380C768E14FD930E19FBAEFB /* FIRCLSLogger.m */; }; + E328E8141AF969CC6B6E80958E20061B /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D74EF68D1949BD56732B7EAB1BFCE79 /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E32FFFE81DB576328C2027DFBFDDD91D /* FutureExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5009B368367C8DF2D7EF0B5BE9AE61BE /* FutureExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E333596113348FB3D30D794BDE155D03 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D3EA5B4B575BDA257735202166064A3 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E33EB14E3EDA09265E5DE985BBBDD2FE /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = E86E5936B7E74BEB90393903C90CB8F1 /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E341738B130ED4CB85C14610CCD846CD /* UIResponder+FirstResponderTemp.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DA24849CCBBC6DD9C7740C89655776A /* UIResponder+FirstResponderTemp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3482831201B92E1A06A0C22936FF637 /* SaturatingSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = E315D7B79159981A3EBB25FF9ED5CAE2 /* SaturatingSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E394E8C024891B64EECB0EE9D1E5A0C1 /* GDTCCTCompressionHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = B44CE495171BBFB5DACBAF704180480D /* GDTCCTCompressionHelper.m */; }; + E3AB29EC69ADEBED2A8AD3743CE6E97F /* SynchronizedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = F0CB1544ADBADE695E5E2247DDC9EFF7 /* SynchronizedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3BBD6400CB4849B935042E456D7754B /* MallocImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = ED12C7802BB41CE6B9622FA5B3D33026 /* MallocImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3C0B7A799C90330E6182830EA35F0B7 /* FrameSerializer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3530B06F6C9BBE90FDCBF0F5DB4BDD03 /* FrameSerializer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + E3C141C47F1B86D503200DDF64F8C321 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 21232C6BB4536A408BDAE2BB5D559AD2 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3C599A3EE360F5FC0399D3B9E6489D7 /* lossless_common.h in Headers */ = {isa = PBXBuildFile; fileRef = EEAAAEE3BEC255C0C7A96639641B3098 /* lossless_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3C5C6E11CEE73172271A32F56AF9311 /* AsyncUDPServerSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = C384BD5C849992AA306DD4C7B352C41A /* AsyncUDPServerSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3D2E67EE693D1735BBA23C5B5F518C9 /* Futex.h in Headers */ = {isa = PBXBuildFile; fileRef = 83D65B87F81FC79D264226D68569D33A /* Futex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3E250596E76E13A5DA85D4C557AA50F /* BugsnagReactNative.h in Headers */ = {isa = PBXBuildFile; fileRef = C5FD43B9AFE049BA54629F93A34D0BF1 /* BugsnagReactNative.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3EC0F97A46B322061908FCE6427EF05 /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 67B0B5C0025E7B120F21C60622927C4C /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3F552D538BEDDFDF4624325039278CC /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = F22CCC95CE1E45D47814E4D6F87F62FD /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E4005B3330ADF61EE793B59F23C2C6F2 /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = FC3B2F6648E4E990484D03409B3C47C2 /* UMModuleRegistryProvider.m */; }; + E45C3A5908024632B4833F497CB23688 /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 9227C3987BC3C6437A9CA0B0FE0DC784 /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E46AB4A1F4011A352ABAC15FBEFFE12C /* RCTDevSplitBundleLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = A4E286F0D5D5A1C67FF8F09F07A85C09 /* RCTDevSplitBundleLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + E485454502FCAF5D7458D07251E75ED2 /* StringKeyedCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = B9E52071A61994BF47D9A3698EB8E196 /* StringKeyedCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E48AEFAFDAC08F2EACE5AA4CB98D3944 /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 91F4CDD7DFE9FE5BC9DB09A0AF6C5080 /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; E49188CCEC47F2B014FEF6031EED26C5 /* PTPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 701944664DEF41CE893374775990E72D /* PTPrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E4A30EC10888C6AE1C92B59EC078EF38 /* ARTTextManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D5BF1399CE5EA4703577CE6C49545B73 /* ARTTextManager.m */; }; + E4A0F70A4C1573A50E12ADDFCAB1818E /* MallctlHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C92973A386C0B253E39A7584ED55CFFC /* MallctlHelper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E4A1E303B799247E1BFE00752CF53B0B /* FramedDuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = EE7E08EF7B1252B45B70331226DB8144 /* FramedDuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E4A30EC10888C6AE1C92B59EC078EF38 /* ARTTextManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EAEEC68C0C4EF5223271B9D61A19D6F /* ARTTextManager.m */; }; E4A5D4B6B6E51731DC54DCEF2061BC80 /* PTUSBHub.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BDF8F521A698660A217C9B7AC6B17AA /* PTUSBHub.m */; }; - E4BB313E266E262031ABB647CF9227DB /* AtomicHashUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E36301726B1651C9836AC75A92EAE3EC /* AtomicHashUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E4E4D220862602C30FDFB8A461F9FA4B /* NetOps.h in Headers */ = {isa = PBXBuildFile; fileRef = 073C7A7AF4093E077B81947FA20CD463 /* NetOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E4F55C5AE63DD600FB9FEACB1ACA2478 /* FIRInstallationsIIDTokenStore.h in Headers */ = {isa = PBXBuildFile; fileRef = D9BD28134A368C0AFA8B5E2C29BC4702 /* FIRInstallationsIIDTokenStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E555A241745459F283C89975E0FC02D2 /* QueuedImmediateExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = B46883F207ACBB452D6EE32DEAF039EE /* QueuedImmediateExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E557A000450604046656D73ABB02905E /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = EB92F93CABB8184449DC444F506BAADD /* RNGestureHandlerButton.m */; }; - E56F517254A3DD415A94128FFB078AB7 /* EXSessionResumableDownloadTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B2A1D080E634E58293E932858D9EA98 /* EXSessionResumableDownloadTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5717D12A46C230DF81B959C316D3076 /* RNVectorIcons-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 48789930FD5480441AD35F9EAD9A1F61 /* RNVectorIcons-dummy.m */; }; - E58B63CDB3B5FF2D1BE80C39E1386695 /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DAEA4597188EA7C15AAD0C4B323ECE1 /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E58FFDE323364DFF10D75A10396A5DA8 /* Sse.h in Headers */ = {isa = PBXBuildFile; fileRef = FEEA2711BAA6C175F6373B87C94FEA5C /* Sse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E596ACC4DD10D8D286ED1CD73A893BC1 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 110CD94C79C42A487EE1D6CC50098487 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E59759EAF192CD7CB1A2BDAA3E6060BC /* ColdResumeHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 028F059CB4349635173D9E95BC622538 /* ColdResumeHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - E5A65FAA530FE18419CDEF38DD7A73CF /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C34A18A174B7C9DF73B8613D868C3FCD /* JSIDynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E5A6B10AFA65F8C3DBC7CCA3348E80F6 /* Observer.h in Headers */ = {isa = PBXBuildFile; fileRef = 23EB914976C05BD72A2209E4A5D7B2D3 /* Observer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5C2EAFC6CEEAEFFBA488054EB69B8F6 /* FBLPromise+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = 98B3C00ED1A48B9AFDFA6A37D768C053 /* FBLPromise+Testing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5C364BADE3B7F40B26C80274EEEA9B4 /* REASetNode.h in Headers */ = {isa = PBXBuildFile; fileRef = AF6FA799535FC9D7416AB0DAB4B8D253 /* REASetNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5CE5843FC54AC6DFBD2FC372CD03186 /* SDWebImageError.m in Sources */ = {isa = PBXBuildFile; fileRef = 34D668980C096A561A31A2EB2F6A66BC /* SDWebImageError.m */; }; - E5D2B0AC62E03EF785B1EC188C73335F /* GDTCCTPrioritizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BCDE75F8D6EB7B2E4AD002DD63895A9 /* GDTCCTPrioritizer.m */; }; - E5DC173E6B529F892B09C8C35C99D2A1 /* ARTLinearGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = BFFCB8FC0F61C671EA2AC11DC9AA6E1C /* ARTLinearGradient.m */; }; - E608A5E8394CBCBCE7D71A82BAA8045B /* openssl_md5.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C3297542C5015ECE437ADDA002D57BF /* openssl_md5.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E61A6566E957C7A870CEA56B3B403446 /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 576F8706451A4977F83DDFE1E1BE5A63 /* ModuleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E6252CA803E06BA5B648E4AFBD94F7A4 /* BaselinesAsyncSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7F0D2C5FD5821F14AF72DA3AA3FE84F6 /* BaselinesAsyncSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - E635F808F181D7C621AE24941DCA250F /* Thread.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B44E2BA237EA657E0BA4B863125FFBB /* Thread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E63FAB97D6D24DE9AC74D6E1CA7230BA /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 8ECE261CF9D06F4361E4A1F9279B98FE /* SDWebImageDownloaderOperation.m */; }; - E644280E9E7A17ACA5718E5157465EBB /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D9DA6605A5EC6BA2B775035CF901D16 /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E64848E07B54919F2C316BBF93BF0F51 /* CodedOutputData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0B8F8F56D3C45B3777329256B1275595 /* CodedOutputData.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - E6487C1A1F698D476679C0A5F9DBBAA9 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EDB13431034DC092F4374B84345B44E /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E65842D2EF1D0C0A6551B80B2C12D123 /* FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BB10CDB95E75C6961B3BB55A463C9BF /* FIROptions.m */; }; - E673E0352A8B4350E45B7A109D3D4021 /* EXKeepAwake.m in Sources */ = {isa = PBXBuildFile; fileRef = 5361CB0935DE75BF4954CC589C697F5C /* EXKeepAwake.m */; }; - E679DE42EF15D92E8CEEBEE74D4F3354 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 93765199AE00A9873ED2776D26CD161C /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E688352A73C514B356DE50C892D60988 /* RCTAlertManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 48043D3EA7129121701C47C56E10A8FF /* RCTAlertManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - E6934C012C3EB644E512A0A1478C6B99 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D7EFA14CEAB378BAE4FD09AA6B5FDF1 /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6B0D1B060C49F0BE39016DCA0726328 /* AtomicStruct.h in Headers */ = {isa = PBXBuildFile; fileRef = 8907F3F77CF6C50D7C220B4046CFA9A7 /* AtomicStruct.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6C64321EF200418E29E331B488F00ED /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = D93972543FAD83E00B61839C320B2369 /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6D521219F0327587E34E3EA6245F21E /* SDWebImageWebPCoder-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FC882B53AD9232AB35FE1978D55A730F /* SDWebImageWebPCoder-dummy.m */; }; - E6D9AF440D16FD792F97842ABCC2439B /* Malloc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A250A57F6B6B341255994B45DE729FA /* Malloc.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - E6E0711599AC6072DA2A600246852D68 /* EventBaseLocal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 62211D510BC0A02100BC630FA71A248E /* EventBaseLocal.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - E6EA4C2D81175C69754B006D06E03740 /* openssl_aes.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A011C3AE203A4A6BA8BC9AEE521484F /* openssl_aes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6EB8FAC3237E420DDD23971C2E2D1C3 /* upsampling_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 924EC671F2BB84B649EB05BB2E750512 /* upsampling_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E6F18299496A2D42168840A9F1A9AE97 /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B39BBB56791DB7A6202AF7BD7CFDF4A1 /* React-RCTBlob-dummy.m */; }; - E6F8ADE0B72846BBD1BA94FADA423A50 /* React-perflogger-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E9BD9CB8DAE05A9F4592A77CFE061DB /* React-perflogger-dummy.m */; }; - E7088FAF68578CFF3A9F1202998130C5 /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 863FFB2563D846E6655C95E09E864C34 /* experiments.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + E4D42E2CAAE1119F464246ABA3B38A6A /* MMKV_IO.h in Headers */ = {isa = PBXBuildFile; fileRef = 20DD2DCEC6778419564746DE9727F304 /* MMKV_IO.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E4D551EFA6582D7F0F98EE42615DB46C /* FIRCLSSettingsOnboardingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D406C3172FD33987CC90D98C292F301B /* FIRCLSSettingsOnboardingManager.m */; }; + E4D7C5E29BF0B21F741392FDF5BD9615 /* FIRCLSRecordIdentity.m in Sources */ = {isa = PBXBuildFile; fileRef = F9F717971EB4CADD925F4933F21D6A1B /* FIRCLSRecordIdentity.m */; }; + E4DFAC5B7C4EFF623E1DA10693B2F1F4 /* bufferevent.c in Sources */ = {isa = PBXBuildFile; fileRef = 457BF153D04F4820C937FA37AFCD368D /* bufferevent.c */; }; + E4F80941C373599F876C3F96452058D4 /* FutureSplitter.h in Headers */ = {isa = PBXBuildFile; fileRef = E288C521FCC2E603C406F068150CCF85 /* FutureSplitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E51BF3266E364412BE10CFAF038B0327 /* ms.lproj in Resources */ = {isa = PBXBuildFile; fileRef = DE1BFDAFC28F339CABA7846F7BD52752 /* ms.lproj */; }; + E51E9B99FFBC62320E3D6E7DDA2AB29B /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = F7C40C88F5C3C5FE1938B1CEC0B1179C /* UMAppDelegateWrapper.m */; }; + E51EA6F839FA559C21E7EB6626BF236B /* cost.c in Sources */ = {isa = PBXBuildFile; fileRef = CFB354F515813222413E2132DB870EBF /* cost.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + E52247D7B717F25E749A7C0F6098820D /* UIImage+ExtendedCacheData.m in Sources */ = {isa = PBXBuildFile; fileRef = AFBA0DC87250CE5452721227940656DE /* UIImage+ExtendedCacheData.m */; }; + E532571B41B3C0C592E16E27057593A0 /* FirebaseInstallationsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 91F251357B1B861D6BECB35B97540576 /* FirebaseInstallationsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E55392C6684C8F1393B2D06412EF1961 /* UMPermissionsMethodsDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 471436C5FCF70211E89590CF81E793B6 /* UMPermissionsMethodsDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E5558D09A1CAA1BF0B765E9A32E030D9 /* RCTDisplayWeakRefreshable.m in Sources */ = {isa = PBXBuildFile; fileRef = 193324800AD3DBFE52C49B3E1428D6D4 /* RCTDisplayWeakRefreshable.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + E557A000450604046656D73ABB02905E /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 4931A8E8445EAB969B58E1A2F8890A80 /* RNGestureHandlerButton.m */; }; + E55CB5FD7795FAC2F29E4E2B5B827F08 /* BSG_RFC3339DateTool.m in Sources */ = {isa = PBXBuildFile; fileRef = C9825762599913C6EB8217C8F9C4D952 /* BSG_RFC3339DateTool.m */; }; + E5699989A56C61DD94A9C6A17C253494 /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 51C4E5F5418C933B54618D04FE90B1EC /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E56F517254A3DD415A94128FFB078AB7 /* EXSessionResumableDownloadTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7267D00F1FD7F2751F6F318FB868C7EA /* EXSessionResumableDownloadTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E5717D12A46C230DF81B959C316D3076 /* RNVectorIcons-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 831F2BE7509E960A2247F8069F11035A /* RNVectorIcons-dummy.m */; }; + E58DE23836329FAFADE45085CA848146 /* CallbackOStream.h in Headers */ = {isa = PBXBuildFile; fileRef = EF987966C8243A6D7B2997CCB6DEBF19 /* CallbackOStream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E5A0AB695B3144ECD8E5C17837CAC24B /* listener.c in Sources */ = {isa = PBXBuildFile; fileRef = 6AFD3DAEA617156BF2B54EC866156EA4 /* listener.c */; }; + E5A22EBC18FF7ED857C3242BA10F97BE /* MallctlHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D9E57DF4A08C75F2004E8D4518455E9 /* MallctlHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E5A4D111A0374E196120025589C610DA /* RCTJSIExecutorRuntimeInstaller.h in Headers */ = {isa = PBXBuildFile; fileRef = E623D939ADE2AE10BEAA3C1B7D16981B /* RCTJSIExecutorRuntimeInstaller.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E5C364BADE3B7F40B26C80274EEEA9B4 /* REASetNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 098C33BAFFF906D6D3AF3583C8832657 /* REASetNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E5CD926415F1A3789CDD8A16D76A34B4 /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D0A6E6852DDB2645E8D6F3F1EE778C7 /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E5DC173E6B529F892B09C8C35C99D2A1 /* ARTLinearGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F94301C0561DD443C43F2F07AE4968F /* ARTLinearGradient.m */; }; + E60B6DC94775A5650B20341846210269 /* BugsnagKVStoreObjC.m in Sources */ = {isa = PBXBuildFile; fileRef = B397F83E5364B2FB27FC44746EC7445B /* BugsnagKVStoreObjC.m */; }; + E6117DD34413A1D86C9FC793933387DA /* TOActivityCroppedImageProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 83BF47C14F8ECEF5838A4507B32CC1A7 /* TOActivityCroppedImageProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E64521D3CF0885A1354CC21DFE9C9257 /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 1899CDD77970FCB7A8B18F971C4DD188 /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E64AF3AEC1364B323D9F70FE52130B72 /* AtomicHashArray-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 68B8924F51A5D653C23A9DA652BE953B /* AtomicHashArray-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E673E0352A8B4350E45B7A109D3D4021 /* EXKeepAwake.m in Sources */ = {isa = PBXBuildFile; fileRef = 442D2F71BDC5E59CA5DF4FA8490BFFD9 /* EXKeepAwake.m */; }; + E67EAB639865313CF8223FCAA5C0E439 /* CancellationToken-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F8BC1EE68A6BE949F205AF0A712CB58C /* CancellationToken-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E688352A73C514B356DE50C892D60988 /* RCTAlertManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2794BF391589D1CFB5280CB6BDDBE022 /* RCTAlertManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + E69A3E96DC48CAC5F62DB2C99EF60952 /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = D2BAFB5712B5C8FFFE439BE7B8832975 /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6B11ADEAF0C851FED1210EA162F751B /* NetOps.h in Headers */ = {isa = PBXBuildFile; fileRef = 073C7A7AF4093E077B81947FA20CD463 /* NetOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6B8C0201823B78660AFB9CD89094146 /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 32A022EC517F10D917BF4DBC33E5C851 /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E6F2F6D29BF5EF222846D24FFFA2A518 /* GDTCORTargets.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C79B1F5A3844A1537C78A0F404800A7 /* GDTCORTargets.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6F9AB804046A1761C274E1978C9D181 /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = B93F6DD0458524D09451B650252973D4 /* types.h */; settings = {ATTRIBUTES = (Project, ); }; }; E713B02A8A389710B1613C452E72D5D0 /* FLEXNetworkTransaction.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EE81361339C5E1930DAF6A4CFD01B74 /* FLEXNetworkTransaction.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E72A250087B7A73BA20E9A12E6C3E5AF /* RCTSourceCode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7864748CA36975D9B0488B0A0F8FCE38 /* RCTSourceCode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - E73510C5132838079D9D644554350A7B /* BugsnagSink.h in Headers */ = {isa = PBXBuildFile; fileRef = B66F8C2463B69255E12FF8E84CF5148E /* BugsnagSink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E740C69498B9F0B88D6A5099B839C687 /* FIRCLSAsyncOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 16F0EA6482987F1240C9EF62BC419BB1 /* FIRCLSAsyncOperation.m */; }; - E76E10019899FF866B81BACD8AEFF56F /* EXVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C5657A0501FD0E478C4F29DA1F9C27B /* EXVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E7825EB9D1E7B058A7EB8FE07ACB0025 /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 29581F1EB845BFD0A7B1DE17099D7350 /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E783EEAA611C3967BA049B75B021BE67 /* EXVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 33C537641F51D2CABD273135E4CC8707 /* EXVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E78D1C6016A2BAD52381A68DD3792A63 /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 68CC8BB57B703D782276E083F73451FC /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E7BAF6C32F1EC28622A3DAD6DA66D9AA /* Align.h in Headers */ = {isa = PBXBuildFile; fileRef = A8BE121CC2AC61A2582FB032C7E7D75D /* Align.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E7EC3CDFF005B48FA31D1509D28C9C0F /* RCTConvert+FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ED20F861A8E664E639B42BFF8598BE6 /* RCTConvert+FIRApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E7F690A79F63222636BBDBEBD8F76F71 /* SDWebImageDownloaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 849B5400332E67CB49AB4618ABFE2341 /* SDWebImageDownloaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E823029BBF62C205DF08F7304A4AC7B7 /* quant_levels_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = DEAFDDB7B183EBCD227325CE5F4B9AE5 /* quant_levels_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E83757D2FA4D88CFB78A771A50B3D9AD /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B062F792B90C0FFB25C7A0DAC10F247 /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E839FA32C55142451C672352C4A624E1 /* ErrorUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = C021805E21A690949A5BF3326BD26343 /* ErrorUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E83C3D2465022D746380CAE2BA0EBD89 /* SDImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = F2644328A8685FAFB272DAD706AC4A36 /* SDImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E841B41527AF62329C3CD808F5199F96 /* FIRCLSProcessReportOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6B215909BFDC7A355DECAD3E931417 /* FIRCLSProcessReportOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E8448A1715E1C4CBEE54E6836D59A41B /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 2D581ED99932190F20B005D628B8B0D3 /* en.lproj */; }; - E858B974244DCEB4EB1C3B52A4C2A265 /* WaitOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = D967B64E4416C42C87B408BA762B2AB4 /* WaitOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E858F7D5878667818E53B2331794D9F1 /* lossless.h in Headers */ = {isa = PBXBuildFile; fileRef = AB112A4A6AAFBE00566605E8813D47AF /* lossless.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E85DE6E2E1C8995860DD4132D41337B1 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 081B0863F7FD9952F66E3F13F2E7749E /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E8853B8ED3D089F47C87A8100A7A6434 /* RNConfigReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1A980BB59E9E1BCA25A52550BC0B17 /* RNConfigReader.m */; }; - E8A7615B2E19C59185F3FE545094D0E8 /* EXImageLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B140572A6A5316649AE4678D57A91B08 /* EXImageLoader-dummy.m */; }; - E8AD3EBF4845BBB1D8D9869F22B8E916 /* FIRCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C616658CC648E09155A506047BDB957 /* FIRCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E8C33B73A5C15DAEB0C27FF66FEB62F1 /* ko.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 121C082C44622369A24320E0608F7EBA /* ko.lproj */; }; - E8C7F376FE11D9B84E58F477C70340A9 /* RequestResponseResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E503A206DA16C1284D11C3DA57A0F135 /* RequestResponseResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - E8DC21B0BF4EF75793E8204B2110A761 /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = FD1EF5716FFC8DCFEF86FFAB9C756377 /* RCTUITextField.m */; }; - E8F01C7551F837636A5D060029C18253 /* evrpc.h in Headers */ = {isa = PBXBuildFile; fileRef = 72F272903FFBC94B4E4612A594A555FF /* evrpc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E8FBB70C85AEE24654BED1E56EEFD8CF /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BEF49093845DDC9CB2648D903D30325 /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9148CED13C0C120BD683C2E21F407BB /* ieee.h in Headers */ = {isa = PBXBuildFile; fileRef = EA12FAEFE8EE553CC6DEF4727ED0D5FD /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E91638D212748D1CDF3B9451F563CE5F /* SerialExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1EC50934E3A2BC5FF287395B8A34E26E /* SerialExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - E92873E7086DF05653F9CE694E21A56F /* GoogleDataTransportCCTSupport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CE804605C2C458698224684169342575 /* GoogleDataTransportCCTSupport-dummy.m */; }; - E9346E499F82823D821228FAD4B8817D /* CallOnce.h in Headers */ = {isa = PBXBuildFile; fileRef = EF0C759B7ECF1822BCBF5D46FEDB41A8 /* CallOnce.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E93C77A5DF946F465493E5C24C8E08F6 /* IOBufQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E2BB7A4727306FDE5D3F4BFAFD898726 /* IOBufQueue.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E95D6946EAAC0D88A62A9C4EF71E1A8A /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 44B3AC3A382198A1FC1377764842E54A /* RNImageCropPicker-dummy.m */; }; - E96017BD639E075DCD986CE193805B12 /* CancelingSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 588E2150CDB29AE75B83DC77C9A0D29C /* CancelingSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E99F98EAA91670CB3B54381E89CE82C1 /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BEF4D6A896CE5FDAD0DD5D191A5F9C4 /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9A61ECEA9900886EC8740B93AD7687B /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2424F8AE03455AE0AD4A1E5A7493D364 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9A957260648A08356FC9AC5D98A2440 /* TypeInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = C8A8E750D6EB315BBAD13D52C36D1C35 /* TypeInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9BB3460FF5066265AD48C8E6DEF80DA /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = E52898767AEDB031A12CA583EDBCF540 /* UMModuleRegistryProvider.m */; }; - E9C876E03CF1D6446B322B7D003D276D /* FIRLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E7CEA9CAE2AF0E1A5E22F2EDDD3E2BE /* FIRLogger.m */; }; - E9CA34897D3343B46BD7E68E6F610ABF /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A601E3CC5D26B3989370CF7C479F9C8 /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9CDFCB1A80021625C1B2F20AB30ED17 /* PriorityUnboundedQueueSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CE60A3BCA8C0C72394A52F3E828C894 /* PriorityUnboundedQueueSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9CEBB7DBEE768BE09E9129A3DC9A49C /* EXKeepAwake-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 87C229F1F692C5339612090BC827C2C8 /* EXKeepAwake-dummy.m */; }; - E9DD38E9466D37938076B85D6346A169 /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = A79C9668BB0052F80C33C8775C800F7C /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E72A250087B7A73BA20E9A12E6C3E5AF /* RCTSourceCode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2C17B2692915442C061B9BD0B2FC5D68 /* RCTSourceCode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + E7427A2777ABB574E03689696119599E /* Cursor-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 81A496C1E15F3F3AC37175B4920FF619 /* Cursor-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E7597C7ED2697CB348881A37BE1F38AC /* upsampling_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = E7D542686358449C4464EF32763BE4A2 /* upsampling_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + E7650BE94EC3643FD0EDFFB53BF239DF /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 534C4979DAEE0F420291383A100BED53 /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E76A6CD9B0CAA7A92D2CD5FA84F9EB2F /* TestUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = CF84CF3255A89822E1EF8A2A7F263EE8 /* TestUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E76E10019899FF866B81BACD8AEFF56F /* EXVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A439185E722B36F1A8B1BEE7BDC71514 /* EXVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E783EEAA611C3967BA049B75B021BE67 /* EXVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 563880E140BAE9F0CD6A507B16D921F3 /* EXVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E78878CE7EE4B42C7C4346121F3F117B /* Libgen.h in Headers */ = {isa = PBXBuildFile; fileRef = 79335A93D83AE486F8FF48BDCC4B04CE /* Libgen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E7A441822611FBF3B41573EC9F8CCE90 /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 71E1DD6187842470489C1B6D031A902E /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E7C452B9BC1F38B436C532BFDE929F52 /* CacheLocality.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EBC93F84D6D9CE3D89CABD497B79A55E /* CacheLocality.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + E7C668C15E723EEB34BEA9FE018B660B /* ResumeIdentificationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = FB4559CDF57FC81DD76DA71C08892047 /* ResumeIdentificationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E7DC3A48C27C44F5B0FF9EBB27B4D428 /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FE8D5121E05847BA6EB20C418665D7B /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E7FF87C342CABA9F8DA69B9A88DE6C88 /* PropagateConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 06EF2F083C06FEFE6A287DC283072E67 /* PropagateConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E81E93C14C4A2EF29E40389982ED4E00 /* FIRInstallationsIIDTokenStore.m in Sources */ = {isa = PBXBuildFile; fileRef = C335481D064FA5535D3CC9FB9822A2BF /* FIRInstallationsIIDTokenStore.m */; }; + E8256CCC9C51CDB0B77A25C40B45A640 /* ThriftStreamShim.h in Headers */ = {isa = PBXBuildFile; fileRef = B37603DEF7D9FC146306428CF41DA217 /* ThriftStreamShim.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E85DE6E2E1C8995860DD4132D41337B1 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9805FAF985C740CD5AF04BB3DC67F701 /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E866C091A893AAF10C5066C6A8FB9348 /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 54C3DB7CB50F66858BBCF53041CFFA71 /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E86D442FF5731A59E3C3E938879B3EA5 /* VirtualEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = F40F4D13C064134A3B808F152E583CC3 /* VirtualEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E87F01115D4BD92EA8565C73AD975317 /* Subscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 30179570988891F43F9A54B32C56A700 /* Subscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + E8853B8ED3D089F47C87A8100A7A6434 /* RNConfigReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EC09334D862F611D8B61F433B6C8440 /* RNConfigReader.m */; }; + E8A7615B2E19C59185F3FE545094D0E8 /* EXImageLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DD121FD76E97C58E23365FDFC628B14 /* EXImageLoader-dummy.m */; }; + E90955012B852D78214EA864F1EB2B9C /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = A0A9FF330B926B4379D094F6AE01C7C2 /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + E91A24F10E4E63BA9511C3AA3B608772 /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = DC3AB289AEEAE80022BC8C183E917049 /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E91C35A4C74C464094403DF24CF12329 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = CB780F18AF9E3DAFA1FD46D41E5ACBC1 /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E92E23581BA92C98435DC0BD7E016324 /* FBLPromise+Race.h in Headers */ = {isa = PBXBuildFile; fileRef = 335D89C0A9606E132F58F72559506EDF /* FBLPromise+Race.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E94C0A8806DEC18D6873CF569F01FA1A /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = 470178089A8B574E25BA6E16B07CA254 /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E95D6946EAAC0D88A62A9C4EF71E1A8A /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 44747932CB8EA27D3A71CBE61CC868EB /* RNImageCropPicker-dummy.m */; }; + E981E67817B348038BCC8545CE70A25A /* RNFBUtilsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = BA6458BF22C37B2D7D59E6DEA84BBD75 /* RNFBUtilsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E99F98EAA91670CB3B54381E89CE82C1 /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 218D3AFA6E45B878589B1C721E75F5CA /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9A6AB521B793BA618431BFD74AFC3FD /* EventBaseBackendBase.h in Headers */ = {isa = PBXBuildFile; fileRef = CDE9A556EC556FFEFABB9A9F7E9DD557 /* EventBaseBackendBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9CEBB7DBEE768BE09E9129A3DC9A49C /* EXKeepAwake-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C15118AF7B06E7AA8617780010187407 /* EXKeepAwake-dummy.m */; }; + E9D9BBF8E856ACD90E0A72F9595434A9 /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = BC4E6281F75612E2835E8AAAFBCF5CEB /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9DD38E9466D37938076B85D6346A169 /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = F784B594BAB762A38CFE432CC18FE196 /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; E9E1B0FF5CCBA128F3D2EF11C42EA0B4 /* FKUserDefaultsPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 637C838337F31ED529BCEA41C0F4A3E4 /* FKUserDefaultsPlugin.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - E9E7D0826FE0EBA707790E6100407792 /* FIRInteropEventNames.h in Headers */ = {isa = PBXBuildFile; fileRef = 54A0241C5AB2ECD06DAE4825A6FBAABE /* FIRInteropEventNames.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9EADC4B4F07240F317BAC8448D9B77E /* filters_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 70F794C19EB963A9D7CFF9111E434BEC /* filters_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E9EBC98A1C5436405C1FBCD50D15CDF8 /* demux.c in Sources */ = {isa = PBXBuildFile; fileRef = 4A509BA41AB36AFEFE7EC02BD8CA6ED5 /* demux.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E9EDA828765D10062265BB55F66296F7 /* FIRInstallationsIIDStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED107C7D265D1E13894AC662AE1149C /* FIRInstallationsIIDStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9F140B18AA5E8078FEA649BE33DF599 /* SysUio.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FD0422E27ABD51A7F0B26BBD184FBA7 /* SysUio.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EA18555CD41CC2920EEFCFB2B9EB978B /* CallOnce.h in Headers */ = {isa = PBXBuildFile; fileRef = EF0C759B7ECF1822BCBF5D46FEDB41A8 /* CallOnce.h */; settings = {ATTRIBUTES = (Project, ); }; }; EA26CEF95BAF2888C211317D52469E95 /* FlipperKitReactPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 09E75510AF24F314A6051E17B976164F /* FlipperKitReactPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; EA31A21E8987D47CFA4D774D8DB6D85F /* FlipperState.h in Headers */ = {isa = PBXBuildFile; fileRef = E70FB33CFF014F38A4E95193A259BC24 /* FlipperState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA74948E8A88A83D0B94752F86B8C1CA /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = 0284EBCEAA398D64FA047A23F7CE1818 /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA8F515B42070FCB021CEA65A17CC3EA /* ManualExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66A3E0F59BFBF183C03632E2F93359A4 /* ManualExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - EA9C7BD1D00D049F4D82E67239E4A843 /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30E2993D68BD7EC30537F610662BE5 /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - EAADA7F1540429683EAC1A0FB2B54179 /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = C5FBB4CF298ADFEDE3E0D4083594D093 /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - EABCEFA2C1BC8309430E837F4EC20122 /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AA97DEE8DA56377574E6FF78AB113D6 /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EAC01F056C09E5240270A5B8A15F0EBE /* NSError+BSG_SimpleConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = CDE6BAF237DD904B663DEC444E60D228 /* NSError+BSG_SimpleConstructor.m */; }; - EACC003EB0037C02E6B4FCB432F38DCC /* bignum-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 41B4DD6B88E7EA1B7760F352EBEE8C01 /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EA4C621BAD9D0BDC885592CB2C3A6A79 /* Time.h in Headers */ = {isa = PBXBuildFile; fileRef = 837E9CF02683AFD9515312499D96F62E /* Time.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EA7C749C114B176E77A7E80384C2B23A /* GULSecureCoding.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CFB0570DCDE324E6BE1532D8CF0082E /* GULSecureCoding.m */; }; + EAA8AEA1DF510379312DCF16E8ED4DA1 /* ManualExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0F6E45DC830E5CA7848322A1858380CD /* ManualExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; EAD62CEACD1BD0A3C1606C0803DF3BC9 /* SKViewControllerDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FC7A652DA51D9F0183EA2D12E37F94B /* SKViewControllerDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - EADD8A2B7FD6BBBBC62018BC42D6CB66 /* SDAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 632154CA99C3395F324D6E8391E97CD6 /* SDAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EADF6420F5E8E5B8862A74CF638D3027 /* SanitizeThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 536F7347189B2519493855E0FBBF78CB /* SanitizeThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EAE282FCACE133B3C9A65FA0D898AB65 /* AtomicLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = 213D548C6546BE0F12326CB0627B85DF /* AtomicLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EAF3476D5F60D2423619B8A80E4B06E1 /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 469F3F63EC4D8CF348CA1DE498F5FB0C /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EAF73842E237D1970C5052059A14E323 /* ConnectionAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = EB418C913486EA3E3381B3FE24AA0955 /* ConnectionAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB5591507046F7B57BD7198F1A72D2FC /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CEA61F99AC3AB4F84E9BEEC43AF8B8D /* RCTPerformanceLogger.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - EB66BFD41BEBB5D81571F76712E05108 /* BugsnagKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = CD632382C1D553D44B7141BA22CF18CC /* BugsnagKeys.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB9B9C247D3DE9BD355A9B43EE76DE27 /* Flipper-RSocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E7C44F8E7F7F762E989594768FD709E /* Flipper-RSocket-dummy.m */; }; - EBA4B42F86FA19C9293C03AD8686145B /* StorageSetters.h in Headers */ = {isa = PBXBuildFile; fileRef = 116B3B461EB7D917B90AEDE92478E4C8 /* StorageSetters.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBBDC830262CC6A94FBD4DBAF311D871 /* bufferevent_filter.c in Sources */ = {isa = PBXBuildFile; fileRef = 31BE77BA970F0F9CE3CADED50681A14F /* bufferevent_filter.c */; }; - EBCBA38AF93DC15D993BBCEE4347FF21 /* minheap-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A87D13283D45B725FCA1772F8ACC6C5 /* minheap-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBDEAEE4309EBDED877600C31B7EB552 /* RSocketServiceHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9379D71B955ED8CE023DC49B56E9AD4 /* RSocketServiceHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - EBE743321D1922E1F07C4DA939ABDDF8 /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 23F9A8394A485E9F98B11A001596AA9B /* pl.lproj */; }; - EC0FEC86ADF28E910873EB11FA6F441F /* SerialExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = D1D37F5BF753E9A21626896FBF19BE86 /* SerialExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EC1FA86C6E4372F9F6FA341B022F9CBE /* Cursor.h in Headers */ = {isa = PBXBuildFile; fileRef = AD42BC2ED1D7BE159095952915525A01 /* Cursor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EC59095B6757520663D6148CC426AC24 /* histogram_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 85CCC568F8B4853890D4002955C643F0 /* histogram_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - EC8D11597507416FE5B0C59F0C2C84F2 /* HazptrObjLinked.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F99A0B6BBCF0E40F9EDF94E751A3821 /* HazptrObjLinked.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ECB236DC9525D658CEE8213EC873800C /* Barrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BCE3200B783F0F1D598AC56BA7FD6A23 /* Barrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - ECBD429060DEC16908D656440A81BDF4 /* RNFetchBlob.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BDA7FF7370A980A82E2384DA1A3D7EA /* RNFetchBlob.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ECC014D16CBC092CE3F8DF77EE1BA855 /* REAConcatNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F9AB49BA775BC43E5CA501055D065B2 /* REAConcatNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ECC0613DB8AD0B0139391A3957190E3B /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 21232C6BB4536A408BDAE2BB5D559AD2 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ECC46CC776A2368C1C0C76166E438E2C /* FIRCLSAsyncOperation_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 50B8DC3F1C20DA72280B66682F52676F /* FIRCLSAsyncOperation_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ECC46F0B8CCAD3ED3EDD57C34217F37A /* AESCrypt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E2196A5273FA07E66750CC0BAF09C27D /* AESCrypt.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - ECCF81F5F061B785593B1BD3E433F28C /* EXAppleAuthentication.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FF2090437A38730740B7F0C74DDF438 /* EXAppleAuthentication.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ECD464F047C9060F9D55B9FAB3CAD531 /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 42CCAE143472AD95202E046EFCF4DE38 /* RCTBlobManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - ECD92AF0BA55DD4B9993F3B94E1CEFFC /* Range.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B8D76CAE2FEE7117E9E0A6C31E9CFEB /* Range.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ECE14DCCC15540630354AF2F832C7EEA /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 186F2C22A26007A725E79335C5E6BC62 /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ECE7C5AE72A41E523B9FFBBA19A87F8F /* Stdio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C447F5E1A3B40FDA187DD4B2BB4E3656 /* Stdio.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - ECEACE161258048A1E49B45A4C988C2C /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = F53F5FCE1D2FAE83457EFAB473F21020 /* RCTNetworking.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - ECF4130BF930908C2B2BEA31D7911C77 /* FrameHeader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 046E65A5FA88EDA7B63523764877B119 /* FrameHeader.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - ED00936FE134948C5CE2B1F7379DE7A0 /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = BC34112B5BA3EDD7D3665A91663E64DF /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED0B07E6C8EF7E0E16D8AC7C78FC43A4 /* FIRCLSUUID.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DFDE0F1F6827D9150F1F6A956057CA6 /* FIRCLSUUID.m */; }; - ED1294A4072B1958A6928F5A789D4C13 /* EXVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EEF95A4D33D57DB987173F263D9DC6B /* EXVideoPlayerViewController.m */; }; - ED20718F31DAED2C5FEACC215A04ACFF /* AtomicUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = F3D4269EDDDB1D35DEE5FFE4C47815A6 /* AtomicUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED3DE750CDF388D1F5EB034C7D1EAA03 /* filters_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 854392E79DEFD120A20C066DCB55C4AF /* filters_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - EDA5DACD586AA23666133E03F54F88AC /* DistributedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 5955B368F840981A96CA92E5EC8D0045 /* DistributedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EDC2707E1DA2A233B49F43EE6BC81DD0 /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = 27AFB0003553227843B979313B68397D /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EDC648B74F2853A36A9219A1F43B296E /* FIRAnalyticsInteropListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FAA8AA11C5B657BABEB5CA3B444722F /* FIRAnalyticsInteropListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EDFBF036B071FB480329BAC298FA6B68 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EF0B16ECF34B288D753FC7B5F377EA5 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE024426B04FD25808524C0F61CEEA7B /* Cursor-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4719575195AD664C0B7ABD653A1ABDB6 /* Cursor-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE2569EF94D0E8FF82F0FCE18542BAF5 /* BugsnagReactNative.m in Sources */ = {isa = PBXBuildFile; fileRef = E88349E97E6DBAF0F9E56B0BC24364B4 /* BugsnagReactNative.m */; }; - EE7B472F4F4FE938D3385C50E1BC8A32 /* MacAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 38258EDC2ECDB25B79EB77612803051E /* MacAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - EE825EA33470B2C9CD04B18D6E44DD89 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = FFDB251CDA064A494DD8DE2607DC5A3A /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE82CA3FA6133F983F2921D6AD59FDBC /* RCTAnimationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 142D0B26F6F769E8C337BCBFCC795EEC /* RCTAnimationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE83827C2C2FFFE2B3D87F828CAE45D5 /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = B45474904DD6995F174BFA84F6F23090 /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE8D99A6E979BFE2D5D0C68FE1FF4A97 /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = 38A12A3ECC3F33AC639F777F219463C5 /* RCTComponentData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - EEDE9DBF81AEACF1FBE67C6E9AD61A77 /* huffman_encode_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 0F5D190FECA2BE663103CD614226C896 /* huffman_encode_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - EEF67868B42E6BDF2DCBE615D01DF865 /* HazptrObj.h in Headers */ = {isa = PBXBuildFile; fileRef = A1EB5F02162EBF607D4F46A727A08B51 /* HazptrObj.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF12769A2BF7AE53EA1B5E52B3B24647 /* StreamThroughputMemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DA377E3CB010F7FAD6550A7731DC2069 /* StreamThroughputMemory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - EF23BAF6AC5064B5EEDB1435462ECF78 /* GDTCORRegistrar.m in Sources */ = {isa = PBXBuildFile; fileRef = 482C6BFEBA32EB9077DAFBC6513FFC1D /* GDTCORRegistrar.m */; }; - EF350862356CA2CA24CD9557640C1ADB /* RNBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 933DCB7DEC624B679142B6159AD63A95 /* RNBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF6380A4AD81E918AFE846670B999340 /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = B9B3872121E4529E8679F086AD34150F /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF9B15038C3EE1070127B90340F80400 /* FIRCLSCodeMapping.m in Sources */ = {isa = PBXBuildFile; fileRef = C94A27A28BC851B411267E9F4705266D /* FIRCLSCodeMapping.m */; }; - EFA59281F663137FB9C8A92D4875717F /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 5856DF3456105DB470C5E270C33CBAD7 /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EFA8464A8A1D5B8D6DEF6ED34CF36F4F /* AtomicLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = A767B1B3873B1AF05F2881B4DAC3C7F2 /* AtomicLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EFB24E3C85A3FBE59539C3B60880ED43 /* ExceptionString.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A3BF570E94C8640895966EC47D8ABFD /* ExceptionString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EFD35F282A3E7560EA034CD6CBDA7189 /* FBString.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F6A790A04657521BE6AAFBD73CE25EC /* FBString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EFDC26BEF6564DFD8368512DB220CC16 /* ARTNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 571A7705686EE4EB6614EADDD6412C1B /* ARTNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EFEABA453610212041249B9E2C4C44C7 /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1E3906B67AE280892E16D218B31CE65D /* json.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - EFF2E8F15675C46488D976CCD1D0D04D /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 96FF04602D313A035A686E37DB0AD9DD /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EFF3802BE12C8864F596F298ED7C9571 /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = 09548D9C5FD0A5969D3B8EF8CA6B4A54 /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - F0074FC32FA2838BFBE9F3A364991BA9 /* muxedit.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D9E65506D61DF8C18A834C7563C7C8D /* muxedit.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F031EFBB04D85BDF1D3CE1603D03A720 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A15423DEFF3841394DA8BE3321D59F9 /* RNGestureHandlerEvents.m */; }; - F036B0715A951B6C01B4616207D37236 /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 7CF6E3597138D19F6B45E31897D0DD4B /* RCTErrorInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F04DEAA0A6BF74229F8A9F61EEC6BF76 /* ssim_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 402AAB81A0A41700074D0620AF821F75 /* ssim_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F06C49CEDD5BFDF07059776AC3BFA4C5 /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E55E4E782BC0B7CC36EAD9507597C474 /* Format.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F0776CE2734B8B18F9E92ADF58EB39BD /* Indestructible.h in Headers */ = {isa = PBXBuildFile; fileRef = 9353040D7264C12287CD0206AAA0DA10 /* Indestructible.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F0A02DB06A05404974BEAC7AE12CD4B3 /* enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = DE10C6C8FDDFDEA4542FC71322F6D75A /* enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F0A3347A6631D62E870AE8AB122BE849 /* GULNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 28862980D7EC5653DE2716BB9B13C94C /* GULNetwork.m */; }; - F0A4C88788A527F9EECD7F3A1BC435F2 /* CacheLocality.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 167F8EE3DCF2AB9B35CD71207B01ED5C /* CacheLocality.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F0A59984C7AD739EBBE9EC452277A526 /* BSG_KSSysCtl.c in Sources */ = {isa = PBXBuildFile; fileRef = 0B8A807A3234E9592B16DAF7F1EC8444 /* BSG_KSSysCtl.c */; }; + EB04398384E73EE07BD888F6792DD980 /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C34BB7C9B5B6543C0E09A57C1B4F97EC /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB0D803A2824E1D994956F64A7BC4E81 /* MasterPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = A7A0905593F2528C6B73F62C34691F05 /* MasterPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB14C78C69BA17F8F57A3486D8055C53 /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A201E321369369E539FE39ED859515D /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB1C1F81B0144E43EF807D2C8EE59965 /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 744A8C51F58F8778C55BA80C9470047A /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB1D80A3D49F992E63EE8FCDBA258D0B /* GULLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = BC1B59FA7B55DBD9453B1CDEE536A836 /* GULLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB2099304CD314EEFF0206113176CE9C /* BSG_KSCrashC.c in Sources */ = {isa = PBXBuildFile; fileRef = 971CD715DCCACC85D5AB2AD820C9B7A7 /* BSG_KSCrashC.c */; }; + EB24DBDCAF2863C9CBF16FBA8F968E22 /* RCTNetworkPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 785EDE9EB6D9A2635C20A40E0D42021D /* RCTNetworkPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + EB29EA2290C82DFF3A2C141D4867B820 /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 920E913BF836AE4C356DD271D480E02C /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB33AEF5874FE6570CCB62F87298A82E /* RCTImageViewManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = B69F271A5C44B69E65EC9A06D5CF0CA2 /* RCTImageViewManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + EB38E6BE25B7A0A918A282060959C00B /* Varint.h in Headers */ = {isa = PBXBuildFile; fileRef = ACF5B261D4C1ED5A6B4EA7D551B4517C /* Varint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB4D1037A2EC03E69751E5C1401D3A96 /* BSGEventUploadOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BF80B3C5C9D06C7E4861B18B24125A9 /* BSGEventUploadOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB4FFF9C252FD851EA6F308B0FD6E94E /* quant_levels_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D15D4485815571BD58306D43BF2AB9E /* quant_levels_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB59014043847D75B55B6F7FE01BF13E /* FIRCLSCompactUnwind.c in Sources */ = {isa = PBXBuildFile; fileRef = 68CBB36E7717339C490EC08F8C06B009 /* FIRCLSCompactUnwind.c */; }; + EB607671CA68A5497FB3F4992778BCFF /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = BDA2A69E14FB628DD6843A24D005F18D /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB6336F6D097B9A2678B064AE483EB45 /* FIRDiagnosticsData.m in Sources */ = {isa = PBXBuildFile; fileRef = F38C5303F7B521491FE9BA5EC76CB6E8 /* FIRDiagnosticsData.m */; }; + EB80238017884F125B9784E8A82770E5 /* FunctionScheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 7329DC9DC46804A4F663CE828B7DF7E1 /* FunctionScheduler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB85F554E3C07512319B854B78F101F8 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E66BD9275AF1DCFAE284A18EDB3DB96 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EBA4B42F86FA19C9293C03AD8686145B /* StorageSetters.h in Headers */ = {isa = PBXBuildFile; fileRef = C36FF5D1A5B1A0456D961B26047AFBF3 /* StorageSetters.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EBEA8CA3A1E924E17947C277172F2B33 /* AsyncTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 39209F2A8F1496454A4AE88A288F0C42 /* AsyncTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + EC08FBF9D42E49D3830F7EE7F7EDF9CB /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1DE1EF90DC2BBDA0ABA8208EFED815A0 /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EC2648D49060E72BCCF4EF228A121609 /* FormatArg.h in Headers */ = {isa = PBXBuildFile; fileRef = CAB2A0986BCA709B4AF09D1754932213 /* FormatArg.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EC301CF66B7105F0C3976DECE6A4014D /* FIRCLSPackageReportOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 2ED9BF56428DBA0DE10A75282936070F /* FIRCLSPackageReportOperation.m */; }; + EC4B34E3C4C20F841A8551C05428934C /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58185E3C2604FA10E23E4B814C6AA23A /* TurboModuleUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EC56E8D37A1EF91594F4F85BBB6CF794 /* ThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 6325EB92C709FD51590164146B016D32 /* ThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EC61B0BE381C36711C2C87B124C01AE9 /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = A1CE18A3F321A875155302101DDA52BE /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ECA65EB0676276BB1A6987E7DA9AE058 /* pb_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 5C80621220CDF16B10C3A915E83A66BE /* pb_decode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; + ECBD429060DEC16908D656440A81BDF4 /* RNFetchBlob.h in Headers */ = {isa = PBXBuildFile; fileRef = 84FACB1B8A9DB495EDF073E347729893 /* RNFetchBlob.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ECC014D16CBC092CE3F8DF77EE1BA855 /* REAConcatNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B8D8BFEBC605F5B2FC3A82710426E43C /* REAConcatNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ECCF81F5F061B785593B1BD3E433F28C /* EXAppleAuthentication.h in Headers */ = {isa = PBXBuildFile; fileRef = C8A62565FF0C008C8CCCA2F926455E43 /* EXAppleAuthentication.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ECD0C5360E7811C936155AAEF32D7CBD /* FIRCLSUnwind_x86.h in Headers */ = {isa = PBXBuildFile; fileRef = 199D2E3FA4093CD5CBD0F97D0EE70B56 /* FIRCLSUnwind_x86.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ECDED650F177962D4CFA65C9DDF3811F /* ConstexprMath.h in Headers */ = {isa = PBXBuildFile; fileRef = A6168E0E97D94D09DC85AA49AC1CF4B7 /* ConstexprMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ECDFD0F589A0A23AAD6BE0D550CC85A0 /* RangeCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 65F1AC1A3944F25FB966B24E6E90882F /* RangeCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ECE7BD204DA630BB4A0AE60A0B54BE92 /* Subscription.h in Headers */ = {isa = PBXBuildFile; fileRef = B4A78ECF85E46B193729EC71AE037CAC /* Subscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ECEB3AB42101DDB0A76B27EE16178031 /* FIRInstallationsStoredItem.m in Sources */ = {isa = PBXBuildFile; fileRef = CA53479D1F7EC6FB3472EFF20F157B6C /* FIRInstallationsStoredItem.m */; }; + ED1294A4072B1958A6928F5A789D4C13 /* EXVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B0B5D9B71A83EC9F23FB5432F6A776D9 /* EXVideoPlayerViewController.m */; }; + ED276E5B54D36A9E60A7C3A7A97C1ADB /* GDTCORStorageProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = BC5FD72C5B1D80E461FC33D412719E91 /* GDTCORStorageProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ED48F81E61659B7183C6AF81E77DD27B /* Retrying.h in Headers */ = {isa = PBXBuildFile; fileRef = F9AE333ECA95951FD8ED4424A16B3433 /* Retrying.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ED5D88309179900553D4065574C01DC4 /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = D20C1F69C8D64CF80267E0043A39E62E /* QBImagePicker.storyboard */; }; + ED95056D908C3FE236BD332F2DA1549D /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7CB388056028D7AA7C6FD0156B291F39 /* Unicode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + ED9A4149E250CE19F6B6ADFF81DBE62F /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2FB913EDB37F8913760401CA81068BD /* SpookyHashV2.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + EDBF1C362EA0C9F90761D9057516CA3B /* ScheduledFrameProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = BE9AC67A44540CE72419BBE469231EA5 /* ScheduledFrameProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EDDD108D041C3EF38FB9EBF5A4315BF7 /* BugsnagMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 416922757DBB94A29AA7BA3BE7FD9908 /* BugsnagMetadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EDE8ADD40B65AF973CED240BB4BC2C11 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DA6CCA1909E5F67EFB196C7F3C14F29 /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EDF9E2C50AD21BB24559C6D83A519B36 /* AtomicUtil-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D4991C2BF9015361FE42050C678D141 /* AtomicUtil-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EE3C85BC78098BB8342507D78A02E897 /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 7CECBAB05A930D507AE7B0E29056A501 /* SDImageCacheConfig.m */; }; + EE47B233BA980AE3837F75CC6B7D2CE4 /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DF5EBAE45D17E0DE1799E01B3B01984 /* RCTReconnectingWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EE5459EB7041FBE34FA586F697DF57C2 /* BSG_KSBacktrace.c in Sources */ = {isa = PBXBuildFile; fileRef = 66E95A42F0A22197DC0CC828955BCA58 /* BSG_KSBacktrace.c */; }; + EE5F72696C9020B21043E4DB6F811F5A /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A01526E3DCC0E11B78DB0E7B3B6F7FB2 /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EE62E14DF77191186F73849ABBD334FE /* SanitizeThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 909324D1FAB7D91BCC27BF30156B1037 /* SanitizeThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EE6B2DF70DF2108CA2E097E4FBBC8A02 /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 94F84EA98D279AB2D0F27FD2F47507A5 /* RCTLayout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EE72470E02CA36D0B1EF920FA84B4C8E /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = 19C40F199DC8A09E224DB48995827F5E /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EE7FE8B47BEAE181FE13934EE9DA0995 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = A8D24D469956C8F6DAEE7C47B001D415 /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EE82C20EC17914E39BAFE0150F4A68C6 /* BSG_KSCrashSentry_Signal.h in Headers */ = {isa = PBXBuildFile; fileRef = CDF16ECD50D0280EC60B6417A2282ABA /* BSG_KSCrashSentry_Signal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EE842B3A40BD13FA6EF8C6C17304AA3B /* Pods-defaults-ShareRocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FF5404F59DB9379D3ECCB28F24BAFA3 /* Pods-defaults-ShareRocketChatRN-dummy.m */; }; + EE8BC667B237C35A621AA66F6E3B6E3A /* LifoSem.h in Headers */ = {isa = PBXBuildFile; fileRef = F5C47C24A4E9B381B4471B21AF14D50F /* LifoSem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EE9C7AAB735A46CF2BD44DE9B71A4A6B /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 644E133CF3831EA6989CE8834B6575E6 /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + EEB0ED6DDF616D30E5C8260D5E17D9F8 /* SysResource.h in Headers */ = {isa = PBXBuildFile; fileRef = C4AFB3459812979FCF112335B1814369 /* SysResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EECAE7C1CFCFA1C953F0F4FD74697DCD /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ADEB961DEDA65743BCB157D54689070 /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EECD6ABA1686747B7A909816221D84D6 /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = B7789F4DD5CB94A03DCE8958303BAB32 /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EEE36BA373727B18FD3B8DEADC356D57 /* Partial.h in Headers */ = {isa = PBXBuildFile; fileRef = AD85699B31E40102C07F98DDD2FD6527 /* Partial.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EEECF7D9260ADCFC3B9947694DE24B59 /* io_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 68060AEBDFA64E78B014DA913C5C68F2 /* io_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + EF03AC67826FC3FAA7B815C0F471D0DA /* PThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 42E3DD27E3C62F7A40FD2F65470B1589 /* PThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF070EC98256E60B908537CA9A022E54 /* Thread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3956A43D3DF53657C5F1C8AB141FCA72 /* Thread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EF2EAB38780976FD8FB6EC7D76B06051 /* FIRCLSGlobals.h in Headers */ = {isa = PBXBuildFile; fileRef = B48D3B93369EBB01AFF2CD25B126C52E /* FIRCLSGlobals.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF2FC081E2C1F8E7DC310E222BF43F55 /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 90E0C5C1D038330241A0A2B207F13D08 /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF350862356CA2CA24CD9557640C1ADB /* RNBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E1F1FF326CB1EAE4FF47CAA50C53DD6E /* RNBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF384063531EC93D811EE18EA798964A /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 56E5FA42808A7E3FA3882E05796F2BE2 /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF43B0B2935894B2E28A9745F76C33BB /* UniqueInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 42D2022526F4B2777243BC68F4ABF49F /* UniqueInstance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EF6E7BB7625002F41585CBB2162532B8 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = F77B5FF434ABB196616C9FDD68A45DBA /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF751BFB54ACCF62AD691C93A1D636D8 /* FiberIOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = D8698ACE66F07F626C2B700C0BA8D62B /* FiberIOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF763F9D299027011E7E2D9D77FF645A /* IOBufQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E2BB7A4727306FDE5D3F4BFAFD898726 /* IOBufQueue.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EF7CDFA2C1805CED24ABDC5E5F281A2E /* Phase.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E89B6B8FDB288DDFFC2F6F07006D9FA /* Phase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF8A7AAE140B717E7D4865D7BEC2A810 /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D2B5DC912FBCDE6B892CA46F279A39D /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF8EC827EA6C28C10C06AE297C7C4558 /* SDWebImageIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = 55B433F142C10604DED65C5B3CD6AE2C /* SDWebImageIndicator.m */; }; + EFB0E8A9826CE09004DD59FF5F413CD4 /* RCTAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A608E0C3CA94318016EB7D1EC63456F /* RCTAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EFBC69F78EC6D96B4C4E4C93B50EC74A /* Registration.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F3BD9FE0ECD5B49CEFE657B3B74DA51 /* Registration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EFC03F1EAEC36B032E66084433B4DBAA /* evdns.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F787DF75B9E09594E5251817DDFB91 /* evdns.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EFDC26BEF6564DFD8368512DB220CC16 /* ARTNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FAD6BB44C5FCB7E7D3E10085572B5B0 /* ARTNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EFEDDF3B8F0F41CFE8144762FA8C088B /* endian_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 82908EB5AA22CDA5F63B991A8908CDC9 /* endian_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F0005D0971491565CD5110C617DD4E5C /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = BF6A49E6A21E30BB62BAC2885B08D2F2 /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F02C1AC3BB6EACA478292626B862C6AB /* JSONSchema.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BE2CE95755FD233875DDCC84C917EA0 /* JSONSchema.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F031EFBB04D85BDF1D3CE1603D03A720 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = 70C686F8D4EC9EA5ED579895B57B2716 /* RNGestureHandlerEvents.m */; }; + F03855329B4AD75B96659D181EA21531 /* Uri.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C8477445D129B95B0123B10B04C8B2A /* Uri.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F05FDA8067FD7D1C0E1E67A69560BB9A /* EventBaseManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 68E5B1003B8DCEFF9213D3CA6C3AA20D /* EventBaseManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F07567CCB1BD3727ED17130BAC97D1E8 /* vp8i_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 4340B7430F3D81B338E9EB775A64D8D7 /* vp8i_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F07AEF86AC6121F76D4FC73E398D9F4C /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 147256C1CA6ECB603F9BCC7C65C426CE /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F07D0AE11822588E3F719C7B61A8B80C /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = A72F4F01C82EB2FEF9C866D788AA26ED /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F095FDC20B3FDC932972555EA99830D2 /* ChannelRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 18BD1B7E92E88CC14EC8DE9514733A18 /* ChannelRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + F0A2FE162C0A1632A19056A64FDF9458 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E66BD9275AF1DCFAE284A18EDB3DB96 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; F0B7A5CEBB42EB368B082EAE88141AA0 /* FKUserDefaultsSwizzleUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 98C50B476070D8672516720D0DC6473F /* FKUserDefaultsSwizzleUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F0C4B4E55DE4C510ED1656752346CF65 /* ReadMostlySharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = EE1A20F80817C3502570E241C4933149 /* ReadMostlySharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F0CA886BC1754FB591038E97FDFBBB39 /* FIRCLSCompactUnwind_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = A651A21FE23C668C852E87BDECE35979 /* FIRCLSCompactUnwind_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F0E8B23E4E03F3482CE0E6ED89C960EE /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 44B053FA00285F2C0DCD94BEAC5D0B76 /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F0F1E13A9D82EE08ECA290920BC1B676 /* UnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = D701A1CF1CB4D49D5A42D1C4A0CC106E /* UnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F10FF67FE20590F282D6ED7674879E7D /* StaticConst.h in Headers */ = {isa = PBXBuildFile; fileRef = F1CC8DA0187F606BF5BF0A4A91CC75AB /* StaticConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1268D614ACA9A54A769B5B57B79CF7C /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C2FAC6E43FF96D09BBA247F341B74A6 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F127391E5E7EB0DF5B897220F9EABB02 /* alpha_processing_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 644633337DCD128ED7793DA3C7441FEB /* alpha_processing_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F12A6FFE202439992AF17C7AE792019F /* UIView+SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = 5617A0417C21E344068EC440BE7AE2FA /* UIView+SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F12E347C8D2056AF2BF6FB39323E1404 /* TLRefCount.h in Headers */ = {isa = PBXBuildFile; fileRef = C52D5EEE205E1F7DD0555001CB7F2C05 /* TLRefCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F13089368D7EF710B5CA482927EE47B8 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = F357C42D8F67194A251ED42AC4325922 /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; F13B15A4EF14C60B975E49962DF70965 /* FlipperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 34489AAB6DBFFF119F52D9D8F28A5A0D /* FlipperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F15739EE6AC842205E8C3784B4BAC312 /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C3E8B06E49C353852A8F06C8D386711 /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F166E495A558037E52CF8D058C505491 /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9672E302D45285CA795587F44D6DB174 /* RCTPackagerConnection.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F16BB54B7EA5AE18C17309D85E3EBD31 /* CpuId.h in Headers */ = {isa = PBXBuildFile; fileRef = DC98663CBAC5D49967881800F0B876E9 /* CpuId.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F186334A2971738EB8E6113CE5763DCD /* AtomicUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 897624EA4822C72FCC452205A90DFCEE /* AtomicUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F194212CD638F0EC8581A5D413EA480F /* RNCWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5474AC1721D19B83CDFBB3FB8A4B4337 /* RNCWebView.m */; }; - F1A6B6B2EA7CCB4AA1A695C13CF854B6 /* Subscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3675C963C782F3ECF1D355995424942C /* Subscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - F1C04455D19600434E83B96108F2F367 /* Flowables.h in Headers */ = {isa = PBXBuildFile; fileRef = 77B4AD5BD0867366BCAC679EF4C7DD7F /* Flowables.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1C5DFE2502E7275324BB874907A543D /* dec_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 463C40BF9D263B0F0FFCC31EBEE4F3DD /* dec_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F1E56A6FEB5E2DA3EA0BAC39C00DB8C3 /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E0FD9AABD54D4C664E1E35921489745 /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F20888EC03C954C5B689286FA39BA342 /* MemoryFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8FACAC187B44157FC8DE8BAD258EBE36 /* MemoryFile.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; }; - F21E8B5A300C96BF285E52A9058B2B08 /* TOCropViewConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F0EBDA87DC8D3A4C9A7FF510D285709 /* TOCropViewConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2335626B11CEE466E897FC760FB80AF /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = DAEFAA8FF94AA1D020B7B85B9691AE0B /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2482E8001CCABBFB5602BF4B1AAB2D9 /* Singleton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9AC8519E29D55ED91FE0970464B8F9D /* Singleton.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - F262A884E6F19E78B96CDB6BE0A6BE17 /* BugsnagHandledState.h in Headers */ = {isa = PBXBuildFile; fileRef = 682D1DDFE6604C66DC56A6904F4A0CFA /* BugsnagHandledState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F28F4E1DC276F25E634D1633A2E4AD89 /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 16A223CEA878D93518E9E43F6E112732 /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - F28FC996E9D7C12E3F41C1B640ABB2A5 /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = F92DABAC5582855340129072E321DE41 /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F14E2E18B4F2DC8E75A988E85DE77DA0 /* SysMman.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B1D0814E55E56B96BFC377C0059C7FF /* SysMman.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F16076BAB6001BD0FED3950911E50C56 /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = D32F6732FAD1516979A5B9333CC2ED3F /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F16322AB5F37F1184E6B4AC0BBFB671F /* BSG_KSCrashState.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A7315913B6B00C96B1969BC6DB6EA51 /* BSG_KSCrashState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1657CAD67C98E4364AE50501E714606 /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = D25CC58E2E6BE4726CC342479689DE85 /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F19164904B4C3E07CAF375DE95909F1C /* WaitOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = DF0B15772E0E0B0756F827B79AD46102 /* WaitOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F194212CD638F0EC8581A5D413EA480F /* RNCWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5621347BF283A428BFA1DECDA7C75631 /* RNCWebView.m */; }; + F1D6CAB5D35412D70DB5C6F42EDA2BA9 /* OpenSSLCertUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = DC49F5F953C7FE75F85B0FE2D307C478 /* OpenSSLCertUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1D9164589C65FCA0D769B432C50F608 /* http.c in Sources */ = {isa = PBXBuildFile; fileRef = A16956E0F13387473A1FADDE58ECD237 /* http.c */; }; + F1DDE8B1ED3759299992830E7CEE480A /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 71958D0A1F6512F350E97FAA14DCFAB9 /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F22BD3E903F69569F8C839A08E3DA61B /* NetOps.h in Headers */ = {isa = PBXBuildFile; fileRef = C702EBD3C9260919ACAA7E0A82E95960 /* NetOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F249DEECE91482636A20524122003F89 /* ThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A8419792B253793EEFA61EE8E0A6E9E /* ThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F25843714AD080F571DFAB9C7B6E4925 /* MMKV.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5CA67C3517994DD4BC785DB3A2B4FB1A /* MMKV.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + F277AAD3A9C1DF3D27CD5B747DA1BFE0 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 7799E18DBF8044E92CF250F46DCD321D /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F28FC996E9D7C12E3F41C1B640ABB2A5 /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = 5321578E4C914574AC5A3F7F7ACF0704 /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; F2A7A5F33E7DF4C6A8F5520A66AF831D /* FlipperKitLayoutPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 302B252F9DADA18163B5E886774704D3 /* FlipperKitLayoutPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; F2D0A70D9E495E49F40A40BACD25A8B1 /* FKUserDefaultsSwizzleUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 269F7282EBA65F5D446AC2E31FB83CF0 /* FKUserDefaultsSwizzleUtility.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - F2DD62B5AE98AAD31AEB934A7816223A /* FIRCLSUserDefaults_private.h in Headers */ = {isa = PBXBuildFile; fileRef = E0E7621907959CFCC82A5725717C078F /* FIRCLSUserDefaults_private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2EA1F8442FE6E18F3D809F3D012EA54 /* WriteChainAsyncTransportWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 4657CCCB92CCDDA25EF0802548198033 /* WriteChainAsyncTransportWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2FE9A0394AD88B97C8E5B38F176836F /* Cursor-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 81A496C1E15F3F3AC37175B4920FF619 /* Cursor-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F309AED73CED5A7AA25F996D48794DF5 /* AutoTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B79F9D35FD7D0A9CC6EEA2FC0B28D87 /* AutoTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F30C4F0A448815EB8E3C96ED8FB7FB44 /* PriorityUnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = C336B4D8990B6662D77B53EDCBDC9C6D /* PriorityUnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3AF45B9B16BA74C9D703FABB3B5E6DB /* quant_levels_dec_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 5E650516DB771BA1A51A67A821704DA4 /* quant_levels_dec_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F3B6AA56D417B90A01B73E67599370DB /* UncaughtExceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = F8CD2C6096A9D4F117D18EEE386A1A90 /* UncaughtExceptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3B713A3E80FC0CF2D82EF15D53C8DE0 /* Request.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 85E337353277B5A943B144A297742D26 /* Request.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - F3BFE825998CE05305ECEB4AFCF72552 /* FIRCLSDownloadAndSaveSettingsOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B66C21CAE7DE77D9BAA440A406B201D /* FIRCLSDownloadAndSaveSettingsOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3C8914FFA21DF9BDCA40FAA01B46D02 /* predictor_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = E3E88B0CE350E5F46AB94F51A3084A92 /* predictor_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F3D07B534C3D1BB6DD4B64A092D2CBD5 /* SSLContext.h in Headers */ = {isa = PBXBuildFile; fileRef = B2ACB7C42F1DE37F79D071DC63437F91 /* SSLContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3E2B0A5740BE497B3C034AA098983DC /* ObservingInputAccessoryViewTemp.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BF04880D3AE121D708597860B2B89A7 /* ObservingInputAccessoryViewTemp.m */; }; - F3F8F07E7A943E6DD08FCF13FC866C2E /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = C86BB786B3B58004A16C9CAF9B645A88 /* UIView+WebCache.m */; }; - F419AD6BA03935A851798FF9697FB620 /* EXImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 72902D0631A7B5703B22C961F29FFA83 /* EXImageLoader.m */; }; - F41ED9D7784D3526428A0D58FF30E1C3 /* MemoryIdler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2964002BFB205F392D39B2C836B6AE19 /* MemoryIdler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F423B832E82766817CCB176696EE0DFC /* READebugNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B8FBDA93C17934D9703B0468BB9788D8 /* READebugNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F4451EC162D2BD26F3654D762B959402 /* ThreadWheelTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 52B3BD3001DD4C280B48DC3695188A70 /* ThreadWheelTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F4550478BDFED58E7A7B10F491FD9D03 /* RCTImageLoaderLoggable.h in Headers */ = {isa = PBXBuildFile; fileRef = CBEC3F4089ADD5AB6DA330FFDE57B3D9 /* RCTImageLoaderLoggable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F45948725BBBD3E30A83A362E67A21C6 /* DistributedMutex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FA0A3AAE1D9214E3A5BF27D002C29A5E /* DistributedMutex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F466FD1A825158171BB105F385CE38FF /* RNNativeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 614E4058F18C064D420942BA82412734 /* RNNativeViewHandler.m */; }; - F4780CFFDCF50EE9D2080CB1FF0C14BC /* SlowFingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E43413B26C98EF6028F572F7427F9E6 /* SlowFingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F2DE71C4957C076193C528C12CE4C299 /* SDImageIOAnimatedCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B8A3FAEDB2F64DD6D6F17CD24CA370D /* SDImageIOAnimatedCoder.m */; }; + F337F1DB7A57DD1C80FA03307D48110E /* FIRCLSOnboardingOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 08A2D3ED61203699C6E69AEB06D1C0BA /* FIRCLSOnboardingOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F346B3C863F2759CFDD3C928B7889B25 /* FIRAnalyticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 374704F57732D2F851254C648CA148F2 /* FIRAnalyticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F34F42EF7B5ADEE10A59D0AFF3E9F4B9 /* TestObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = C259D520D409213364BF1A2188CC03BC /* TestObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3654A6E076904EE3BA4D9EB5E4A5502 /* Promise.h in Headers */ = {isa = PBXBuildFile; fileRef = BD083BEA419C7DF1EB778B933C9AEA62 /* Promise.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F389A8E30178964CE0918520E4C63453 /* ThreadCachedInts.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D813A9476AB28E62E3DA121A0362C1B /* ThreadCachedInts.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3949D4F8485FC7B07488774BC4777F4 /* FIRCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C616658CC648E09155A506047BDB957 /* FIRCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F395703BBAD9330714B1C1D18106D2E7 /* pb_decode.h in Headers */ = {isa = PBXBuildFile; fileRef = A72E28AEF6DF1265BDD71B5670AF408C /* pb_decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3A5DC70729A04DC781EC89C2BF28DE8 /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = CC799336E05389500EC88E957FB42160 /* RCTSurfacePresenterStub.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F3B7F04FA362B8A3AA3B307AA9407029 /* SingleWriterFixedHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = EAD4FACB9D0471C931F15BC3D70024B9 /* SingleWriterFixedHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3CD94B46A7D70F303A1A7B69A1D7FF9 /* BugsnagLastRunInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 434E94F8ABB8EC5550FB9722BBAB5A64 /* BugsnagLastRunInfo.m */; }; + F3D1277CC08C275020B3DCDDC03630CF /* ar.lproj in Resources */ = {isa = PBXBuildFile; fileRef = D138EEBF36D8E69C1BB1C575F483FB4B /* ar.lproj */; }; + F3E2B0A5740BE497B3C034AA098983DC /* ObservingInputAccessoryViewTemp.m in Sources */ = {isa = PBXBuildFile; fileRef = F0E2A3B05B70177D3701F3E365014AB2 /* ObservingInputAccessoryViewTemp.m */; }; + F3EC25FB83B45B7741D842E9CEA9B424 /* F14Table.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C405EC7A77603ED777850B068C8117B /* F14Table.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F40FA2995909681AF26E5DEA3A8E31D3 /* Invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = 393CE8EC718597E11A7CEECF30F7B927 /* Invoke.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F413973DA3F708F736163BDA441E6923 /* PromisesObjC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DC80956E306D104D9DA8EE53BC5F76CE /* PromisesObjC-dummy.m */; }; + F417563AE9F7E963923D828B729120FD /* EventUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = D6DA5D70F73C5260C38572CAB82003DB /* EventUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F419AD6BA03935A851798FF9697FB620 /* EXImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BE952648F93797D468722B37002481C /* EXImageLoader.m */; }; + F423B832E82766817CCB176696EE0DFC /* READebugNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DE49ECD736F3A64C331F6A1E4F30C4E /* READebugNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F42ADE5933BC4A89804B49459E74A76D /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FE6C989797E55076A1A74AF992750C5 /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F42C8BF58D5B89A62977257C8D106EE5 /* DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E3D5FF0ED8DC8C460ACAF715A3DACD19 /* DoubleConversion-dummy.m */; }; + F42FE2DAABBD5FA9F6CD238D8F09EF5D /* Rcu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7D6DC76017C081128AF141B447DA147B /* Rcu.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F4367E4512400BBFF59CB94299823ECC /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 2151DEF50B4887F6217F1F2C8F83338A /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F440ADBAB2236E5C36D7C95AAA11AEDE /* TcpConnectionAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = F83F91B2D05DD47B50B966F30439E031 /* TcpConnectionAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F466FD1A825158171BB105F385CE38FF /* RNNativeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = E64D6F2518426A503477914FC7324C80 /* RNNativeViewHandler.m */; }; F47834738C3399C03CB112AC256CD918 /* FireAndForgetBasedFlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = AA3C8BBE1A936D7951F79A44B7FD02E2 /* FireAndForgetBasedFlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F478F6A241D4FB2167913A893B747C98 /* BasicTransportCertificate.h in Headers */ = {isa = PBXBuildFile; fileRef = 95ADE5F1DC7D299FB47B126861411FA9 /* BasicTransportCertificate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F483BEA179CC564681C7B18DDCEE9377 /* RNDateTimePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 41C6226D2A2E1887F08D45F1C60C9D9A /* RNDateTimePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F48A273979580C4FCD416E2D50C69527 /* Random-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C93158493456F2BAA4F220083CADB69 /* Random-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F48A707C2120FEE7C964AFE728F07E6A /* Common.h in Headers */ = {isa = PBXBuildFile; fileRef = 80AB0B92F34862EBF7AAE62BCD3BFB2C /* Common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F496CC4ADEDE541136A65D60488A0FA8 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 2151DEF50B4887F6217F1F2C8F83338A /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F49C2FA8B1239AA5E35582766C9F05C6 /* RNPushKitEventListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CCEAF19D75CA0E17BFF341735F75F95 /* RNPushKitEventListener.m */; }; - F4B3F770970EFDAF6203DDFFD1F6EDD2 /* EventBaseBackendBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3B752E769E8F38741D11CE8E7DAFF4BE /* EventBaseBackendBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - F4C08A0CF246E3DE0AD81633533E750A /* SafeAreaSpacerShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7620D890F194860EE2882BB61D61EA29 /* SafeAreaSpacerShadowView.m */; }; - F4D332A88574CD6FDD403EA6D8374A21 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E9FC43B02A652C5EFBABABA7B5033D8 /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F4D59FBF8971EED16A3A357859818125 /* RNCommandsHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 934C200D580B365763E277BADD70B777 /* RNCommandsHandler.m */; }; - F4F3AEDD4CAFC6118CB66C7B933ECED1 /* MPMCPipelineDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E5AD003D0351443AD6EA78593F25440 /* MPMCPipelineDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F4F471BA104DE7D780CA07C4AB24C439 /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = AC3C3D8DBAF302326DE669BA3ABAE32E /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F4F67956CA3B9B43968CD36864CB7FAF /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = AB92F07C8F16DC3AB790670FF753DD93 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F4FE80AB2EA8DD144D7457A12534D90D /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 654B4588CF131310C1E22D0639B391FB /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F548D6BF33E92270294A87E2679B892B /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD55A550A260F6C74B624318596B279D /* MallocImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F56A3BE3ABD85646C2CA1A10EB587483 /* BSG_KSJSONCodecObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 3203C31776CA4DA3C1D69B0E9386215B /* BSG_KSJSONCodecObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F56DFBA280DD106D888ADD9A6BD09FFF /* SysMembarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FF1278116DDF6E31C0A121D313ECD61B /* SysMembarrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - F57BB923955752857C09D19789A7A383 /* FramedDuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = EE7E08EF7B1252B45B70331226DB8144 /* FramedDuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F57DB4C09456DA6D33DB815ABD0916ED /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 34AE617DAB12D0E38735A72FED407BE4 /* RCTLog.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F5B44CD867B849504948CCAA1D0DF236 /* ARTRenderable.h in Headers */ = {isa = PBXBuildFile; fileRef = 33F8FFA62D1612F7A046EB3870FF7036 /* ARTRenderable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5B8E2E9131DDE487E5F62FC3A015BC3 /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CA9D35E6DEC2B8DC589CA55C44ECBA4 /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F480B6E9D345916E799C85E993804112 /* AtFork.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 56519DD0C7D108E7542EE6CBD4386759 /* AtFork.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F483BEA179CC564681C7B18DDCEE9377 /* RNDateTimePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 01BFEF506A51006C8E0ADF8BA799173D /* RNDateTimePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F496D87AA8C7371E866779C107874687 /* FIRCLSMultipartMimeStreamEncoder.m in Sources */ = {isa = PBXBuildFile; fileRef = CBD2370D02EB3B8FBD40A033B277308D /* FIRCLSMultipartMimeStreamEncoder.m */; }; + F49C2FA8B1239AA5E35582766C9F05C6 /* RNPushKitEventListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 9284728F7EFB51C94FA364446012C888 /* RNPushKitEventListener.m */; }; + F4A418B2450656A9D2987B969129CF86 /* SDFileAttributeHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = A45B86740B69AAA5C0F05B0A58EDE5CF /* SDFileAttributeHelper.m */; }; + F4B02419BA3DFF8783C2541D0104A8CF /* ExecutorWithPriority.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AD8969F8B8FA962CAE381726C768953E /* ExecutorWithPriority.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + F4C08A0CF246E3DE0AD81633533E750A /* SafeAreaSpacerShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = F2D103493A4E5E2BFF321613C9284ED7 /* SafeAreaSpacerShadowView.m */; }; + F4D59FBF8971EED16A3A357859818125 /* RNCommandsHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 996F677F0C4D75E0BA8139D2D0B4FF19 /* RNCommandsHandler.m */; }; + F4EA0B1497921A488822DE891ABC0448 /* Hazptr.h in Headers */ = {isa = PBXBuildFile; fileRef = 0968102F2373098DC9AE92B7935D4ED8 /* Hazptr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F4F60C96F4B74BC9F42ECE082210F3C9 /* Pretty.h in Headers */ = {isa = PBXBuildFile; fileRef = 144B46E1E0D1B4E0404E9472E9B7ED9B /* Pretty.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F4FE80AB2EA8DD144D7457A12534D90D /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F090F061AC5C4B0E1DC3E845757F1542 /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F53CBB9B5039D55ED5F17513D84F2FBD /* Subprocess.h in Headers */ = {isa = PBXBuildFile; fileRef = 7627539D8AF7D002F4A4360B6B27BFFF /* Subprocess.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F53E3E1E16D23A3C1C612D460BB12515 /* ro.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 8A8E9CFBF687EC1E6D5F284EC2205B4D /* ro.lproj */; }; + F542426BD34A99AA4D65072269298C3F /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CDD860D6ECAD3BA713BD4D1F7DC63507 /* RCTBaseTextViewManager.m */; }; + F5501B9BD875517E4B2EC3FBC896C4C7 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7FC102D46DBA597743B98D535FAB2F /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F55D50D48DDECD7537EBA6D3AE0AF38D /* TcpConnectionAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45194B070A74DA7215769FF55734FF1C /* TcpConnectionAcceptor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + F55FA4914C9CAC4809FDA00BAF1D17DC /* HazptrHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = FA45F4A628D2428B77D2FC2F4E4BD03F /* HazptrHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F56F310CAC7CB10F55EAE8F2E1C6E694 /* evconfig-private.h in Headers */ = {isa = PBXBuildFile; fileRef = 77E27FA756A6B7F123B5FD0442782FD4 /* evconfig-private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F572861425F80702F338EDE222E82FC2 /* AtomicUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 614BA35B6914DE93A82BE6DC1195EBE9 /* AtomicUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F58A750DFFCE00A7F8C473C4394C935A /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = AF1052A3AA28D97DA92D09B41486C8AE /* RCTInputAccessoryView.m */; }; + F59CA967320D9BB376F3A50E43278038 /* SerialExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = CBC7720687E8A53CEA1A579059D11CFD /* SerialExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F5B06968D07E0905DC00289C01AABB9D /* StreamsWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = B173169CAFCA51717A0990FA0F85CAF4 /* StreamsWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F5B44CD867B849504948CCAA1D0DF236 /* ARTRenderable.h in Headers */ = {isa = PBXBuildFile; fileRef = C6CFB06B15368338718A38E06350FC81 /* ARTRenderable.h */; settings = {ATTRIBUTES = (Project, ); }; }; F5BC5D47E562AD877ED6742AB4589960 /* SKResponseInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 0146ECCB0970B6BA42AE57E3AE89E1E4 /* SKResponseInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5D3C0FCFF298BF3A38206D67DA9A454 /* HazptrThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 55831EB804F47E27775A4F202AAEC9A5 /* HazptrThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5E4735FFE2E2971E6330450EE6B82FC /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D241D128FCBB15F4E45464434335482 /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5EC9F81CE5F15548DD6BBC86B651DD3 /* RCTBlobPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9E51D64676B8178E5ADC730DD7B1BED0 /* RCTBlobPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - F5F722847F6C4117558D8606FA705AFD /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A89986F4AE4413B663478EA0594E4921 /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F607DC4200AE2D7ACB1CA72FCA5F351F /* SSLOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = C91950A7DFC8996A18ADDFAB2C6DD073 /* SSLOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F628297FD5ECE8EB931DF6D545B7E4FD /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = DA1B62512085290D3CE646FE4EC056A2 /* RCTInputAccessoryView.m */; }; - F628FFF7169AE07A3F0275BC9FB7D864 /* lossless_enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 181BB8553F5626DBE6B2445592F321BF /* lossless_enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F6299AC5DCDD8CE06277B980BE1AD2E3 /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EF30960D09834540CA7308F37BA73AB /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F632CE0662470B903C80EB4C336DA992 /* SDImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CA2B960B9E1731D599484C0CE3BA035 /* SDImageGIFCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F66297FCED3ABABD656A5DC6AE06DFDC /* Hazptr-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = C1A92D7C500C0C8CEF6AC4E77BC0643D /* Hazptr-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F67A8BECF0FB3F260EF90A5683AAF09F /* FixedString.h in Headers */ = {isa = PBXBuildFile; fileRef = 83E759385470971E9A1619229F94FBAC /* FixedString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F685EFE683930DBDD2BA287CF77C2BDD /* neon.h in Headers */ = {isa = PBXBuildFile; fileRef = D844116E0E005795AB0B48CDE2A3E004 /* neon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F68FBC70D4692D6C5C32D9FFD7E9809D /* SDImageAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D86896FB5858820428D3DDDC6CD96A55 /* SDImageAssetManager.m */; }; - F69BE4FAE4465806A3A51065F042DD67 /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A7DC779EC9F79607D650D429C2CFB5E /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F6F1CAE84E62574EE60295D78F5D2CA9 /* FBLPromise+Recover.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B283E3E1AF9FE53C336B499AB040D8C /* FBLPromise+Recover.m */; }; - F6FAC1386500D64FD13A33E85E8D7105 /* AtomicHashArray.h in Headers */ = {isa = PBXBuildFile; fileRef = DEDFCDEDEC54C491C5F3C67AFD4F3CB5 /* AtomicHashArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F6FCE041682C9851DE84BBFBE2CA0D03 /* FIRCLSFileManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 59A422662B4C7E84503A2F4A62B082F6 /* FIRCLSFileManager.m */; }; - F6FED06D21CA6222400B715E71770E8D /* ParallelMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E994E6FB4BBB5D87BDF1A7DE791E5E6 /* ParallelMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7171D4031DC7E6CE5D0B3C3BDA7C526 /* RSocketStateMachine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A0E9033941C3AB907B1B7A92CE61D944 /* RSocketStateMachine.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - F7179A70718F51AB2196163783FFA6CC /* evrpc-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E32947F097148F59B3F1E82CA8CFAF1 /* evrpc-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F71D00D32966A21180DE4624B6DDAF80 /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F6403C9B3737BF0A8227211F0D7E766A /* RCTMultilineTextInputViewManager.m */; }; - F7388FA0AD49DE48B7D34E3E68E389B5 /* ParkingLot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E79C2D119F2D803A10DD36C7E1C7AC04 /* ParkingLot.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - F739469FF672A9E8E2CD5B34D96FCD2C /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = EDDB0ED7D13BFC094D2760B57240116E /* RCTAnimationUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - F742476F069ABB187B970BE295F65D14 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = DDD88E60312C8EAF026BB69E518FE5C7 /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F75C507189DEFCF81FF4E230CFCFE137 /* rn-fetch-blob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CB651E6E4E2D6D503984BD221C592A8E /* rn-fetch-blob-dummy.m */; }; - F76FA8AB88F47BE2D45B7F9D375A558C /* RCTKeyCommandsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D24933DDC5F3B81257C2F4F169E9F5E6 /* RCTKeyCommandsManager.m */; }; - F77848E2B1CEC321E45A1F12E1BE79B7 /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0B922E44971B3921CDD009FE8B22C4CF /* Conv.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - F77D0A1AB7C54B86A8A46520872DB1C6 /* SysResource.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3E17D8288C72780F8067F47CB16FDE7E /* SysResource.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - F79E170A0756EAB31555917C3C4D0D79 /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 4015B082139928B6E2862D193107C09B /* RCTInspectorPackagerConnection.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F7AF05300DDFD0C25DB8AF9A7F60762C /* RCTDevSplitBundleLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = E9D57147F19420CEA94900C5A71CDE73 /* RCTDevSplitBundleLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7DA8F02B7D644C6C622BA63C474EDBF /* RNNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 937390C7D5C482A8CBDB82C6853E5501 /* RNNotificationCenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F5BD0E6B6DF3CB46CF3A1BCF73ADDE09 /* FIRCLSContext.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E4230BE8F440376E8C2056CE10932FB /* FIRCLSContext.m */; }; + F5D3E6ADF8346099642D6B94121F5D00 /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = E6C7448F6E74F1B3741E80C1407DB9AA /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F5E4735FFE2E2971E6330450EE6B82FC /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 79D0F4BEC16414280B347604DB4E25E4 /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F5ED92DD00217F5B31E36D164EB8FA4E /* Fingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D1197EAB8DC51BB58614FA311213FE6 /* Fingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F5F3A2C47046A40E8452C02B8209E5E0 /* BSGInternalErrorReporter.m in Sources */ = {isa = PBXBuildFile; fileRef = 023D1714BC6B2A0B494473E614844FA4 /* BSGInternalErrorReporter.m */; }; + F5FEE2C3E452876030ADB3D139C7B3EB /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 03FBFF30594F0CEA591FF451970653F4 /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F604CDE3522C85E4D2A64D403542A20F /* GULLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B02821B6E81E20C9CC6052F61C621C4 /* GULLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F64F96678B2FACF209B69700EAE9879A /* MiniPBCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = A760025F9DCA8E281E648E58C5F5CFD8 /* MiniPBCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6546656BBCDA692D8AC0DAF2B22316B /* Benchmark.h in Headers */ = {isa = PBXBuildFile; fileRef = C56532EC0EFA749A87186D083FF75C66 /* Benchmark.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F69B725D133A0C17F68F1AE4EA9CD309 /* SSLContext.h in Headers */ = {isa = PBXBuildFile; fileRef = B2ACB7C42F1DE37F79D071DC63437F91 /* SSLContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6BBB5AB6F0FBE1D39BFB1B2E8542B81 /* IStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 321BE554D2E363EDFEC003839ADA7C62 /* IStream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6DA5FFDC62D0B4EE86F28F1704D258C /* ScopeGuard.h in Headers */ = {isa = PBXBuildFile; fileRef = E96622D92C07CF69EA6BEF2AA363F0A1 /* ScopeGuard.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6DD8C63B7B4C00F5466C6FE217FA62E /* GroupVarintDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C7DD8FD043A47577F15DC6CF75B2B5F /* GroupVarintDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6F78D543DAE080607B3A86197FAF7AC /* GULNetworkConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E3947DC22A5110AC3C2BEA168E2B5E5 /* GULNetworkConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F700728CE6044893606501F341C4D0AB /* Executor.h in Headers */ = {isa = PBXBuildFile; fileRef = FBB320002E181B764E4B39247F2C49AA /* Executor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F717871519E8CD3340D51DE6CAC298E2 /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E21C45B397F5E0D718972EB9A1AA3BD /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F71B248075F1936754E6DDDC27E61B0E /* SetupResumeAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3E9C9ECE7547F686B756902C9B85AD0D /* SetupResumeAcceptor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + F71E2166131BB9A8CA28F29B0683CC0D /* BugsnagCrashSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EE423A9240BC77F04F0954BFE9AB21 /* BugsnagCrashSentry.m */; }; + F726406A8833FEB1EDF44B032CBB3C11 /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F19FBB1C6850FD0D010A5CE4BEA22D3D /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F73A7E6B081017C3B9444BEC325487FD /* PolyDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = D10F12D128550E3DC072FBFC7CAF85D8 /* PolyDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F75C507189DEFCF81FF4E230CFCFE137 /* rn-fetch-blob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B2239967123C25EBE50C9AE997EBA3B2 /* rn-fetch-blob-dummy.m */; }; + F76FA8AB88F47BE2D45B7F9D375A558C /* RCTKeyCommandsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 598032C41ED7209D4D75542FF1256B60 /* RCTKeyCommandsManager.m */; }; + F7701AA1791854F24F2B744B6A3F331C /* BugsnagReactNative-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A503693896CA041F220F3392F98D2C4 /* BugsnagReactNative-dummy.m */; }; + F78AD42E06E698509C976499DFF58EE2 /* Inspector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CCE6F0D85D54A00E182C45B6F5C344B2 /* Inspector.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F78BDCE200CF17AE1A5CFD0DA4EE3649 /* histogram_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 85CCC568F8B4853890D4002955C643F0 /* histogram_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + F7A8CFC115E01C98F9E257A450DB654C /* FIRCLSUUID.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DFDE0F1F6827D9150F1F6A956057CA6 /* FIRCLSUUID.m */; }; + F7B1E491A90F97D1FBB88B009239465A /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = BB9CC1354ABBC880F7DDB6106CBDE2D0 /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F7C53EEBECE430E1D0E3F10C65584D3B /* ApplyTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = F0DD32790BF0B2290C451608FE612652 /* ApplyTuple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7D92A1BA55DBFAAB8644E21271B2079 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = DF89921367DDB419FD2E008843163C09 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7DA8F02B7D644C6C622BA63C474EDBF /* RNNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 389CD7741351AB924E728EC4798FC86B /* RNNotificationCenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; F7F5DA933AAFFD1325DEBD7BB63FAAD5 /* SKBufferingPlugin+CPPInitialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 30FBF9F21765CD2B2B91FB4335FCE513 /* SKBufferingPlugin+CPPInitialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F8056A32832DA6F8063B38F4DA4A22A2 /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = B6D2E1D1CAC874F5DD7600D748D64C55 /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F80D01486CC0DA528BD154723E1ABC73 /* GULMutableDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AC7AC6810C2996CF21B58F57C3F54A4 /* GULMutableDictionary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F83F3983F84E9143D0EFCF93DCDE5F65 /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = B51EEE12985C53348E194EBB46753C59 /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F842227004D92592655361330D9894F4 /* SingleWriterFixedHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = EAD4FACB9D0471C931F15BC3D70024B9 /* SingleWriterFixedHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F84B4AE2AD4E241C7F0D2974FEAE2357 /* Observables.h in Headers */ = {isa = PBXBuildFile; fileRef = 43861F8B5D923063441C6C9B76B000CA /* Observables.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F88938C80FDE7851ABA9BD288F20EA84 /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = DFA270BB02695B4346A971BC4359CD23 /* RCTScrollView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F897EB5F202907A4C3D941CCDDD76454 /* F14Defaults.h in Headers */ = {isa = PBXBuildFile; fileRef = D4BCB0CAAD65FBB0F6AE920BC1F835D6 /* F14Defaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F8A18CD4C4AAAF3D84EE1059ACEB39F6 /* REACallFuncNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B997DCAF1F85412031CF6D4A3BD25D8 /* REACallFuncNode.m */; }; - F8B1F4381BD87E10E6433EA587C9D45F /* TcpDuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 8450CF4C473130B21E41CB49420EB6B3 /* TcpDuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F8B4772190A25511B38AE29DFFCEDF03 /* openssl_aes_locl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6931DC644FEDF73FEBBE11DF0C21A77D /* openssl_aes_locl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F8B587EECA82B073D9A863A110BDA265 /* GlobalExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6C1989CBEB6492178FB599E7162B2097 /* GlobalExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - F8C4F12EF79EFDC9FD59AD8FE322F5BC /* FIRCLSdSYM.m in Sources */ = {isa = PBXBuildFile; fileRef = 11A5473574DB8F5B87B8A158CA9708F7 /* FIRCLSdSYM.m */; }; - F8D330CDC93404A50EE610DBA2891A13 /* RCTCustomInputControllerTemp.m in Sources */ = {isa = PBXBuildFile; fileRef = 460ACBD9D5F38F734A4148F9B6A2FD86 /* RCTCustomInputControllerTemp.m */; }; - F8D896A34EDAC9AC42411C2555AAEBB2 /* openssl_cfb128.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4C0D19222FBB7FD8D7B92CB3243EABD1 /* openssl_cfb128.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - F8EDFC710E4AB90BD849E53D22DB8C9F /* SDImageHEICCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AA541D7BE961CC64F2D9CCD2719F85C /* SDImageHEICCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F906BBF277C1C13C8DE3217929441C97 /* FIRCLSDownloadAndSaveSettingsOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D2D7C2D1FF6405FC4F8DCCBEB33D66F /* FIRCLSDownloadAndSaveSettingsOperation.m */; }; - F91310E08203E5D831790851FB243BCE /* filters_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = CF6F2DB2D18A812C3A854361966399FB /* filters_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F92CA35C9F7358EBA0986DD88B3E3656 /* Base-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C123BAA55F6AFD3FBB4D6479169F9F8 /* Base-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F8143EDA79D6763906F40D9441E20944 /* Future-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 86C8AFAF52D4784EC7065D0D01FB286C /* Future-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F8410DD99AEA707624CAE2C75F100A07 /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = E2E3E7B7F4020EE3A3F8B639ACC00310 /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F8450B01C250F8071A2E452265156B8E /* RCTUtilsUIOverride.m in Sources */ = {isa = PBXBuildFile; fileRef = A968324B0784C8F950C8F9ED1FEECC6C /* RCTUtilsUIOverride.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F8531266741C25FBB15DC1B26005C9BA /* RNFBJSON.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A8048665A94723F5E7236C65B4D80F5 /* RNFBJSON.m */; }; + F8581013E9700E95EFB3B792418EE3BD /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F662D0D4F3FA959BF89BA93821F6FAB /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F87C8D54DCD81FF760596C59228DF29D /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BD55AF06C4C5D21CB16B94666B41A91 /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F893EEE93FE9E361D5164F9A36039008 /* FIRCLSDataCollectionToken.h in Headers */ = {isa = PBXBuildFile; fileRef = EB5BB0A2EBE0C8E9B64B96F6CE49737A /* FIRCLSDataCollectionToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F894D9BC72932EE71A6908B345618405 /* CString.h in Headers */ = {isa = PBXBuildFile; fileRef = BE4B2EC9E780573AB23F987993FB301D /* CString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F8A18CD4C4AAAF3D84EE1059ACEB39F6 /* REACallFuncNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 41BEDDA58A460F4905BC985C1FDBC27D /* REACallFuncNode.m */; }; + F8AF944A4ED054C3018E552E279D5065 /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6CFDA273373426936C27E061A9BA16A2 /* dynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + F8B01FF90F9647EBEC9472A1F0CE3FAE /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 84EC04911BB9E6D9B7856568B9938009 /* RCTReloadCommand.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F8C12BEA8CCBBEB7AD47DD2BBD95A09C /* SDImageCachesManagerOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = BD3ECCBE605E838A98E04315AF90943A /* SDImageCachesManagerOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F8D330CDC93404A50EE610DBA2891A13 /* RCTCustomInputControllerTemp.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BE007A3B2DCB6601D82C16DCA04FC1C /* RCTCustomInputControllerTemp.m */; }; + F920995B05B070A46E6D3FE7E394CAD4 /* common_sse2.h in Headers */ = {isa = PBXBuildFile; fileRef = 03B96308C041D885CCF507BE7B0B0340 /* common_sse2.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F925F2DF0DA791631303F1AA46832B0D /* FIRCLSUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F25DD195E34542EF84D539694EAD5F0 /* FIRCLSUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; F9354085A78A02E78585F70FBA552E2A /* FLEXNetworkObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 5409A05504A9224238190E1A66F61FAD /* FLEXNetworkObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F95048405302361A3B9446793280CB69 /* evthread-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F3B55915438E2A778BBDC814F29F37B8 /* evthread-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F9553F19108187248B88CBF9DDD7951C /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 28794D09E1EC371253513C9CFD8D9F51 /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F9938D98AD7A356B19576DECAB347044 /* RNFetchBlob.m in Sources */ = {isa = PBXBuildFile; fileRef = 74E5795989677BD11D84DD618F6B1C27 /* RNFetchBlob.m */; }; - F9A60191C7062D17C87F4EB34DAC6822 /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = D44C3D070F917B2053F649C0103F83C7 /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F9D39A8CBF6C586975C58C72248233BD /* HazptrHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = DB5270A4484D1B65DE6FE5335163CC17 /* HazptrHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F9DA7D890B5CB3C39FFDA2285340FDC2 /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 1892B79315556CD65E27E57D81FA5045 /* fr.lproj */; }; - F9DC9CB3BAB3963BD8C0D38E698176CE /* RCTCustomKeyboardViewControllerTemp.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BD6848DDEF9209E9B81397B5A1F9AF5 /* RCTCustomKeyboardViewControllerTemp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F9E4F579E8F5CE0CA9CE34090E8EFD14 /* IOThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 28D50C0EAC121DA5EA76E53EF81A12AA /* IOThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F9F2C514B5F410C5C47CCCD541D1BFEA /* RNPushKitEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D4520260EFE9D2140A4EBEBF1CA252E /* RNPushKitEventHandler.m */; }; - FA1BE4143FD45F961FD9A664614AFC57 /* Phase.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E89B6B8FDB288DDFFC2F6F07006D9FA /* Phase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA25C6CA15033C044CCBED3A73A9113C /* IDStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C0BC1F04A6EFDC4DBBBFEB6EA5C02BE /* IDStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA453026E75C53BDB51D10BAC3000B89 /* FrameSerializer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3530B06F6C9BBE90FDCBF0F5DB4BDD03 /* FrameSerializer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - FA45667A89F6E58A093CB5A5F6E89BF7 /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 090A1EA6900D26D1A431D93BA3F93FF7 /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA471FD4EE12D741156C47EDBA0385EE /* SafeAreaSpacerShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 87748E27FEC252F9DB7E83F57992D891 /* SafeAreaSpacerShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA936BF6D3B1C06C043A2EE50DFD286A /* Codel.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A4D44FB517A2D94D03CAEC0D755B71A /* Codel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA9FEC2D0F04CC6D9C8C80DCB74DA91C /* AtomicHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 734E703831B26FFA5CD930FA8D15BE86 /* AtomicHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FAAB3FA4CA6D4D6D8B6E1CD0FC6D8723 /* RCTNativeAnimatedTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = D0845F85A8A1373A6FB9BE2889058A48 /* RCTNativeAnimatedTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - FAAB91E4D85612D5C00212220FF6789C /* TurnSequencer.h in Headers */ = {isa = PBXBuildFile; fileRef = E8A76263AAF9CD26313B2E6488D9987E /* TurnSequencer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FABB13441AC008E4956109563D55B445 /* FIRCLSReportAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 587CA81CE7102CB1AE338DEDA0A1B0D5 /* FIRCLSReportAdapter.m */; }; - FAC1C2EA4F2DEEE8672289E1460E164E /* FIRAEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 5344EE5042D2982D98BB85F45FACA5BB /* FIRAEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FAC4281B449183FAC94C4AD5A2430361 /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ACD9FC40D3DCAD6A8D1F238D62B668F /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FAEF728BFCC793B9E72526B755AA9495 /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D25AF5D38442FA4C8DB14BFD53FFA49 /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB030E0B40723163A8A5CC37778237DB /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = FAB355FBB0BB59C0EB7DCA71BE0091F2 /* QBCheckmarkView.m */; }; - FB13683FEEC61CA6568704C5039EDC4F /* ARTShapeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DBA234A66D021937FA2C77B8FF57C61F /* ARTShapeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB24A19A33840EA04FA9D8FA75476A69 /* BugsnagSessionTrackingPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = B0DFF74EA344E7E6E1B9A7FA9EDF17D8 /* BugsnagSessionTrackingPayload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB2C70175E3F08B660FB8815E94AD419 /* ExecutorWithPriority-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 50A35339F5AB5829AC849060EC4E180B /* ExecutorWithPriority-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB3512AB23B384838E8A9CBA480F0505 /* GDTCORTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 459058C8C420DB25AC00366251542B31 /* GDTCORTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB3EC3C17A7CC4700F8EF7AE093025D5 /* Unicode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7594BECDFBA4190D7EF60C88EB269846 /* Unicode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB4447529B3F3EA4DD3A42A968307CE6 /* RSocketStats.h in Headers */ = {isa = PBXBuildFile; fileRef = 63AE044CCFF233460DB6306511A7B7C2 /* RSocketStats.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB66016E3F1C1B753A5DBD26BE80C184 /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 76A2FBF4184A2FCA5AC7623C4BC03C3C /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - FB6D1BB0BE62D466EF4F12AFBA29BDD3 /* MemoryResource.h in Headers */ = {isa = PBXBuildFile; fileRef = CF92CB2DC5E901A2117D9D01EE01BBBE /* MemoryResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB83BE3DDC547CFD5EBEC9296A98C7D7 /* GULNetworkURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B2914B9B967D4181977345B5C172F7D /* GULNetworkURLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB85F16B8EFB2EF83F305E119A2EEE55 /* Builtins.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6DE2E381F8E1CE4FA0EC39A780E182F4 /* Builtins.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - FB935D5698A86459CFAF28FA69DC4680 /* PublisherBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E72D1BAC77A444AB18BD08E79FF60128 /* PublisherBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - FB94BAFB224D27310DDFABF18D2E82A4 /* Iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 39D1EEAFC914D6FEA74E28CDC4075CB6 /* Iterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB96B9C0C80FA7FED041995EE314FD2E /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 3350438F260AD1099BB622B3DD2B7478 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FBA6B332A427459389E4775C1DAB82E3 /* UniqueInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 42D2022526F4B2777243BC68F4ABF49F /* UniqueInstance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FBAB30971CAC8904C88D4DEBCA179F72 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F50A80BB6E2BDDAD17E1EA98198E62C /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FBB5C3336306487F5F61796B00E669BF /* FIRCLSInstallIdentifierModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EED55B8EA691269ACB175FDEF3A7FC1 /* FIRCLSInstallIdentifierModel.m */; }; + F935DFCE71C759180A282D16D7FB403E /* MessageTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = A2E6B5FB00130B2A74065468823F5126 /* MessageTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F97495E352CF05902D9B5F5C6A10E2B7 /* SingletonStackTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0B6320C3DD794AA8706FA4994AD76ADA /* SingletonStackTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + F9938D98AD7A356B19576DECAB347044 /* RNFetchBlob.m in Sources */ = {isa = PBXBuildFile; fileRef = E476010170478AC9D7AA25B09F7DCF62 /* RNFetchBlob.m */; }; + F9B3090242E6375F92F75FFF4FB52EA0 /* BSG_KSSysCtl.c in Sources */ = {isa = PBXBuildFile; fileRef = 5A73746A235A5F24EC13651F3F434619 /* BSG_KSSysCtl.c */; }; + F9B4C40ED3AE5323869D3417BF7DC7A5 /* CPortability.h in Headers */ = {isa = PBXBuildFile; fileRef = 17EAE7495E58442FC2FD7773A34CB238 /* CPortability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F9D870A3B72CBE475B83E1ACB9A0C764 /* RSocketParameters.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 74CD68F1A3B029127CCDC4D6601C3655 /* RSocketParameters.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + F9DB58EDFFBD2FF300718C58DA7CE7EC /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F5483E0672F46DDF80A6F09BA5152C4 /* jsilib-windows.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F9DC9CB3BAB3963BD8C0D38E698176CE /* RCTCustomKeyboardViewControllerTemp.h in Headers */ = {isa = PBXBuildFile; fileRef = 568E4B473F5892180E742DDA535A93AE /* RCTCustomKeyboardViewControllerTemp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F9DED28C8F0BF383F184013D5E1D17D8 /* Sleeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 70675BE4961BC87599BFAD42BBF644C4 /* Sleeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F9E0D81E416FFB96308516C42F708EEF /* IndexedMemPool.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DBCF2CFA6B9196E782F05003BFEB3E3 /* IndexedMemPool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F9F252C6CB2D90DB3C37E770875DA4C8 /* ConnectionFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B00BE8F8B05FC8407638AC7886DFA5A /* ConnectionFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F9F2C514B5F410C5C47CCCD541D1BFEA /* RNPushKitEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 737C47ACA6A64D7767636BBE62E6B723 /* RNPushKitEventHandler.m */; }; + FA079F4E038F040BC1393469199594D3 /* HardwareConcurrency.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1BB261D6EBB0A06A931BB83D097DB32C /* HardwareConcurrency.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FA0C73AAE530EE6055621F5CDC948D93 /* Future.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 209301772AC99034EB96B79FE63096F9 /* Future.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FA25C6CA15033C044CCBED3A73A9113C /* IDStore.h in Headers */ = {isa = PBXBuildFile; fileRef = A8F437656C3AF0F0D47F9C9E340C3D0B /* IDStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA2D65F4643529979AE0BB3F019E9075 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 603227E13E228FE45C25D295A158787D /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA471FD4EE12D741156C47EDBA0385EE /* SafeAreaSpacerShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 589DC083B14AD4EC32A765ECD809C693 /* SafeAreaSpacerShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA49438D6C0BCCC65FCD9C21D2716BA2 /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = AB22F01A08BB12BFA3F69194EBE722CF /* Config.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA6660038CBA76F686ECABE77A152FCC /* evthread-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F3B55915438E2A778BBDC814F29F37B8 /* evthread-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA6D6A963577403FC707CABAF0AE9FB3 /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = C63DD0A29BA912799F564DF84CD28550 /* RCTTurboModuleManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FA796C85756A2D3381F95947B0D5F080 /* SparseByteSet.h in Headers */ = {isa = PBXBuildFile; fileRef = BD1B5313E3DFB75390C1A4251F51B5DE /* SparseByteSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA7E5B69817F25D0D615E996A920FF71 /* AtomicUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 47C809345916A8DA682664885653FA91 /* AtomicUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA84A09F9FCCD5CC3B296E3569081596 /* FIRCLSURLSessionTask.m in Sources */ = {isa = PBXBuildFile; fileRef = C16AEF8FC19B26B9C212A7F9183DDF93 /* FIRCLSURLSessionTask.m */; }; + FA85A65FD7213D2D1AF43CB59CFE3B88 /* Async.h in Headers */ = {isa = PBXBuildFile; fileRef = 18ADCDBC13F2746435E16CDFE483C6DD /* Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA885E83C0A511A39AA042E2E0E02467 /* Asm.h in Headers */ = {isa = PBXBuildFile; fileRef = 7936B2B68C9F299497D44B44C6790BD2 /* Asm.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA9BA27127C0DB8995D656B16DBE1606 /* OpenSSL.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FDB606CC614250FF6B4EC84434F465A /* OpenSSL.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FACBA11E2FEAFBCC29029092787EE507 /* AESCrypt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E2196A5273FA07E66750CC0BAF09C27D /* AESCrypt.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + FAD9E0CD359A697C70B85ACE2A0AE80C /* MMKVCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B32D5C22FD2CA2DB5B184D29AD6792C8 /* MMKVCore-dummy.m */; }; + FAE802F76276D16BC040417FB9D92C6D /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CA6E8C4E777904A2FD84541C7D45F8D /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FAEFBE0231107508B5B80D629BE11E4E /* TimedDrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = E5110EEC4FB7CF35A200C38520B5D6C3 /* TimedDrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB02388BD13ADEBC2904E3B51791738A /* GoogleDataTransport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EC02292322F492419329A9C87450E9F /* GoogleDataTransport-dummy.m */; }; + FB030E0B40723163A8A5CC37778237DB /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = 445FC593F30485717EBE305592618FD6 /* QBCheckmarkView.m */; }; + FB11F5CB79F19A60348E516F49319F5C /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = BD96F42BE96BED51567382ECD48D9017 /* SDWebImagePrefetcher.m */; }; + FB13683FEEC61CA6568704C5039EDC4F /* ARTShapeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 821EFB2AD57FC7AAF6E4807273C20B56 /* ARTShapeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB364DE81C0EDF06910F910E3ACA8AE5 /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B2B8C59FD073EE3821727E5FF2FE7236 /* json_pointer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + FB5AF1D223AF92E6A9EC5CA178A5758A /* SSLErrors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8F490AB1187BEA7440DB7027375B3B9D /* SSLErrors.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + FB829381B9950A960832FC619CF30F7B /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 478DF8C445CCDF77B39FA9B32149D61C /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB85BD84C6D686B07BB2BEC64973CD3C /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 395A42BD9767360C5A6BF5EB5CDB1A2E /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FBBBA70AA350A601D3F8B8BB338AE08C /* msa_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = EBB8FDCD812D4599E46C88E2E592A7FB /* msa_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FBBBB3541F7462AF3C858EFA9BC186D9 /* libwebp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D2A241AFA45A6CEEA2FA5F519FF56E /* libwebp-dummy.m */; }; + FBBDEC2BDA59B862344D0590603D6153 /* rescaler_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 65C4D9484C6E95E9F01F5CA361F5F57E /* rescaler_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; FBC1DE4DED3201D61E5A0BC445113987 /* FlipperRSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 717F866F052C70065D76AAF36F80803C /* FlipperRSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - FBDEBCA4F8812F816EE86B34F0AFD8A4 /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 98F920827825889ADBC528A3830BCEA9 /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FBE4C04DBFE284C7B588EA8721DA96C2 /* ThreadLocalDetail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8403A2E98112F59D3BAF6617AECA11EC /* ThreadLocalDetail.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - FBECD87EB71D407DDA663FB0B1EAC488 /* BSGOutOfMemoryWatchdog.m in Sources */ = {isa = PBXBuildFile; fileRef = 55EACC7566C50B68BA32129DFB49768F /* BSGOutOfMemoryWatchdog.m */; }; - FBEE2476A9F279D2FC104DEF608B32BC /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A619E7C5BEDBD8FF75CC6FB98249386 /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC07B1636D14A8DBE8118B1D56FB3162 /* BugsnagMetaData.m in Sources */ = {isa = PBXBuildFile; fileRef = 38A55BC79E7DFA2240BE41A0764D2E17 /* BugsnagMetaData.m */; }; - FC1B782A5C7C57D6326D0AA99F7B3F7A /* FIRCLSDataCollectionToken.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DDF6F91919BA6848F310D266B5EF1FB /* FIRCLSDataCollectionToken.m */; }; - FC2D26859E137F51FC8F2405C6097A94 /* MacAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = B7554BFC029B0AB8A8E3D5C447DEA119 /* MacAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC3DD5BA299719F678DBA3620384A310 /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F48AF1ABA54338CDDA7EDAEE1D95BAE5 /* UMReactNativeAdapter-dummy.m */; }; - FC3EA0C0ACA60A4717FEDE1D87BCEDE2 /* FIRCLSAsyncOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = AB2EBB07BB6780F2CFD6D21C26BE1E35 /* FIRCLSAsyncOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC403F3DFE69B5EB553F56EF6CD79806 /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 135895A7201CC52C36384057684FB856 /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC553389ABB0F4D6E5E06F53079E0C21 /* NSData+EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A86FA87365372CC6DA358E1D7AA4E89 /* NSData+EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC62A22814B7F79904F95093CD5334D2 /* RSocketRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D967740974DAB66D1FEA4D0A3D483511 /* RSocketRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - FC62DB02C03A33AF70758C0D69A44FEF /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = B17255A8E21167D60FD904F91AE80CFB /* zh-Hans.lproj */; }; - FC798C321284727E02D6A972613C1856 /* GoogleDataTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 22E37A1F9FEB8ACD0F110A8146B5BCD2 /* GoogleDataTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC860918E0749AB204DFF627C64D3B47 /* UIImage+Extension.h in Headers */ = {isa = PBXBuildFile; fileRef = E5E9BF5E99B5E51AD55B2218BC2695F4 /* UIImage+Extension.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC8A27A4959780A18DB33F44A290D3B6 /* RCTLinkingPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = CB5C2C7110BF9500BE037B1992946906 /* RCTLinkingPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC8BF88A6F95C2D56F3007DC83559528 /* GDTCCTPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D86212C9EE02C3B1D98668EF11183C4 /* GDTCCTPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC9CE3A55699FCDC27465983DA521D3B /* Barrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 18B7462B3C061DE486F2ECD2DBB0EFC8 /* Barrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FCB3233E61B0AF7B777AE598A3E551CD /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6687502C2231BC03919355A6C7410E2D /* RCTConvertHelpers.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; - FCEB42558EF0B97A8A1B09FD39B1FC22 /* RCTPerfMonitor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 56B095963C683986CB4A5B767F900091 /* RCTPerfMonitor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - FCEEC4C8952A40718D87720EC7F55B87 /* FIRHeartbeatInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A8F7FA2623FB4162CFFE9AC380521F2 /* FIRHeartbeatInfo.m */; }; - FCF651621D0F8F74BDA9F9CB69C6AE03 /* FarmHash.h in Headers */ = {isa = PBXBuildFile; fileRef = E72C685352DEFE901EBBF6470E4C2F4E /* FarmHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FBD4C87AAF60E0EEB52CDD9FF5C9F9E2 /* RCTDevSplitBundleLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 934CDE0CBDE9A0282A8DEC058F6C14E1 /* RCTDevSplitBundleLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FBECF2514DF1D74D6F649DB1ABE31225 /* YogaKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D4565DF68C06D16A9AA04709FCD92143 /* YogaKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FBEFC6BBE6F4A16DBB5336D798FAA110 /* Observables.h in Headers */ = {isa = PBXBuildFile; fileRef = 43861F8B5D923063441C6C9B76B000CA /* Observables.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FBF7EFB6C67314E259032F2DFC7848A8 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = C6E1B1212C5D216DCE70D3FACC3B83DB /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + FBF813ACF4E92E8E24F513B35C3617BD /* FutureSplitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F484593EFF29DBA96F4D324F71F0098 /* FutureSplitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC0CCEFD25A9732DC68C9BD03B05B41E /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 207111C4FFBA3C94778096073B011DFE /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC1B5FD19FCDCAF216292C28BE46E018 /* RSocketServer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B98616A239AE9A3B63B404892883D35F /* RSocketServer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + FC2BD403DE14AEC7344CD795921030D8 /* SerialExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = E43D0C392A379945AB4092E47E7E0531 /* SerialExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC3DD5BA299719F678DBA3620384A310 /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F04F335D30B43118E83087B7DED120B /* UMReactNativeAdapter-dummy.m */; }; + FC4849280C2CCF6BA68B6EE0C0D7034B /* Util.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E7A67F3728F9137FBCE4D5B6613BAEE /* Util.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC553389ABB0F4D6E5E06F53079E0C21 /* NSData+EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 0846ECB42999CAB007D3A70379B7B14A /* NSData+EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC63A7720B39BB353C17EC6DBA1B75E2 /* ExceptionString.h in Headers */ = {isa = PBXBuildFile; fileRef = 337F59CD81DBE94A74954F4597B94B9C /* ExceptionString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC68F89AE74DF9CAEBBECD03626CDAB7 /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 23F9A8394A485E9F98B11A001596AA9B /* pl.lproj */; }; + FC860918E0749AB204DFF627C64D3B47 /* UIImage+Extension.h in Headers */ = {isa = PBXBuildFile; fileRef = C5F18678F590CDEA4A6F29AF36D8C5DC /* UIImage+Extension.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FCA1AF98518897B7CC3CEFDF7CB449FE /* SSLErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 04B3591ACFC47620F91491211E4222FB /* SSLErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FCA849F84E72CF56C35BC8B5F5D5F66E /* FBLPromise+Wrap.h in Headers */ = {isa = PBXBuildFile; fileRef = 89E52F7FC20434097820D21A19F7A961 /* FBLPromise+Wrap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FCC25C0A4981E4F16C0E3E8AB119B20E /* HeterogeneousAccess-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 8371C3FBE908131FE0B4BAAE1E6D2F52 /* HeterogeneousAccess-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FCD017F2EF045002D81B4CE631655D98 /* F14Defaults.h in Headers */ = {isa = PBXBuildFile; fileRef = D4BCB0CAAD65FBB0F6AE920BC1F835D6 /* F14Defaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FCEB42558EF0B97A8A1B09FD39B1FC22 /* RCTPerfMonitor.mm in Sources */ = {isa = PBXBuildFile; fileRef = BD6E8DBC6B22B90257F40CEF70FDC667 /* RCTPerfMonitor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + FCFB43F70DC48824AC9E96CFA0F6553B /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = CBE1616AF656630B81600BEF0C1320C4 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FD087BC349ECC6A1FA17FD94380851FB /* RequestResponseRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A7FDCF8B52F0218F9B22DA685FFF3FD /* RequestResponseRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; FD0AA929035E8769EAD3705B0E03B3E4 /* FlipperCppWrapperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C9EAC92532EB2946D33D8AB3EAAEA74 /* FlipperCppWrapperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FD106E8B4EE6CAA3AC704DE7E7AB4134 /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = B962981C6291A1A9A0EFB1010A7847D4 /* UMAppDelegateWrapper.m */; }; - FD13C96D9DB42DA1F3DB83BCF6A4EB61 /* quant.h in Headers */ = {isa = PBXBuildFile; fileRef = A3667F9A5A9B50046346F725B90E6303 /* quant.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FD21DF81C6B29D9B1928FBA33A9703EF /* BSG_KSCrashType.c in Sources */ = {isa = PBXBuildFile; fileRef = 3B83F3A3E88B252222C7A6898F2C16DF /* BSG_KSCrashType.c */; }; - FD22E54C8E11CCF6D50C4B751A821858 /* vp8i_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = F84258E26BD1F2E4F4E845499D19D291 /* vp8i_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FD2CD9FAEE8F5680878C1039299657F0 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 53B773CFD42773126DAEF28C9EC03409 /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FD33029EB3E67C1655196DECDEC7D270 /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F32623B4E1DFB667D5F999E8985F4480 /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FD467196C5A62A25EE608EDCFEDE3D0F /* yuv_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 8ACA5A3A6CD82F1DFA5BA81BA8BA4E2B /* yuv_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FD525A0F7FEC8138A077F630003B31B6 /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 25747DDE22751EFD64D62C45F85C1EFD /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FD6D7E98CFBA855DD63B4A9EE23AD583 /* GroupVarintDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = BC914DD1DC14DB1242681F2556E73482 /* GroupVarintDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FD816F1260E300F1962929516E6E3FF6 /* quant_levels_dec_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = C9754419D7609BFF0E75CE875DCC4656 /* quant_levels_dec_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FD963366B3443FF09DD60231BC17C53A /* FBString.h in Headers */ = {isa = PBXBuildFile; fileRef = C79056AE4E814424756A05CE2F5F997D /* FBString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FDB82F845C72C92A4662EF6C071AA4C2 /* DelayedDestructionBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 3151C13364D2D1FBA4AA7C9D512719D8 /* DelayedDestructionBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FDD665F04B5C30E8F7C6C678C62A11AC /* Futex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D6853AA624FC5A933BB11FA7D0A0A67 /* Futex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FDD803FC0EA7CEA8B816DE0666B7F028 /* MMKVCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B32D5C22FD2CA2DB5B184D29AD6792C8 /* MMKVCore-dummy.m */; }; - FDDF25EB74BFB8878206959BC43F9877 /* RNFetchBlobConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A9E24B2B98CE17D546E24D2EBF76810 /* RNFetchBlobConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FDE18A761428C6A08A9C22B079570550 /* yuv_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 228D6DB21FCFE39B36DCB5F42552FB22 /* yuv_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FDF5D29630E190EB4A8F06336AE4E850 /* Sha.m in Sources */ = {isa = PBXBuildFile; fileRef = D225EAEE3F5D4BC3CD7C9EC2973E1856 /* Sha.m */; }; - FDF90A05AE6A1F8CED53C4EE16422835 /* EnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DD9E75AA3D534EF30982FC4A81248EA /* EnvironmentUtil.m */; }; - FDF9B1D5554ECC48F5109613FF449B64 /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = FE8D276AB3AA5B533C5AC77559727651 /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FDFA4939AEFCAA031871BA6D9007634E /* EXAVObject.h in Headers */ = {isa = PBXBuildFile; fileRef = B8179EF985F6BF8C7BC3EF81ED1DED35 /* EXAVObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FD129BC6B9313BFA23A0215B7954E1A9 /* FIRAnalyticsInteropListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FAA8AA11C5B657BABEB5CA3B444722F /* FIRAnalyticsInteropListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FD1C5DE1C8EA4DD2B3A7C534407DAE22 /* KeepaliveTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B421A26D9964D79519F4A35E88647A2 /* KeepaliveTimer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + FD1D10004339566EC97E1BE66A754E99 /* Combine.h in Headers */ = {isa = PBXBuildFile; fileRef = AC4A668B78FF89E6A3E4160725FD7B7F /* Combine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FD36059DEE8DB7CAEB95981C66A449B8 /* TOCropViewControllerTransitioning.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B7B40FEF2CA07AB1DFF7B12D0DB76A7 /* TOCropViewControllerTransitioning.m */; }; + FD39BB86380813E98FCFAF982373FCE5 /* MMBuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 77DFA611185C19D8EA65EBBE6DD2DF6C /* MMBuffer.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + FD3DEE6F0E76FA12BE459C2CF4F17C91 /* BSGAppKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F9BD92B9BDF85B886D741E7E003973C /* BSGAppKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FD458728871ACFAB7620555A0E392E2B /* GDTCORUploadPackage.m in Sources */ = {isa = PBXBuildFile; fileRef = 14558547256AFB38419983E2662EBC1E /* GDTCORUploadPackage.m */; }; + FD54F13C5360061F3D62D4CFF0190D4E /* FIRCLSUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = A76299CA52706D2EDE496A287FA92AA8 /* FIRCLSUtility.m */; }; + FD57B92590D98B6BEAE8C764B166793B /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 27C22E18F4FEEECB7C921B89D1C16AF1 /* EventHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + FD7AFFC6D5C5A0AB19D7A299DCF80C53 /* BSGEventUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = B35A3F11DC99091C6A796255001C7507 /* BSGEventUploader.m */; }; + FD8A5A31FCD9651F2760850EA6316217 /* CancellationToken.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B6170D91BAB843A4CF639875AD18E134 /* CancellationToken.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + FD9D2B1391857EB1DA533DA12C11449E /* MallctlHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = F968A99F776F201893FF2E12F10DC872 /* MallctlHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FDAFCF93AA9427D7F785F14E5688B51F /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 0158C3C5F6B59D4937DE62B2199DE0AA /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FDD08C701ED7B16D211FA23D3C53BAF8 /* Semaphore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 932E20379D08F815983A1E168E8F071D /* Semaphore.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + FDDF25EB74BFB8878206959BC43F9877 /* RNFetchBlobConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 17C4A2EBA9F786833C9E659FC731CFD7 /* RNFetchBlobConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FDF5D29630E190EB4A8F06336AE4E850 /* Sha.m in Sources */ = {isa = PBXBuildFile; fileRef = AB12C6E2A0D5BC8A894FCE32AE68E684 /* Sha.m */; }; + FDF90A05AE6A1F8CED53C4EE16422835 /* EnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D3481C77D8830B0B3647B64636CAFB1 /* EnvironmentUtil.m */; }; + FDFA4939AEFCAA031871BA6D9007634E /* EXAVObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EDAFE445CC359519665AD447C4AF68D /* EXAVObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; FDFF9DE163669489BBD11E7E90784DC2 /* FlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 87787F196653CC71282BF0F30B7D5C0A /* FlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE1031E6595D84FDB9438C96248A0F55 /* BugsnagNotifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 340844A16372EB83F9981812977C0570 /* BugsnagNotifier.m */; }; - FE211241B8318FDD1EFD11B10E1B6934 /* Shared.h in Headers */ = {isa = PBXBuildFile; fileRef = 3524D969409DB4A13D443D60EBA6B885 /* Shared.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE23A1698D877DC567BC8EE7AD3CE6DC /* RCTDevMenu.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3F336AFF6CCC81636BB09D0E5FF870E6 /* RCTDevMenu.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - FE2F392744491ED39068B4D26A3140CB /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D3DFC42A3D2AE88A61355DBCD6819619 /* UMLogManager.m */; }; - FE43B9E6C8D8CEBC5E40ADB8411FFCE2 /* DeferObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = BBFF18BC3711F0D248974C74C2D2F962 /* DeferObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE44AE35117AF251C68CFCEAC07410C7 /* BSG_KSCrashReportFilterCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 720A0875F70D1778F0D2AAA94D3AFD34 /* BSG_KSCrashReportFilterCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE45590DC6481B504D4976FCEE0B3AA1 /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = A344BD42BC4A0A7A1F5EC360C82007A9 /* UMViewManagerAdapter.m */; }; - FE4B992C0E5E22AABE13C139FBF98C6A /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BCE966DF43AC7CEE300D7041B0D3554 /* RCTShadowView+Internal.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FE4DCA32EEEFB0EC4A4FD086BBBD975F /* HeterogeneousAccess.h in Headers */ = {isa = PBXBuildFile; fileRef = 3663947E78F78F183D279D27C650548D /* HeterogeneousAccess.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE58DBF705551EB5890276F998B8B51C /* ClockGettimeWrappers.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E4879361D6DE644A9C5A10461131D73 /* ClockGettimeWrappers.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - FE5A7B01EA1EC3BCE8981F8539212BC8 /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = D0E13984E0A2C4736083DC35869FC7C2 /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE5D6089515128ABA8C9C1A1AF2A3DBB /* FBVector.h in Headers */ = {isa = PBXBuildFile; fileRef = EB9F25DCA076A959BA3546C7479973C1 /* FBVector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE5DF35F8C343E370B43A62E04722AE1 /* GDTCORReachability.m in Sources */ = {isa = PBXBuildFile; fileRef = D75A2CFEEF6B8B25305A84FB7831CDD0 /* GDTCORReachability.m */; }; - FE7CD5C8890A8BF2CF95BE0A5C481B0C /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A7DA6B66535191FCC9E4277512AFBC6A /* RCTDiffClampAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - FE845E26E3C7B1F6A918AB11BB5E5090 /* BSG_KSCrashSentry_NSException.h in Headers */ = {isa = PBXBuildFile; fileRef = 16114C81CC8E0A116B82A4C3894454A8 /* BSG_KSCrashSentry_NSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE9280042E35A807B18FC99741658AE8 /* MemoryFile_Win32.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6E1E0315F092C2654B08337CEF9B874D /* MemoryFile_Win32.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - FEAAE853A3F106E71E7DD29953544145 /* YGLayoutExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50F4AC2A1A2E84993D0251C762782555 /* YGLayoutExtensions.swift */; }; - FEB0D99A79716FFD13A0D0410CC27A8F /* SysSyscall.h in Headers */ = {isa = PBXBuildFile; fileRef = 80840BAF96C12C2F4F42314F720FB483 /* SysSyscall.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FEB9C27C7B21F1082FA9A9F138F7506A /* GlobalThreadPoolList.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 86C9BD0FB1C49F89C85AB3AEE0919D46 /* GlobalThreadPoolList.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FEED472709EDBE4C8CF060454F3B51A9 /* HermesExecutorFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 34EDD220DA25B2D07F5487518908B99E /* HermesExecutorFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FEF232259D22D6FD1213FA21C7C01C01 /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1D17E9422562B9AE40FF349AAE22B990 /* jsilib-posix.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FF0B5F9F47DCF540B172C73606A9EF8D /* BSG_KSSystemInfoC.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E1F6476DD080549DFFF6FAA0034A183 /* BSG_KSSystemInfoC.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FF153745A842C91A12FB173068967391 /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = F6EA10A90AA1593D6A98F29E04F47B9E /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FF6048F48555885A8EFAFB330BEAB301 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = CC2792273F68555D6B5495E4A1F950DB /* RNTapHandler.m */; }; - FF6575E031D17B4E3C91186B96879324 /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = 97E927B66185AC875950011515566C7E /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FF763B2DFBE7645C079F90B2475900E8 /* RCTLogBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = BF600930B1FCF2ADD7567BD0972A6258 /* RCTLogBox.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - FF7A540FBD760B81A5AC8C790ACFC30F /* ExecutorWithPriority.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54A5A7C199B2EF8C220DCFD279A36398 /* ExecutorWithPriority.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FF80291ACE5B17DB20CC2BF21467F02A /* BSG_KSBacktrace_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 07F0FF6F24B47DE6248CD0B162ADDC90 /* BSG_KSBacktrace_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FF80D9C411BDBF0BFF5F9CCD4F227C44 /* FIRCLSUnwind_x86.c in Sources */ = {isa = PBXBuildFile; fileRef = 5BD5DC609D90282613BD259D7B7025A0 /* FIRCLSUnwind_x86.c */; }; - FFC32AB96982CC68D074B1777D0879A7 /* FIRCLSCrashedMarkerFile.c in Sources */ = {isa = PBXBuildFile; fileRef = 6A4B08830BCD18DEC0487928F7DD1183 /* FIRCLSCrashedMarkerFile.c */; }; - FFCC22D95D0DB92D6C4E1060B140B875 /* WarmResumeManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 96467C509C117597F95EFD14D4F49097 /* WarmResumeManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - FFE88A730079925762CB9A1910E47588 /* BSG_KSSystemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 139918A0AE10661514932B9C5D50DA23 /* BSG_KSSystemInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE048CEB029685ED3CACC21E42F5FEB6 /* SDImageLoadersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1153C7F2D8D7F8298826538F83EADA0E /* SDImageLoadersManager.m */; }; + FE1E96B4DA373D5CACE1872D7729E99B /* OpenSSLUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 141EF977202A47725867A9CCA553B222 /* OpenSSLUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE211241B8318FDD1EFD11B10E1B6934 /* Shared.h in Headers */ = {isa = PBXBuildFile; fileRef = 53119D11FE6E6BB4AE2A001EE20671DB /* Shared.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE23A1698D877DC567BC8EE7AD3CE6DC /* RCTDevMenu.mm in Sources */ = {isa = PBXBuildFile; fileRef = F89FCCEDA81EAB26185CEB2124BC010D /* RCTDevMenu.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + FE2C22D7DC3B0FD7E2030EA23CA5F8D9 /* InterProcessLock.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A922CE6E628589CA169E46B45E4FEA3D /* InterProcessLock.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; }; + FE3C3B0B3883246F0682DE32E4403B67 /* StreamStateMachineBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 8497CB456BD2A261AC99B47B49846351 /* StreamStateMachineBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE45590DC6481B504D4976FCEE0B3AA1 /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = BB8D81B8EB25444591F57C018D815DEE /* UMViewManagerAdapter.m */; }; + FE56B62C2BB29649B78C5311B055B5F0 /* ThreadCachedInt.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BBC025510EABED14B092533E2EA14D6 /* ThreadCachedInt.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE90F7C86A82F529B56E6F539A53D5E7 /* FIRCLSDataCollectionArbiter.m in Sources */ = {isa = PBXBuildFile; fileRef = DBD5CDF8A3997C9089262005FF386AE1 /* FIRCLSDataCollectionArbiter.m */; }; + FE91D4CE8EB1E5645B5EA03FD8AF7A5B /* AsyncTimeout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 02D341EE62165381DC8B938DD706B0F0 /* AsyncTimeout.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FE9CD4D3CC9D436B3254E68C2966B64F /* FIRCLSURLSessionDownloadTask_PrivateMethods.h in Headers */ = {isa = PBXBuildFile; fileRef = 617DC4CFBCE1FAC3EED379342C098A6D /* FIRCLSURLSessionDownloadTask_PrivateMethods.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FEB45505BBFC4EAAD736DF6A877696F0 /* BSGEventUploadFileOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = DF6E83B328726602E52506BBD87E3626 /* BSGEventUploadFileOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FEB65AD9CB5FDC801700767B929391BE /* GULAppDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = F4DE545BA22392C8F815EBCF42429004 /* GULAppDelegateSwizzler.m */; }; + FED7CB0111233FDDE983BD43A60EAFF1 /* dec.c in Sources */ = {isa = PBXBuildFile; fileRef = BEC8E3B1DECB8985FD462B8ED229F93D /* dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + FEE0256EC5380D6EFD6E1AAEC3874D1C /* QuotientMultiSet.h in Headers */ = {isa = PBXBuildFile; fileRef = F2BB8F624E91CC8BB4F8EAA5F175A5EA /* QuotientMultiSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF16F8A70236D799CF6C59260437A9E4 /* IPAddressException.h in Headers */ = {isa = PBXBuildFile; fileRef = A19A4B820CD795CEC835A155BEA73DCA /* IPAddressException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF31481AC6A639FC4776B15F11BEDFDB /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F347E42EA64B7AFE343CE9A4E497834 /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF4B834692E782EFFC462685C3C08329 /* BugsnagUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 259DFDEAE65227AFC9022670B9B73495 /* BugsnagUser.m */; }; + FF578342D52A8E5DAD10B1FD4CB8AF59 /* FIRCLSSymbolResolver.h in Headers */ = {isa = PBXBuildFile; fileRef = D8DC5D16E9213B3F499E8791592C12EC /* FIRCLSSymbolResolver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF6048F48555885A8EFAFB330BEAB301 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1275FBF2FBD9C7995AA9987864CA1174 /* RNTapHandler.m */; }; + FF6E1A5BD1EE2C973778ECB8437F8381 /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = ABF1B552E10C4896CB1C682734BDDECF /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + FF763B2DFBE7645C079F90B2475900E8 /* RCTLogBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1B3F7EED940B46ECFC021D632EC4EE86 /* RCTLogBox.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + FFD0E17082D51F889FE4684D72B833A4 /* SocketFileDescriptorMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E23C9017DF38BEE442275A1E8AC6343 /* SocketFileDescriptorMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FFD594DBA168EACB992388FA54912F5A /* GULNetworkURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B2914B9B967D4181977345B5C172F7D /* GULNetworkURLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FFED6BCFDE9AD6E6887401D22FF5D9C3 /* VirtualEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CCBA08FC978D2D5552E2C77919C442BC /* VirtualEventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FFF03AE42095BE4F7E20384AD7AA1742 /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7ABB4E8B99C98B574CB424B8DDFAA63C /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 0011A34069197CD61B8C95A399D83D74 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 985FEA01F314F3C00F0C1E1181E6C4A5; - remoteInfo = "hermes-engine"; - }; - 00403ADCAC0316B07A96756184572B76 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; - remoteInfo = RNDeviceInfo; - }; - 008F36A3089E3DCB87731B55AC0526E0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; - remoteInfo = EXWebBrowser; - }; - 00ED4038C38EC4E696DBC66F36EDA85A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - 01038C177C4B5D65BCB0C2A6CA8914AB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; - remoteInfo = "Flipper-RSocket"; - }; - 01310AFAB1D25E216111CC144958F739 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; - remoteInfo = "Flipper-Folly"; - }; - 01DF26FF99D1C10743816E8DCE8AD9E0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; - }; - 0259035024BF65544772BD24E4F458D5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; - }; - 02E88910FE013063EE355A944317C3DB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; - remoteInfo = FirebaseInstallations; - }; - 030B3372FAD3F4F9ADD038A28B49895D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; - }; - 03B281ED2FC0181347229328B0D244B4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; - remoteInfo = "react-native-appearance"; - }; - 042178B6EDE29B4D9F5B374CBE8F852B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 214E42634D1E187D876346D36184B655; - remoteInfo = RNScreens; - }; - 042EBAE8C5716F1A08C570C3C66F26C7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 04A30E186743192DFB26B0FD7DB8F250; - remoteInfo = libevent; - }; - 049249124811117E85CC1DD7384B0866 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - 04A29E96F618AB28E333D771B0F2DFB7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; - remoteInfo = EXLocalAuthentication; - }; - 04F81D3D862F24D9A23BE43FDAE184D1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - 054D8D0225CBFA36C587A14D8B9C0453 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; - remoteInfo = RNBootSplash; - }; - 05D7C82CF95DE7623AE23D9070C6A3C0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F3966F664F3CFAEFAB57C40FB54D3788; - remoteInfo = TOCropViewController; - }; - 05D826E459B79F773519FC7451D2634B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; - }; - 061E0C62FAB4C039A5BBE750B846B533 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EEBB8D24F2B3531A5C5DAA668D02331F; - remoteInfo = "react-native-blur"; - }; - 06225557D1AC9D07D7E6EA27DB115CEF /* PBXContainerItemProxy */ = { + 00683EBC3EFEF63062C30A7DB7472967 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; remoteInfo = "React-RCTBlob"; }; - 065D734E3BB9DAE462D4C20973FCB06D /* PBXContainerItemProxy */ = { + 0085E62DD6E1BBE8C59695ECEE8E7773 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; + remoteGlobalIDString = 4A95B7CD1D5F80C5E8CD9CDA00D41F70; + remoteInfo = EXVideoThumbnails; }; - 06752A112B78C2F36E2FD19B15ACC49F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - 06F1D25B4398B662F5F152B1B38E9F88 /* PBXContainerItemProxy */ = { + 013091E48ED486D2E0A27CF03CE4489F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 070AD04ACB1E9A4139EC754C0C089307 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; - remoteInfo = RNCAsyncStorage; - }; - 0736E1A83F6D7478D6A7731F503ECC95 /* PBXContainerItemProxy */ = { + 01DADBE1F4234EB72641D60AE2D3B69B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; remoteInfo = RNDeviceInfo; }; - 07D11BE75765D523299E1CDFFAF68B94 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; - }; - 092F6A88259C42B7099CCC1B7723975B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; - remoteInfo = "react-native-orientation-locker"; - }; - 0A0D832E2A4A0C4D09CCE8FFC1EA8490 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; - remoteInfo = RNImageCropPicker; - }; - 0AEB8D16778EBB6A27D3537C4CC7B3CA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; - remoteInfo = RNDateTimePicker; - }; - 0B004FF768E421D2E506F8E36AEFFDD3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; - }; - 0B42604D0512FB0369E965458DF7ECF6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; - remoteInfo = RNLocalize; - }; - 0B506C38298283D0C13690F444A891BE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; - }; - 0BE80099B9B089B0BB2DD4818824157E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; - }; - 0C2F92F81630BF1E116666BCB2DA2244 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; - remoteInfo = EXImageLoader; - }; - 0CCDC65DD2422E7B115AB86EC6032C74 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; - remoteInfo = "react-native-orientation-locker"; - }; - 0CDBD5170DBDDE74A0E348349DD3D02B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; - }; - 0D728AF4D9FEB411E47D5F6FC7C9AE5E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; - }; - 0D8CCE760E706AAA8AD8A76466236ABA /* PBXContainerItemProxy */ = { + 01DDCD1A86DE38D395F5932F9260EC43 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 868B90C74770285449C60DBA82181479; remoteInfo = EXFileSystem; }; - 0DD320C684BA26CBA2EBF1651AB90D78 /* PBXContainerItemProxy */ = { + 0215B01325232D7A2B2DAE2E60B07C68 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; - remoteInfo = "React-callinvoker"; + remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; + remoteInfo = CocoaAsyncSocket; }; - 0E4385C14F71FD7508678FCD7FE2E6C8 /* PBXContainerItemProxy */ = { + 033B598AEAA69D2889E1CDB1CD650B19 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; - remoteInfo = UMReactNativeAdapter; + remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; + remoteInfo = EXPermissions; }; - 0F70EA7BFCE191ECE1960B543532FC07 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; - remoteInfo = JitsiMeetSDK; - }; - 100A54EA2860DA7AEDA8F7A4AF0CDCC1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; - remoteInfo = RNReanimated; - }; - 101AA39C0C2B4343180C887A71EAC397 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; - remoteInfo = "Flipper-RSocket"; - }; - 1057DFA31D37B5B50D15FCD45B7158BA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; - }; - 10FEE180AE4C0A8C2B6B6AFE12B3DF54 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; - remoteInfo = KeyCommands; - }; - 116C09A8801BF9B870A4C072878D9539 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; - remoteInfo = libwebp; - }; - 11792180AA675133B29C91C095A8A957 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; - }; - 118918B65F174CB3159564E12C8FDF5F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; - remoteInfo = Flipper; - }; - 1198B37AAABEDA13BBC526EF2887BBF7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - 11AFF9C35ACD1E72310C613AC72E36CA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; - }; - 11B262F5168B7986677E56F6363326D0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; - }; - 11DF1736BC18EA43B128E788455A8AC5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; - }; - 11F7B8A84D28C3A12DFCF1642900A5F8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; - }; - 1235ED9FE98D1444DC4223B8B19928FC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 64F427905796B33B78A704063422979D; - remoteInfo = "rn-fetch-blob"; - }; - 12C018C09E32F4A493B73FEDC1C076F5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; - remoteInfo = RNReanimated; - }; - 132B4762BE52B5F7C46FBA3AEE07E30C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; - }; - 133FDF3C3287FE09165CC8D15F0ECA9C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; - remoteInfo = "react-native-cameraroll"; - }; - 13B179C3654E3444789ADD975118BAD4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; - }; - 13CF442C4F697116E8B07780300ED3A7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; - remoteInfo = GoogleDataTransportCCTSupport; - }; - 13E4704326E826E6821F542D8BF19806 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 28A005E00FB77DDB2543047A07ED99A5; - remoteInfo = EXAppleAuthentication; - }; - 1416FD3F4EA85038EE0A88F23048F88F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4A95B7CD1D5F80C5E8CD9CDA00D41F70; - remoteInfo = EXVideoThumbnails; - }; - 144B14BC50CB7722DC0898376036D069 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; - }; - 152212E785147A4A9EC68147E2A59C99 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E3573FB7AF659C42B699003C73722241; - remoteInfo = RNFBCrashlytics; - }; - 153ABA04B0593E390281A826542ADF36 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; - }; - 153E09A967625A6A60735B39CD75B219 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; - remoteInfo = EXHaptics; - }; - 15A341DE21E9AAC3151816A5A5C46608 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; - }; - 15B94F406475CE4A00B3EE030A43628E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; - }; - 1667B1D0823AF45ABB3DACCC9B51E613 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; - }; - 16B04B290DBAA8049455F84A72E3D777 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; - }; - 16D40174BB0BD5D7E28395A28876BDDF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 214E42634D1E187D876346D36184B655; - remoteInfo = RNScreens; - }; - 16D54873C062CB0D7DF9ACC511353E8A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 74DAFD196634D10887C9A4E7BA19A5E4; - remoteInfo = "react-native-mmkv-storage"; - }; - 17107DEB93A1AC2A5B3D42D8EFB0EA63 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; - remoteInfo = BugsnagReactNative; - }; - 177C48DD98AE5AF545B2259673F2E44A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; - remoteInfo = EXImageLoader; - }; - 1787F780B55F1EE29C72460220645152 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; - remoteInfo = RNCAsyncStorage; - }; - 182BBFD44D7BE1BBC75FF8BF31D0CDBE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; - }; - 1854FDE8EAC2F3226C4A68C3760513D5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; - remoteInfo = UMSensorsInterface; - }; - 18DE220ADAB20733784E8B8726AE6B84 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; - }; - 18E1C151C13911ADC29B33FF4F37C238 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; - }; - 191268D18B5916E285B3F4E3AD480258 /* PBXContainerItemProxy */ = { + 03D29FEA0744826FD32502024EBFB540 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 014495932E402CA67C37681988047CA2; remoteInfo = UMFontInterface; }; - 1950D4768A953C58AA516062A25E9D87 /* PBXContainerItemProxy */ = { + 03D7825AC45BFF1392F2ED83A124701E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; + remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; + remoteInfo = YogaKit; }; - 196E0491837C2286B799B1FCCBB683F0 /* PBXContainerItemProxy */ = { + 044C84CC57BD817CAB48F2E32AB104BD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; + }; + 04540C82182E42016D89700452DA16A7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; remoteInfo = RNCAsyncStorage; }; - 198019B78DE4E1079C85118902154016 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; - remoteInfo = RNVectorIcons; - }; - 199AEB0F1800EE2B57FCCCF6B3DB2790 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; - }; - 1A9B263EE7900802B3EB60BA7219A7AC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; - }; - 1AA8215DD1DF7E8DFEF02BE517F681E6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; - }; - 1B25E4BA5B69AB88D126E1FC4B8E5C58 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; - }; - 1B32227D1EFCE50B121AF765E9FB4D83 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; - remoteInfo = RNGestureHandler; - }; - 1C97D3BD1CE2070424FD37B13B86726C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; - remoteInfo = FirebaseInstallations; - }; - 1D23F2DF64FF03C0298D8F9832894F71 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; - }; - 1D32C2087F60E98BE1E1410BCD61917D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 037A1F31C4D99F52EC9FD2008FEC481C; - remoteInfo = ReactNativeUiLib; - }; - 1D4376B1CC0BE450204B1C28DC2E6725 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - 1DABE8B7FBE07B17B7C20A01C82C3F5B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; - remoteInfo = "Flipper-DoubleConversion"; - }; - 1E2553D1093745A57498F8094F5D0EDB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 54EB12219122432FA744088BC5A680D2; - remoteInfo = "React-runtimeexecutor"; - }; - 1E3D69AC6C40D9D1FE16B9CADAB5ACF6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - 1E775FFA2885969831705A92CD3154D8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; - remoteInfo = "react-native-webview"; - }; - 1EFAB86BD660144AA773CAE0B99C36EC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; - }; - 1F26E9FFEDFF0CB7346530EAAB6616BC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; - remoteInfo = "react-native-background-timer"; - }; - 1F65C005C16A9D3B0FCC4F934B2BB4D4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; - }; - 206FEF768D49FA83985BFCAE60C0917E /* PBXContainerItemProxy */ = { + 047DCF2C4B50375F58A20B266D15EF10 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = E16E206437995280D349D4B67695C894; remoteInfo = "React-CoreModules"; }; - 2135E9B609187C7A9DA913B204C6A26B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; - }; - 218762F8A33837E59BE2AF28E024E8C2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; - }; - 21FD358D566A52291D2924F557A5C7B8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; - remoteInfo = EXImageLoader; - }; - 22A3DBBD97C25A6D739B02EAFAEA749F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; - remoteInfo = UMSensorsInterface; - }; - 22AE4F3A34B06823C3870B4A07102116 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; - }; - 2357BDCEE6A6B12349B5C16923A3411E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4A95B7CD1D5F80C5E8CD9CDA00D41F70; - remoteInfo = EXVideoThumbnails; - }; - 23FA4971095C11988D1078986387719D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EEBB8D24F2B3531A5C5DAA668D02331F; - remoteInfo = "react-native-blur"; - }; - 240290741768B9358652B3C5ACA8C91A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; - }; - 247758ABCB4F2D2133E5378A3516A8A6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 014495932E402CA67C37681988047CA2; - remoteInfo = UMFontInterface; - }; - 24863C910FA657D5BF89FA2D01E70867 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; - remoteInfo = UMConstantsInterface; - }; - 249BDDCE56FA1219C023C8BFC1679A1B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; - remoteInfo = "react-native-notifications"; - }; - 24A5CD2ADC129C7EB9970723198BD979 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; - remoteInfo = "react-native-notifications"; - }; - 2540FC67353BA80345E2CCDC030A21FE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; - remoteInfo = CocoaAsyncSocket; - }; - 25475D08A1940A654C22F3CD8D4185E4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; - remoteInfo = Firebase; - }; - 25762F091A5997DB364394317F25E93B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; - remoteInfo = "react-native-document-picker"; - }; - 25B59216516C427E99B1DCC0F2AF4C3B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - 262ADADDE457A878B3BDE83B7502AF0F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; - remoteInfo = EXImageLoader; - }; - 263BACA97EF83BFCC6EBE9ECF4A10BAC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - 26F735B495CB65202AA83F7BCBED485C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; - }; - 275271E9BC750DFEC4F9C7CBB74A94D6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; - }; - 27AC34ECC9D581E5199885A0DADD29FA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; - remoteInfo = SDWebImageWebPCoder; - }; - 27CC1418911C18446D42F544D326C5B0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; - }; - 27DEC9A191F280B0841BA3C360937C7A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 526C4398D095B3704EB933DADBC30093; - remoteInfo = FirebaseCrashlytics; - }; - 27EE45DF3F7E913F6D51B924C0F64964 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; - remoteInfo = EXPermissions; - }; - 2832573321FA4835DE52BECA77774F9E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; - remoteInfo = EXAV; - }; - 28C8199C11FD0E6A7BF9F71362AD87B4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; - remoteInfo = KeyCommands; - }; - 28F3D3A3282014B90F77F24A290FC2E6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 28A005E00FB77DDB2543047A07ED99A5; - remoteInfo = EXAppleAuthentication; - }; - 2927AF0CDEDFEF772EF7903CF68F79A8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; - remoteInfo = RNCAsyncStorage; - }; - 29D3DA4E8858CB32EFD5DBFF790BE792 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; - remoteInfo = SDWebImage; - }; - 29FA5C7A74639996DFEE4154CCAA4B65 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 985FEA01F314F3C00F0C1E1181E6C4A5; - remoteInfo = "hermes-engine"; - }; - 2AEC3531AC9C02228BD7A53F3E7701B7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; - remoteInfo = RNVectorIcons; - }; - 2B43C109BC0A3B87C02F756D510FD903 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; - }; - 2C3C8C34E11D9C129E013EE6FF621C16 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EC577C5CB1DC59A7464ECEF266A75B42; - remoteInfo = "react-native-netinfo"; - }; - 2C6D27BA072BDE0ED2C255FE294FA28E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; - }; - 2C6FA8011940CCAC8DC69095453AC0BB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; - remoteInfo = UMAppLoader; - }; - 2D1CFBCDAB838B74E42BC6F91A1CEFFE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; - }; - 2E0673BDA620E67C62D280EE7690212E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; - remoteInfo = RNImageCropPicker; - }; - 307C2B5DFAE3EF4A08C7370C8CA8FED8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; - }; - 30AED6058069494F70906AF3801B359A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; - }; - 30BB9E1C65A3C31410F8E97BCE4C2391 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; - }; - 30F42CB094A87042AAE25C9CE57917B0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0CF4D9052577C85B6B8C4E957332626B; - remoteInfo = EXKeepAwake; - }; - 310BFC883882CD4D65C0C03D9FBA3EA1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - 3177CB93C00757528EB5CCF88F74D6AD /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - 32894C14677AD75701369F1EEABF1E40 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; - }; - 32AC93E2D70898F6D46AB6FEE63EBE2D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; - remoteInfo = YogaKit; - }; - 32BC4E6CEF6BE4498329FE2783BBC961 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; - }; - 33462021A264A0E69FCCA8E4B096A72C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 74DAFD196634D10887C9A4E7BA19A5E4; - remoteInfo = "react-native-mmkv-storage"; - }; - 334BFD2D2CFC906410AEBF2FBA56E828 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; - }; - 336F94B397E0CC4DA202C60C6E71DC4B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; - }; - 33C375681909C869E53E016F51137C81 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0CF4D9052577C85B6B8C4E957332626B; - remoteInfo = EXKeepAwake; - }; - 3404ECEE0FDF431658C5F0C3BF105E1F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; - }; - 3427E486E5B3C8D0FBB46A6C52EFE74C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; - }; - 342C04769BA550C93DC698FAB3885091 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; - remoteInfo = UMFileSystemInterface; - }; - 345F15FDA307C8566165C02C31790D07 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; - }; - 34D73669E03029F1B286A3567F4A0C1E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - 35166A53DDA1FBDEB3CBA1A9B5A894D6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; - }; - 358E04C97D6696053DEE6E43BDEBB17E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; - }; - 35FB289FC160FBBBE91D4883856C1A4A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; - remoteInfo = FirebaseCoreDiagnostics; - }; - 362DAA0AFDBCD256457819D30AE56242 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; - remoteInfo = "Flipper-DoubleConversion"; - }; - 364BB302F9F4F93052AF751D9B09EF9E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; - }; - 36D3B78634ACEBA99CB95451D47219F3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; - }; - 372ACE07CBA9C8AC1FA1E32B37259087 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; - }; - 372DE2B158FA8D9D277F811289941417 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; - remoteInfo = UMReactNativeAdapter; - }; - 3789332148D9BD3D21F3F1B955C4A7BF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 74DAFD196634D10887C9A4E7BA19A5E4; - remoteInfo = "react-native-mmkv-storage"; - }; - 3826B7825996FF9D556357E1C433191F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 014495932E402CA67C37681988047CA2; - remoteInfo = UMFontInterface; - }; - 384AE38F79C42E10943B780E2E17BC6E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; - }; - 384D99DD33A02F1C1A1644BA02E2E1E5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; - }; - 385169389DEA7C59396EE40C04A724E2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; - remoteInfo = RNCMaskedView; - }; - 38CBB5F8E93257DC2727843F26272FA3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; - remoteInfo = SDWebImageWebPCoder; - }; - 39041BF4A62E15336FD3DA2AF414A69E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; - remoteInfo = SDWebImage; - }; - 390421F805A5B4A2A505BEF84B550378 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; - }; - 392C1AFF2C9A9B924E18ECAEC27D2633 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; - }; - 3A24EE3CB1890377498DB3EFD851B37A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; - }; - 3A59CE1B59931D66DB965FB7BAD6072A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; - remoteInfo = UMSensorsInterface; - }; - 3ABD2D6FFBEC69D78324C8D11B0CA588 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 91A6826828CB9FCD0169A7547E8A79EA; - remoteInfo = MMKV; - }; - 3B178A24DA101673FDBCB6CEE88A0BDB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; - }; - 3B692FF9D85C7E5C10F87C39BD7FDD39 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; - }; - 3C17EB324A1A05BFC0383061C0D54E36 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; - }; - 3C2C91963A0AA35BA9F1091F1DE7BB3B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; - }; - 3CEAEE861A2AD05FF20AD14C3B72E289 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; - remoteInfo = RNReanimated; - }; - 3E0439AA51C62DE9C1A9AF70069624D0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; - }; - 3E53F66530FBE8E456D391743FD67F4A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2D4D3D5AD93ADCCF3DD45A88009E48D6; - remoteInfo = "TOCropViewController-TOCropViewControllerBundle"; - }; - 3E583D592C6E1E098B0669DCECE8D510 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; - remoteInfo = "Flipper-Glog"; - }; - 3ED7C0770B48642D7EF35E9060FF6572 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 985FEA01F314F3C00F0C1E1181E6C4A5; - remoteInfo = "hermes-engine"; - }; - 3F326750AD81A7AADFCD2F37661EC911 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; - remoteInfo = UMImageLoaderInterface; - }; - 3F9AE5F136267EE04F8198A6A4F8C3CE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; - }; - 408285F1C6D8A9116F2ED5B4D5C9B6B2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; - remoteInfo = UMFileSystemInterface; - }; - 41FE008D2DFDBC4BB04D4CFC508DF7C0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; - }; - 4258BB670716E60662FD423977994844 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - 428E87037E0ACB31B00BCD7DECD18E64 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; - remoteInfo = BugsnagReactNative; - }; - 42FB697ADD28DC2610BD198960C08660 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; - remoteInfo = "react-native-appearance"; - }; - 435728E6E8A30A773C0A0A76BF13E20E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D00F24222F074B31C56DC6D05E806A35; - remoteInfo = RNCPicker; - }; - 439F943F8B84DDCA08B22031661C308F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; - remoteInfo = EXConstants; - }; - 447604E4ADD89C37A6E661D76FD1E147 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; - }; - 447777C0DDD0DB83B6DC359604139C1D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; - }; - 44F7A6307D7EE03DE829D4990BDA7F21 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; - remoteInfo = Firebase; - }; - 453D38CC6A9505A8B0D195ACAC947272 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7A020DAB6F3F0BA0A6D9946E84B38B7F; - remoteInfo = "React-Core-AccessibilityResources"; - }; - 459B551E64FD9190115CB20CC162FCFD /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; - }; - 45B267216CD31E6DF0367D9621A5B9A4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; - remoteInfo = RNDeviceInfo; - }; - 461F79B55EE3B1AAE42D882EBE26D77E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; - }; - 471F676558B55DC9029C62AC136082C3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; - }; - 47CBC46FBCEEC2DA7052007094D2EDAE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; - remoteInfo = RNFastImage; - }; - 486239562CA6971736A4554C8DDEFB35 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; - }; - 489342DEA5237CBFD640DCA9C7A80733 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; - remoteInfo = SDWebImage; - }; - 489BBA8E7297E678FC4FCF31935DBF7B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; - remoteInfo = CocoaAsyncSocket; - }; - 48CF92450E430047374533AF191E27F2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; - remoteInfo = FlipperKit; - }; - 4991D11FDD1141458F25679797EE7A4E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DC0D417AC8ABB7AA10C20A5E0F065812; - remoteInfo = RNConfigReader; - }; - 499E15A09171007934E4857D3799188B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; - remoteInfo = "react-native-cameraroll"; - }; - 4A08B7F6FFA7BF2E527C00AE9B470881 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 91A6826828CB9FCD0169A7547E8A79EA; - remoteInfo = MMKV; - }; - 4A8CC56F3D825EA14559826B10454B99 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; - }; - 4B38B3DBCB1B0E7191341D70FB7A3993 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; - remoteInfo = EXAV; - }; - 4BB485F6B4D56D895FA347CC95F8B6E4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BDD119F8782FABE2707D3D913EC3EDE5; - remoteInfo = RNFBAnalytics; - }; - 4C74D052B9896C8E8FDA91A9560E6DE1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; - }; - 4C82AA6C09149F21702CB5BA52E5017F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; - remoteInfo = SDWebImage; - }; - 4C8F63A968EE2B29BFFC7D20CA21A734 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; - remoteInfo = libwebp; - }; - 4D415759E40D12B293CC7B5D8E6055EE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; - }; - 4DAB975448FC142BC8303D2B8FF1C564 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; - remoteInfo = UMImageLoaderInterface; - }; - 4E13453CB60F04FB20796CF642E0C8B8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; - }; - 4E359C9EDE625EBCF2950344040C2EF3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; - remoteInfo = EXPermissions; - }; - 4E5D70908FEEFE90467A131A610FD882 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; - remoteInfo = Firebase; - }; - 4EA64E213B1176ECA4E4FDE5596BF5FE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; - remoteInfo = "React-perflogger"; - }; - 4EBE1D06BEFB2690B0C93DFB72FCD9C7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; - remoteInfo = "rn-extensions-share"; - }; - 4F4A70F0F7B2D7585C80040631D84155 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; - }; - 4F583CD37BD4E52F1DA13180D15E2D17 /* PBXContainerItemProxy */ = { + 04B6DF7224E795FC57458BD7BF38864C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; remoteInfo = "react-native-background-timer"; }; - 4F9DCF4AD31207EBDCCA4315D110A4F8 /* PBXContainerItemProxy */ = { + 04C57239C5B4FEE67E83BEC8B48480C4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - 50005CEC438EB4CF310ECC168B1A07B7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; - remoteInfo = "react-native-webview"; - }; - 50DA9ACE7616C0F719C346E15D4AAA09 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; - remoteInfo = EXHaptics; - }; - 51F56F93258A5178D82EB5EDE135C55A /* PBXContainerItemProxy */ = { + 05AC54CD20CFD15EBDF6F3ACEEFE7558 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; - 521717587F4EA0172A695198F5D447E3 /* PBXContainerItemProxy */ = { + 0612E89F43C58C5EE6DD000BE5E1FF9A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; + remoteGlobalIDString = 014495932E402CA67C37681988047CA2; + remoteInfo = UMFontInterface; }; - 52237EF06C05E0F8658D65CCCEE5C3C5 /* PBXContainerItemProxy */ = { + 0614B7A8F3968DC6EEB0291D2AB6A59F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; - remoteInfo = "react-native-appearance"; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - 52312E25E214D01B0AB920DE898167AF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; - }; - 5266932A2CAD23BE85D9C684E898A245 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 04A30E186743192DFB26B0FD7DB8F250; - remoteInfo = libevent; - }; - 5277588448F7D75A4613EABE60F2E9C8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - 529F2DBD51A1FE95E1C06BF419ACF9E9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; - remoteInfo = RNImageCropPicker; - }; - 531BC40FD6E85EECFC07849F9746DAD7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; - remoteInfo = "OpenSSL-Universal"; - }; - 5351712B03E1ACED1EC8E90E2E6DBB38 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; - }; - 5375555EB3F4BBB55C4810784F65AF5D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; - remoteInfo = RNGestureHandler; - }; - 5392EE74A5F763D415A1B881F0F15867 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; - }; - 53D52C6ADC44BE04F333439461DC175B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; - }; - 53EDA59CAF6DE6F4740599968DF846E6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; - }; - 53FC216A103EE3D81084DEEB73FC2734 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 91A6826828CB9FCD0169A7547E8A79EA; - remoteInfo = MMKV; - }; - 5449DA338045B73BF1DE899605A285D2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; - remoteInfo = FlipperKit; - }; - 547A61F6A2BC1E967B4F2D1503690B33 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; - remoteInfo = Firebase; - }; - 558087FCB2882A453C23EFE67CB4D913 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; - }; - 5593362F4CAAE3293AD36FDCDA5C88B2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; - }; - 55F0422A98C19F2ADF96E320FD19454D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; - }; - 565ACDF65473CC1A2A27B2DF53E3734F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; - remoteInfo = "Flipper-Glog"; - }; - 56941A8C80BCC8DB2E142A2F94FD2926 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F3966F664F3CFAEFAB57C40FB54D3788; - remoteInfo = TOCropViewController; - }; - 5715D0245891994639BD713CCE2FCDC5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - 573B64EA1804C4C2D81C2CB63BCBED50 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; - remoteInfo = "react-native-slider"; - }; - 5802801BEEEFB2AD10C0812F10C7A5B0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; - }; - 583DC4B85E3C78ABCFFCCDE82AB46EDB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; - }; - 58627DA5144975648A7595D02C1EE745 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; - }; - 58F932F4F46487B43E0E0FD211385244 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; - }; - 5968EC75026376C723016DE4EB14710C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; - remoteInfo = "rn-extensions-share"; - }; - 59E2213939E0CDEDDB5E4DB46D9B5824 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; - remoteInfo = ReactNativeART; - }; - 5B2814F5E31C22E86F177449E4067F24 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; - remoteInfo = UMImageLoaderInterface; - }; - 5BEA72F948E7BAA9B74C182FBF97ADED /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; - }; - 5BFDABE99F466F7E7B76BD13F37DC2DA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; - remoteInfo = RNRootView; - }; - 5C5ECD66EDAF2199B36FA3361CF2C01C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; - }; - 5C84737CA2110C0248B1C1076B0F8256 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; - }; - 5C9761CD5968DF284DC203C2BA581520 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 214E42634D1E187D876346D36184B655; - remoteInfo = RNScreens; - }; - 5D183B0DA4EC716C4DAB40870C913495 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EEBB8D24F2B3531A5C5DAA668D02331F; - remoteInfo = "react-native-blur"; - }; - 5D3FE9C506780ADA9356D07F4B64ADAE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - 5DFD00EB72793E06F67CB3DD4F943670 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; - remoteInfo = "react-native-safe-area-context"; - }; - 5E036267A05C43EE225362D308AD9A94 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; - remoteInfo = "Flipper-DoubleConversion"; - }; - 5E0AD556D856326484AAF0DD1BA246F7 /* PBXContainerItemProxy */ = { + 062ABEC57934138CFE0ED2476821D432 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 64F427905796B33B78A704063422979D; remoteInfo = "rn-fetch-blob"; }; - 5E0B3F95B7B5009796176C214677E1E3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D00F24222F074B31C56DC6D05E806A35; - remoteInfo = RNCPicker; - }; - 5E77DC278E2F612A812B6E6D8E8204AF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; - remoteInfo = "Flipper-DoubleConversion"; - }; - 5F7C427722CCDE9CE7325ADAAA5533BB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; - }; - 5FA024324D633C8BC4915EFE41F1D8ED /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; - }; - 6006F320ADAE163A45A5B8EA0FC23AFF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; - remoteInfo = YogaKit; - }; - 601680D84F7EE7CE5CBF0ACC9C4C91BC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; - remoteInfo = "React-callinvoker"; - }; - 60C4960185A91270B1D46CDEB66423BC /* PBXContainerItemProxy */ = { + 064D8D808648F360B79BDCB04564B18C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 60EEA0EEE4EBB03F9EB9F8DC30B73EAA /* PBXContainerItemProxy */ = { + 06790524A32AC7900DB6F9427BB698F9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; - remoteInfo = UMFileSystemInterface; + remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; + remoteInfo = "Flipper-Glog"; }; - 61CB7A704EAA244180C6686E2E412FFB /* PBXContainerItemProxy */ = { + 068550664FA2530EDFB295FCEDA940C9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; + remoteInfo = EXLocalAuthentication; + }; + 076AB81269762466458570D439E8A6CD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; + }; + 07985DA45BDAD42E2F483609ACBCA588 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + 07DB8D1F7E87808A378E5C8A1EE93D08 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; + remoteInfo = UMBarCodeScannerInterface; + }; + 0835A460234F35EAFCE6918A68A64E2D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; + remoteInfo = SDWebImageWebPCoder; + }; + 086E87C91D4ED3DA98CD13846B9898D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 622CCA7AA1FB518C6F2DD4455F9C3BCB /* PBXContainerItemProxy */ = { + 089852961A4F74E3B167515898C737DF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = 3ED96FB9FE1D18D5F1239C60A109F98C; + remoteInfo = "react-native-restart"; }; - 627AF5B85DDD7848D7DD20E28309E452 /* PBXContainerItemProxy */ = { + 094FD799C809BE235B2DA606C6EFB275 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDD119F8782FABE2707D3D913EC3EDE5; - remoteInfo = RNFBAnalytics; + remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; + remoteInfo = RNVectorIcons; }; - 636E6CA31E851CCDC17F3BFF287BF065 /* PBXContainerItemProxy */ = { + 09DF378FA751E25D297E0582067869A0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; + remoteInfo = RNRootView; + }; + 0A5EF1BB8E56BF18B1D4A5215AB0153B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; + }; + 0A628FE31FB36AB77D8D5EE4471A049A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; + remoteInfo = "React-jsiexecutor"; + }; + 0A9DFE0A0294268AB6014B42989FE795 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; + remoteInfo = "react-native-safe-area-context"; + }; + 0AED41293DD7218D5D4B580E688002EC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; + remoteInfo = "react-native-document-picker"; + }; + 0BA92ECE475D06FA68952F6135A080CB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; + remoteInfo = UMCameraInterface; + }; + 0BC7E26210CE0754E967569345854437 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; + remoteInfo = RNGestureHandler; + }; + 0C331F3288FC96E2B9C015D9E45F789D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; + remoteInfo = SDWebImageWebPCoder; + }; + 0C3F38878C8E5F314186CCB0CF6BED57 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; + remoteInfo = "Flipper-RSocket"; + }; + 0C99ADDD07B96292BEFA89629961E145 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 28A005E00FB77DDB2543047A07ED99A5; + remoteInfo = EXAppleAuthentication; + }; + 0CD8FBF5C843EC4264FE8CB9C75402AC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 63915916D0729CB13ED2A009467A3C70 /* PBXContainerItemProxy */ = { + 0D0AE483C6A7D26E60A3E5836F3E9935 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; - remoteInfo = "React-perflogger"; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; }; - 63B30E3E63AAFB24BC2F8B37336F2E18 /* PBXContainerItemProxy */ = { + 0DA498A81F99CAFF3E2DF39747838B08 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; + remoteInfo = "react-native-appearance"; + }; + 0E344FBEA506D4EFF72A8D8B98E13933 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F3966F664F3CFAEFAB57C40FB54D3788; + remoteInfo = TOCropViewController; + }; + 0E3523AE5241A8E88AC47CEFB9277B00 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; + remoteInfo = "Flipper-PeerTalk"; + }; + 0E9BD0F7D761CA1806F9C5F313F428E8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; + remoteInfo = UMAppLoader; + }; + 0EAACFEAD1664050F5C6B150F81687D4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; + }; + 0ECEC766040A1DD6CA59005ACB30FF75 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; + remoteInfo = SDWebImage; + }; + 0FAE794FCEC8DC726095DCA424136FA9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 214E42634D1E187D876346D36184B655; remoteInfo = RNScreens; }; - 63C7A6779E1C2ABF1E415D355A01A374 /* PBXContainerItemProxy */ = { + 0FCDC54BE6E6FD80F00D8AF9D5EC8D58 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; - remoteInfo = "React-callinvoker"; + remoteGlobalIDString = D985A509BFE270C95EDCBE6B4CBAF189; + remoteInfo = "react-native-simple-crypto"; }; - 63FA0351BB08CEAD1994C8B3C05882AB /* PBXContainerItemProxy */ = { + 0FD2B54583D0B22FB338284CCCD36259 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; + remoteInfo = "react-native-jitsi-meet"; + }; + 1020B3830CC6A592D06984C8713BD7E3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; + }; + 10C8C0FD90944AE3B74ED76BE7A803D4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D985A509BFE270C95EDCBE6B4CBAF189; + remoteInfo = "react-native-simple-crypto"; + }; + 11363DFCDEC63C986A2C50FAF40CD1C9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; + }; + 11E6B0F5A374A71CBB92CB7A9503FE90 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; + remoteInfo = "OpenSSL-Universal"; + }; + 12B7A30D883DC26C1A75E970277EF502 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; + }; + 13C0795B47770D8B6EF9E7DB65849417 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; + remoteInfo = RNRootView; + }; + 13EF3523B32228E8FD9856AE70C124A9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; + remoteInfo = UMImageLoaderInterface; + }; + 13FC3ED200281D9E6B890D5163268AE2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; + remoteInfo = "Flipper-PeerTalk"; + }; + 1456B2FA056DC965181C7F0C6E919AD5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F3966F664F3CFAEFAB57C40FB54D3788; + remoteInfo = TOCropViewController; + }; + 14838B2E8FB70BF59840D2AE9A76F23C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; + remoteInfo = "Flipper-DoubleConversion"; + }; + 14B1746ABE1DDCCAC161910CA310FBFA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 868B90C74770285449C60DBA82181479; + remoteInfo = EXFileSystem; + }; + 150A3D603EFFC3FC8B4CF1BB673EE9E9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D985A509BFE270C95EDCBE6B4CBAF189; + remoteInfo = "react-native-simple-crypto"; + }; + 156017FB89EF453FC3322467854BD4DF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 526C4398D095B3704EB933DADBC30093; + remoteInfo = FirebaseCrashlytics; + }; + 15D2286598E95FE31FCFF5735D5C5B36 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; + remoteInfo = "React-RCTAnimation"; + }; + 168B11CFDBE6976A8EBD240DE4217B39 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; + remoteInfo = RNReanimated; + }; + 169768D84C3FA56A813550568C4ED880 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; remoteInfo = Firebase; }; - 6415042586AC0487A313E1AA8DE544BA /* PBXContainerItemProxy */ = { + 177FC80D8DA02E9F9C363EC9D796189B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; + remoteInfo = UMFileSystemInterface; + }; + 17C00AD0D44AFB50F360E19F80886B41 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = ADC4ACC657481AD27F9936D08FF7F49A; + remoteInfo = "react-native-cookies"; + }; + 17C86B9D1A946BA9C00D45A67DE338C2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DC0D417AC8ABB7AA10C20A5E0F065812; + remoteInfo = RNConfigReader; + }; + 17D22E5971D12A6ACAE95DF8206324A5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; + }; + 184E68B5A570802A48898C83B8D4E587 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; + }; + 18CDD9BCAA26B0047475F2F7BBA386AA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; + }; + 1994845C2E4CF0F4FFA918678F9004BB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; + remoteInfo = "React-RCTText"; + }; + 19E35B18B659F2EFC089A3685D5547A3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; + }; + 1A0E2B6F34CE3EDB03839671CF9F8C4C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; + remoteInfo = SDWebImageWebPCoder; + }; + 1A4E266BA5AFFBE203AB35577630D4C4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; + }; + 1AB19FA1FEE352E182021BDC4A0AFF46 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; + remoteInfo = RNImageCropPicker; + }; + 1B6A9F925F4D4F01F6A13DD353A9E87B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E16E206437995280D349D4B67695C894; + remoteInfo = "React-CoreModules"; + }; + 1B9E0CF161E91E1A8B8537D323B6983B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 54EB12219122432FA744088BC5A680D2; + remoteInfo = "React-runtimeexecutor"; + }; + 1BA59BED620719A9300579D4E1ECB07C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; + }; + 1C5F4299A9113B26AD4B104725578625 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + 1CFB073BD465178A6A62B86921039222 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; + remoteInfo = Firebase; + }; + 1DA4241F5A4CDE93750300CEE65AA8E9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; + }; + 1DB3F05A69423E8AADC62A5A82FBADF1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; + }; + 1E6CF8A2E9CFA57E7EB46060757EE88E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; + remoteInfo = EXWebBrowser; + }; + 1EB23EF5AF26E2179BAB597714958D51 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; + }; + 1ED0A1F892EBDE86A4C5FC2327F41284 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; + remoteInfo = "react-native-document-picker"; + }; + 1EFE1C7C4C58A60B27F78D77A26AC73A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; + remoteInfo = RNLocalize; + }; + 1F280F013664B46059631025ED067F65 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; + }; + 1F570E6F3998C13CDBFCA10D2A77BACE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; + }; + 1F6DBAB87AF0707448787C118423C4C3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; + remoteInfo = UMImageLoaderInterface; + }; + 1FAB7A8AC22642B022AF23C6E5434234 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; + remoteInfo = UMFaceDetectorInterface; + }; + 2019DD04814708C23A3D8233A67484FE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; + }; + 208CEDA2A7603BD2F728EA7C2331D12A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; + }; + 20C92BE6FCDDA21E4079A386EE7F3C1F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; + remoteInfo = UMCameraInterface; + }; + 20E054015355D1BF273F126FC212499C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; + remoteInfo = Flipper; + }; + 20FEB0430189FAF905E4F13BC24610BD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 214E42634D1E187D876346D36184B655; + remoteInfo = RNScreens; + }; + 21E2069AC52B51AD1D8B36C7A50ED931 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; + remoteInfo = RNImageCropPicker; + }; + 22EB82D97CAC329152F628A05D5805D5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; + }; + 22EC80B5F6F52173531AE372A985E80E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E16E206437995280D349D4B67695C894; + remoteInfo = "React-CoreModules"; + }; + 2409B653999325C77FF9404502735AEC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; + remoteInfo = EXLocalAuthentication; + }; + 241F05DB6B224A33BEA4446890A21BE8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; + }; + 2474CD9A20FA79BFF80DADD3180C3B9F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + 24DF7EB325C41DCB8AC94055701E8302 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; + remoteInfo = EXConstants; + }; + 25BBD187E54CDFAC57A6BA84E50B8155 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = AC8AE887C706A43711D115E69B9D988A; + remoteInfo = MMKVCore; + }; + 25D731C8B8322F6109319FC1C29DBC12 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; + }; + 261A72A3E9913DA2CD98E693D979301A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; + }; + 26D2E223505352580BC7CDDD0E3FE8E7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + 26F29552CFF3F4C8297B55C87C6C8717 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 868B90C74770285449C60DBA82181479; + remoteInfo = EXFileSystem; + }; + 27F1657C0A1CF9D3E178D11AA89C6608 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; + remoteInfo = EXImageLoader; + }; + 2867305CE29521BC8EE2F9EB0A25BC2E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 868B90C74770285449C60DBA82181479; + remoteInfo = EXFileSystem; + }; + 2891A1A9D460D914F46FF6127A9BF735 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + 2895C89D7BB10E5DE159A7BA0C8A9D63 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; + remoteInfo = SDWebImageWebPCoder; + }; + 28A05C9B180D8E5266A68CAD5F6F3D35 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; + }; + 291139AA1C672E25D5A21EE44EF51003 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; + }; + 295BED05F71E5A6200E8E1DE7F668FCB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; + remoteInfo = "React-perflogger"; + }; + 29A9C14575153E72B8F68CEB6470D28E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; + }; + 29F8D5EFE3C7A932A966A8F928DF0532 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; + }; + 2A7F7E74BED068ED0E44B14D80CAFBBF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; + }; + 2AA39714F678F715EBDCBA967B312027 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 28A005E00FB77DDB2543047A07ED99A5; + remoteInfo = EXAppleAuthentication; + }; + 2AC08832E9EBC1B7A3A2369AFAA62B4B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; + }; + 2AD96171630657A123A2DE5D273D65A7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; + remoteInfo = RNGestureHandler; + }; + 2AE5A1014DB6B7EDC9E20991D4C99193 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; + remoteInfo = "React-perflogger"; + }; + 2B33A343A46C12D96DB5A49CBD66E097 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; + remoteInfo = RNGestureHandler; + }; + 2B9BC239A33199F1135BE33EFA7E2E3B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; + }; + 2BB45B15977B4D64BFBC928FAA481E42 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; + remoteInfo = "Flipper-Folly"; + }; + 2BE520DBB8A95C9E3C5A230F2CEF5E3C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; + }; + 2C15806F41D2B1604F20DC3E50E37F95 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; + remoteInfo = "React-RCTAnimation"; + }; + 2C17861F290721BE0678A228961C3237 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; + remoteInfo = UMImageLoaderInterface; + }; + 2C1A4D179F333A6B86CCFE1991724AA0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; + }; + 2C500E18FA222B6BFB5F5F322160AF50 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; + }; + 2CDDDEF1B715CEE0305B0AD906004DF6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D00F24222F074B31C56DC6D05E806A35; + remoteInfo = RNCPicker; + }; + 2CE27467B8E5A7BA8271C6E5327015FB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 04A30E186743192DFB26B0FD7DB8F250; + remoteInfo = libevent; + }; + 2DCE2B61F352988671ED7EAA985F4BFD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; + }; + 2DD7E0CF7F57C77F6508CD88EBA26D67 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; + }; + 2EB4FD46718A435E68A5BD824E6E865B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; + }; + 2EDDB1A2D0AF4888399D164A3933545B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; + remoteInfo = "Flipper-PeerTalk"; + }; + 2EFA9736E1F808275C57AA2013F94FD8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; + }; + 2F1C693448E778E51B155760696294D2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; + remoteInfo = "React-RCTBlob"; + }; + 2F4879A05BFC5094890FA24FCEAE9D80 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; + }; + 2FA2B10763019D37AA479AA9A21F6BFB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; + remoteInfo = UMReactNativeAdapter; + }; + 2FEA2C94E0E7934D146B4421C21353AC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; + remoteInfo = "React-jsiexecutor"; + }; + 30725B14D8562E875CFC0ABA597A1DBA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; + remoteInfo = UMAppLoader; + }; + 309B67A53527D73A2D42EB256B0B895F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; + }; + 31DA048C8D3F5DD9F447D2EC5DAC9D4F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; + remoteInfo = UMAppLoader; + }; + 31E350F39C5D276BCB98AB611A9D97E3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; + }; + 320F6183337581B1E023B07AF6274FB7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 91A6826828CB9FCD0169A7547E8A79EA; + remoteInfo = MMKV; + }; + 3268E9B58B16AC4BF0109C1643C7224A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; + }; + 326B9FFA568BA9B2B9A96F439CF7FBC1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EC577C5CB1DC59A7464ECEF266A75B42; + remoteInfo = "react-native-netinfo"; + }; + 32F2FC8331902F5BFCB8D6BAE12EF526 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EEBB8D24F2B3531A5C5DAA668D02331F; + remoteInfo = "react-native-blur"; + }; + 330CB30AE63E71F0029410A4F2F5448D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EC577C5CB1DC59A7464ECEF266A75B42; + remoteInfo = "react-native-netinfo"; + }; + 3312E955C34457F30E7CDF8C64FE7569 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; + remoteInfo = "react-native-slider"; + }; + 331F386E85E953818B591C6997486C19 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; + }; + 33218BCAFCC2A39CB997299383DC67FA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; + }; + 33A5D479B29B21D78F3B2E8E4B5D0518 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; + }; + 33ED27400A97DE65DE2B9DC11A7A3DCF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; + }; + 343A0CD58A77DF9B25CD0144355A604D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; + }; + 3458E29FA1FD6B80A144E1A11A0864B6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; + remoteInfo = "React-perflogger"; + }; + 34C614E6FA7294F59F13C89618BF3A7D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 74DAFD196634D10887C9A4E7BA19A5E4; + remoteInfo = "react-native-mmkv-storage"; + }; + 35D29D203ACE1A3642FB097162D19DEB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; + remoteInfo = GoogleDataTransportCCTSupport; + }; + 363913E25283E77A2CDDBFA3854CD34D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; + }; + 36E0F3EAC610E75DE136273BC3CC2CC3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; + remoteInfo = libwebp; + }; + 37168C35C4D1A9431FD2EC541D2894A2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; + remoteInfo = "react-native-orientation-locker"; + }; + 372629E1571263E65072CAE6503C46D1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; + }; + 374A3655E4FBF96ADA70AC0EFBB2384D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; + remoteInfo = Flipper; + }; + 374D87CB5E893745E48A5DB5B02530D4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; + remoteInfo = EXImageLoader; + }; + 377B3B012AC53DA540230AF9896A0376 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; + remoteInfo = RNFastImage; + }; + 3814E33F90FAA7A58884A68CF9BA6265 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; + remoteInfo = UMConstantsInterface; + }; + 38B9C859F6D3473A60554FDF89A3BB5B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; + remoteInfo = "Flipper-Glog"; + }; + 38F3CA49C9A4BACCA1D89284F93EE2E6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; + }; + 39E31E837EB7D891C6515E09EF5D82EF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 985FEA01F314F3C00F0C1E1181E6C4A5; + remoteInfo = "hermes-engine"; + }; + 3A02EBF72AE042615492C95FEAC16E64 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E3573FB7AF659C42B699003C73722241; + remoteInfo = RNFBCrashlytics; + }; + 3AFFE00593B1A6590ABE582CA5B5437D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; + remoteInfo = "react-native-notifications"; + }; + 3B3A166EAE4F20086EF961720F9FCE95 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + 3B9B24730AAD3DAC01ACFB01865543A9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; + remoteInfo = RNImageCropPicker; + }; + 3BD704AF06626C5C23A471EE5F0E8ECA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; + remoteInfo = "React-RCTAnimation"; + }; + 3C09EC956787921926679E659C17A2EB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; + remoteInfo = RNVectorIcons; + }; + 3CA896893E08C792F9883EA979C7EBD6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 6D979AB5FDA2E858850D9903776A30B3; remoteInfo = "RNImageCropPicker-QBImagePicker"; }; - 6450A51128404632393BC62EFE26F299 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 64F427905796B33B78A704063422979D; - remoteInfo = "rn-fetch-blob"; - }; - 64702C33C95FE958FBFB4D2A9177B1CD /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; - }; - 64BBD563D03ABBC14692B5D51BD08CF6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; - remoteInfo = UMBarCodeScannerInterface; - }; - 65630081BC08968CDA4A7C1DA6F3777F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D985A509BFE270C95EDCBE6B4CBAF189; - remoteInfo = "react-native-simple-crypto"; - }; - 65797E5BCD5762D88770B27BE0944D60 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; - remoteInfo = RNVectorIcons; - }; - 6588F011BD5285CBFD3116EF2DF22F41 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; - remoteInfo = SDWebImageWebPCoder; - }; - 65DDCA7305F2C1B1D575677D336AB58B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; - remoteInfo = UMReactNativeAdapter; - }; - 66DE88AABE6181D380AC4362460FCF3A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; - remoteInfo = RNFBApp; - }; - 679FF35CFA3A6F16B2297DC343823EDF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; - }; - 67C9F268927C2F38852B03E39468397D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - 67E0B234EEC6BAF567D06072BB124FF8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; - }; - 68C0DCC9CF3DC37F967C3CAD2DB52C03 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; - }; - 68F1C66CE59B96CB511E5B445C185D87 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; - }; - 6904E726F5020ACF1C313E659AF32C9A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; - remoteInfo = EXPermissions; - }; - 69337139D6806D86617FD081D265929D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; - remoteInfo = "react-native-jitsi-meet"; - }; - 69898D00F64C2FA84EFD326EE853C4EB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; - }; - 69C4B5CAAEF0BB55A6BE0995ED5CBD55 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; - }; - 69F2D1AE342AFCB7DA35E9A125A5B36B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = AC8AE887C706A43711D115E69B9D988A; - remoteInfo = MMKVCore; - }; - 6A2D37B5F83BBF148FB9E1C6E85400A5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; - remoteInfo = SDWebImageWebPCoder; - }; - 6B0F6FB4D88554E3F5EAF580558592C0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; - }; - 6CA4A320FEF0D8C5D66AC536D597F848 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; - }; - 6CE5630900C79CA6B02FACD8E6BC1FF7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; - remoteInfo = RNVectorIcons; - }; - 6D8D1ECD98E73B8E9F3FD83A89492856 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; - }; - 6F000B9D78FBF8AB5BFA9686850501DC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; - remoteInfo = YogaKit; - }; - 6F9C0C7A083CFE73B86C2F46BC5212D3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EC577C5CB1DC59A7464ECEF266A75B42; - remoteInfo = "react-native-netinfo"; - }; - 7008FDD2413002F02DA2FFCC406AD03A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; - }; - 7017E26D462BB15D22C7779F326D5E50 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; - remoteInfo = "Flipper-Folly"; - }; - 70222366C9CC32F57C9E1E9752219DA7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; - }; - 70351DC6B7DAEA9EB3FE9282A2B461CD /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; - remoteInfo = RNGestureHandler; - }; - 705C594FF9575097BFD0E029769E4709 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = AC8AE887C706A43711D115E69B9D988A; - remoteInfo = MMKVCore; - }; - 70A6A48AB57B42E589AB14598CC48A7E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 037A1F31C4D99F52EC9FD2008FEC481C; - remoteInfo = ReactNativeUiLib; - }; - 713707ADC82821DF7746F335C24338A0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; - }; - 715AD63465584D05FAD67798C7F3E606 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F3966F664F3CFAEFAB57C40FB54D3788; - remoteInfo = TOCropViewController; - }; - 719D2C58BC7D99A42F2B4222B3DAB478 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; - remoteInfo = UMPermissionsInterface; - }; - 71C42C46C830B0B62FEDDDB28100B3DE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; - remoteInfo = UMCameraInterface; - }; - 71D26378A183CBC65FA4409724C1F7D5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; - }; - 723767E9E6DEA0DE9F98E4E46E086018 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; - remoteInfo = UMBarCodeScannerInterface; - }; - 726E2459F8E78E213928392653149F08 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - 72827CCB89473928CDF4AB938430676F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; - }; - 7323734EB70AB5E2A066D7FD49DB49F7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; - }; - 73713D2F135703D7412943ED46F80238 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 985FEA01F314F3C00F0C1E1181E6C4A5; - remoteInfo = "hermes-engine"; - }; - 737C44FEE29C311AF709CDD694FD5E3D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 037A1F31C4D99F52EC9FD2008FEC481C; - remoteInfo = ReactNativeUiLib; - }; - 73CFBFBA1A6400D6793ECCFD3EC97C44 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; - }; - 73DC1D96D90DD6D56D57EBA6BBD40816 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; - remoteInfo = "react-native-document-picker"; - }; - 7410BCF49B6A0B216FB9CB874A13FA6B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; - }; - 743B77A72AC364BC70ED3A28EC6D056B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; - remoteInfo = UMConstantsInterface; - }; - 7486829088521D9548278DF00ADA5229 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; - remoteInfo = RNCMaskedView; - }; - 74D2291871FC615E66AF8A135FFEED99 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = AC8AE887C706A43711D115E69B9D988A; - remoteInfo = MMKVCore; - }; - 759A70834F268FA32FB777E0AF522189 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; - }; - 76218F0BA5F9DBBFA339CD24923EBA6F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; - }; - 7696C3C8A1A3E0BC0A8218FFFB5BBBA7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; - remoteInfo = RNCMaskedView; - }; - 76B15E9A0095993490F0D60762D1247F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; - }; - 76BF095F8F6B1FD10A5D8DFF22882B9B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; - }; - 76C5F2F30678805460ED63BEA7F1C6BD /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; - remoteInfo = "Flipper-Folly"; - }; - 770353D5A3150F781640789B42227308 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; - remoteInfo = UMPermissionsInterface; - }; - 7836A64662BA87329A2681138FDEA2BC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; - remoteInfo = EXHaptics; - }; - 78548447F8181F26FE238CFFDF2EA077 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 64F427905796B33B78A704063422979D; - remoteInfo = "rn-fetch-blob"; - }; - 785B3ECF86965462F7B301B1E2D84FB5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; - }; - 78B4CF7D6E33E214AD8F639DC6ECA020 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; - }; - 78F25F5E57A1062E7EFBE9AD17405CEE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D985A509BFE270C95EDCBE6B4CBAF189; - remoteInfo = "react-native-simple-crypto"; - }; - 7935637EA41C835C9D06D72F753784F7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; - remoteInfo = UMPermissionsInterface; - }; - 79455B5008438FABE11C8547A66848D4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = ADC4ACC657481AD27F9936D08FF7F49A; - remoteInfo = "react-native-cookies"; - }; - 7AA4775E59A979F69E9798EE1B9F6F41 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; - }; - 7ABA5BBC407A0F1AD3343385840A1DE3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; - remoteInfo = UMAppLoader; - }; - 7AD8D786682277F262DBA5E37DC0FFB7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; - remoteInfo = "Flipper-Glog"; - }; - 7B30B78927F31E9A16800420217C4A90 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; - remoteInfo = GoogleDataTransportCCTSupport; - }; - 7BC7DE7D2DC18D6AB69BC51A783761D7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 04A30E186743192DFB26B0FD7DB8F250; - remoteInfo = libevent; - }; - 7C06F4C231222A35C17CD5BFC27F4620 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; - remoteInfo = GoogleDataTransportCCTSupport; - }; - 7C3342A9E5BB45D459ECDA538121425C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; - }; - 7C633859177AB506753C40F2D82303D3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; - }; - 7D1A969BA6432C22405555E009892C8D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; - }; - 7D4940AE234EB78A8BF7849F2A7352D4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; - }; - 7DD77C1D0871633F1F86CAB41BFB1302 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; - remoteInfo = SDWebImage; - }; - 7E7A07EF20651E662F10F3F7051111F5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; - }; - 7EA3B46F44C1FA6693037350B9099568 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 91A6826828CB9FCD0169A7547E8A79EA; - remoteInfo = MMKV; - }; - 7EBE9DFB1ADB0F8DF216477847348EB5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; - remoteInfo = "Flipper-PeerTalk"; - }; - 7F1A604152485CBB5E0AE34A2E1745F8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; - remoteInfo = "Flipper-Folly"; - }; - 7F49B1EFC2C849DF369E9F938BBAA8A8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; - }; - 7F4E95238AA79B1E24F788E64FB8F840 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; - remoteInfo = libwebp; - }; - 7FA412A2990E2D8BED5742F497B1A6B8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; - }; - 7FABE26B1C08D0E326DBA903481009CB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; - remoteInfo = UMFaceDetectorInterface; - }; - 7FC8622282F31FD54320053C07A2EE1D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; - remoteInfo = "Flipper-RSocket"; - }; - 804D78BED1E5D093C804A0045BC8A908 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DC0D417AC8ABB7AA10C20A5E0F065812; - remoteInfo = RNConfigReader; - }; - 805D23734103EA107C9D2EB66C59CB19 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; - remoteInfo = FirebaseCoreDiagnostics; - }; - 8088D46D42CC2F6DA489BF7A7C77354B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; - remoteInfo = "React-perflogger"; - }; - 8177181DABF074EC4A5A5395CAD1CD4B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BDD119F8782FABE2707D3D913EC3EDE5; - remoteInfo = RNFBAnalytics; - }; - 8237F6E89F75241EEC9D469B421CDD4F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; - }; - 8239B2FAE2F159EE0AA034AD7CE452AE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; - remoteInfo = "OpenSSL-Universal"; - }; - 82628CCCC0FA7DD10CE8754529CDA834 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; - remoteInfo = "OpenSSL-Universal"; - }; - 834E4264FCAFFF39DDB257894CD94ECF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; - remoteInfo = UMTaskManagerInterface; - }; - 835FB3E60C719558132A2FC6F8366D3A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - 8445F24E0035CA52901A8DE74A88F2E1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; - remoteInfo = RNReanimated; - }; - 846F1C02B99A65CA39E2BB5AA3CE173C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; - }; - 851D2736B4D01CD8FCEBBEAE9EE41147 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; - remoteInfo = "Flipper-PeerTalk"; - }; - 8539E7C8A07C2A28C9E3F77327260E8D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; - }; - 85A5F880278AC2B9CC0D8CBBA5FF692C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; - remoteInfo = RNDateTimePicker; - }; - 86F18895887A4CA22467C28C1508954E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 868B90C74770285449C60DBA82181479; - remoteInfo = EXFileSystem; - }; - 87D59BC14B90D599680D548758A1BBA9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; - remoteInfo = "Flipper-PeerTalk"; - }; - 87EE6EF1FF55ACFD39C66FDAB6EC8575 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; - remoteInfo = UMConstantsInterface; - }; - 88A64A5D2D3491E29F04B3810920FF30 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - 88BBC0F3A64CD2E87202A9B2E7194640 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; - remoteInfo = Flipper; - }; - 88C0008054FC668FA95837068BBFCFC5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; - }; - 88C12AA7B358383DB2E389684FFB4323 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; - }; - 892173FA74921EF3B24E76F2AE118E63 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; - remoteInfo = GoogleDataTransportCCTSupport; - }; - 8970B6C43DD928580CE58D8E0A4F5308 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; - remoteInfo = UMImageLoaderInterface; - }; - 8A2754E0ED23968E43C20D1E3F0A443E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 014495932E402CA67C37681988047CA2; - remoteInfo = UMFontInterface; - }; - 8A55DED6E15B368D6BAA494CF4FD7D33 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; - remoteInfo = KeyCommands; - }; - 8A7B9F45835D5C9F65C475E78A1B8F52 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D985A509BFE270C95EDCBE6B4CBAF189; - remoteInfo = "react-native-simple-crypto"; - }; - 8B3DE108DA3C930FFE8FB32F29B413AD /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; - }; - 8C49BF27BC5A5999B85FB0EA436738EB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; - }; - 8C629D1B56E0D379595E0419325ADF85 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; - }; - 8CCEE76F91E889C937356EA2BB901A95 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; - remoteInfo = UMPermissionsInterface; - }; - 8CF4B177A86A11EBAA717FA105F0C285 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; - remoteInfo = UMPermissionsInterface; - }; - 8DD69B358211764A3708B7D9752BCC97 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; - }; - 8E0E1B9C416FAE921CE81D66553D9F28 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; - remoteInfo = "React-perflogger"; - }; - 8E10BC85B743F5EE6FCABD57EEF33AEC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; - }; - 8E22843FCCC33EAEA010B13AD590666C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; - remoteInfo = GoogleDataTransportCCTSupport; - }; - 8EA8C0D6F9EFDEE295AA9E1F5F68BDB4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; - remoteInfo = Flipper; - }; - 904994E80F8A99FAB9EF935941838382 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; - remoteInfo = UMCameraInterface; - }; - 90889E84D10498385B6FC5BE3A793265 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; - }; - 914EAD9C23A73583815299F87D4B3B57 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; - remoteInfo = SDWebImageWebPCoder; - }; - 9153E72AB4CC4F97411BBD437F4B5C05 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; - remoteInfo = FirebaseCoreDiagnostics; - }; - 920A3717E13FA6B6E21141A4952864D6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 985FEA01F314F3C00F0C1E1181E6C4A5; - remoteInfo = "hermes-engine"; - }; - 9225F3268A3E7B16892659EEFD3F3D62 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; - remoteInfo = EXConstants; - }; - 92495DD957F8471A480A348CE51A5032 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; - }; - 92B01D5D018B23851D96C8389258F618 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DC0D417AC8ABB7AA10C20A5E0F065812; - remoteInfo = RNConfigReader; - }; - 94791F2AB2C9771EF29E523C403FCB0B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; - }; - 96A8BEC58EE9B53EF7A6C347E2CFD963 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; - remoteInfo = UMTaskManagerInterface; - }; - 97133BE9D3B1D4D066C291E70DF212EB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; - }; - 976567818D2102E53E6B69F313E83898 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; - remoteInfo = "react-native-slider"; - }; - 97EDAC4F5C1E6FAE08FC171204D0ACF5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; - }; - 9898A660C6DC1CB1672B7D16E73A1866 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 04A30E186743192DFB26B0FD7DB8F250; - remoteInfo = libevent; - }; - 98BE193166D29C97E69B835B13FF7D7A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; - }; - 98BF490FC66CEC6C2595B6A882401AD6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; - remoteInfo = RNFBApp; - }; - 997C4D9AA57EF5DA867278131DDF9C64 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - 99D1787513B123CB2CD4BB70069EE3C4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; - remoteInfo = "react-native-notifications"; - }; - 9A4D44903D38F168DCA74B364E1C296E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; - }; - 9A759FCC2D69CF5269D0F4A223986C93 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; - }; - 9AAE2D4860B7230E5DAB3D413B6716FF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; - }; - 9AB2C5B2F7381E2F32EE3D989D749ACD /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; - }; - 9AE3607298539D2E2E04868EE4ECCAF2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; - remoteInfo = "Flipper-Glog"; - }; - 9AF7BF91428DA97981FEAF9728A8EA37 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; - }; - 9B4E1147A7A1BB4F11269CCE5A4AA99B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; - remoteInfo = UMFileSystemInterface; - }; - 9C372DC2455C407AF89B380F478B6B63 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; - }; - 9C47BD26FCA227A5E66DFCD071FA810C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; - }; - 9C5D78FAE25C0703BF471BD266E7F9B0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; - }; - 9C5F4E18B638172CDFE1EC91961172A6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; - remoteInfo = "react-native-orientation-locker"; - }; - 9CFEB815E94073E187497D91826CBF13 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; - remoteInfo = SDWebImage; - }; - 9D9C0528AFD644B9B43E3F63D46A8B1C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; - }; - 9ED2D8227A9338BA24D4AE71D3700E8D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; - remoteInfo = "react-native-safe-area-context"; - }; - 9ED34E7E4BFB2D0815531FC8FAF0C83A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; - }; - 9F51E8C01C7BD4C0B1CBFD468A6C5928 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; - }; - 9FA124619AC98D5EBF7F9949DE1C0919 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; - }; - A07B2B4B512660925D5BD4008446057D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - A12C07FFF87A566FBE24886B9A58988D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; - remoteInfo = UMFileSystemInterface; - }; - A1324FFC9385A897C7E7368294D5EB5D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; - remoteInfo = JitsiMeetSDK; - }; - A1A2CE7E25EF7A424B542B50FB7115A0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EC577C5CB1DC59A7464ECEF266A75B42; - remoteInfo = "react-native-netinfo"; - }; - A1A2D6BA87D23A1E9B3C845F54DBE492 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - A221E0C93948D918C08A09F26BFA40B4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 54EB12219122432FA744088BC5A680D2; - remoteInfo = "React-runtimeexecutor"; - }; - A2A0BBED14075C868FB9E772DD223922 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; - }; - A2AD09EE3F4A24CF954BADB2764FACBF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D985A509BFE270C95EDCBE6B4CBAF189; - remoteInfo = "react-native-simple-crypto"; - }; - A2C995DDB7F4CAD54A339F63190396B5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; - remoteInfo = UMFileSystemInterface; - }; - A37A3A6F66567A0C22D69B21510E21A9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; - remoteInfo = libwebp; - }; - A42B38FF12EFA01FB209936208E00173 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D00F24222F074B31C56DC6D05E806A35; - remoteInfo = RNCPicker; - }; - A55B28CB3C4DFAE17FDC83BBC278267E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; - }; - A5AFB4AB04D2EE4C873230B7C0FCD0E2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; - remoteInfo = EXConstants; - }; - A64E3CC06153128313434B7F4854483A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; - remoteInfo = EXLocalAuthentication; - }; - A6B6B2D784C8B4B3A500C286560BA068 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; - remoteInfo = "React-callinvoker"; - }; - A6D3DD129EF627CD88A85BA25341A95C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = AC8AE887C706A43711D115E69B9D988A; - remoteInfo = MMKVCore; - }; - A6EBAB645D28C7F7BC14FABCA00B951B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - A7388EB526979481EDDA7912111A3BCC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; - }; - A7BAD11E39394B6D584779FC7F3358BD /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; - }; - A8BD4C1C7088274866E4E34405B4A143 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F3966F664F3CFAEFAB57C40FB54D3788; - remoteInfo = TOCropViewController; - }; - A97271441BFB7CC8D4633FBDD0A12CE5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; - }; - A973E172BBC66251A31430E8B1E11115 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; - }; - A9C562E548158AC310DFC947ACEA0EAA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; - remoteInfo = FirebaseInstallations; - }; - AA546C96287B768BD06E659DF8909AFA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; - remoteInfo = RNLocalize; - }; - AA93A6C8345FF1E1469F6475BFDB35A1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - AAE3CD27142D8B12A9715C1FC175C18E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; - }; - AAEBB31EA77479860716563F0371507F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; - remoteInfo = RNCMaskedView; - }; - AAFC2EBCDFE1494B84A346ADE397DD32 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; - }; - AB026BA6501420546505C2B4AD67A5D9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; - remoteInfo = EXAV; - }; - ABF72191DA7990645462694DB7C61D08 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; - remoteInfo = "react-native-document-picker"; - }; - ACB4936CE2C4107DD0F2B775417BD5FC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 526C4398D095B3704EB933DADBC30093; - remoteInfo = FirebaseCrashlytics; - }; - AD060F251EEA13A3D417EE1F1B1AB3C2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 54EB12219122432FA744088BC5A680D2; - remoteInfo = "React-runtimeexecutor"; - }; - AD954B421BD41C4CF19B302BA505FA52 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 28A005E00FB77DDB2543047A07ED99A5; - remoteInfo = EXAppleAuthentication; - }; - ADC204DACACE7C5115CFBB140025593C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; - }; - AE5DCB15CF7371F18081C5E10675A555 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; - remoteInfo = UMFaceDetectorInterface; - }; - AE6AECE5D69F73B6ACC58EE7EF91C169 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; - remoteInfo = "OpenSSL-Universal"; - }; - B02B8C097DED4A38273FB4F9978F758A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; - remoteInfo = FirebaseInstallations; - }; - B07195604AF1B823263371515A78BED4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 014495932E402CA67C37681988047CA2; - remoteInfo = UMFontInterface; - }; - B07BC12EDA54BF36A59A1CC21BC61D96 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; - remoteInfo = "Flipper-PeerTalk"; - }; - B0DA9F4640B00D1E565796A4D2DE4D59 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; - }; - B0E1B313B75033E86F4CF238B13CB196 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; - }; - B0F5A7208886E807A7A3A25FF5D0DC7C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; - remoteInfo = BugsnagReactNative; - }; - B188864072AF3A16AE3D3A509E542DCA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; - remoteInfo = JitsiMeetSDK; - }; - B19890701E3C08C8B8839C38CB18C226 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; - remoteInfo = JitsiMeetSDK; - }; - B1B7F3C7688B3C668809342130824419 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; - }; - B1D210726F56785ADD182DD8B632DE0C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; - }; - B1E99F4506C6CD4672E2071D440AF1FA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; - remoteInfo = RNFastImage; - }; - B261A1C979881099B409974402C7247F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; - }; - B2AF571097C4D79055A963132CCC47CA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; - remoteInfo = UMReactNativeAdapter; - }; - B353CE6C2353DDCB92929AF2159DDE5F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; - remoteInfo = "rn-extensions-share"; - }; - B466021ED4444AC1D55EE120EB17917C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; - }; - B4842E48BE79F79B274EA8045B53CD6F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; - }; - B5DF3C1ACEC71BC80CEF2575B74D43ED /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; - }; - B5F20A6563167870E771FBFADA1590C0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 868B90C74770285449C60DBA82181479; - remoteInfo = EXFileSystem; - }; - B60038B9900A26A8F9FBCD92B272C7C4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 91A6826828CB9FCD0169A7547E8A79EA; - remoteInfo = MMKV; - }; - B683D3E27EF0C6C91AEF5EA9B5710D90 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; - remoteInfo = UMAppLoader; - }; - B6D658B5760AF973294D0A108231588B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; - }; - B7184194C2170723E9403BE62B28A7E4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; - remoteInfo = "React-perflogger"; - }; - B745FEA07EA61BDD54A7C4FA18C7482B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3ED96FB9FE1D18D5F1239C60A109F98C; - remoteInfo = "react-native-restart"; - }; - B795F2179C46C34324D532AEE62D8F36 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; - }; - B7FC591113C3F49B1B40ACE4EB06E181 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; - remoteInfo = "react-native-orientation-locker"; - }; - B83CA0DD28692A9A17B510C0400AC63A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E3573FB7AF659C42B699003C73722241; - remoteInfo = RNFBCrashlytics; - }; - B86A8DFE0DA3F2028D64A78AC298E620 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; - }; - B983D6FFB54FE8811A75F80A76A4FF65 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; - }; - B9B7CAA3F6DA686C3874D5F37571E592 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - BA1ADE747ED481B871D3CCB3E4364F00 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; - remoteInfo = RNFBApp; - }; - BA58F8C083773C9AB7A58C3C6CAAC9BC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; - remoteInfo = UMFileSystemInterface; - }; - BAAC5984B8EA6C685F6A86718A81C6B1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; - remoteInfo = FlipperKit; - }; - BABE69F2886CAC8E9148C3C739BBB4B8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; - }; - BABF166AB869DEE4FFFA1E9A67DE52CA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 74DAFD196634D10887C9A4E7BA19A5E4; - remoteInfo = "react-native-mmkv-storage"; - }; - BB61506E7A5C21F1663A8D965563D834 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0CF4D9052577C85B6B8C4E957332626B; - remoteInfo = EXKeepAwake; - }; - BCB7BED53C0F697FDF761C58A8FE6522 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E16E206437995280D349D4B67695C894; - remoteInfo = "React-CoreModules"; - }; - BD58F3854A3E04B7A07EA3CEE49E1713 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; - remoteInfo = EXWebBrowser; - }; - BDD76A33A23A32D1BFD6ADCF05DDAF76 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 526C4398D095B3704EB933DADBC30093; - remoteInfo = FirebaseCrashlytics; - }; - BE078DC2E7F315CD81B9C218F829E05F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = AC8AE887C706A43711D115E69B9D988A; - remoteInfo = MMKVCore; - }; - BE2A185E1EF037D98BCF50D2CC3D6FD9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; - }; - BE32DDD82BB6ADE3F0D33E8243F138FE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; - }; - BEEE08F34170F0BCCE70B17F442B8D31 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; - }; - BF359EB1DD8C5E2F0A4064D2BFA4C578 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; - }; - C02B26A96E77264A3C8E5F1DACC31C21 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; - remoteInfo = RNLocalize; - }; - C088C937AB030DB16EA50EF6957DB7E8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; - remoteInfo = RNRootView; - }; - C1957EAA9B1709FABA5702B34B46AD17 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 54EB12219122432FA744088BC5A680D2; - remoteInfo = "React-runtimeexecutor"; - }; - C1DDE38D19E2ED012ECAE97122B66653 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; - }; - C2B104579BE1E91AD20A5A3131E32CC6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; - remoteInfo = "react-native-appearance"; - }; - C332B46BF6EB3627AC5F1B159BBA686F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - C3786F94ACEF9BF4600179520EA02A20 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; - }; - C38EB51A10BCF5A8870AAB81EAADF33A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; - }; - C47A064EA531B5284A9D5DB66195FB35 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; - remoteInfo = ReactNativeART; - }; - C4CD955036B61C4A31118ECA74E4FFF8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; - }; - C61C288118457A119F4B7E995CED2308 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - C6C6B6A4AFC30B9C9566CCA084BC1087 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3ED96FB9FE1D18D5F1239C60A109F98C; - remoteInfo = "react-native-restart"; - }; - C6EAE8ABB0B1A464C9FC3CD00F169AC1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; - }; - C7688447C4D7F523974281B8A039CF86 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; - }; - C80F1B4846E1114CEE565F5F241D473C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; - }; - C826B229DB0003706DF196ABC7686F98 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DC0D417AC8ABB7AA10C20A5E0F065812; - remoteInfo = RNConfigReader; - }; - C8436AFD2A95F388B46B304CB5A2D431 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; - }; - C9AE1789E6685FA287BAD5E547E3F284 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - CA166A25DD8152FDDB714FC89B834A0C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - CAA33CCE99EF1E04EECA98D7C1B5B506 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; - }; - CAB31615BAC1C1A0475FF47AB09DCF2A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; - }; - CB0F5DE7CA20A806BDBEE84F50E2BA38 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; - remoteInfo = UMBarCodeScannerInterface; - }; - CB10BF2468EDD85F6B46394710219A44 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; - }; - CB65A3DE60BF91F8D002B55E48392400 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; - }; - CB87FCB01A3C5D8A45E76561CF4B33BE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; - remoteInfo = Flipper; - }; - CBABF71C14563F77FDA65FE2823EDAAC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; - remoteInfo = UMPermissionsInterface; - }; - CBAFCC58CA1993FB5238B3560256E83B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; - remoteInfo = FirebaseCoreDiagnostics; - }; - CC5760AC5DB8DAC54F79DF1EA8A01DD3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 54EB12219122432FA744088BC5A680D2; - remoteInfo = "React-runtimeexecutor"; - }; - CC8D62C5A546082AB26BF89B0A672DBC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; - }; - CD4FFC165DF39500ABF570B652591DF1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; - remoteInfo = FirebaseCoreDiagnostics; - }; - CE075C6F7DC62FE2BCA70F6DEDB7C23C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; - }; - CE5A40D35E4A29C1BA893B3AE7CEDB92 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; - remoteInfo = "Flipper-RSocket"; - }; - CEB327645951F98A240CF2612CF94030 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; - }; - CEE1FE2D5C8194CBCD11F0BD5EB67383 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; - }; - CFC18BD0528388E499A849D53A5792BD /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; - remoteInfo = RNBootSplash; - }; - D005E7CC8B959407AE19CD6A2CAACA40 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; - }; - D052DCB904BEFAA9E547B4915E3CF8AE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; - remoteInfo = GoogleDataTransportCCTSupport; - }; - D0E316C535CFE44A78DDD2AE7AB44A31 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; - remoteInfo = Firebase; - }; - D114AEC71E8944DAB2024E78F750C85C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; - }; - D1206CC7075976A247FEA15FCFCF5142 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; - }; - D142509EE7E89FC1C342DFE65F70E29E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; - remoteInfo = RNFastImage; - }; - D1EEBD86A5BAD58B6ED911AAC441A69C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; - }; - D1F8CEAFF747C27255CB0109230327E6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; - }; - D213AF80C1A6B28CB99E9798CB42BE99 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BDD119F8782FABE2707D3D913EC3EDE5; - remoteInfo = RNFBAnalytics; - }; - D26871E6F1ECAB76F01F474BB124C370 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; - remoteInfo = "react-native-cameraroll"; - }; - D29DF606E0DAA76BE94D78E0D6F43390 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; - }; - D368C9A8F031D3FBE06B6E4FF4AA1392 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; - remoteInfo = "react-native-safe-area-context"; - }; - D3D53E793C673FB53364D8BAE5977CE6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; - remoteInfo = YogaKit; - }; - D3F5DAD7E9DABFE2930BC56E666D2159 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 04A30E186743192DFB26B0FD7DB8F250; - remoteInfo = libevent; - }; - D47EFAFE1B3029C9D1973139D7B8A946 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; - remoteInfo = "React-callinvoker"; - }; - D49B52515DA29DB36CCB230F88BE9498 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; - }; - D4B99CC9F7827D757974B888EF66486E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; - remoteInfo = "react-native-jitsi-meet"; - }; - D4C7CAA7561720A047872031A8E5CA19 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 04A30E186743192DFB26B0FD7DB8F250; - remoteInfo = libevent; - }; - D5B9B0F3D60FFAF67840D4561768EA00 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; - }; - D5F209A1D7146736A93A996977D4BA2D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; - remoteInfo = FirebaseInstallations; - }; - D614FC9D2A8C12ECF40BDB1A50690129 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; - }; - D6187EC5AD1E056A3B1D0F4B0579898D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 868B90C74770285449C60DBA82181479; - remoteInfo = EXFileSystem; - }; - D63D4FB1DFDDF529BE26FC5839DD6017 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; - }; - D641A77CF0B2FE065A00879C6FDCCC3D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; - }; - D69352001DD807666ACC7AF5A2898D1E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; - remoteInfo = "react-native-jitsi-meet"; - }; - D69CF3AFE49DC3012E6B18F0C89960B7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; - remoteInfo = "rn-extensions-share"; - }; - D6AB8469FD06BBB25A68926DB9850100 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; - }; - D7472F695648E097A8FE58BCAAE92798 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; - }; - D75F48F7ECB8478C4E8B6A83D2CE0F48 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; - }; - D76D3D866286629E5B3B224496A8EAC3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 28A005E00FB77DDB2543047A07ED99A5; - remoteInfo = EXAppleAuthentication; - }; - D8347A502AF4793D0973EB8DDD465DC0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; - }; - D8A1AD85BF8B4194FE95228ED2D6AFE7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; - }; - D8C6F48B2DC8BB8EE144A99A0879E3AD /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3ED96FB9FE1D18D5F1239C60A109F98C; - remoteInfo = "react-native-restart"; - }; - D9250AB9AD9BDB5B7CA7D3DB933D9550 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; - remoteInfo = RNFastImage; - }; - DA2645C59A4E52A1076DB5D84244DD36 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; - }; - DA8ED9612CB45345ED9D808351E4B7C3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; - }; - DB0109545C0EA46F2D777362FE77A76F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; - }; - DB0BA9D20307B8D22536D2BD8E3453FA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; - remoteInfo = "react-native-safe-area-context"; - }; - DB301C474ABA3CF3845F5CA8BE908116 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E3573FB7AF659C42B699003C73722241; - remoteInfo = RNFBCrashlytics; - }; - DB363A289F7A6667FDBAC5A610E4B378 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; - remoteInfo = "OpenSSL-Universal"; - }; - DBD0106D4E8E45DA4FEB295AA2517724 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; - remoteInfo = UMImageLoaderInterface; - }; - DBEDB6D27A84F371530F3C0593209399 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; - remoteInfo = FirebaseInstallations; - }; - DC0AD6F9CCC7D4084EFB5F72934D0B17 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; - remoteInfo = "React-perflogger"; - }; - DCA6FDEF41A677344E06717CC4DCE448 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; - remoteInfo = "OpenSSL-Universal"; - }; - DCFFDC74D828E8F3A3917A5566AA2163 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; - }; - DD1609022FC994129FA36CB415A576EE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; - }; - DD9D8319D2B748A7860C4D2AE17FA03F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; - remoteInfo = RNBootSplash; - }; - DE9FA8BE747ED5E8A32BA888D828A022 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 037A1F31C4D99F52EC9FD2008FEC481C; - remoteInfo = ReactNativeUiLib; - }; - DEF682C2BF674024002D96F09F3F620D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; - remoteInfo = "Flipper-Folly"; - }; - DF2A0CE9754E44FC6A1F56BEC1B09C17 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; - }; - DF74B793FB9D9CB405F402B8B56F076A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; - }; - DFECA19D70CD6BCFC16288D9009D48B4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; - remoteInfo = ReactNativeART; - }; - E000BC6FE7D99B33CD9B429D9F3A6178 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; - remoteInfo = RNFBApp; - }; - E002AA7AFF09D54FB31BCC45F5E89CD8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; - }; - E0084FC8D0B451759877873EDFFBA391 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; - }; - E1020830A09FA90CA9BA0D0C3E50EDB7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; - remoteInfo = UMConstantsInterface; - }; - E17E6222BBDB8B205B8FAF2258C9E7A9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; - remoteInfo = UMTaskManagerInterface; - }; - E19CA6C85EDB86071745E094DD08DDB7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; - }; - E1BDF09547542E4B85A00D749B3DDC14 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - E2160FC6540AAC3304621099AD76BF30 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; - remoteInfo = UMFaceDetectorInterface; - }; - E2557A3B8A985875B2FC2792FB59A885 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; - remoteInfo = RNLocalize; - }; - E3268E97A5E2AACA6197A716105F6F85 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; - }; - E35593F6C55EE285B0E386A581F8504B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; - remoteInfo = "react-native-background-timer"; - }; - E3A293DD2313E6686A0F8BF166983834 /* PBXContainerItemProxy */ = { + 3CEBC78BEB4BBBADD58FC181BC7325B8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; remoteInfo = GoogleDataTransport; }; - E3D8B70E41B029DBE4401BFC02B65873 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; - remoteInfo = "React-perflogger"; - }; - E3ED1E6C772698474999CCA397A36A25 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; - }; - E3FC97AC402F55138F02AACBDF0BF586 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; - remoteInfo = UMConstantsInterface; - }; - E45639E4C98354DD654DEFA67EF38E06 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; - remoteInfo = CocoaAsyncSocket; - }; - E4BE1AFA9AB4B3AC4945CEA50921A2FC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; - remoteInfo = Firebase; - }; - E51D41F7C272B9BE4B069D93514091E5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; - remoteInfo = RNFBApp; - }; - E54F9D190F76AED471A383971E784A1A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; - }; - E5848D1BD422D505BB6E525824BE58AC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; - }; - E58FA5DE9D80981CDC8A2A00E60A8715 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - E5F4F863D4C2599A2C6F4F72D97D5D6F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; - }; - E602AF9AEA7F639608325762E8949E5D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - E63A3E74814B551DD2A0A0526559243F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; - }; - E704064B51295F906B560840599A5F9C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; - }; - E7342FA24BE96441860174896164B1F5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; - }; - E747622F8A66DEF24F70C57D1D8C6B05 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; - }; - E8204B9F6A44A64E028CE3B0280132B9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; - remoteInfo = RNRootView; - }; - E8E04EEC802D4F76C3DCA5494E0954A5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; - }; - EA3BC96A683098C322D8D9A4201C6C76 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; - remoteInfo = "React-perflogger"; - }; - EA75144D4A7A4BEB996CA0EF808F00E6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; - remoteInfo = "React-callinvoker"; - }; - EA881B25219100313519EE9843F61361 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E16E206437995280D349D4B67695C894; - remoteInfo = "React-CoreModules"; - }; - EA8DC21A9FB4290FAEBD4F44D8C48650 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; - }; - EA9C02E6BFA2C5D3535F665B0C9E280A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; - }; - EABA514DA5593D16EA8BF9F8D348321A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E3573FB7AF659C42B699003C73722241; - remoteInfo = RNFBCrashlytics; - }; - EAE0046BCEECA88C99809E295B567C62 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; - }; - EB8CA4D0E0E16EE9E44EBC9B319A244A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; - }; - EBD78E9D57FB0F473E6DE9A68A21647C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; - }; - EC0013D2D77BD2CFB24B250E1F94D6DC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; - }; - EC2049B309DD4B50AB30B26F0133427A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; - remoteInfo = RNFBApp; - }; - ECD174F11F2C104A314800934E6437C4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; - remoteInfo = RNDateTimePicker; - }; - ED2B629CD00341F898C32D5E3242973A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; - }; - ED489F41C0F9ADDE8D5ECED0C8774224 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; - remoteInfo = UMCameraInterface; - }; - ED490CAA95F4AB654A760C4A80153859 /* PBXContainerItemProxy */ = { + 3D7D8EE4C6B2F1B3726253379024F300 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; remoteInfo = GoogleAppMeasurement; }; - ED498C3D016B78A402BBB8DDB888A129 /* PBXContainerItemProxy */ = { + 3E265914EE1C1AA375AE84CFEC37F803 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; + remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; + remoteInfo = UMPermissionsInterface; }; - ED7BA1301D887DB75831C315AE38D399 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; - }; - EDC687BDA0B0A1F1686FCCF42348188A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4A95B7CD1D5F80C5E8CD9CDA00D41F70; - remoteInfo = EXVideoThumbnails; - }; - EDCEEA314F9B062621036AC4CA89C23A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - EDD083D235ABFC7346E4DF8B44BC836A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - EDE90198AD8693CC55082F01A85167B8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - EE9C32F21496332CD8EE50C5C6A13A23 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; - }; - EEB2215ADBE23C2437C9182A606A02F9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; - }; - EFECB6B13F5B1F06F686AF7821FA58C1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; - remoteInfo = EXLocalAuthentication; - }; - F07E99EB53ADA749A7BD8AF84451F6B2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; - }; - F096BDBA6F278FB3B152016214F18EE5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; - remoteInfo = libwebp; - }; - F24FCB665F702831E54F23D02844AE32 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; - }; - F2B19D4D4E169F7B0F15A872C10679FF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; - }; - F364AE78F7543A74946F5257D1B02BDE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 526C4398D095B3704EB933DADBC30093; - remoteInfo = FirebaseCrashlytics; - }; - F3BE8B4474F34690D9EB13216DCD82A2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = ADC4ACC657481AD27F9936D08FF7F49A; - remoteInfo = "react-native-cookies"; - }; - F43F3DE631B483772758E0C3CE32E770 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; - }; - F4DA082BB34B4B22C32DD93A736C7ABD /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; - }; - F4EDE1F4CD117C0B5ACC8D323E62A6B1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; - }; - F53A0CE6F0DFB9F54EFB86531CCEF739 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 526C4398D095B3704EB933DADBC30093; - remoteInfo = FirebaseCrashlytics; - }; - F546AE21BC865CC05FBE9DB26CF3E20A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; - remoteInfo = "react-native-document-picker"; - }; - F548D03DAD220EB31EA255BD2AF40ABE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; - remoteInfo = "Flipper-Folly"; - }; - F5946808F2ED521A1A330CB5EC386BF2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; - remoteInfo = RNRootView; - }; - F5A6500ABE1C83C9194A1E947309BE9C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; - remoteInfo = EXWebBrowser; - }; - F6B436FF5505B5951F1594595B3BF0A2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; - }; - F6F2177422CDB3EC41F68D42F966C1F6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; - remoteInfo = EXAV; - }; - F743D996CF475C990614A9884A002123 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - F7E4674CECD25C3EDD6656FCCD053D03 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; - }; - F8147C18EA25C8A238DF5239449AB743 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; - remoteInfo = CocoaAsyncSocket; - }; - F83594359EE59E28E66D02661AB9543D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E16E206437995280D349D4B67695C894; - remoteInfo = "React-CoreModules"; - }; - F8DBF419DC301454C6989223323C260B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; - }; - F8DEC101CF10138ECDDB13F1FED02E64 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; - }; - F9B4C2D0955D474D4036EFED28DA9992 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; - remoteInfo = BugsnagReactNative; - }; - F9C6F2113966798F4F7A842880F46303 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; - }; - FADB4EFAFB171CB8C6F3DD1E44AAB744 /* PBXContainerItemProxy */ = { + 3E69474A4A59ACF9D8787E8778CEFB52 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; remoteInfo = "react-native-slider"; }; - FB373E935F7F40D49A128E0E43B2F049 /* PBXContainerItemProxy */ = { + 3E6DA42228BE2D0B47B449B06095916C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ADC4ACC657481AD27F9936D08FF7F49A; - remoteInfo = "react-native-cookies"; + remoteGlobalIDString = DC0D417AC8ABB7AA10C20A5E0F065812; + remoteInfo = RNConfigReader; }; - FBE6A4C6EFDB7F9360BAE4E9B7C1F9E8 /* PBXContainerItemProxy */ = { + 3E7A0A19FB4E59D391794D3DE08AD827 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; - remoteInfo = EXHaptics; + remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; + remoteInfo = RNFBApp; }; - FC264CDEC9C1861A60DA3B4F477FD2E7 /* PBXContainerItemProxy */ = { + 3E7A5852025C8BC7B85218F5DC18993C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; - remoteInfo = "react-native-webview"; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; - FCF1AD213E72299179D0F9FCAE4A67AD /* PBXContainerItemProxy */ = { + 3E7BFDD2298D62984B79D67A45A754CF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; + remoteInfo = "react-native-notifications"; }; - FE0D5020FEB1E7C7D9F0A2EC48816FD9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; - remoteInfo = RNGestureHandler; - }; - FEE5EAA5197ACC539BD45F4437F4DA52 /* PBXContainerItemProxy */ = { + 3F973D3589686B607A4620DCC6AAD243 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; remoteInfo = RNDeviceInfo; }; - FF39434DB79599D53D23AECEC4069567 /* PBXContainerItemProxy */ = { + 3FB19AAC9883D1DF028837AD838AFD66 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; + }; + 4043FF9D59414EFF826B78A1678C03D8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; + }; + 4053616235C6EF0A028453379F52D298 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 04A30E186743192DFB26B0FD7DB8F250; + remoteInfo = libevent; + }; + 40BD78E7F0BA2DB65B35E29ACB0548F4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; + }; + 4133E2244A67F93BDE49F64A8B9BBF64 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; + remoteInfo = FBLazyVector; + }; + 41421C169CC0B7FB1B35E03E33AD4BF2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; + remoteInfo = UMSensorsInterface; + }; + 42135B42EB3752EEEFE9E5A4ACBCB8AB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; + }; + 42653E96AB1DAB598D8C32E761F7917C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E3573FB7AF659C42B699003C73722241; + remoteInfo = RNFBCrashlytics; + }; + 42CE88158B97229520B321E4443AD1FA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; + }; + 43732F95FDB3D65845FEEBE2AB2FF164 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; + remoteInfo = "Flipper-Glog"; + }; + 43CB847F276EAAC20EB0986FE6C40906 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; + remoteInfo = "Flipper-Folly"; + }; + 4457D5CA8E42FDC88461957668CFAC78 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; + }; + 448C98C45846E7E106F1E52942DA206F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; + }; + 44D981A786C366A2CACA1938C76BCF8D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; + remoteInfo = FirebaseCoreDiagnostics; + }; + 450A74806A894097E56E53C467C6071E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - FF466D1F0168EBD872B3F3E7013D4249 /* PBXContainerItemProxy */ = { + 454D6D81E6F834EF9B96BE25F8479900 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; + remoteInfo = "Flipper-RSocket"; + }; + 45C8A9B694B6551F7D1F87A998D95B81 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; + }; + 46018F94CABDEFE9B2580943B39F0363 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DC0D417AC8ABB7AA10C20A5E0F065812; + remoteInfo = RNConfigReader; + }; + 4607BC8B7AC1B35B433546A0CA15F20C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + 4621D42E6672BBF8AB1316BE61BFD493 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; + }; + 464C670BE9A85762B084067B7292AE19 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; + remoteInfo = Flipper; + }; + 465B48563448B30560ED5332D0F15C5C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 54EB12219122432FA744088BC5A680D2; + remoteInfo = "React-runtimeexecutor"; + }; + 4689C744D7DB05DD12F749009F0A7331 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; + }; + 46C53AF067A15343D583C7F71A893B84 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; + remoteInfo = RNLocalize; + }; + 46D3DE815B95431C1FBD77A3E87CDDF9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; + remoteInfo = "React-RCTText"; + }; + 47C0604704A8BC3DCBF0666CAFF42C31 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; + remoteInfo = "Flipper-Folly"; + }; + 4803AB7B3643D4969AC4087AC4C79360 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + 480CA8FD715B1D7A3DB333B2CBFF4EFA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; + remoteInfo = UMFileSystemInterface; + }; + 4811E34A2B61603E4865CBC3207ADFDE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; + }; + 485B83CBC9C2A83C6A78CE180859572C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; + }; + 4871AAA76574AE5A9E23B57659E4B055 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 037A1F31C4D99F52EC9FD2008FEC481C; + remoteInfo = ReactNativeUiLib; + }; + 48CD599CA12EFFBB29360308CFFEBBEF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; + }; + 497EB06B31993907ECD490A6CF7F22DA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; + remoteInfo = "React-perflogger"; + }; + 497EF6E30B6BA56995E78DE32981AB2E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; + }; + 49B14E507599C1C93A1E5D1F8C8F25A3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; + remoteInfo = "react-native-cameraroll"; + }; + 4A10036F9C194999EC5491DDB99B5768 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; + remoteInfo = GoogleDataTransportCCTSupport; + }; + 4B6CBFBEF4C512B4AE5500ECD5906714 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + 4BCCFE9A86DAE3F3CEC1744819C4E9DF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; + remoteInfo = RNDateTimePicker; + }; + 4C4BE413FB50613860EB7B1786D87397 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; + remoteInfo = "React-RCTText"; + }; + 4C93F8CFD550C70F6E3CAB9E24B2394B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; + remoteInfo = ReactNativeART; + }; + 4CAA75395129FD55349D85DF38063591 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; + }; + 4CD0C8FE9D059588BD39FA3FB1D8BD2B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; + remoteInfo = EXWebBrowser; + }; + 4CFB6E3A1D0F11E585A2F98CAF6A77C6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = ADC4ACC657481AD27F9936D08FF7F49A; + remoteInfo = "react-native-cookies"; + }; + 4D9A3D4B75EFEFFF9B32F527C084C57F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; + remoteInfo = GoogleDataTransportCCTSupport; + }; + 4E6352EA3823C0C8F7F3EC660F05C1EB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; + remoteInfo = "react-native-webview"; + }; + 4E66FE176455F83404AF5ECF517E8024 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; + remoteInfo = EXLocalAuthentication; + }; + 4E8C2D1817F3ECE5F333AC385DD762F4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; + remoteInfo = EXConstants; + }; + 4E9B1A0C929F15972973F8C9DAA4AB3A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; + remoteInfo = "react-native-background-timer"; + }; + 4F0A9A88AD4CB8B08F1DBA2E70387763 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; + remoteInfo = "rn-extensions-share"; + }; + 4FA77DF262A8CEECAEAA7B2F14F17081 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; + remoteInfo = Firebase; + }; + 4FE0D7292C95BD1A3F3CD951E22C2770 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + 4FEAC5275490F9F0C589B5E1E727C1F7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; + remoteInfo = RNRootView; + }; + 4FF2B304A62C3F3BBA2A496E856BEC34 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + 50239268B90E4A0C1B4C10E3CB38487B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; + remoteInfo = RNVectorIcons; + }; + 50466E742D9F32965A430247549F9312 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; + }; + 50C73AB274B6F4D5E88C1EC31A7E737F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; + }; + 513641D58AEFD2B8A6FF83D29C3B8837 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 037A1F31C4D99F52EC9FD2008FEC481C; + remoteInfo = ReactNativeUiLib; + }; + 527143A654B69B7A706F5D0CF42BFF14 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; + remoteInfo = RNFBApp; + }; + 5274FC48A786B0786D5038F983F462D6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 74DAFD196634D10887C9A4E7BA19A5E4; + remoteInfo = "react-native-mmkv-storage"; + }; + 52930AD8F7529C00DBF65D8885178645 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D985A509BFE270C95EDCBE6B4CBAF189; + remoteInfo = "react-native-simple-crypto"; + }; + 52BC0FD32310DC90777AFCE85B5CD073 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; + remoteInfo = ReactNativeART; + }; + 53246BD24D8455F774F8D6BCB9651698 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; + }; + 53617FB4A674EDAEC3FD5ECD2977A528 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; + remoteInfo = Firebase; + }; + 53A2DB2B99218EF56D14C805F5571D27 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; + remoteInfo = "react-native-orientation-locker"; + }; + 53DAD65A32AA8A988F94CF3A96ED27C2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; + remoteInfo = "React-jsiexecutor"; + }; + 54391617FC5BD7AEE259D806C6A2006A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; + remoteInfo = RNCAsyncStorage; + }; + 553D686D45B150E3E9440047A10AECED /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; + }; + 555171B29ADA7FFC5810355DAC962B7F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; + }; + 5569090EC3C3F2F0CF2BAEF82929EAEF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; + remoteInfo = FirebaseCoreDiagnostics; + }; + 55D6A964AE6E535448014587AD1E53A1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; + remoteInfo = "react-native-appearance"; + }; + 564E929717A305B9C90A73994D284E65 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = ADC4ACC657481AD27F9936D08FF7F49A; + remoteInfo = "react-native-cookies"; + }; + 56B08E369EF25875B67F3DBDF67BF35F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; + }; + 56EB10C15B080BAE819AB4C01C30D572 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; + }; + 57433F28D15E9041CE8E3C09FDE7CD41 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; + }; + 576E23C19AB2BF6F63975A1429A869B4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D00F24222F074B31C56DC6D05E806A35; + remoteInfo = RNCPicker; + }; + 578226052999AC58B77081D467E47D82 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0CF4D9052577C85B6B8C4E957332626B; + remoteInfo = EXKeepAwake; + }; + 5795402636DE819E8D84466D4AB5BA02 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; + remoteInfo = UMPermissionsInterface; + }; + 57D468B7F900DD8249B5698DBAD01D17 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; + remoteInfo = UMTaskManagerInterface; + }; + 580D69B9F7E7F081BC1C85F14CF37CE9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + 5825107B193BDC6FFA838907DBBDD2FF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; + remoteInfo = "react-native-jitsi-meet"; + }; + 586149B72877694B4DA40AE703D7336E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 985FEA01F314F3C00F0C1E1181E6C4A5; + remoteInfo = "hermes-engine"; + }; + 58A8053A3AF1DB1BEF477C23CC12B29E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; + remoteInfo = UMSensorsInterface; + }; + 58D6C04CC829A78BEE24413D12CF650D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; + }; + 590D4369441D7B8C47D1FB5FDC5BDC16 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; + remoteInfo = "Flipper-Folly"; + }; + 59E220379E7E47B861BC7E127FE2035A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; + remoteInfo = YogaKit; + }; + 5AD9824DA15B989D5D0F776237081BC4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; + }; + 5AF93AF43A64C1D10B49956F82E66101 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; + remoteInfo = UMConstantsInterface; + }; + 5B3D2BBD2FB85E098BAD2132F8F32286 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; + }; + 5B46F0291F03F7C6291A82898B21367D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; + remoteInfo = SDWebImage; + }; + 5C124631297FE08AF639F95D2465990A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; + }; + 5C75FF97709D8A8A9FDFC26B2D2CFF19 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; + }; + 5C88E946B311BCCD1D2CB4A3CEF41913 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; + }; + 5D9C0DC2D812B010822D16DDB9AEA6E2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EEBB8D24F2B3531A5C5DAA668D02331F; + remoteInfo = "react-native-blur"; + }; + 5DD225A5BF429A260374E0F90D5F7E7A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; + remoteInfo = KeyCommands; + }; + 5DFA289244EDF68968B3252E1BDF0558 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; + remoteInfo = UMImageLoaderInterface; + }; + 5E212B028316FA1DF3AA5FA9337D3D3B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EC577C5CB1DC59A7464ECEF266A75B42; + remoteInfo = "react-native-netinfo"; + }; + 5E79938850E0F6FDF8334EADD2E8BCB6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; + }; + 5E8F59849520F8E58324C72E77979051 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; + }; + 5E949BC803D435EBED0312F4ED97D2E5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; + remoteInfo = EXAV; + }; + 5E9B56398AFED5DAA87AB668621A0B74 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; + }; + 5F90765B15608E3C929B788DC3CF3264 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F3966F664F3CFAEFAB57C40FB54D3788; + remoteInfo = TOCropViewController; + }; + 5F9E71884D5A17819A4679A58BF9F20C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; + remoteInfo = JitsiMeetSDK; + }; + 604A57080D43C4AFF098925033AA96B3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; + }; + 60D322FF766C8D61CA8ED87B9000A668 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; + }; + 6162F3A41AFFB0D95D05E58A42E945D1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; + }; + 616D3AA11D13A7910CA749A077049EEA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; + }; + 618D168BEAACFA3B5A1C875C806E8E78 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + 61915254BD5BB8B37E9426BCA441587C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4A95B7CD1D5F80C5E8CD9CDA00D41F70; + remoteInfo = EXVideoThumbnails; + }; + 61C5AD83051A6BF988E860492C9C4E91 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; + remoteInfo = EXAV; + }; + 620B83BA58E6500BECBBB0262BB7A1DB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 014495932E402CA67C37681988047CA2; + remoteInfo = UMFontInterface; + }; + 6236B0E829BFA77ED7E0381BBC4793AD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; + remoteInfo = "react-native-notifications"; + }; + 631341BE9143FC0B1864D0AC25521689 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; + remoteInfo = RNCAsyncStorage; + }; + 632DA945F4A946CF1CDC32425016CAF3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; + }; + 6359F94F5060859B2E9C4134C1869B29 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; + }; + 638C22689F31DD16A085BB7364E0EF57 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; + }; + 63EC784B7C48FA65F68D006A546AF39B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; + remoteInfo = RNFastImage; + }; + 64340757F801CD4D68903C3967D08A6D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; + }; + 64B2A59ED69101DB0F57079B7FC99B09 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; + remoteInfo = libwebp; + }; + 65460C545AE2E274A9E44193100D018E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 526C4398D095B3704EB933DADBC30093; + remoteInfo = FirebaseCrashlytics; + }; + 6684F4363389C0D8E03366528419D2A7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; + remoteInfo = KeyCommands; + }; + 6699DA762C1C3FAB74015C0C2893DDEC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 54EB12219122432FA744088BC5A680D2; + remoteInfo = "React-runtimeexecutor"; + }; + 66F16CDBFD0DBD6486020510757416E1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; + remoteInfo = UMFaceDetectorInterface; + }; + 66F8828E29E64D78E3089E7AE42E4DC5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; + remoteInfo = "rn-extensions-share"; + }; + 672ED383E40E18B777B47957FAF83FB3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; + remoteInfo = "React-RCTText"; + }; + 67D8B961DDE63B654E8D29EF8DD0EC06 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; + remoteInfo = "react-native-slider"; + }; + 67F462DF39036B148BE705E85FC8414C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; + }; + 68B2BD952CDC0CFDA935ACE395F17864 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DC0D417AC8ABB7AA10C20A5E0F065812; + remoteInfo = RNConfigReader; + }; + 68DF654651E2E480EAC07733E4ADE995 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; + remoteInfo = "React-jsiexecutor"; + }; + 68E8C147AC389AED1597739E606CEC08 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; + remoteInfo = "React-callinvoker"; + }; + 69BF5557AF1FEF6C555F67A1C1C56432 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; + remoteInfo = BugsnagReactNative; + }; + 6A4F6E8189639BE11C070C6B2C17D163 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; + }; + 6ABC38C5CC9A273FF6B88931814C68EC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; + remoteInfo = CocoaAsyncSocket; + }; + 6ADA9866B60F41F8D66EB5650C2592AA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; + }; + 6BB40FCEB3B0BBD24F111067C543F276 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; + }; + 6BEECFE940EE57446010093679E6B7A9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; + remoteInfo = "rn-extensions-share"; + }; + 6BF35E248DEC7B1CA4FF8109AD5DE73C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; + }; + 6C31E5A6DD2ADD6C08CEB424EFB8BFF0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; + }; + 6D0C54C8FA5AAD31B221B6ACDEFE33F8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; + }; + 6DBC5E3B31BEC0C90A96EB5A2275E508 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3ED96FB9FE1D18D5F1239C60A109F98C; + remoteInfo = "react-native-restart"; + }; + 6DE491E400CB43D236EFAF0D0A9FC47B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; + remoteInfo = FirebaseCoreDiagnostics; + }; + 6E0867306259EF4E56A15E93200C6417 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; + remoteInfo = EXPermissions; + }; + 6EE905DCAFF6D9757B7D78DEB143467E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; + }; + 6F2F8F0DF9F4D0F82437B452B8737F1D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F3966F664F3CFAEFAB57C40FB54D3788; + remoteInfo = TOCropViewController; + }; + 6F8E1192453A55B478B8BF41E258A9E7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; + remoteInfo = Flipper; + }; + 70609736CA4CFD114CE5EFE50DCE88A6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; + }; + 7061AE322B05184FC5401EA3B62C6073 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; + }; + 710AFA78DB930DDB1A0AF654064B964B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; + }; + 71275010C693F88591E392C75E6D73F9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; + }; + 7231C9B7B946D73B0B59B0815F3C2048 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; + remoteInfo = FirebaseInstallations; + }; + 726537D085A6AAE596BA2B05B5F6C773 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; + }; + 7314D01640E273DECBE3FD055A72FB09 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; + }; + 7329F52023168D19C86DE1935125A18C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; + remoteInfo = UMImageLoaderInterface; + }; + 73C03BC47D09631D4DFA4ADC8E6B51CD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; + remoteInfo = "react-native-webview"; + }; + 743E77544AB16D9F45C7454313A6B4DD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 28A005E00FB77DDB2543047A07ED99A5; + remoteInfo = EXAppleAuthentication; + }; + 752CBFB908C2FB61C67D095B8193D181 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; + remoteInfo = "Flipper-DoubleConversion"; + }; + 75490B4E851772D5FE6CE8608A2B12CD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; + }; + 75B6C953C09AA70B51B016BEC1330C3D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; + }; + 75DCAE63969055377DEDD692445B7117 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; + }; + 7612F29B04AB588E203466104125D8B3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; + remoteInfo = "Flipper-RSocket"; + }; + 7639A3432949ED8533B899DBD4EE600D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; + remoteInfo = EXHaptics; + }; + 76807A0F1F4F6C75CE517435DED9D5CD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; + }; + 76F9171EB5DB7DE7164760EB6931F05B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; + remoteInfo = "Flipper-Folly"; + }; + 77132EC71CA777052818FCBCD864B1F6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; + }; + 77FD366B8F470A3B28491AEC04ACE282 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; + remoteInfo = FirebaseInstallations; + }; + 78365B3D959DB3F6981CD93AE0050656 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; + remoteInfo = "React-RCTBlob"; + }; + 783E240EE084DDA5A78595BE3B9BF749 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + 786C4EF4FEECE22A8A59F0D013E2636F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; + remoteInfo = CocoaAsyncSocket; + }; + 79AA4FE2279242E526BD42C4BFBE860B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; + remoteInfo = RNCMaskedView; + }; + 7A72E66D08CEBD016AB11D728C1E9FBA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; + remoteInfo = "react-native-cameraroll"; + }; + 7A94BE1F95C08BF7AA7AB6ECFBD0B6D3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; + remoteInfo = GoogleDataTransportCCTSupport; + }; + 7B05314E0BD1ACFE405A74A0BF38B226 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; + }; + 7B4214A62B6EEEE26104A4075FD700AF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; + remoteInfo = RNCMaskedView; + }; + 7B4553286C8582DC620CF51CBC5051F4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; + }; + 7B96D4DAB5B4D969F3D720D6A3C2873D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; + }; + 7BDC9F6E6E206767C7503F54F4C559CE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 526C4398D095B3704EB933DADBC30093; + remoteInfo = FirebaseCrashlytics; + }; + 7C105FF79E70FF52707B9493BDE8052E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; + }; + 7C70AB9B74681F9C0D888ED44C6C9A49 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; + }; + 7CB07AC75B8B2580B14BEC5EFF6B7466 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; + remoteInfo = SDWebImageWebPCoder; + }; + 7D598AF8C7AAF47DA95B87BC66BECB6C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; + remoteInfo = UMFileSystemInterface; + }; + 7DB2DADB16B041C2BBCA1D67315427BE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; + }; + 7DD7D4C4DD834B34F5D0FBD8F217710E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; + remoteInfo = "React-perflogger"; + }; + 7E12B12651FBBE692717A43112D2BEFF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; + remoteInfo = UMSensorsInterface; + }; + 7E6E9612FAA666BFD7351EDD72ACA4BE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; + remoteInfo = "Flipper-DoubleConversion"; + }; + 7EE2AD69BF9E7C6FBEB92D6ACC61A2B4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; + remoteInfo = RNCMaskedView; + }; + 7F419458D4EB95BC37CEDA24E6A87FBA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; + }; + 7F86036D468EF759A9944001C3086198 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; + }; + 7FEFC9E8BE19C553AAECCEAA7F926B4A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 037A1F31C4D99F52EC9FD2008FEC481C; + remoteInfo = ReactNativeUiLib; + }; + 80CFA2910011DAE5463CDD132918267A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 64F427905796B33B78A704063422979D; + remoteInfo = "rn-fetch-blob"; + }; + 810FDFE4C799F23532046534D076DED7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 014495932E402CA67C37681988047CA2; + remoteInfo = UMFontInterface; + }; + 816ECF6D1FFC8DD774FD853F3EF6CCE2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; + remoteInfo = UMReactNativeAdapter; + }; + 81C5969009BEC4DC662E5949901D5AE0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; + }; + 81CFA94D98625937545C95F24EA4B318 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; + }; + 832327EC900C419EEA6CC72626A91128 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D00F24222F074B31C56DC6D05E806A35; + remoteInfo = RNCPicker; + }; + 8325BD6133B8CCD84B0D0C40A7FF42B4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; + remoteInfo = "react-native-background-timer"; + }; + 83361C57853B17A9F5474B1EBAB27D38 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; + remoteInfo = ReactNativeART; + }; + 83A326D7E7735451290F57E714C9CBC3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; + remoteInfo = "react-native-slider"; + }; + 83D0B0C09E0A0335D9E0D112F7A03FD4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; + }; + 84137C7CBC8926F5AB9EF9B11A06045B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; + }; + 84D82B5C5339F8C8C4920350E7CEB3ED /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; + remoteInfo = libwebp; + }; + 851D6020491EF4D4B7A44F5882379B71 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; + remoteInfo = "OpenSSL-Universal"; + }; + 8568C770EC35B1E45212652DF7CDDE57 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; + remoteInfo = FBLazyVector; + }; + 85BDF133B295BC6D64969F4CE288633B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; + remoteInfo = EXHaptics; + }; + 85E77B3B2FD9AB42A72382D093EF2012 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; + remoteInfo = RNGestureHandler; + }; + 85F69F0D83AED0AD3A1DEE216D3903A0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; + remoteInfo = RNFBApp; + }; + 85F896D8BEC8F1D035C789D222B9DDE0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; + remoteInfo = SDWebImage; + }; + 86376CA1273408D151342DF5A9B674D9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = AC8AE887C706A43711D115E69B9D988A; + remoteInfo = MMKVCore; + }; + 86A7C4FFCB64972DD168B3E4BBC0A048 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; + remoteInfo = RNFastImage; + }; + 870FBDE556FA18BF516EAAAB7E6842C3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; + remoteInfo = "react-native-safe-area-context"; + }; + 871CE80C75F684D9C47E9B7CFBBC9DBB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; + }; + 872E5C0235B283DD5087E3EB28AB9C08 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; + }; + 873F28818B93ABF58A2259CA28C8AFD4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; + remoteInfo = RNFBApp; + }; + 874DA2DA10BEA5207E615AA31E976DFD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; + }; + 87E46E843978B2161CDB0C2434EE7662 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; + }; + 882D825E0D1D36A4869EC297D36EF2F1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; + remoteInfo = "react-native-safe-area-context"; + }; + 885D5302CB85F454FC739897C98443C6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; + }; + 88D8D3EEAC30E400D73911DA7118DA4F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; + remoteInfo = "react-native-jitsi-meet"; + }; + 8936B2A276C4948D07CC25A2CB43308C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; + remoteInfo = EXWebBrowser; + }; + 897170CDD7C0FFE5ADA4870789B041A8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; + remoteInfo = UMFileSystemInterface; + }; + 89B28730D4FA80B4DB5CE7D2E7EF54E0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; + }; + 8A0B00CFF1353226D35D54AE02D03116 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; + }; + 8A60A62A40131405910850D4FE89734A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; + remoteInfo = Flipper; + }; + 8ABA38D0FA17CAE94D1D5914C9E7E0C7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; + remoteInfo = SDWebImage; + }; + 8B9BE42710AB5B25BBBBBFAED43D57A4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 54EB12219122432FA744088BC5A680D2; + remoteInfo = "React-runtimeexecutor"; + }; + 8BDBD6F615C0C96355FA24B37EA8FAEE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; + remoteInfo = YogaKit; + }; + 8C928D2C43A4DB81E415E35486AC872D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; + }; + 8D16A6C6B87E8EF60DD3200F8B8A2A08 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; + remoteInfo = EXAV; + }; + 8D230A2D918D3BAC49BA649D7C53F6C3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; + remoteInfo = YogaKit; + }; + 8D364AC6A15FBDA079F6079E415CAE6B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 014495932E402CA67C37681988047CA2; + remoteInfo = UMFontInterface; + }; + 8E13F436EA9B78CFC19DD089A665016E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; + }; + 8E39BFDF1A2BFE9A1C6B82EBAF284CA3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; + }; + 8E9244F78C637199F1F528CD5BB74D87 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; + remoteInfo = RNCAsyncStorage; + }; + 8EA26C6DCF74AAF41DE8B90F354C46E7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 985FEA01F314F3C00F0C1E1181E6C4A5; + remoteInfo = "hermes-engine"; + }; + 8EAE92A4FD01D0E165251D4540A1CAF0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; + }; + 8EC656B711100487EEB59AF4D9022F2B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; + remoteInfo = UMConstantsInterface; + }; + 8F01F103563F28F3EF56D19EF131483C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; + }; + 8F6F00485C1F0AFD20B9966E96581CE9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 74DAFD196634D10887C9A4E7BA19A5E4; + remoteInfo = "react-native-mmkv-storage"; + }; + 8FC3068D792FFFFA8850E9CF2D4288EE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; + remoteInfo = "react-native-safe-area-context"; + }; + 9032E9EC68ED42A8E97DBC678DC59271 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; + remoteInfo = UMFileSystemInterface; + }; + 907C9D4EA5A30CDDD5148501278814D7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + 9102731B64117908AEA46EC5171378CA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + 910DF82220E534547C3ECC40FCD6D8F2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; + }; + 9114CA2376DAE58DE7C3AF91EAAD34BB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; + remoteInfo = RNDeviceInfo; + }; + 91915660B7ABD745C220A3C5AF877780 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; + }; + 919E43D44BD5429C0C313C1FE8AAFB69 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; + remoteInfo = SDWebImage; + }; + 91F8907B03E01D4195AC45713195E1C0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; + remoteInfo = FlipperKit; + }; + 91F95714EAFEAA231AB65705AAF4EB89 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 04A30E186743192DFB26B0FD7DB8F250; + remoteInfo = libevent; + }; + 920DB7C04761108C4785570930335519 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; + remoteInfo = "React-RCTBlob"; + }; + 92346F2C9AB9B16FF34C17E737C27888 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2D4D3D5AD93ADCCF3DD45A88009E48D6; + remoteInfo = "TOCropViewController-TOCropViewControllerBundle"; + }; + 9291EC52EE67BB3FD70E9F2B9BE2C203 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; + remoteInfo = RNDeviceInfo; + }; + 92A9D8CD9E5F1116142508DCE5E8A643 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; + }; + 92E18EC8888E856EB3FD889E7EA9F2DD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + 9329D97B0939289732394E875DDE5F82 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; + }; + 93A6C9C497E8BAFA68252997B46F780C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 214E42634D1E187D876346D36184B655; + remoteInfo = RNScreens; + }; + 94A33869A1775E5AAA5FAAE40883C79E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; + remoteInfo = RNImageCropPicker; + }; + 94B604BA97761BBCCECB145B942B9DEE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; + }; + 952D1BC6079B4D39E3AC3337E29BFAA8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; + remoteInfo = EXPermissions; + }; + 95FAEC2CA639200B7CF704A37F3D8161 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; + }; + 9649A7FC7E970017A79195F58B13C685 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; + }; + 966E1489161A43682EEDBD6CFE841D79 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 214E42634D1E187D876346D36184B655; + remoteInfo = RNScreens; + }; + 967CABE5DFDF053BD91FFC332F03F672 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; + remoteInfo = UMTaskManagerInterface; + }; + 969880DA4537E54B3C5BDF8EEA55C013 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; + }; + 9709972B9C145C8553E9C3C2CAAF895C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; + remoteInfo = RNDateTimePicker; + }; + 9760A00CC10152500B88D4C7D9393889 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; + remoteInfo = UMCameraInterface; + }; + 97632B0F76A12257BECF54A49A553504 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 64F427905796B33B78A704063422979D; + remoteInfo = "rn-fetch-blob"; + }; + 9799B7A56B0DFBD51B4C6598AAB2A8F5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; + }; + 97D5810F1BF54BEC0EC4338599FCA3B4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4A95B7CD1D5F80C5E8CD9CDA00D41F70; + remoteInfo = EXVideoThumbnails; + }; + 983183C2E16FAE402B50168EFE4D5C10 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; + }; + 9841678D444BF822165C94588FF2A622 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; + remoteInfo = RNFastImage; + }; + 9A04C97A15C3D5073AE13D2943530EC5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; + remoteInfo = FirebaseInstallations; + }; + 9A05077A3445CCD5904E4443B4C3A232 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; + remoteInfo = EXPermissions; + }; + 9ABEF7FB68A223D8A6DA15E9721298DB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; + remoteInfo = "Flipper-PeerTalk"; + }; + 9AD8E86CA2F3BE0E8740CFB472343AD7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 91A6826828CB9FCD0169A7547E8A79EA; + remoteInfo = MMKV; + }; + 9AEADB9716B79043EEC0777F76BF5759 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; + remoteInfo = libwebp; + }; + 9B15231B429207756EDBB8208EA92796 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; + remoteInfo = UMConstantsInterface; + }; + 9B5B625653D16C12A4F0F782FDFA1E7F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; + remoteInfo = "React-callinvoker"; + }; + 9B7CF3FA1912463FCFACDAC8267D2EEE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; + remoteInfo = "React-callinvoker"; + }; + 9B8CFF7D504DC9ECE40CB18BB9E4C61A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = AC8AE887C706A43711D115E69B9D988A; + remoteInfo = MMKVCore; + }; + 9B8E17C5E568FB3F379379C328580039 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; + remoteInfo = "React-RCTAnimation"; + }; + 9BB82D5F0A13DFA7ADA9991EA750EB13 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BDD119F8782FABE2707D3D913EC3EDE5; + remoteInfo = RNFBAnalytics; + }; + 9C1EF6BEE930A82E55005A799C692A0D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; + remoteInfo = YogaKit; + }; + 9C50A63DC6E83170731C2BA79B3CF18D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; + remoteInfo = "react-native-jitsi-meet"; + }; + 9CBF77A27568AB4E3E05D39647C581D8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; + }; + 9DB544F9F59F053BCBB42F4398A21AB9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; + }; + 9E605D07C9A2C9D2C4BCC6B884AD7049 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; + remoteInfo = UMFileSystemInterface; + }; + 9EC9391F8CD9C984C5652EE12773E292 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; + remoteInfo = "Flipper-RSocket"; + }; + 9F2B87D20F4F849678B0C343AB046669 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; + }; + 9F9236E980C55181DD928EAF0C4E3AC9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; + remoteInfo = CocoaAsyncSocket; + }; + 9FB27866A9E45D8CAE9C297618233474 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; + }; + A058043B3506B7A06540B08D4BA9D97D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; + }; + A0685B4D4246279A2192DFD8458A4266 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; + remoteInfo = "react-native-document-picker"; + }; + A0743C8F6DD4C217F0F2798FFE3EFCDF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; + remoteInfo = "React-RCTText"; + }; + A09C4812159B26F10555C889453AFD1D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EEBB8D24F2B3531A5C5DAA668D02331F; + remoteInfo = "react-native-blur"; + }; + A1BB7C17311D23CCC76F615EF173C30D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F3966F664F3CFAEFAB57C40FB54D3788; + remoteInfo = TOCropViewController; + }; + A1E5BFDE9CBC54C5FE842230E9FE64D5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; + }; + A2251ED0D3A0A772CEE6A21E860E3DFA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; + }; + A267878047A39D37D6AF9167623E32E0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; + remoteInfo = "React-RCTAnimation"; + }; + A29555B9F27D84521D8B8F587D35C059 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; + remoteInfo = EXLocalAuthentication; + }; + A2DE261CBA623A2CD1007C7CB5554EEE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; + }; + A432F4CA76EDE240E32072421D6EABA2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0CF4D9052577C85B6B8C4E957332626B; + remoteInfo = EXKeepAwake; + }; + A49E2A5357A8B70FF8CB008146380DB5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; + remoteInfo = GoogleDataTransportCCTSupport; + }; + A4C2EAAD2197FDB23E229BF330C9B7E3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 28A005E00FB77DDB2543047A07ED99A5; + remoteInfo = EXAppleAuthentication; + }; + A5515FE7FC2827FA534BE84BF7B3043A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; + remoteInfo = RNFBApp; + }; + A552484F86299BB4D69B33E68A252C55 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; + remoteInfo = "react-native-orientation-locker"; + }; + A56104E3903E8F44369AB19CAF7E8FBA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 64F427905796B33B78A704063422979D; + remoteInfo = "rn-fetch-blob"; + }; + A5A81A1DD73D834714EA4B337BDFA227 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; + remoteInfo = UMBarCodeScannerInterface; + }; + A5CE2A0209982F866177A52D3857551C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; + }; + A7CB02EA9D821A2F8927275C59ECE88F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; + remoteInfo = RNDateTimePicker; + }; + A7E89FBA8009C6F9C6916C857168C2BE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + A8A0BD07DA1C3F3AD9BE10533A9FF771 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; + remoteInfo = "Flipper-Glog"; + }; + A8B34586D718CF33EA77B0C8588ACFFE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EEBB8D24F2B3531A5C5DAA668D02331F; + remoteInfo = "react-native-blur"; + }; + A8D6A6DF0FB2B98DFACE2DE587CFD426 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; + remoteInfo = UMFaceDetectorInterface; + }; + A8FA676B34B5C34D94F215F6EFCFE5B5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; + remoteInfo = "react-native-cameraroll"; + }; + A96D97BE8B3BF95540FA86F5E472B529 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 91A6826828CB9FCD0169A7547E8A79EA; + remoteInfo = MMKV; + }; + A9772F8FEF70B9517EB8CCB9142B82C1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; + remoteInfo = UMCameraInterface; + }; + A9D977FC9634D760F716CBF55AEA2375 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 985FEA01F314F3C00F0C1E1181E6C4A5; + remoteInfo = "hermes-engine"; + }; + AA473B00E72F76B87713813177934497 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; + }; + AB3A4CE36B0F895BA64A48F9DC3D1545 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; + }; + AB5BB545384D9A415AEF5078876075C8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; + }; + AC8C8BF6A077497F8E8E7F0F431B7DB8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 526C4398D095B3704EB933DADBC30093; + remoteInfo = FirebaseCrashlytics; + }; + AC9752E64FDBC9E04072B487532F590E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; + }; + AD10B626AA65145B444E41650C158738 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; + }; + AD24D0FDDAAC1180E7B8D243B1DBD0A6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BDD119F8782FABE2707D3D913EC3EDE5; + remoteInfo = RNFBAnalytics; + }; + AD7B2B20D71A3C91C9CC8B60B1FDB542 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; + remoteInfo = "React-callinvoker"; + }; + ADEE3149AD7F8715C14EC8FA4A8AC90F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; + remoteInfo = FlipperKit; + }; + ADF92BD3CB4D4109A6D3DF81BB76C847 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; + }; + AE7692DEEF3D213BAED2083035952F82 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; + }; + AEA1313CC0A5AC3F1FFD9A4AE6DA6ABD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; + }; + AEF55A3ABF7745C73832340D0F26E187 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; + }; + AF7493A2C79D0ED7BFDDA27295F323CF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + B001B6E7CC99579C9FBF820A9FD5E4B6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; + remoteInfo = FlipperKit; + }; + B01DE652B68ACDAA6A26C88A99EDA70F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 74DAFD196634D10887C9A4E7BA19A5E4; + remoteInfo = "react-native-mmkv-storage"; + }; + B04C7C6DF48708B5C0A3B83EB1ADDE13 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7A020DAB6F3F0BA0A6D9946E84B38B7F; + remoteInfo = "React-Core-AccessibilityResources"; + }; + B05D7AF71D4D6B988D96C579F870ECFE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; + remoteInfo = BugsnagReactNative; + }; + B063359200A909D66F90C809B36DDE45 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + B08FCDEC8EAE8C2A001FB40385EB1BFA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; + }; + B0B39F897961BE3E672FAAC32542C656 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; + remoteInfo = EXWebBrowser; + }; + B0C62270E17819C8DB6D065A1945A0F6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + B108E95169C006A64AB9D475B0E1F1CB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + B1BBB5FBE315C4CBAA720D4D9B7D4BE4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + B1C5D8CAFD680931F2B2906CDDB4B220 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; + remoteInfo = "react-native-cameraroll"; + }; + B2037FE0D3589F33E67FC737F3418312 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + B290E592CFE6C84DF8B5D41885D9DB35 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; + }; + B2B7E65CAB582D4E8249D0660357D139 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; + remoteInfo = KeyCommands; + }; + B38DE836ED5B1E2C961D630056F8AA57 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; + }; + B3BC2224BBF9CBF7EDED5040ED350DA8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; + remoteInfo = UMTaskManagerInterface; + }; + B41E3F3657F47DF04714B73450C924B7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; + }; + B4220BB28F6D23E71A5B0B50BF46630D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; + remoteInfo = ReactNativeART; + }; + B447A6505CD2C84913F4817B1ADF54EB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; + remoteInfo = RNRootView; + }; + B4B2050690061825D4500FE3B5EB46EF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; + }; + B4BC622AF04ABBD8D703B6F27F26F0F4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; + remoteInfo = RNBootSplash; + }; + B5504C04F72AB8148CB31E80F4C74208 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E16E206437995280D349D4B67695C894; + remoteInfo = "React-CoreModules"; + }; + B56277016AB6D6552AA17390A8EE5019 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 54EB12219122432FA744088BC5A680D2; + remoteInfo = "React-runtimeexecutor"; + }; + B6D1146F82E3376A596B2BE0778E906F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; + remoteInfo = Firebase; + }; + B6D1769F63F8A530A659412A34D5116A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; + remoteInfo = UMFaceDetectorInterface; + }; + B6D78B8CAFF1D33C17942DA6991A7B2C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D00F24222F074B31C56DC6D05E806A35; + remoteInfo = RNCPicker; + }; + B72C18F34C87846B2D9D76934D34287B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; + }; + B86A6C9551C7EF3863B9CCA33CF9D307 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + B86AD38808E3F999AC89346B4F449759 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; + }; + B8936FAC9C1915E91BDD877227345E70 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; + remoteInfo = "OpenSSL-Universal"; + }; + B99F0B1EEE09E9ECB29263020538386D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; + }; + B9DC815EE0205F2415D3FE91C84DEF2E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; + }; + BA0FD5A20CA32632A77809124A8E86D8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; + remoteInfo = "react-native-notifications"; + }; + BA1A8E6A7D41CDA8062C56C69E771FE0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; + }; + BA4681AC28E9B0EE3E898D04BD2C9BE1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; + remoteInfo = EXHaptics; + }; + BAA1E7FC48E875FD9AD6F637A5127E23 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; + remoteInfo = "OpenSSL-Universal"; + }; + BAB31239E2661516B464768B335A7240 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; + }; + BAC176B94457A1BD48840F966CD5BBF5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; + }; + BB84FBD52C5373B47742BC470B46A9C4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; + }; + BB8780EA9926CA4856286FB07A681211 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; + remoteInfo = "React-perflogger"; + }; + BBCD5DCBC469E414B40851887B9316B9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E3573FB7AF659C42B699003C73722241; + remoteInfo = RNFBCrashlytics; + }; + BCE869473C540305456BEB02FBF707D3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; + remoteInfo = UMAppLoader; + }; + BD13F3391819CFCF4780BCCA208DAD78 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; + remoteInfo = UMReactNativeAdapter; + }; + BD3DA643E5D4F3629E2F4B94C781071F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 037A1F31C4D99F52EC9FD2008FEC481C; + remoteInfo = ReactNativeUiLib; + }; + BD6662596737D1D7FBD97E6698FAB938 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 526C4398D095B3704EB933DADBC30093; + remoteInfo = FirebaseCrashlytics; + }; + BDD1B19AFA52F3C634CE82EC1400368C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; + remoteInfo = Firebase; + }; + BDD87B1D93DE918F054B9CCDA100F75F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; + }; + BE08C6604E31305BDFD73B83731E3DEE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BDD119F8782FABE2707D3D913EC3EDE5; + remoteInfo = RNFBAnalytics; + }; + BE69082F9B4A1B279B7D2DEAE1FA4F65 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; + remoteInfo = "React-callinvoker"; + }; + BEFCA4B68875F2FF3150A31FB1F5E996 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 91A6826828CB9FCD0169A7547E8A79EA; + remoteInfo = MMKV; + }; + BEFCFA90CCD62B67AEDC0A9AB945BFEC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; + remoteInfo = RNLocalize; + }; + C02403368B42E747A0C9885EB5156230 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; + }; + C15C3FA91360A3381B62DCD446CC4D12 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; + }; + C1B7D8B6AF7182787CC079B8D124F56E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; + remoteInfo = JitsiMeetSDK; + }; + C267885FC50CC9756033D21051462D34 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + C2B7515DDF08A3F6E2F77AC36376680E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; + remoteInfo = EXImageLoader; + }; + C2F5B761DF92135C15F01FF84FBE3086 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 985FEA01F314F3C00F0C1E1181E6C4A5; + remoteInfo = "hermes-engine"; + }; + C338639441EB00830A149DFBEA77D1B5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; + remoteInfo = UMBarCodeScannerInterface; + }; + C33D9CFABBDCAEB1E7D02F98983E0661 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; + }; + C348D58A74D11CAF02D67E09C473CDF6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; + remoteInfo = RNReanimated; + }; + C386698B9796F829A9E8F3F32407491A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + C3F17F2AFFEE748F44896A11ADE3EDC9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; + remoteInfo = EXImageLoader; + }; + C477FF1EBB2802C1B27E1C3C13281E62 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; + }; + C478D3B9E7A40B82AD64FD410452AEB5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; + remoteInfo = RNVectorIcons; + }; + C54402E67E71F908521C8482E81FE8D7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; + remoteInfo = Firebase; + }; + C57DE5B2C6E3F097F6E8971714DA972B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; + }; + C630B13A06E07FCE2A1C8E1F9F441E0F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; + remoteInfo = EXConstants; + }; + C63FA8E20B37F4DC2579DC3DDC18DECB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; + remoteInfo = "rn-extensions-share"; + }; + C6A970818780A696E3104F0092A0B6FE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; + remoteInfo = SDWebImage; + }; + C6F1B2F28EC949A2F23775114B17020B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; + }; + C75977C0EF5DE6D5F5DB5A9AE349ADE2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; + remoteInfo = KeyCommands; + }; + C78B7FCE3EE553D9044A00D289010285 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; + }; + C8184BA735878CA7ECD82130FD1BA5FD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; + remoteInfo = UMSensorsInterface; + }; + C827AD2FB8CCE1B89783E12ACB1DE8A0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; + }; + C914686AEC007F30DD701F5A65EB6A24 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; + }; + C93B8C920109BA5954405BF3549FA06F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; + }; + C9528A787B49D5C1EF3604B79FF26173 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; + }; + C9869406786B6799779A7CAE44DEDFF2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; + remoteInfo = UMFileSystemInterface; + }; + CA1106FAA6B6598E04DEF29B0218B661 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; + remoteInfo = FBLazyVector; + }; + CA191B8AA7656280A2E746574DDA1AA2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; + remoteInfo = UMPermissionsInterface; + }; + CA42AD20622A91093285F3FB21A772C4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; + }; + CAA00F4A4823AE7159CA350101600196 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; + }; + CAC1320E6DA61ED52F013627E73C1B34 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = AC8AE887C706A43711D115E69B9D988A; + remoteInfo = MMKVCore; + }; + CB8F0CEE6D4A4EFE1EC6CB1E9D2857FC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; + remoteInfo = BugsnagReactNative; + }; + CD05EA7370302EED0E9009FBE38FB15C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; + }; + CD79A69D4B08B025D996B74950A3DF83 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; + }; + CD7C59C4C4F94979D738F7960A28190F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; + remoteInfo = "react-native-document-picker"; + }; + CD830AB1BA97F0CBBDFA77A7865D2444 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; + }; + CDA9EE325AC3F55B7D03784EA7BE03A3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; + remoteInfo = UMReactNativeAdapter; + }; + CED731F219923D07E68C447FD30042EE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; + remoteInfo = FirebaseCoreDiagnostics; + }; + CEEF311050BECDB18E83AEEF9651A0EF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + CF1E4F62D5034B7E50F06CB96ECB8938 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; + remoteInfo = RNCMaskedView; + }; + CF24C0101B6F416BDA3559426B39B8F5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; + }; + CF716D5D18606576BBEFF32E21A8000C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; + remoteInfo = "Flipper-RSocket"; + }; + CF79307C4074C0EE44AA1518201076AC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; + }; + CF8A28BF937855E32415119994D87CF2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; + remoteInfo = "react-native-background-timer"; + }; + CF99EF36E9FBC8A53D73E754590CB531 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; + remoteInfo = JitsiMeetSDK; + }; + CFC4CD9A8A7C974CE199BE153443999B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; + }; + CFDAA064A932053E96666F4AB236B54A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; + remoteInfo = GoogleDataTransportCCTSupport; + }; + D0A2237EF64CFEC7D73C309DB142990F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; + }; + D13C0D4BA9DA741BC9A1945F6CEEF702 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + D1F0C5387BBE704D7ABD9FFF02D97777 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; + remoteInfo = UMConstantsInterface; + }; + D2162390495214490D2AEA85DDC61A04 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; + }; + D29AE1032C3EF25A9D6CBA2DD78811B3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 04A30E186743192DFB26B0FD7DB8F250; + remoteInfo = libevent; + }; + D2DE47110A1C9873D8A923A83B7605C7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; + }; + D353FD39A678927629C9353A53442F2A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; + }; + D38E43E9162C08846DB16DEA0578767B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + D3A79498CFB68AEB7500D9192A478F00 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; + }; + D3BC23E0A45A25F9A47A1A9C65904727 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; + }; + D3D2A9E1BBCB70F920A63123212B689E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; + remoteInfo = RNBootSplash; + }; + D3D53A7E39E98AE31E9A715792969B28 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; + remoteInfo = FBLazyVector; + }; + D4912FE6B05B3B1F98C16E90D81FA9DC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; + }; + D4ACAE1C033EA33CC11D6CED4DF613AD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; + remoteInfo = "React-RCTBlob"; + }; + D4E82E3AD9D26CE48763350AA6513A61 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; + remoteInfo = JitsiMeetSDK; + }; + D563180D2B686039EB7059A2EC71328D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + D5859FE3938A5406C81DDCC62ED70C92 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; + remoteInfo = "React-perflogger"; + }; + D5D15D2F22B51E19F208AAA0944663D3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; + }; + D654D7831CD0507F266BB3DC3BD1D789 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; + remoteInfo = "react-native-webview"; + }; + D66BECE531DF6C5E64050F3FF65EB93D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + D67858BC2CB37323F9281E60D382F298 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; + }; + D6AE14E3270041403147DE3CD24EF5B7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EC577C5CB1DC59A7464ECEF266A75B42; + remoteInfo = "react-native-netinfo"; + }; + D75CCA3635516776EC1BD915F5072F85 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; + remoteInfo = "React-callinvoker"; + }; + D7A5AC85EC194EA0733F01E38D7861B0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0CF4D9052577C85B6B8C4E957332626B; + remoteInfo = EXKeepAwake; + }; + D8332E6BE20882349FA4CEF66961185C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; + remoteInfo = EXAV; + }; + D889F265F50787A0DC7E5F67E54AFAE9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; + }; + D8FE4A8E91FE06696E76F3473CCF34AC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; + remoteInfo = "Flipper-DoubleConversion"; + }; + D97E8B1A5B6F78D9F43514EF79F830B3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; + }; + DA00115FE032C1EDBCFDC1EC11B8336F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; + remoteInfo = "OpenSSL-Universal"; + }; + DA1405F965474A1E390F7C67ECB3203D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; + remoteInfo = RNBootSplash; + }; + DA5A0E9D39B0782B7D14D19AA2B63E42 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; + remoteInfo = RNReanimated; + }; + DA6B6185BFE45116B2697D286E0F1E4A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; + remoteInfo = "OpenSSL-Universal"; + }; + DA84E6F6F3E15F9A6B3267CC16F80138 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4A95B7CD1D5F80C5E8CD9CDA00D41F70; + remoteInfo = EXVideoThumbnails; + }; + DC7DC0214F958FB54356271BB61E6DAF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; + }; + DD0E89B3AF1B8EAFD579119491EF24F1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0CF4D9052577C85B6B8C4E957332626B; + remoteInfo = EXKeepAwake; + }; + DD6D2205D6F2297554B6C3FEF7FA6FF0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3ED96FB9FE1D18D5F1239C60A109F98C; + remoteInfo = "react-native-restart"; + }; + DE1F5E6E7DEE65A4B2CE0447C306D3C5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + DEFB8AF6F569A91EA2F07B87ED3C4024 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; + remoteInfo = UMBarCodeScannerInterface; + }; + DF4FB7B6B68C3C305041A4D094011010 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; + remoteInfo = UMConstantsInterface; + }; + DF694CF75C15DF1A50318767A474FB8E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; + remoteInfo = UMPermissionsInterface; + }; + E056A34DBCD7B31E97EAD1DD2DC5C8A3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; + remoteInfo = libwebp; + }; + E0C816EF86ED2156A80D2F51F80BC90B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; + remoteInfo = "Flipper-Folly"; + }; + E14C9EF470F2732D9770AF3B61BDC088 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; + remoteInfo = "react-native-orientation-locker"; + }; + E17247A5C48BADE4E205CC764F8D1315 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = AC8AE887C706A43711D115E69B9D988A; + remoteInfo = MMKVCore; + }; + E2E2C4114AEBFFCB85766233F762178B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + E309B8A570AA76FCEFC1D38DB167CA95 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; + }; + E3247085FEBD4B55645B4C953BE4A67D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; + remoteInfo = BugsnagReactNative; + }; + E356AD98EB1252E7C7944F6A143EAFE0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; + remoteInfo = EXHaptics; + }; + E3642347949F56CB2448C84DB03ED331 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; + remoteInfo = FirebaseInstallations; + }; + E3CB1A7959D2077AE6EB8D73AEB1DFF2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; + remoteInfo = UMPermissionsInterface; + }; + E435FC528E882ACD01CDA3AA793CF0C8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; + remoteInfo = RNLocalize; + }; + E44E0C84DDC5714BFBFDB37835A87771 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; + }; + E4ACA2EB08ECAB1655407129AC4B3A23 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; + }; + E4CEFCF7A21A7BB1A594EAD9281FC87D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; + }; + E51A1BF0C6847F99684CF93BA1B9C7CA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; + }; + E643896E0982490B9846E34E81013838 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; + }; + E6EFDE83EB6528D5DCB74968CBDD1C86 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; + }; + E7F0ADFCD6A72AEBA6784F657563E240 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; + }; + E84CBCA8EB454DDA0BF8218E5041F049 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; + }; + E8759F381FE9663A90D5CCC8E56EEFB0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; + remoteInfo = EXConstants; + }; + E8CBD10A9DA9DA759BFB131005C3C704 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; + remoteInfo = UMPermissionsInterface; + }; + E9BD6DE24A25F7E905E7360E496B512D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; + }; + EA07A81169A598EAE84FDBA88BC1298F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; + }; + EA51BC73ACC8C693B1C2FDB68C6F6282 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + EA54FFFDD7DA42893AAF172565AE0186 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; + }; + EA7083A642211C54DDE2FABC467EF8DF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; + remoteInfo = "Flipper-PeerTalk"; + }; + EAA06CE5531E394FCA9CDE654137D740 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; + }; + EB55E522A872D192F52304124C479136 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E3573FB7AF659C42B699003C73722241; + remoteInfo = RNFBCrashlytics; + }; + EB5FEC194FC451D91386AB5A818D2F7D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; + }; + EBB8DD4E83B2C512EB875A6E725AF492 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; + remoteInfo = JitsiMeetSDK; + }; + EBED719236BD60940845A6908B06CBB7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; + remoteInfo = FBLazyVector; + }; + EC820AD54348208555F08D43CCBA4DBF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; + remoteInfo = RNFBApp; + }; + EDE881A95C0959CE34D4B6960DD9BAED /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; + }; + EEDD76B810282537AB6DF06A71FF2A78 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; + }; + EEF7E595D1E4D4D206A27BD671E41F47 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; + remoteInfo = RNDateTimePicker; + }; + EF7B80107AAAA15EFBDA53EC3C870668 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = ADC4ACC657481AD27F9936D08FF7F49A; + remoteInfo = "react-native-cookies"; + }; + EF9DC28A434B9DD8BD85C7635E965097 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; + }; + EFC2021C67007BAD43D268F320CD85E4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; + remoteInfo = "react-native-appearance"; + }; + EFFB8DD3C28494B9A3B47CAC73D05093 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; + remoteInfo = "Flipper-DoubleConversion"; + }; + F0041964B1D211604EE7CE3DB4C940E7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; + remoteInfo = FlipperKit; + }; + F018C2824900003497D8D0F378D31E3A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + F0A7CF52332BAD6902942DD81A2E0DBC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + F1E1199BB86BDF435BCD4728D3BF5B5E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; + remoteInfo = RNReanimated; + }; + F24FA7171ECE539B5A20E38CB7A772D6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; + }; + F2779434729AB947629DFB51257ACFD9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; + }; + F28B8F2BD3890F823DEB2F0A27AA941A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 04A30E186743192DFB26B0FD7DB8F250; + remoteInfo = libevent; + }; + F2BA47439F9714C5C807D9F0D7D274A7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; + }; + F3A1FCA30159A868A35741A0CFAE5AC2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; + remoteInfo = UMTaskManagerInterface; + }; + F3D6089A34887B3F36A488D21AA6175C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; + }; + F3EEDB943F6A2D2DF5DE138B9D5B0B59 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; + remoteInfo = "Flipper-Folly"; + }; + F42D6BAF47B180DB0CF530F853A63A82 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; + remoteInfo = FirebaseCoreDiagnostics; + }; + F4F936421B57E9561D49FD6E2262D31E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BDD119F8782FABE2707D3D913EC3EDE5; + remoteInfo = RNFBAnalytics; + }; + F578A07B3CEEAC12B884304E6A7C664E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; + remoteInfo = RNBootSplash; + }; + F605C8ABFB7C4EE3F70ABA11E3311B3B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + F62182C9212E13FD7948FD12E735046C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + F654250BB7FA675FDF5CB750B3DEA4B9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3ED96FB9FE1D18D5F1239C60A109F98C; + remoteInfo = "react-native-restart"; + }; + F6DBBFEED4CB7451997218DEEBA47AF6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; + remoteInfo = "react-native-webview"; + }; + F6E2F0D826873FE858A14B235C7A24FE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; + }; + F717E236553B5108C1833BB5F135D08F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; + }; + F7572D23C0F2BDAC77932F1FA30AD796 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; + remoteInfo = "React-jsiexecutor"; + }; + F766CC08FD80654BB489B1E09BA608C0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; + }; + F83826E13C2031E87D405E9D82866E9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; + remoteInfo = FirebaseInstallations; + }; + F8AA665BDAD716C195CE6E7A0AFAA41A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 04A30E186743192DFB26B0FD7DB8F250; + remoteInfo = libevent; + }; + F8BA1D93514327F9D7F6658BCFD50C21 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; + remoteInfo = "Flipper-Glog"; + }; + F90F201EE8B82B6F32C7829DBCB5A5B7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; + remoteInfo = "React-perflogger"; + }; + F95D128F194960AB4FB9D2A7B09CE9EC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; + }; + FA37256919DA40CCFDA1540F724B2D43 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; + }; + FAC8D33B660311E1C3ADC61ACF6AF3E0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; + remoteInfo = CocoaAsyncSocket; + }; + FB6B59D29F5434EA7356F59C1BA5BB6F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; + }; + FC3E450A4AB3EB311C4F92065788DF51 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; + }; + FD09C5F707281C7EF5924ADE226EA60A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; + }; + FD5416A45B8CE82A606731AD246EB5E4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 91A6826828CB9FCD0169A7547E8A79EA; + remoteInfo = MMKV; + }; + FE98514E436F91BA4E111B692BCAB5DF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; + remoteInfo = FirebaseInstallations; + }; + FF8CBC11B46C17080179A7758C28E374 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; + }; + FFA47BB80FCB4059556E83BC9748A6AD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; + remoteInfo = "react-native-appearance"; + }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ + 000055EB58F9954C08827947C49DEAA3 /* RCTWebSocketModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTWebSocketModule.mm; sourceTree = ""; }; 0004622AC40407B1ADAD515879B469CB /* SKIOSNetworkAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKIOSNetworkAdapter.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/SKIOSNetworkAdapter.h; sourceTree = ""; }; 000558890AD12FA455201ABBBD9084C3 /* Request.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Request.cpp; path = folly/io/async/Request.cpp; sourceTree = ""; }; - 001A02A83A7692A8A79F45A266DB1EAF /* RNJitsiMeetView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetView.h; path = ios/RNJitsiMeetView.h; sourceTree = ""; }; + 003B854D5742DC9F339D3D3F25B09576 /* Color+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Color+Interpolation.h"; sourceTree = ""; }; + 003CEEB7A99455C56D1CC82459FFC621 /* RCTConvert+FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FIROptions.m"; path = "ios/RNFBApp/RCTConvert+FIROptions.m"; sourceTree = ""; }; + 00484029BCBD0F9A6EB7995A57C3311B /* Pods-defaults-NotificationService.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-defaults-NotificationService.release.xcconfig"; sourceTree = ""; }; 004B54212A40E4C7916C9EE6DDD93C63 /* RSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocket.h; path = rsocket/RSocket.h; sourceTree = ""; }; 0060E421CEEA15B5BFBDDC917B0CBD7F /* tree_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_dec.c; path = src/dec/tree_dec.c; sourceTree = ""; }; - 0066440ABA721E8525E4ADE789BB0423 /* KeyCommands.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeyCommands.release.xcconfig; sourceTree = ""; }; - 007537A3AE7D930968AB89BB4298297A /* REAModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REAModule.m; path = ios/REAModule.m; sourceTree = ""; }; - 007C0C65DFF1B590AA5D587D3A0F3FA1 /* QBVideoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.m; sourceTree = ""; }; - 00803C2B1253E1540309301BEC0F67FD /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; + 00669D5EABDCDD0B6F93F1605C253F1C /* RNCSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewManager.m; path = ios/SafeAreaView/RNCSafeAreaViewManager.m; sourceTree = ""; }; + 009BC89DA592B58B06F9C36A0827E973 /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; + 00A792DB181EE87A94B1014D67850B27 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = ios/QBImagePicker/QBImagePicker/en.lproj; sourceTree = ""; }; + 00A8005D412C799A8395E4C8BA76C5D6 /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; + 00B64C68E8E48A836E1764A9AA6F83DE /* RNCMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedView.m; path = ios/RNCMaskedView.m; sourceTree = ""; }; + 00B98116A9CCF0A918097FB180D34F09 /* BSG_KSMach_Arm64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm64.c; sourceTree = ""; }; + 00C2884BADE0F97B775E97637AA0FA78 /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = ""; }; 00D323FBBD73EFACF837D4D6D25372A0 /* FIRInstallationsIDController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIDController.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.h; sourceTree = ""; }; + 00D4C04F9C078B723204D9E3500F2881 /* React-RCTNetwork.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.release.xcconfig"; sourceTree = ""; }; 00D5C969B704D8EC2C092FF7BFCCAA79 /* Shell.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Shell.cpp; path = folly/system/Shell.cpp; sourceTree = ""; }; - 00EEA1483806636CBFBC40852FB14F41 /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; + 00D7029CDF36815B074ED319C2F18BE3 /* ARTText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTText.h; path = ios/ARTText.h; sourceTree = ""; }; + 00EF156A62AF441B7E35EDFB2B6078B5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 00F410D95A943CF72FF7F8650F7719CF /* BugsnagEvent+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagEvent+Private.h"; sourceTree = ""; }; 00F6CAA287AF03669BD8E004E864BFD2 /* PicoSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoSpinLock.h; path = folly/synchronization/PicoSpinLock.h; sourceTree = ""; }; + 00FB9E7D2F9A485D27C21E89AFFBDDDD /* Yoga.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.debug.xcconfig; sourceTree = ""; }; 012242E4480B29DF1D5791EC61C27FEE /* libreact-native-notifications.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-notifications.a"; path = "libreact-native-notifications.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 01277E6EA0D313D5068182BBB84B9E98 /* RNFBAnalytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBAnalytics.release.xcconfig; sourceTree = ""; }; + 012F7D3D195DCD3E5316D4D1A7C43311 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 0146ECCB0970B6BA42AE57E3AE89E1E4 /* SKResponseInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKResponseInfo.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKResponseInfo.h; sourceTree = ""; }; - 0151D07F88EA17B45CFF98C3BB020F04 /* RCTAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedImage.m; sourceTree = ""; }; 0153F266157533ACE5EA59284B4E8922 /* Likely.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Likely.h; path = folly/Likely.h; sourceTree = ""; }; + 0158C3C5F6B59D4937DE62B2199DE0AA /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; 01609FC711059045DED41A7F851F5D95 /* FIRCLSApplicationIdentifierModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSApplicationIdentifierModel.h; path = Crashlytics/Crashlytics/Settings/Models/FIRCLSApplicationIdentifierModel.h; sourceTree = ""; }; - 016373F0570AD0643ECAA1A17E753CA4 /* RCTTiming.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTiming.mm; sourceTree = ""; }; 016F790BB3FCBF679484B8AA059CD576 /* GoogleDataTransportCCTSupport.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransportCCTSupport.debug.xcconfig; sourceTree = ""; }; - 01730D3643EF7DB9F11DD5CEE761D216 /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; 01742674828B7DB5C4115878466F5134 /* ThreadedExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadedExecutor.cpp; path = folly/executors/ThreadedExecutor.cpp; sourceTree = ""; }; - 01756E118E93517E177C2CA477C8EC6C /* BugsnagReactNative.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.debug.xcconfig; sourceTree = ""; }; - 018009DF885734623A649BB3AABCEC1C /* EXLocalAuthentication-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXLocalAuthentication-prefix.pch"; sourceTree = ""; }; - 01A7338442EA1895921865960B882820 /* react-native-appearance-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-appearance-dummy.m"; sourceTree = ""; }; + 01B28A0C19F8AC0830294597DD03433F /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 01BFEF506A51006C8E0ADF8BA799173D /* RNDateTimePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePicker.h; path = ios/RNDateTimePicker.h; sourceTree = ""; }; + 01EE423A9240BC77F04F0954BFE9AB21 /* BugsnagCrashSentry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashSentry.m; sourceTree = ""; }; + 01F2D0B018A8C0602D50AE13EB355AD0 /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = ""; }; 01F562B383893768D4CE562C173AF28B /* EventFDWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventFDWrapper.h; path = folly/io/async/EventFDWrapper.h; sourceTree = ""; }; - 01FAD5197205D0AFD8FD1F2FC8C37E24 /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; 01FC364F6C6E3B591535A7FC19249754 /* MicroLock.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MicroLock.cpp; path = folly/MicroLock.cpp; sourceTree = ""; }; - 01FCDDB5C09C127AAA859258FFA2F7EC /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; 0200F4C529843FA559B3B7EAFBDCA3B7 /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = "Objective-C/TOCropViewController/Resources/es.lproj"; sourceTree = ""; }; 0211423EA326AFDF60ED4C1C6496C396 /* MemoryFile_OSX.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MemoryFile_OSX.cpp; path = Core/MemoryFile_OSX.cpp; sourceTree = ""; }; 02164D00426ECD469441E2BF301F9366 /* UIImage+MemoryCacheCost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MemoryCacheCost.m"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.m"; sourceTree = ""; }; + 021802B622F23E1BF04496EDA30089F5 /* RNFetchBlobProgress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobProgress.h; path = ios/RNFetchBlobProgress.h; sourceTree = ""; }; 0228AAAC9829BF3F36E457F5D71714FB /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Sources/Private/FIRHeartbeatInfo.h; sourceTree = ""; }; + 023D1714BC6B2A0B494473E614844FA4 /* BSGInternalErrorReporter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGInternalErrorReporter.m; sourceTree = ""; }; + 025631EC319F114D70200FF936D0F45C /* RNCSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSliderManager.h; path = ios/RNCSliderManager.h; sourceTree = ""; }; 0263F9C5636F7B48EF2C7E0CE750C7E8 /* Merge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Merge.h; path = folly/container/Merge.h; sourceTree = ""; }; 0271636F098B9253BAF63D59B427D695 /* FBLPromise+Reduce.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Reduce.m"; path = "Sources/FBLPromises/FBLPromise+Reduce.m"; sourceTree = ""; }; + 027210AF12960DA75E0E13687A8B0A07 /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDataBigString.mm; sourceTree = ""; }; 0284EBCEAA398D64FA047A23F7CE1818 /* Conv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Conv.h; path = folly/Conv.h; sourceTree = ""; }; 028531ED5B236705CDB771CB2927310C /* SDDeviceHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDeviceHelper.m; path = SDWebImage/Private/SDDeviceHelper.m; sourceTree = ""; }; 028F059CB4349635173D9E95BC622538 /* ColdResumeHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ColdResumeHandler.cpp; path = rsocket/ColdResumeHandler.cpp; sourceTree = ""; }; + 0293E4585956F99026832F6B4E390EDA /* BugsnagErrorTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagErrorTypes.h; sourceTree = ""; }; 0296DE86E440E4C1E3E73A957A6FA40E /* muxi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = muxi.h; path = src/mux/muxi.h; sourceTree = ""; }; - 02A7A7612AE64E315D438425C8024FDE /* ARTShapeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTShapeManager.m; sourceTree = ""; }; + 02A07C2CF210CB58858459A1FB92D628 /* RCTTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModule.h; sourceTree = ""; }; 02A8C77EFD540D767BD0CD3496846B86 /* FIRCLSConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSConstants.h; path = Crashlytics/Shared/FIRCLSConstants.h; sourceTree = ""; }; - 02C586FEA37641674D3756C271DA84A6 /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = ""; }; + 02AB655AA81715AD591B40A32DD7A704 /* QBVideoIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIndicatorView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.h; sourceTree = ""; }; 02C991DF0D290846DE19F8CA80AD4354 /* IPAddressV4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressV4.h; path = folly/IPAddressV4.h; sourceTree = ""; }; 02D341EE62165381DC8B938DD706B0F0 /* AsyncTimeout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncTimeout.cpp; path = folly/io/async/AsyncTimeout.cpp; sourceTree = ""; }; - 02DC901724352E63C0DE82E4B2EF6FBE /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TurboModuleUtils.h; sourceTree = ""; }; + 02DA98992F84389AAB8E5B6036D0F305 /* react-native-blur-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-blur-dummy.m"; sourceTree = ""; }; 02E08451045D001829AD93FC5DDDC2FE /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Sources/Private/FirebaseCoreInternal.h; sourceTree = ""; }; + 02EEEB11E2FA732C018BCB28638DAAB8 /* BSG_KSCrashSentry_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Private.h; sourceTree = ""; }; + 02F8CC2129A43B8BD6053EF5DC64F1E5 /* RNCMaskedView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCMaskedView-prefix.pch"; sourceTree = ""; }; + 02FF1085A4CCD4E09581C17A9D3F00D0 /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; 03026205607C4B1019C6B373E3907ECC /* F14Mask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Mask.h; path = folly/container/detail/F14Mask.h; sourceTree = ""; }; 0314DFFE16CFA2431FDA731356CA2DE1 /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decorator.h; path = destroot/include/jsi/decorator.h; sourceTree = ""; }; 033274F54F2513C69DDB64025F49C445 /* Buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Buffer.h; path = destroot/include/hermes/Public/Buffer.h; sourceTree = ""; }; 03376185B2F0AEF87CE3705E3A6407C2 /* GoogleDataTransport.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.release.xcconfig; sourceTree = ""; }; 033C850F3FEB52866E0474A4C21D0158 /* Synchronized.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Synchronized.h; path = folly/Synchronized.h; sourceTree = ""; }; - 0349D9B866669E6BF1FED7EF8EEEAD0A /* RNFBCrashlytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBCrashlytics.debug.xcconfig; sourceTree = ""; }; + 034507F582A52D986314724EA30140A2 /* RNSScreenStackHeaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderConfig.h; path = ios/RNSScreenStackHeaderConfig.h; sourceTree = ""; }; + 03617C7B382C83B9380716415C7DC53F /* ARTNodeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTNodeManager.h; sourceTree = ""; }; 03627D3C4570EDDCB741491956019B46 /* ChannelResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChannelResponder.h; path = rsocket/statemachine/ChannelResponder.h; sourceTree = ""; }; 03749A1A62575AF10C8C927110589F8D /* HazptrThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrThreadPoolExecutor.h; path = folly/synchronization/HazptrThreadPoolExecutor.h; sourceTree = ""; }; - 0379CBA89CCA780FC442513CCEE5FA2E /* RCTSha.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSha.h; path = ios/RCTCrypto/RCTSha.h; sourceTree = ""; }; - 03809174CF57438208CEC0F7EC7034D8 /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = ""; }; 0381BAB37FB5527EC89A3772A617850D /* Unistd.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Unistd.cpp; path = folly/portability/Unistd.cpp; sourceTree = ""; }; - 0383F1CD0B209346494C1EF992A090CB /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; + 03902662E196BE0FB6D7C3BBAD0738EA /* React-RCTAnimation.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.debug.xcconfig"; sourceTree = ""; }; 03949BD4B944E1B14997B7B0B5D7F1F2 /* MMKVCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MMKVCore.release.xcconfig; sourceTree = ""; }; - 03954AEE20828DFC2E03367E9C8E0D11 /* RNImageCropPicker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.debug.xcconfig; sourceTree = ""; }; - 03A47EB93BA6B8854EFFC0EE9AE61F99 /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; + 039B1088A923BF790ADA0AC7732F66D2 /* BSGEventUploadOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGEventUploadOperation.m; sourceTree = ""; }; 03AA07AD50C90033067A6D07CFA342DA /* EventBaseManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseManager.h; path = folly/io/async/EventBaseManager.h; sourceTree = ""; }; + 03ABA597EB18982DC357D7D005E5E3B1 /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; 03AE25503118EA1D4DE028BBCADCAEF1 /* Assume.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Assume.h; path = folly/lang/Assume.h; sourceTree = ""; }; 03B96308C041D885CCF507BE7B0B0340 /* common_sse2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse2.h; path = src/dsp/common_sse2.h; sourceTree = ""; }; + 03E4DE6F65D0B3008B5D8D3E4A27F8A2 /* RNBootSplash.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNBootSplash.debug.xcconfig; sourceTree = ""; }; 03E7B4CBB3C83D80F339CB90C1B315FE /* FIRComponentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentType.m; path = FirebaseCore/Sources/FIRComponentType.m; sourceTree = ""; }; - 03F5BC268435C4F4E7F26F360528B54D /* RNGestureHandler.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.release.xcconfig; sourceTree = ""; }; + 03F06431100E4402DBCBF45CF4BFC6C6 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 03FBFF30594F0CEA591FF451970653F4 /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; 040B1FEA4D1BB34B7A5D3231137088C5 /* GULNSData+zlib.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GULNSData+zlib.m"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.m"; sourceTree = ""; }; + 040D2C66F76925DFE2827DAF8892434C /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; 041B9921682550847342142D5C565844 /* SDDeviceHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDeviceHelper.h; path = SDWebImage/Private/SDDeviceHelper.h; sourceTree = ""; }; + 042CB045CACE7AFFA4B656B882496E4A /* UMAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppLoaderProvider.m; path = UMAppLoader/UMAppLoaderProvider.m; sourceTree = ""; }; 043397C0E2974CE55163AFD49A0BFBA1 /* FIRCLSDataParsing.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSDataParsing.c; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDataParsing.c; sourceTree = ""; }; - 043E6DDD7CCF09B200DC3C00E6197153 /* FFFastImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageSource.h; path = ios/FastImage/FFFastImageSource.h; sourceTree = ""; }; + 0433A26CA9AB21D0ECDE15D53044AC50 /* BugsnagAppWithState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagAppWithState.m; sourceTree = ""; }; + 0434113888E997B21B28150CC3620C44 /* React-CoreModules.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.release.xcconfig"; sourceTree = ""; }; 04518E1251B37EFB9CC7C85F2C6F79BF /* Frame.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Frame.cpp; path = rsocket/framing/Frame.cpp; sourceTree = ""; }; - 04571D1915BA48E87A7E88204BF4DE73 /* react-native-notifications.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.release.xcconfig"; sourceTree = ""; }; 045DC00385FFA069EE7A16F3DED4A670 /* GDTCOREvent+GDTCCTSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GDTCOREvent+GDTCCTSupport.m"; path = "GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCOREvent+GDTCCTSupport.m"; sourceTree = ""; }; - 04644AA758CE84D0CBA62BFCA34EB7D9 /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = ios/QBImagePicker/QBImagePicker/de.lproj; sourceTree = ""; }; 046E65A5FA88EDA7B63523764877B119 /* FrameHeader.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FrameHeader.cpp; path = rsocket/framing/FrameHeader.cpp; sourceTree = ""; }; - 048FA4761B71A91CE00A15DD2BEA0CC3 /* EXLocalAuthentication.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXLocalAuthentication.debug.xcconfig; sourceTree = ""; }; - 048FEFFAD7A72CEC6B5E45B4E2D690B9 /* REAAllTransitions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAllTransitions.m; sourceTree = ""; }; + 047F29786AB3962508FB437472C96F1A /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = ""; }; + 04804CCF30D5C8B761937C80FB88841A /* RNCAppearanceProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProvider.h; path = ios/Appearance/RNCAppearanceProvider.h; sourceTree = ""; }; + 048BA257BC45490465B8024434ADA4F9 /* ARTSurfaceViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSurfaceViewManager.m; sourceTree = ""; }; + 04925E4C65CD37F4F5BCEA972570D447 /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; + 04977148DE9C9EE89321F0AA165BDE05 /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = ""; }; 0499D4D0215385E03992B5E8D6EEB000 /* Time.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Time.cpp; path = folly/portability/Time.cpp; sourceTree = ""; }; - 04A6F722C92E459F6D83D92B90C54F50 /* EXAppleAuthentication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthentication.m; path = EXAppleAuthentication/EXAppleAuthentication.m; sourceTree = ""; }; - 04A72F1A35F3AF83F8CF67BF995DB8DF /* RNPanHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPanHandler.h; sourceTree = ""; }; 04B3591ACFC47620F91491211E4222FB /* SSLErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLErrors.h; path = folly/io/async/ssl/SSLErrors.h; sourceTree = ""; }; - 04B8617080763B511FFA26B4B2883D76 /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = MethodCall.cpp; sourceTree = ""; }; - 04BA2269E354705B8524EFE2844A48E4 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialCommunityIcons.ttf; path = Fonts/MaterialCommunityIcons.ttf; sourceTree = ""; }; - 04C9072E8E73E49E527671FED550BBA8 /* Pods-NotificationService.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-NotificationService.debug.xcconfig"; sourceTree = ""; }; - 04CC4CF8166CF2871073943A661DC262 /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; 04CD318B73650A813269D865DF4D5037 /* FIRCLSUnwind_arm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSUnwind_arm.c; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_arm.c; sourceTree = ""; }; - 04D45E851562CC52694A7E561CCBA0F7 /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; + 04CEC819B28EEF081FB1A60A969A8641 /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; + 04CFEFB3F1120ED65335C3CA7E6A4ED3 /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; 04D979379AC3B5C4CC390B73EEDE68C6 /* GLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GLog.h; path = folly/GLog.h; sourceTree = ""; }; 04EE6D85344BB560A07B1DB6773B6A74 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = src/webp/decode.h; sourceTree = ""; }; 04EFE173DFCD42C297A5081E121E245C /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/memory/Malloc.h; sourceTree = ""; }; - 050B7C53220A4001AA3979B6682F4D9C /* BSGOutOfMemoryWatchdog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGOutOfMemoryWatchdog.h; sourceTree = ""; }; 0510A61DB27979267FAF3006A1A0C607 /* nanopb-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "nanopb-dummy.m"; sourceTree = ""; }; 051BC3CCB1F2C53A32AE05774FB983A7 /* MicroSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroSpinLock.h; path = folly/MicroSpinLock.h; sourceTree = ""; }; 05292F4C9A6B2D46210E32F7F6BBAE86 /* SDWebImageDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDefine.m; path = SDWebImage/Core/SDWebImageDefine.m; sourceTree = ""; }; 0529D73D9878D4E0EC0416AE14565F83 /* MMKV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MMKV-dummy.m"; sourceTree = ""; }; - 058B2CCF1D86628F70EEB3EC7A7F4DCC /* RNPushKitEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventHandler.h; path = RNNotifications/RNPushKitEventHandler.h; sourceTree = ""; }; + 0539C95CC07C94AB1B181AEADF6BE8F3 /* BSG_KSCrashReportWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportWriter.h; sourceTree = ""; }; + 0559FF4F31D9F39593DA553690AC4BBF /* react-native-orientation-locker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.release.xcconfig"; sourceTree = ""; }; 058BEC2FCC8D1DBEBCBBF9C636C2C347 /* vp8_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8_dec.c; path = src/dec/vp8_dec.c; sourceTree = ""; }; - 05B71D0B3B63ED61565A82C802E2D594 /* React-CoreModules.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.release.xcconfig"; sourceTree = ""; }; + 05C1523679D85B2912D83941C003FF06 /* KeyboardTrackingViewTempManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = KeyboardTrackingViewTempManager.h; sourceTree = ""; }; 05C29C67833AA8536353E274D98D3DF9 /* Fixture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fixture.h; path = rsocket/benchmarks/Fixture.h; sourceTree = ""; }; - 05C66A3D5FC990AAA07F76097B5D73B7 /* EXLocalAuthentication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocalAuthentication.h; path = EXLocalAuthentication/EXLocalAuthentication.h; sourceTree = ""; }; - 05EA5AE7692D62821313F1550C06B2C1 /* RNCCameraRollManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCCameraRollManager.h; path = ios/RNCCameraRollManager.h; sourceTree = ""; }; + 05DDF222C3236A930FA1D2041D5FB6DF /* RCTAnimationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAnimationPlugins.mm; sourceTree = ""; }; 05EB11B4088E4CA6D0CB872253BCFCCF /* dynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic.h; path = folly/dynamic.h; sourceTree = ""; }; - 0621CFA7E1002C3D06E43D092DC62FBF /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; - 0626E1B283A3C17E4DDD638BFB4C834C /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = Libraries/Image/RCTImageLoader.h; sourceTree = ""; }; + 05FAE5D72DBDBDFEF33497FEB33A3454 /* fr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fr.lproj; path = ios/QBImagePicker/QBImagePicker/fr.lproj; sourceTree = ""; }; 0632EB5F7E65E53CB0E9FB0623CE095F /* SDImageIOCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOCoder.h; path = SDWebImage/Core/SDImageIOCoder.h; sourceTree = ""; }; + 06384479D373E19F9C14A08E0BFF3788 /* RCTNativeAnimatedTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedTurboModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedTurboModule.h; sourceTree = ""; }; 065FBA790EB915D267BFD279DCEA5863 /* F14Mask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Mask.h; path = folly/container/detail/F14Mask.h; sourceTree = ""; }; + 0696B943EDC4A311B847984997C71865 /* react-native-mmkv-storage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-mmkv-storage.release.xcconfig"; sourceTree = ""; }; 069B7DCA8602CC04FFB29B10C5827D79 /* SKResponseInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKResponseInfo.m; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKResponseInfo.m; sourceTree = ""; }; + 06C5D22E47F15524A4FB15097A215F42 /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; 06D9659F8777F15807BD0E8F05A9A56A /* ObservableOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservableOperator.h; path = yarpl/observable/ObservableOperator.h; sourceTree = ""; }; 06ECDC5ED362821B60045388E5F81984 /* NSBezierPath+SDRoundedCorners.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBezierPath+SDRoundedCorners.h"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.h"; sourceTree = ""; }; 06EF2F083C06FEFE6A287DC283072E67 /* PropagateConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PropagateConst.h; path = folly/lang/PropagateConst.h; sourceTree = ""; }; @@ -8990,454 +9364,452 @@ 0700BA622A0AFEE9C4E6E9C7422B940A /* FlipperStateUpdateListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperStateUpdateListener.h; path = xplat/Flipper/FlipperStateUpdateListener.h; sourceTree = ""; }; 070AF3A34162C4E169CC46A26A40058E /* MallocImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MallocImpl.cpp; path = folly/memory/detail/MallocImpl.cpp; sourceTree = ""; }; 071524D959DA1A66674ED6538F569B20 /* GULReachabilityMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityMessageCode.h; path = GoogleUtilities/Reachability/Private/GULReachabilityMessageCode.h; sourceTree = ""; }; - 0715A45F35F07E2A9D608A71A16F7E79 /* React-perflogger.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-perflogger.release.xcconfig"; sourceTree = ""; }; - 0722DFF6E36A11A78507E6717291246A /* BSG_KSCrashSentry_NSException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashSentry_NSException.m; sourceTree = ""; }; + 0717248847249C2F0906B2AF1AC14BA2 /* ARTSurfaceViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSurfaceViewManager.h; sourceTree = ""; }; + 071CA81D30430B1FFA956BD72ABB280A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 073A0F73F0D948124331D5ED633FED78 /* GULSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSwizzler.m; path = GoogleUtilities/MethodSwizzler/GULSwizzler.m; sourceTree = ""; }; - 073B695D1116E71DE4B85507FC6C4838 /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; 073C7A7AF4093E077B81947FA20CD463 /* NetOps.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetOps.h; path = folly/net/NetOps.h; sourceTree = ""; }; + 075FCEEF9548E5D0153233C7A55D489D /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; + 077BEFF3805136F3DA0C317B2C868616 /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; 077F291B3D51FC13039F9019F22DEA24 /* AsyncTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTrace.h; path = folly/detail/AsyncTrace.h; sourceTree = ""; }; - 078D964FEAB5D5E810F67F885FBDCA6E /* UMTaskManagerInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.release.xcconfig; sourceTree = ""; }; + 077F86B7F0AB320485085AB7FE12E1DE /* ARTShape.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTShape.m; path = ios/ARTShape.m; sourceTree = ""; }; 0799A00B1DC38572550D734432304845 /* FIRInstallationsErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrors.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallationsErrors.h; sourceTree = ""; }; - 07AC36C3C3B745E9BBD8E0A5E31A379C /* RNFBAnalytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBAnalytics.release.xcconfig; sourceTree = ""; }; - 07AFA3DA47FBF615B703A60E2A97977B /* RCTPbkdf2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPbkdf2.h; path = ios/RCTCrypto/RCTPbkdf2.h; sourceTree = ""; }; - 07B04BD6D46260446EB6A2312E0BF8A1 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 07B15FE024C9E7893EADC20A970C1118 /* REATransformNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransformNode.h; sourceTree = ""; }; + 07A975EBBEF16BAA2DD5A684DF560E5B /* RNLongPressHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNLongPressHandler.m; sourceTree = ""; }; + 07A9DC99CB96BC7EB1CBC7EFF6B4718A /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; 07B23753CEF78E886235745063A4B131 /* FIRInstallationsErrorUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsErrorUtil.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.m; sourceTree = ""; }; - 07BA796F54F81B2594B5E0FCA4AE0933 /* RNVectorIcons-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNVectorIcons-prefix.pch"; sourceTree = ""; }; - 07C03B5292A7A019BC7C7875FE56D2B3 /* StorageIndexer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StorageIndexer.h; path = ios/StorageIndexer.h; sourceTree = ""; }; + 07BABC1C04DAB1CEC0A77A7D6B220B6A /* BugsnagSessionFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionFileStore.m; sourceTree = ""; }; 07CC778AB6214B8185DC0E6A75BB8F83 /* IOBuf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOBuf.h; path = folly/io/IOBuf.h; sourceTree = ""; }; - 07D3FE071A8980AB0AB4CE7B82276EAF /* KeyboardTrackingViewTempManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = KeyboardTrackingViewTempManager.m; sourceTree = ""; }; 07DF80C3CCE5F07D6160CBD62078D66D /* FIRInstallationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStore.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.h; sourceTree = ""; }; 07E05E20935578086C3DCD67D966155F /* String-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "String-inl.h"; path = "folly/String-inl.h"; sourceTree = ""; }; - 07F0FF6F24B47DE6248CD0B162ADDC90 /* BSG_KSBacktrace_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace_Private.h; sourceTree = ""; }; - 0805ED6781BB14AFC5659517A3F9E04C /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 07F8A416674D20EB4979BAF9EBF3D176 /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = ""; }; 080AB2B7CB8699758B3D6C0D17453CBC /* SanitizeLeak.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeLeak.h; path = folly/memory/SanitizeLeak.h; sourceTree = ""; }; - 081B0863F7FD9952F66E3F13F2E7749E /* RNRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNRotationHandler.h; sourceTree = ""; }; + 081CDA12B85E6970A4DD9FBE607A3AAB /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 08272036C5209030B6CF0F4CEFE8A1DA /* RCTTypeSafety-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTTypeSafety-dummy.m"; sourceTree = ""; }; + 08383837DC6D5400661DBAEDFAC174C8 /* RNCPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCPicker.m; path = ios/RNCPicker.m; sourceTree = ""; }; + 0838CF8772F2CC870DF0D5BF82E230A3 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 083D2D5543B3909AD297AD13441396FE /* dec_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips32.c; path = src/dsp/dec_mips32.c; sourceTree = ""; }; 084464DD1DF0BC6D3E42DE008CC002BA /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Sources/Private/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; 0846660998DB5993367CE75C3BE71D85 /* Chrono.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Chrono.h; path = folly/Chrono.h; sourceTree = ""; }; - 08559A024003E127EC0CC129D72EE27C /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; + 0846ECB42999CAB007D3A70379B7B14A /* NSData+EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+EXFileSystem.h"; path = "EXFileSystem/NSData+EXFileSystem.h"; sourceTree = ""; }; 08593D01040FC8FE0D5E332C14128C19 /* GDTCORPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORPlatform.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORPlatform.h; sourceTree = ""; }; + 0864B6FE4C4AD67DAF5C6DE9C9DCA1EE /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = ""; }; 086B1B9630B10C0C7A5C473B6B1D4EDD /* frame_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_dec.c; path = src/dec/frame_dec.c; sourceTree = ""; }; + 0870CA6F2AB8D35483D97F6189570EB4 /* ReactNativeUiLib-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeUiLib-prefix.pch"; sourceTree = ""; }; + 088D72C0DB7BE89FA9B04E9896A589D5 /* React-RCTVibration.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.debug.xcconfig"; sourceTree = ""; }; + 08A0BFC7788EA8338F32393B48AEC433 /* REATransitionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionManager.m; sourceTree = ""; }; 08A2D3ED61203699C6E69AEB06D1C0BA /* FIRCLSOnboardingOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSOnboardingOperation.h; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSOnboardingOperation.h; sourceTree = ""; }; 08AB72659E4E8BC3FCDF3F0DEB0E6611 /* Future.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Future.h; path = folly/futures/Future.h; sourceTree = ""; }; + 08C0C37735B43D597197AEF6D2CDE1C9 /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; 08D1FFC2980C1ED72AE9A4C44A0544C3 /* libreact-native-document-picker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-document-picker.a"; path = "libreact-native-document-picker.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 08EA6725AF069CFBC31F57266BD61BF8 /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; - 08EA7BAF8053A40E2918536B6F1CE145 /* RNDateTimePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePicker.m; path = ios/RNDateTimePicker.m; sourceTree = ""; }; + 08E90EAC02328C836CD7F4397639F4A1 /* react-native-cameraroll-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-cameraroll-prefix.pch"; sourceTree = ""; }; + 08F6B390C35EA07D9D7C8C2945CEC55D /* React-Core.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "React-Core.modulemap"; sourceTree = ""; }; 08F7AB15CCBD249EB8343CB69FCE435F /* TimekeeperScheduledExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TimekeeperScheduledExecutor.cpp; path = folly/executors/TimekeeperScheduledExecutor.cpp; sourceTree = ""; }; 08FA31C50853621E0FBE3852C4C240DC /* ManualTimekeeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ManualTimekeeper.h; path = folly/futures/ManualTimekeeper.h; sourceTree = ""; }; - 090A1EA6900D26D1A431D93BA3F93FF7 /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; + 0916BB36DF829DD5FD4D51AA3D725A7B /* BSG_KSMach_Arm.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm.c; sourceTree = ""; }; 092F24E4BE5DD6FB8A6ABE16A9CDBF1D /* ManualTimekeeper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ManualTimekeeper.cpp; path = folly/futures/ManualTimekeeper.cpp; sourceTree = ""; }; + 0935676F54EB3972A0752F9B8008D1CC /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; 094CBF061F9D96166BC5518B23A1D231 /* AtomicHashArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashArray.h; path = folly/AtomicHashArray.h; sourceTree = ""; }; 09548D9C5FD0A5969D3B8EF8CA6B4A54 /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize.cc; path = src/symbolize.cc; sourceTree = ""; }; - 095DF16A4B973E69F2285E16AE5EFA6D /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 095F9DC78A02A5B297431EB32A49075F /* iocp-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "iocp-internal.h"; sourceTree = ""; }; 0968102F2373098DC9AE92B7935D4ED8 /* Hazptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hazptr.h; path = folly/synchronization/Hazptr.h; sourceTree = ""; }; 097D9FA33676D30ACB7766C84788F795 /* FIRCLSSerializeSymbolicatedFramesOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSerializeSymbolicatedFramesOperation.m; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSerializeSymbolicatedFramesOperation.m; sourceTree = ""; }; + 098C33BAFFF906D6D3AF3583C8832657 /* REASetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASetNode.h; sourceTree = ""; }; + 09980FBD264D2DD8D9054DC82F6EA5F5 /* BSG_KSCrashReportFields.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFields.h; sourceTree = ""; }; 09B5856105EF7C6447B9EC57E7E36B34 /* libEXKeepAwake.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXKeepAwake.a; path = libEXKeepAwake.a; sourceTree = BUILT_PRODUCTS_DIR; }; 09C34605C950C91E8CCCD2F4AEDB7101 /* Hazptr.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Hazptr.cpp; path = folly/synchronization/Hazptr.cpp; sourceTree = ""; }; - 09D76C81D7B4BB1B8B59C71D43891582 /* RNFBAppModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBAppModule.m; path = ios/RNFBApp/RNFBAppModule.m; sourceTree = ""; }; - 09E180C05B7FD43CD480B81BD6689A8F /* RNReanimated-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNReanimated-dummy.m"; sourceTree = ""; }; - 09E287F942E9D704CBEB762C9FEAB884 /* UMFontInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.release.xcconfig; sourceTree = ""; }; + 09C6346F854CFF3D0E2B723676D88233 /* EXSessionTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionTaskDelegate.h; sourceTree = ""; }; 09E75510AF24F314A6051E17B976164F /* FlipperKitReactPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitReactPlugin.h; path = iOS/Plugins/FlipperKitReactPlugin/FlipperKitReactPlugin/FlipperKitReactPlugin.h; sourceTree = ""; }; 09F08A801E02AEB6C1E8F95750DFC75C /* StaticSingletonManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticSingletonManager.h; path = folly/detail/StaticSingletonManager.h; sourceTree = ""; }; - 0A15423DEFF3841394DA8BE3321D59F9 /* RNGestureHandlerEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerEvents.m; path = ios/RNGestureHandlerEvents.m; sourceTree = ""; }; + 0A15D754AC491E925BECDFAEEEFDF7B4 /* Foundation.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Foundation.ttf; path = Fonts/Foundation.ttf; sourceTree = ""; }; + 0A1AB6D01744E2320165DCECBB1BE4F9 /* BugsnagLastRunInfo+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagLastRunInfo+Private.h"; sourceTree = ""; }; 0A466DFCCBBD36B9700AC88D7B170FE2 /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/Bits.h; sourceTree = ""; }; 0A467EA9EDF19944AF6E37B46B9583FC /* FirebaseInstallations.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstallations.debug.xcconfig; sourceTree = ""; }; 0A56B007166F99AFBC7ED5B55A6B28B0 /* ThreadLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLocal.h; path = folly/ThreadLocal.h; sourceTree = ""; }; 0A5EB232FEA7CEB1E0F7D4D8788C470F /* Allowance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Allowance.h; path = rsocket/internal/Allowance.h; sourceTree = ""; }; + 0A7315913B6B00C96B1969BC6DB6EA51 /* BSG_KSCrashState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashState.h; sourceTree = ""; }; 0A7589870AE8D1910F6EEA19A4EBE644 /* FIRCLSSettingsOnboardingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSettingsOnboardingManager.h; path = Crashlytics/Crashlytics/Settings/FIRCLSSettingsOnboardingManager.h; sourceTree = ""; }; 0A7AB20268DD9E2D622B86E629FAA4AD /* MiniPBCoder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MiniPBCoder.cpp; path = Core/MiniPBCoder.cpp; sourceTree = ""; }; + 0A7C4523B69E2AA2672DFA346EE4BE43 /* EXImageLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXImageLoader-prefix.pch"; sourceTree = ""; }; + 0A8135C214F18C12DA255B2595E7E617 /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = ""; }; 0A87D13283D45B725FCA1772F8ACC6C5 /* minheap-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "minheap-internal.h"; sourceTree = ""; }; - 0A9A37CA9D46A7E435C023DE581010BB /* RNFBCrashlytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBCrashlytics.release.xcconfig; sourceTree = ""; }; + 0A8FD8A2B5ADA3C0135616C5DB527628 /* BSG_KSCrashSentry_CPPException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_CPPException.h; sourceTree = ""; }; + 0A99368FA9B7C56371503B6CE44602A8 /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; + 0AA408A83949F54272C0B48056AB7749 /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; 0AA7D6C7EE116FB089F092288EDD2DDB /* AtomicNotification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicNotification.h; path = folly/synchronization/AtomicNotification.h; sourceTree = ""; }; - 0ABE5571AD63590AB00E15F3FEC1E582 /* SafeAreaSpacerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SafeAreaSpacerView.h; sourceTree = ""; }; - 0ABF89FF080EE282ED4B7A859AECEE96 /* MaterialIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialIcons.ttf; path = Fonts/MaterialIcons.ttf; sourceTree = ""; }; - 0AE0F59D643A8384601A0A88A0232375 /* RNEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNEventEmitter.h; path = RNNotifications/RNEventEmitter.h; sourceTree = ""; }; + 0AAB951C7E48D6D0976BFBBFE23D2F04 /* StorageIndexer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StorageIndexer.h; path = ios/StorageIndexer.h; sourceTree = ""; }; + 0ABF1EC3358A7E3827364D165457E312 /* RNRandomBytes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRandomBytes.h; path = ios/RCTCrypto/RNRandomBytes.h; sourceTree = ""; }; 0AE8790703D5118D50FCE795027DAE86 /* FIRCLSException.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSException.mm; path = Crashlytics/Crashlytics/Handlers/FIRCLSException.mm; sourceTree = ""; }; 0AE90D932F5FFCC1DBCCA7B9D17A6B0C /* Constexpr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Constexpr.h; path = folly/portability/Constexpr.h; sourceTree = ""; }; 0AEA0EB941EDBAE9DCC795D9615CD443 /* FIRDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDiagnosticsData.h; path = FirebaseCore/Sources/FIRDiagnosticsData.h; sourceTree = ""; }; - 0AEA24A30B4761E52D38C1A32368E428 /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; 0B128A0B7CEFBBB191EF90420A0CCC0C /* MMKVLog_Android.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MMKVLog_Android.cpp; path = Core/MMKVLog_Android.cpp; sourceTree = ""; }; - 0B14E29BC571D6BC0A7F519621032085 /* RNRootView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRootView.release.xcconfig; sourceTree = ""; }; - 0B277106741CBB0E9DC8F0991A8506F0 /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; - 0B2773FD64759289EFA4B48050EC0948 /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = ""; }; 0B2797F574294906070F7BE48ECC1B64 /* IOObjectCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOObjectCache.h; path = folly/executors/IOObjectCache.h; sourceTree = ""; }; + 0B2BF373E5089F4C67C4A01143AC410A /* BugsnagDevice.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagDevice.m; sourceTree = ""; }; 0B32040CFCC394F3ABA8903C6AD30C71 /* FIRInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallations.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallations.h; sourceTree = ""; }; 0B4CE6901EC9E33F4A67CF767719781D /* SDAssociatedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAssociatedObject.h; path = SDWebImage/Private/SDAssociatedObject.h; sourceTree = ""; }; + 0B5104E51CBBF3CC7204A871489BF7FA /* RCTTypedModuleConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTypedModuleConstants.h; sourceTree = ""; }; 0B55A127DD622501C234A7CAB8F25911 /* AtomicSharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicSharedPtr.h; path = folly/concurrency/AtomicSharedPtr.h; sourceTree = ""; }; 0B5AB93A1A9D7CB8293F5DDF39830F9C /* fast-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fast-dtoa.cc"; path = "double-conversion/fast-dtoa.cc"; sourceTree = ""; }; 0B5DDF99B9B8A7E45B951E939DAB22B0 /* Core.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Core.h; path = folly/gen/Core.h; sourceTree = ""; }; - 0B614B1E8899450A514539C8FAA8F4C6 /* RNDocumentPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDocumentPicker.m; path = ios/RNDocumentPicker/RNDocumentPicker.m; sourceTree = ""; }; 0B6320C3DD794AA8706FA4994AD76ADA /* SingletonStackTrace.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SingletonStackTrace.cpp; path = folly/detail/SingletonStackTrace.cpp; sourceTree = ""; }; - 0B6373BD860EF985B4AE6B20F830A699 /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; 0B67C4B41669063ADAD31C56F4EF5A81 /* Try-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Try-inl.h"; path = "folly/Try-inl.h"; sourceTree = ""; }; - 0B8A807A3234E9592B16DAF7F1EC8444 /* BSG_KSSysCtl.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSysCtl.c; sourceTree = ""; }; + 0B6D05B848280DC9B65AF5FC24F1F294 /* react-native-restart.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-restart.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 0B74A30016078BE56D8EE4ADF85FB7C6 /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; + 0B7BD46A66B3036240A24D17DD1E1366 /* Pods-defaults-Rocket.Chat-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-defaults-Rocket.Chat-acknowledgements.plist"; sourceTree = ""; }; + 0B7EED2877664F3483849BEAA627B0CA /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; + 0B87A5BBA8FA573F708551CD582ECB53 /* BSG_KSDynamicLinker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSDynamicLinker.h; sourceTree = ""; }; 0B8F8F56D3C45B3777329256B1275595 /* CodedOutputData.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CodedOutputData.cpp; path = Core/CodedOutputData.cpp; sourceTree = ""; }; 0B922E44971B3921CDD009FE8B22C4CF /* Conv.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Conv.cpp; path = folly/Conv.cpp; sourceTree = ""; }; - 0B999973704E2298F8D4E09D65AF653C /* RNCSafeAreaProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaProviderManager.h; path = ios/SafeAreaView/RNCSafeAreaProviderManager.h; sourceTree = ""; }; 0B9F4EA75F69F6FBF04FED883FE345FF /* Tearable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Tearable.h; path = folly/synchronization/Tearable.h; sourceTree = ""; }; - 0BA2E9CA009B73D0FD2EF03970BDADCA /* rn-fetch-blob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-fetch-blob-prefix.pch"; sourceTree = ""; }; - 0BB81D79FA1A86216D5C9D6D2DBD42AE /* RNCMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedViewManager.h; path = ios/RNCMaskedViewManager.h; sourceTree = ""; }; 0BCE31A8D64EFB8D1E1ADDB316355ADA /* Dirent.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Dirent.cpp; path = folly/portability/Dirent.cpp; sourceTree = ""; }; 0BD55AF06C4C5D21CB16B94666B41A91 /* Math.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Math.h; path = folly/portability/Math.h; sourceTree = ""; }; + 0BE000220127DEB6910FDC7390249D2C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 0BF02578CD55A4686096FD853394854D /* StreamFragmentAccumulator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamFragmentAccumulator.h; path = rsocket/statemachine/StreamFragmentAccumulator.h; sourceTree = ""; }; - 0BF60F77642163DFF7DCABCDEDD8BE78 /* FBLazyVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyVector.h; path = FBLazyVector/FBLazyVector.h; sourceTree = ""; }; - 0C01026E1D77A91B3A8924615E1A998F /* Yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Yoga-dummy.m"; sourceTree = ""; }; 0C123BAA55F6AFD3FBB4D6479169F9F8 /* Base-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Base-inl.h"; path = "folly/gen/Base-inl.h"; sourceTree = ""; }; 0C1F0F63DF855EE0FDBA4FD6852B893E /* PBEncodeItem.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = PBEncodeItem.hpp; path = Core/PBEncodeItem.hpp; sourceTree = ""; }; + 0C34F4CB52587916128DE4043A184BA5 /* Pods-defaults-RocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-defaults-RocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; 0C399D5AF94FACC5E5C007509E34ABC1 /* DeferFlowable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeferFlowable.h; path = yarpl/flowable/DeferFlowable.h; sourceTree = ""; }; - 0C3DDBBB3E0934364440A6EA08882C8B /* react-native-safe-area-context.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-safe-area-context.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 0C404EDA3875132C8D70CCF5BD2B3946 /* Pods-defaults-RocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-defaults-RocketChatRN.release.xcconfig"; sourceTree = ""; }; - 0C7932C453738F6F6274F8460F0DC0F5 /* ARTPattern.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTPattern.h; sourceTree = ""; }; - 0C8E3F87F676BB4FBB8E2BA9B719E892 /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; - 0C970220DC95DB4DD7D644673EBC10C4 /* RCTDisplayWeakRefreshable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayWeakRefreshable.m; sourceTree = ""; }; - 0C9C6C38C59183D5511A79DC72F3DE4C /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; - 0CB8CF1462BE255C10DFD0A04C4E38D2 /* RNDateTimePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePickerManager.h; path = ios/RNDateTimePickerManager.h; sourceTree = ""; }; - 0CCCBE1567A458789814668277F3F434 /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = ""; }; + 0C64E5996EF4943B03113E475C59389D /* RemoteObjectsTable.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = RemoteObjectsTable.cpp; sourceTree = ""; }; + 0CA6A8600BC7313FDE798B2FEB55E2D6 /* rn-fetch-blob.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.release.xcconfig"; sourceTree = ""; }; + 0CAE1967C4A341DC0BBDF6A55DE59DAC /* RCTI18nManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTI18nManager.mm; sourceTree = ""; }; + 0CC423979935EE595B6D7953492ABE5E /* RCTSettingsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSettingsManager.mm; sourceTree = ""; }; + 0CC82E01F851714C90267C7A7995661C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 0CCA0D29921C0C30861DFC9EA324B1CC /* ConnectionDemux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ConnectionDemux.h; sourceTree = ""; }; 0CCD17A67031E9AD6CB5C8FE0052D1EE /* IOBufQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOBufQueue.h; path = folly/io/IOBufQueue.h; sourceTree = ""; }; - 0CFF9E7C0AF06FDC54654F7D01DD47ED /* RCTAsyncLocalStorage.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAsyncLocalStorage.mm; sourceTree = ""; }; - 0D0E62BD41B5014578C906A77BBF477F /* RNNotificationParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationParser.h; path = RNNotifications/RNNotificationParser.h; sourceTree = ""; }; 0D15D4485815571BD58306D43BF2AB9E /* quant_levels_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant_levels_utils.h; path = src/utils/quant_levels_utils.h; sourceTree = ""; }; - 0D283985C085552CDF47FA81D3178BE6 /* RNCNetInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCNetInfo.h; path = ios/RNCNetInfo.h; sourceTree = ""; }; - 0D3AE6610FC7E51C20F57435DCADF9EB /* JSITracing.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSITracing.cpp; sourceTree = ""; }; + 0D260A02AF49F7EB75B4F755BE42C822 /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; + 0D2CC58B4BCB1C4FF563AF13F3F12026 /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; 0D4D83CF4BCF22D89386EBB6F4EED2E2 /* SocketOptionMap.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SocketOptionMap.cpp; path = folly/io/SocketOptionMap.cpp; sourceTree = ""; }; - 0D5BBBB7AD1D865CEDD923D166C39BB3 /* React-callinvoker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-callinvoker.debug.xcconfig"; sourceTree = ""; }; - 0D5DE226EBA71BDE93577F69BD3209A3 /* React-RCTText.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.release.xcconfig"; sourceTree = ""; }; - 0D60570BC8C1B356697BE0F37FA05000 /* react-native-cookies.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cookies.debug.xcconfig"; sourceTree = ""; }; - 0D76277DEF1627015108E94EB794BC16 /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 0D7EF8C901F7000EEA6BFB0673C19EF8 /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; - 0D94AAAB58755734FE0BBD60EB354D4E /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; + 0D4E47CF87EA1B46B2B44533C1B5C444 /* RCTStatusBarManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTStatusBarManager.mm; sourceTree = ""; }; + 0D5DAD0301106C54829D77F89B127853 /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; + 0D5FFC28F633CA358E6A299EB5727859 /* RNDateTimePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePickerManager.m; path = ios/RNDateTimePickerManager.m; sourceTree = ""; }; + 0D76CCB0098127BEAEB1754CFB47C021 /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = ""; }; 0D9C23B493FEC20AFFD1BE25C3AE1594 /* evutil_rand.c */ = {isa = PBXFileReference; includeInIndex = 1; path = evutil_rand.c; sourceTree = ""; }; - 0D9DA6605A5EC6BA2B775035CF901D16 /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = ""; }; - 0DA5A99E2912A30539AFF1F629597D6D /* BugsnagSessionFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionFileStore.h; sourceTree = ""; }; 0DADF679A872CBFB525E32F6FFD908B9 /* FrameSerializer_v1_0.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameSerializer_v1_0.h; path = rsocket/framing/FrameSerializer_v1_0.h; sourceTree = ""; }; + 0DDBD5E783F16003D79827A5B335C2E9 /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; 0DE4DBCF1EF8FB8026A41D493816EC57 /* FBLPromise+Validate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Validate.h"; path = "Sources/FBLPromises/include/FBLPromise+Validate.h"; sourceTree = ""; }; + 0DE687D9E5000F208A06330A2DE48445 /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = ""; }; 0DE80E422D8FB9F62B9655C08E9C59A2 /* Assume.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Assume.cpp; path = folly/lang/Assume.cpp; sourceTree = ""; }; - 0DEE1A43A104C13CFC47380A969848F8 /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; - 0DF223CBFA90F7B8693B5CC356031354 /* react-native-slider.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-slider.release.xcconfig"; sourceTree = ""; }; - 0DFC5C3D54351AF2BC93C38A54D556AC /* RNCAsyncStorage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCAsyncStorage.debug.xcconfig; sourceTree = ""; }; + 0DF5EBAE45D17E0DE1799E01B3B01984 /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; + 0DF7D4E5C52A9D6120E9A575058D3F6A /* RCTConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConstants.h; sourceTree = ""; }; 0E0FD9AABD54D4C664E1E35921489745 /* Hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hash.h; path = folly/hash/Hash.h; sourceTree = ""; }; - 0E123675A7D65EE9029D3D4A939EE70B /* BugsnagFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagFileStore.m; sourceTree = ""; }; - 0E1727E8F69A95E33E2459FA916B0880 /* RNCommandsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCommandsHandler.h; path = RNNotifications/RNCommandsHandler.h; sourceTree = ""; }; - 0E363084F953A4BE1D64256DEA189F22 /* RCTFileReaderModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFileReaderModule.mm; sourceTree = ""; }; + 0E1C4B02C564187199628178F5FBF2F2 /* Pods-defaults-RocketChatRN-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-defaults-RocketChatRN-frameworks.sh"; sourceTree = ""; }; + 0E24F4B867825B723C02E2C2EDF698D8 /* React-jsiexecutor.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.release.xcconfig"; sourceTree = ""; }; 0E37DC15B8F6DE03E03EB0C7D0597E83 /* AtomicNotification-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicNotification-inl.h"; path = "folly/synchronization/AtomicNotification-inl.h"; sourceTree = ""; }; - 0E3EA0186C82A8DF7D7102BB4982E1AF /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = ""; }; - 0E479E8853E5ED5B92985DE2CAFC28A5 /* ARTSurfaceViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSurfaceViewManager.m; sourceTree = ""; }; - 0E889720CB30E7395D653477B9C164E5 /* react-native-background-timer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-background-timer-prefix.pch"; sourceTree = ""; }; + 0E3C403950789D25A935DB168DD8426B /* BugsnagSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSession.m; sourceTree = ""; }; + 0E43C7D6E8A94BC0C9E6999D4CF2CF04 /* RNVectorIcons.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNVectorIcons.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 0E588F486C0468F453CA323CCA1D6C38 /* BugsnagStateEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagStateEvent.m; sourceTree = ""; }; + 0E66BD9275AF1DCFAE284A18EDB3DB96 /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; + 0E68C66A69B7E5F622F5B5273FC096A4 /* QBAssetsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.m; sourceTree = ""; }; 0E92081CF67467605D8B96788527E441 /* FIRCLSInternalReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSInternalReport.h; path = Crashlytics/Crashlytics/Models/FIRCLSInternalReport.h; sourceTree = ""; }; + 0E9D744742CD8F87F0ACEF7E6DC60ADD /* react-native-slider.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-slider.release.xcconfig"; sourceTree = ""; }; 0E9FC43B02A652C5EFBABABA7B5033D8 /* IPAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddress.h; path = folly/detail/IPAddress.h; sourceTree = ""; }; - 0EA959CEA308ED06E8959B9FFBCDAC17 /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; + 0EAC3F88A630AB3DF219B13A70581EEB /* BSG_KSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSLogger.h; sourceTree = ""; }; 0EB0E8506FB986DC31C6541AA2C48B9F /* OpenSSLUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OpenSSLUtils.cpp; path = folly/io/async/ssl/OpenSSLUtils.cpp; sourceTree = ""; }; - 0EF2A8C8073C07569D01C689D9D294EC /* BSG_KSJSONCodec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodec.h; sourceTree = ""; }; - 0F02E024C09230DF9E2BEAA09CC8986E /* BSG_KSMachHeaders.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSMachHeaders.m; sourceTree = ""; }; + 0EBF0C796FE60145654DE7FB23E26B32 /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = ""; }; + 0EC88FAC2B7478A7FC834D49B9513A81 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTI18nManager.h; path = React/CoreModules/RCTI18nManager.h; sourceTree = ""; }; + 0ED04B806B0C2054B1FD194C3753377E /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = ""; }; + 0EDA77D1B8F449421DC2532D38292393 /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; 0F0F007E490BD7A6AD5E2861E1F025A7 /* TurnSequencer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurnSequencer.h; path = folly/detail/TurnSequencer.h; sourceTree = ""; }; - 0F18239889D5C128EA1402D289AE5CE6 /* SafeAreaSpacerViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SafeAreaSpacerViewLocalData.h; sourceTree = ""; }; - 0F3520989374CC11C863BEA987AF8C99 /* FBReactNativeSpec-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBReactNativeSpec-prefix.pch"; sourceTree = ""; }; - 0F50A80BB6E2BDDAD17E1EA98198E62C /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = ""; }; + 0F1AF0D76254361FAB87C8DBA8DF7440 /* BSG_KSJSONCodecObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodecObjC.h; sourceTree = ""; }; 0F5D190FECA2BE663103CD614226C896 /* huffman_encode_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_encode_utils.c; path = src/utils/huffman_encode_utils.c; sourceTree = ""; }; 0F6E45DC830E5CA7848322A1858380CD /* ManualExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ManualExecutor.cpp; path = folly/executors/ManualExecutor.cpp; sourceTree = ""; }; + 0F71F642AF3DE7DD9E1E4E9BE0B3DBBD /* RNCConnectionState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCConnectionState.h; path = ios/RNCConnectionState.h; sourceTree = ""; }; + 0F72487A94BB4E252CC7309942D924D3 /* SecureStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SecureStorage.m; path = ios/SecureStorage.m; sourceTree = ""; }; 0F73A7482432ABE08919D16E9DCE3ADC /* pb_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_encode.h; sourceTree = ""; }; - 0F8EE3835CE05DB6F767B7E0664CEB0E /* RNFBAnalyticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBAnalyticsModule.m; path = ios/RNFBAnalytics/RNFBAnalyticsModule.m; sourceTree = ""; }; - 0F9117F168B2B781348BD3F871C5C06B /* React-Core.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-Core.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 0F9AB49BA775BC43E5CA501055D065B2 /* REAConcatNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAConcatNode.h; sourceTree = ""; }; - 0FBD9BE306B9C8FC6C6C3F8EA469C13A /* VibrancyView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = VibrancyView.m; path = ios/VibrancyView.m; sourceTree = ""; }; - 0FC7615C69023D6C4AA2EC495E61FC4A /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; - 0FD6C64DACC2AEF625B83C48FB2D4325 /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXAV/EXAudioRecordingPermissionRequester.h; sourceTree = ""; }; - 0FF2090437A38730740B7F0C74DDF438 /* EXAppleAuthentication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthentication.h; path = EXAppleAuthentication/EXAppleAuthentication.h; sourceTree = ""; }; + 0F9D5A741266CEE07A80185290400D69 /* Pods-defaults-NotificationService-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-defaults-NotificationService-acknowledgements.markdown"; sourceTree = ""; }; + 0FAD6BB44C5FCB7E7D3E10085572B5B0 /* ARTNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTNode.h; path = ios/ARTNode.h; sourceTree = ""; }; + 0FC97E9950E503E79D263EADAE92167A /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; + 0FDB50B420BB773426F9F40E91C07B38 /* RNCSafeAreaProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProvider.m; path = ios/SafeAreaView/RNCSafeAreaProvider.m; sourceTree = ""; }; + 0FE5ED29CEF5FAFC8F13E402F3E4412C /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; 100412FA16CB816F8170F047DB52EF09 /* IPAddressV4.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IPAddressV4.cpp; path = folly/IPAddressV4.cpp; sourceTree = ""; }; - 100A4C9D354E9C12632216329A338020 /* REAModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAModule.h; path = ios/REAModule.h; sourceTree = ""; }; + 100FF3BEA5FECADD67AD149C0ECC3CB4 /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSCRuntime.cpp; sourceTree = ""; }; 1013FA3489B2E599784CC6B11BEB6AD8 /* YogaKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YogaKit.release.xcconfig; sourceTree = ""; }; - 102B924AF0ED7E083BCD625DE71BC18D /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; - 103B5823E7A0D36680625CA1F503B01B /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; + 10357CA40184FA064FBB734CE3ECABC8 /* React-jsinspector.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.debug.xcconfig"; sourceTree = ""; }; 103D85709FAEBE30EE0B816C9B015B9C /* MemoryIdler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryIdler.h; path = folly/detail/MemoryIdler.h; sourceTree = ""; }; 105C6BEDBE480010F2F7F515B213FBBD /* ScheduledExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledExecutor.h; path = folly/executors/ScheduledExecutor.h; sourceTree = ""; }; - 1062EA23D0B4F9409F464565F3FC0F62 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; + 10639F022D17F4276CF9139CD9340027 /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; + 1076C197124588FD6485535FFF0916BD /* RNDateTimePicker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDateTimePicker.debug.xcconfig; sourceTree = ""; }; + 107BF0D79A81DCBF9F2C7251D501A63A /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; 108C40B5CEAA44D87AFF2EFE6CE2ADFF /* FlipperCppBridgingResponder.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperCppBridgingResponder.mm; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingResponder.mm; sourceTree = ""; }; - 10B3B2EC3A593F723837AB6318CA9779 /* RCTAlertController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAlertController.h; path = React/CoreModules/RCTAlertController.h; sourceTree = ""; }; + 1090A8F0485EF829EB52414930011E85 /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = ""; }; + 10C29F3BD62122762F636FC1949D2026 /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; 10D3CBD349DDBEDD8BC29FF16094AFD1 /* GoogleUtilities-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleUtilities-dummy.m"; sourceTree = ""; }; + 10E8EE79A039D0EAA20868FC060EDE3C /* ARTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTSurfaceView.h; path = ios/ARTSurfaceView.h; sourceTree = ""; }; + 10EE657F01EBB6BCF4637D1124C1343B /* BugsnagSessionTracker+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagSessionTracker+Private.h"; sourceTree = ""; }; 10F1FC21FBBE572C7A62B4E5EAB181BE /* TraceInterpreter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TraceInterpreter.h; path = destroot/include/hermes/TraceInterpreter.h; sourceTree = ""; }; - 10F3F3FC7084183167C38158EB033FC6 /* rn-extensions-share.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "rn-extensions-share.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 110CD94C79C42A487EE1D6CC50098487 /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/portability/String.h; sourceTree = ""; }; - 1118FA3E8AE2F5F3FF8284AF84FB58AF /* EXKeepAwake-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXKeepAwake-prefix.pch"; sourceTree = ""; }; - 111DD6FA99BB64D5C0632FE249834302 /* RNGestureHandlerModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerModule.m; path = ios/RNGestureHandlerModule.m; sourceTree = ""; }; + 111352AA53F0093A3AB2AEB343C37458 /* BSGConnectivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGConnectivity.h; sourceTree = ""; }; 112246D068CDB2E5FEDB9BA4F6062328 /* PasswordInFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PasswordInFile.h; path = folly/io/async/PasswordInFile.h; sourceTree = ""; }; + 112D962E5A1F21D8C0DCB29477800458 /* BugsnagApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagApiClient.m; sourceTree = ""; }; 112FB65056DB5FBF8B435ACD05AF3E49 /* UIColor+SKSonarValueCoder.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "UIColor+SKSonarValueCoder.mm"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIColor+SKSonarValueCoder.mm"; sourceTree = ""; }; 1139C8C34759E7654D2D541DBF65F60B /* Flipper-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-dummy.m"; sourceTree = ""; }; + 1149EC628D06B34CD9EDC96DE9D17BA8 /* Pods-defaults-NotificationService.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-defaults-NotificationService.modulemap"; sourceTree = ""; }; 1153C7F2D8D7F8298826538F83EADA0E /* SDImageLoadersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoadersManager.m; path = SDWebImage/Core/SDImageLoadersManager.m; sourceTree = ""; }; 1158999A56B57AE4217C56B63FFFA59A /* CodedInputDataCrypt.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CodedInputDataCrypt.cpp; path = Core/CodedInputDataCrypt.cpp; sourceTree = ""; }; - 115F7DE15B034C3D73E6DCEE63B22AB4 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 116093A73B32F5F786FD46E2F9307F24 /* color_cache_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = color_cache_utils.c; path = src/utils/color_cache_utils.c; sourceTree = ""; }; 1161903683157589F2902EBB4CEB72F0 /* tr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = tr.lproj; path = "Objective-C/TOCropViewController/Resources/tr.lproj"; sourceTree = ""; }; 116B22E616273DE891DEFDE938A5D623 /* cached-powers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cached-powers.h"; path = "double-conversion/cached-powers.h"; sourceTree = ""; }; - 116B3B461EB7D917B90AEDE92478E4C8 /* StorageSetters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StorageSetters.h; path = ios/StorageSetters.h; sourceTree = ""; }; - 1176AA790D76EF871DF55AE6BA8692B0 /* REAFunctionNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAFunctionNode.m; sourceTree = ""; }; 118760F70DE10C3E528868D8AFF69793 /* MMBuffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMBuffer.h; path = Core/MMBuffer.h; sourceTree = ""; }; 11A5473574DB8F5B87B8A158CA9708F7 /* FIRCLSdSYM.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSdSYM.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSdSYM.m; sourceTree = ""; }; + 11B51F34AD31D04ECDEA6D348278AF7D /* EXLocalAuthentication.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXLocalAuthentication.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 11CB20F69C4411E5FDBA7623836E517F /* UMAppLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMAppLoader-prefix.pch"; sourceTree = ""; }; + 11DAD95EB383741A607A74A0E7158358 /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; 11E5B920D013929A3A29D9659EF6473D /* ResumeIdentificationToken.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ResumeIdentificationToken.cpp; path = rsocket/framing/ResumeIdentificationToken.cpp; sourceTree = ""; }; 11EA49134E74A72B02BED62851EB1823 /* SerialExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SerialExecutor.h; path = folly/executors/SerialExecutor.h; sourceTree = ""; }; 11F3B1FB18F5565F8113DB73ACB4066F /* ExceptionWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionWrapper.h; path = folly/ExceptionWrapper.h; sourceTree = ""; }; - 11FBE174F53CE8FC3F580B4B6C3A0CAD /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; + 11F4D1232243030A9C086F45393EDA6A /* RCTJSInvokerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSInvokerModule.h; sourceTree = ""; }; + 120C448D23A1D2880C0A29639A4D28E3 /* EXPermissions.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.debug.xcconfig; sourceTree = ""; }; 12105428025D405B7878360FB13F8519 /* json.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json.h; path = folly/json.h; sourceTree = ""; }; + 1215CA56CB2009D56FA56A842354661A /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; 12165C66AD4A3FAE0B695344667405C6 /* MallocImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MallocImpl.h; path = folly/memory/detail/MallocImpl.h; sourceTree = ""; }; + 121B1E4C86111FD774FABC537B3F82D9 /* ReactNativeART.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeART.release.xcconfig; sourceTree = ""; }; + 121B8E3C90C259A8DBB49E51ECF028F2 /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; 121C082C44622369A24320E0608F7EBA /* ko.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ko.lproj; path = "Objective-C/TOCropViewController/Resources/ko.lproj"; sourceTree = ""; }; - 122737EA5AE2080E027AFC52CB8BAEEF /* RCTConvert+FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FIROptions.h"; path = "ios/RNFBApp/RCTConvert+FIROptions.h"; sourceTree = ""; }; - 12300C8AB123C4788168C1E3F9C417D6 /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; - 12336EB7EEB07BAA8D0DC7AAD14A3FA1 /* RNCMaskedView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCMaskedView.debug.xcconfig; sourceTree = ""; }; - 12372EC8D24C793A3E820C2F3DA1D714 /* RNNotificationEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationEventHandler.h; path = RNNotifications/RNNotificationEventHandler.h; sourceTree = ""; }; - 1288C2CD3F6B96DC5C50D947B0C05D0C /* BridgeNativeModulePerfLogger.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = BridgeNativeModulePerfLogger.cpp; path = reactperflogger/BridgeNativeModulePerfLogger.cpp; sourceTree = ""; }; + 12287278B9CB792002A71AB641016514 /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = ""; }; + 124EB0925EE1CAB42EC4BBD5C77ED793 /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.h; sourceTree = ""; }; + 1275FBF2FBD9C7995AA9987864CA1174 /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = ""; }; + 12765E6C0FE3B8B56C136DB523CAC8DA /* EXAppleAuthenticationMappings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationMappings.m; path = EXAppleAuthentication/EXAppleAuthenticationMappings.m; sourceTree = ""; }; 12899CF7B0A4C003456EED43A6AC7EAB /* sorted_vector_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sorted_vector_types.h; path = folly/sorted_vector_types.h; sourceTree = ""; }; - 1299993311FE06E08B696339C865A54A /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist"; sourceTree = ""; }; + 129BF999B117C84BAB3A73C84ADAD27B /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; + 129E379454FA7C014949A5AB2C96C229 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 12B923F05BC76AE6BE7912614DF2CFC6 /* ConcurrentBitSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentBitSet.h; path = folly/ConcurrentBitSet.h; sourceTree = ""; }; + 12BC7C47A9E234FC866C54A93E6763D3 /* BugsnagLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagLogger.h; sourceTree = ""; }; 12BEA7F7C4B73D1E36CD768C9F3B9301 /* GDTCORTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransformer.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransformer.m; sourceTree = ""; }; - 12EC2264621AAF733A18C9CFA87D4513 /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = ""; }; - 12FE9D43DD733439B93B4E2D0EA81FFD /* rn-fetch-blob.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.release.xcconfig"; sourceTree = ""; }; + 12F1146556FC034F2D1F79B76D12016C /* react-native-notifications-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-notifications-prefix.pch"; sourceTree = ""; }; 130335B611EDD6AFF8824641E06138D6 /* libEXVideoThumbnails.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXVideoThumbnails.a; path = libEXVideoThumbnails.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 130BE0521B5462BB0F762AE5857DABCB /* React.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.release.xcconfig; sourceTree = ""; }; + 13204C62D0A43D74E6AA57C8A4CDD9AC /* REAOperatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAOperatorNode.m; sourceTree = ""; }; 1336466C47E2463B99D3F5FB5F02507F /* SSLSessionImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLSessionImpl.h; path = folly/ssl/detail/SSLSessionImpl.h; sourceTree = ""; }; 13401F097F69DE0383C3CAFD7C8099BB /* Flipper-Folly-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-Folly-prefix.pch"; sourceTree = ""; }; + 1349DA30B40712C2BCB6BB6A3EEFFB69 /* EXVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoView.h; sourceTree = ""; }; 134DA3EF0958741484AC765F914EC417 /* OpenSSL.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OpenSSL.cpp; path = folly/portability/OpenSSL.cpp; sourceTree = ""; }; - 135895A7201CC52C36384057684FB856 /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = React/CoreModules/RCTWebSocketModule.h; sourceTree = ""; }; - 139918A0AE10661514932B9C5D50DA23 /* BSG_KSSystemInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfo.h; sourceTree = ""; }; 13A70D257EB606DB7DAE4D4BDCEDE0A7 /* RangeSse42.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RangeSse42.h; path = folly/detail/RangeSse42.h; sourceTree = ""; }; 13B41F4359159EB8EC87945C0C5A7C17 /* FireForgetThroughputTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FireForgetThroughputTcp.cpp; path = rsocket/benchmarks/FireForgetThroughputTcp.cpp; sourceTree = ""; }; + 13B7AA56ECC8D13805741C6ACCC28520 /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; 13BE33B0C55DC851925EE31F13B66FAE /* PTChannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTChannel.h; path = peertalk/PTChannel.h; sourceTree = ""; }; 13C689EA90FD217368087E73B44A992F /* SDWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWeakProxy.h; path = SDWebImage/Private/SDWeakProxy.h; sourceTree = ""; }; 13C8C8B254851998F9289F71229B28A2 /* libFirebaseInstallations.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseInstallations.a; path = libFirebaseInstallations.a; sourceTree = BUILT_PRODUCTS_DIR; }; 13D532F8576952B1731BD9017ABEF549 /* FIRInstallationsStatus.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStatus.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsStatus.h; sourceTree = ""; }; 13F667B2253495881B8BBB79ED397290 /* FBLPromiseError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromiseError.m; path = Sources/FBLPromises/FBLPromiseError.m; sourceTree = ""; }; + 1407654FC107F76BB7A3E5B2DD9081B5 /* EXVideoThumbnails.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXVideoThumbnails.debug.xcconfig; sourceTree = ""; }; 140AAC91E8ED0B016C8DC8C5131FF746 /* F14IntrinsicsAvailability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14IntrinsicsAvailability.h; path = folly/container/detail/F14IntrinsicsAvailability.h; sourceTree = ""; }; + 140BF54141B2674E32CB6707116B3D52 /* BSG_KSCrashReportVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportVersion.h; sourceTree = ""; }; 141EF977202A47725867A9CCA553B222 /* OpenSSLUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLUtils.h; path = folly/io/async/ssl/OpenSSLUtils.h; sourceTree = ""; }; - 1425036E1E70E9B6A854C3FF2021A238 /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.h; sourceTree = ""; }; 1426D4C7456CF932B66DD1B74A1CC592 /* lossless_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_mips_dsp_r2.c; path = src/dsp/lossless_mips_dsp_r2.c; sourceTree = ""; }; - 142D0B26F6F769E8C337BCBFCC795EEC /* RCTAnimationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationPlugins.h; path = Libraries/NativeAnimation/RCTAnimationPlugins.h; sourceTree = ""; }; 142DDC0602F382620626934657D3292E /* cached-powers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cached-powers.h"; path = "double-conversion/cached-powers.h"; sourceTree = ""; }; - 143E389C23923EC6E2542B364C169BF0 /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; + 14432B86EFD027ED726F147359E42916 /* React-callinvoker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-callinvoker.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 144360F619B1568C4D6288B0C0FB58B8 /* RNRootViewGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRootViewGestureRecognizer.h; path = ios/RNRootViewGestureRecognizer.h; sourceTree = ""; }; 14451A0D609106DE62DD81E5F0B87427 /* SharedPromise-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SharedPromise-inl.h"; path = "folly/futures/SharedPromise-inl.h"; sourceTree = ""; }; 144B46E1E0D1B4E0404E9472E9B7ED9B /* Pretty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Pretty.h; path = folly/lang/Pretty.h; sourceTree = ""; }; 144FCDDA6C4928F6C6EC8F1864CEE384 /* ThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadPoolExecutor.h; path = folly/executors/ThreadPoolExecutor.h; sourceTree = ""; }; 14558547256AFB38419983E2662EBC1E /* GDTCORUploadPackage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadPackage.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadPackage.m; sourceTree = ""; }; 14562566D7E2D611A5AEB28A2033E764 /* FormatArg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FormatArg.h; path = folly/FormatArg.h; sourceTree = ""; }; 145B5155DFCA70A7E41B34A4765E2C92 /* FIRCLSFileManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFileManager.h; path = Crashlytics/Crashlytics/Models/FIRCLSFileManager.h; sourceTree = ""; }; + 146111A52CB56AEC590C1C250424F771 /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; 147256C1CA6ECB603F9BCC7C65C426CE /* Core.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Core.h; path = folly/futures/detail/Core.h; sourceTree = ""; }; 1480E96A65A01446E22091CDD5C48855 /* FIRCLSExecutionIdentifierModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSExecutionIdentifierModel.h; path = Crashlytics/Crashlytics/Models/FIRCLSExecutionIdentifierModel.h; sourceTree = ""; }; 14833B7595C20284FE302A11D245BE8D /* GULKeychainUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainUtils.h; path = GoogleUtilities/Environment/Private/GULKeychainUtils.h; sourceTree = ""; }; 148BD4524563EAE73DE3CA93B337855C /* FIRStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStackFrame.m; path = Crashlytics/Crashlytics/FIRStackFrame.m; sourceTree = ""; }; - 14977B368D2972368DF311C460A6313D /* React-RCTVibration.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.debug.xcconfig"; sourceTree = ""; }; 14A2F9FF0806DF09D8520391D7F71997 /* TimedDrivableExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TimedDrivableExecutor.cpp; path = folly/executors/TimedDrivableExecutor.cpp; sourceTree = ""; }; + 14AA7A8B170D786D4D560A3331126720 /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = experiments.cpp; sourceTree = ""; }; 14B414E138B4DADDE37A307B4CF155EB /* MemoryResource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryResource.h; path = folly/memory/MemoryResource.h; sourceTree = ""; }; 14BDA591D15263674DB406B72E60712C /* bignum-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "bignum-dtoa.cc"; path = "double-conversion/bignum-dtoa.cc"; sourceTree = ""; }; 14C7ED7A9BB3E80BD1FFA1CB82001C31 /* SingletonRelaxedCounter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonRelaxedCounter.h; path = folly/experimental/SingletonRelaxedCounter.h; sourceTree = ""; }; - 14CC7AAC6BA8221BD1E3E4B79172FC78 /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; - 14E2DBF174F33BB0BA591C5CA4ACB46F /* RCTSettingsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSettingsManager.mm; sourceTree = ""; }; - 1509EBB808BBE07981CA661B356CAB7E /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 14CE686504FDFCC39519FA7D086BA1ED /* Ionicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Ionicons.ttf; path = Fonts/Ionicons.ttf; sourceTree = ""; }; + 14E8FC1E63C33E1D4CFF79F2255BE340 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 14F6318BFB1F3F710D6A8DB51F413F84 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 1525B451ACD76144D005B1730EFC66B9 /* Hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hash.h; path = folly/hash/Hash.h; sourceTree = ""; }; 15286ADE9046ACD7BB6938AB34C77DDC /* openssl_md5_locl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = openssl_md5_locl.h; path = Core/aes/openssl/openssl_md5_locl.h; sourceTree = ""; }; - 1529F8BCFF02F661EC77B0909BE42DF2 /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = ""; }; 153D793297698FE9116592E393746B99 /* SKMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKMacros.h; path = iOS/FlipperKit/SKMacros.h; sourceTree = ""; }; 1550D8CE86BCF720B49B92E8B081274F /* Flipper-Glog-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-Glog-prefix.pch"; sourceTree = ""; }; 1552C077ACD09853FBB69E829A0ACB17 /* Hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hash.h; path = folly/Hash.h; sourceTree = ""; }; - 1565FD382D91781228BB1CC2768FA506 /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; + 1555779B195006E8667B063A0B6672BF /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; + 15565FCA1BC916623C1F71E4B5EDA377 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; 156FA2E86BCB36706E2E70639A7A49EE /* HHWheelTimer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = HHWheelTimer.cpp; path = folly/io/async/HHWheelTimer.cpp; sourceTree = ""; }; + 157D66F636D88398C690DA2EA50D5955 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; 158853D4DAF24639C36E51C1EB0294AF /* dec_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse41.c; path = src/dsp/dec_sse41.c; sourceTree = ""; }; + 1588731ED24E7943B390F4C87491A950 /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = ios/QBImagePicker/QBImagePicker/ja.lproj; sourceTree = ""; }; + 158B757C9F26DE64E393CA25BBBA63D7 /* Pods-defaults-Rocket.Chat.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-defaults-Rocket.Chat.debug.xcconfig"; sourceTree = ""; }; 15912309AA610251329D74FA111DE5CA /* libRNLocalize.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNLocalize.a; path = libRNLocalize.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 15938AB08456A38D35D6BB9136FBA93A /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; - 15D37FC8F85A61F540E029BC2B5A4EF9 /* react-native-mmkv-storage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-mmkv-storage-prefix.pch"; sourceTree = ""; }; + 1594760C53DFE83CD8366904004212D3 /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; + 15C06E8BC22CE33F1AC579FF3EED5F01 /* UMFaceDetectorInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.release.xcconfig; sourceTree = ""; }; + 15D83FE08FADE0344CE2715E708B14D5 /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = ""; }; + 15EA616B395326914B4C56438DE7AC06 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 15F390A298B8A009BF341A8EED660992 /* EXResumablesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXResumablesManager.h; sourceTree = ""; }; 160095035BD762C24128DBBFF7451196 /* SDInternalMacros.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDInternalMacros.m; path = SDWebImage/Private/SDInternalMacros.m; sourceTree = ""; }; - 1605B6FD583E67D1BEE24E6F9603B2C2 /* React-RCTActionSheet.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.debug.xcconfig"; sourceTree = ""; }; - 16114C81CC8E0A116B82A4C3894454A8 /* BSG_KSCrashSentry_NSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_NSException.h; sourceTree = ""; }; - 161F522101C06DF780455CE87AE079A5 /* BSG_KSCrashReportStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashReportStore.m; sourceTree = ""; }; 162726B5507F0F382038F5353E150133 /* MMKV_OSX.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MMKV_OSX.cpp; path = Core/MMKV_OSX.cpp; sourceTree = ""; }; - 16354A3A2E4DC170EAD17BDB9E78058C /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; - 1636D8949DE4789E5AB30988C7FED07D /* RNNotificationEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationEventHandler.m; path = RNNotifications/RNNotificationEventHandler.m; sourceTree = ""; }; - 166DC0AF1DADC78C02FA2D58071387B5 /* RNCAppearanceProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProvider.m; path = ios/Appearance/RNCAppearanceProvider.m; sourceTree = ""; }; 16740E5B21418D74BF0EB7B99959E337 /* upsampling.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling.c; path = src/dsp/upsampling.c; sourceTree = ""; }; - 1674806458AEB6C3A25F850188F291C5 /* RCTFileRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFileRequestHandler.mm; sourceTree = ""; }; 167F8EE3DCF2AB9B35CD71207B01ED5C /* CacheLocality.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CacheLocality.cpp; path = folly/concurrency/CacheLocality.cpp; sourceTree = ""; }; - 1698515CD39D5A53E60FAA9E67334E4A /* BSG_KSCrashReportWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportWriter.h; sourceTree = ""; }; - 169F2CBDD4ABBC6B9C928FAC80A5F106 /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 168E250D320FDE86CCB24E146A6487D0 /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; 16A223CEA878D93518E9E43F6E112732 /* signalhandler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = signalhandler.cc; path = src/signalhandler.cc; sourceTree = ""; }; + 16A67BBF51FE99EC701E5F6893B3DBFF /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; 16AB2D3191B6E98E712415EDA749A526 /* FrameProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameProcessor.h; path = rsocket/framing/FrameProcessor.h; sourceTree = ""; }; 16C56A67498F67A0A0D04C27463CCFCB /* stl_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_logging.h; path = src/glog/stl_logging.h; sourceTree = ""; }; - 16C9015BD0A0B74CEA6D43AF89FCD04F /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; - 16CEEBDE7A7E39E101B6CC746BC9FF6C /* TurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TurboModule.h; sourceTree = ""; }; - 16E00F5ECD281A63DC53A6EC3228722E /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; - 16E2A7ADA0EBFE30CC6290D890A31F92 /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; + 16CE48BF7953C0C2AE3725FB0BA0A62C /* Inspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Inspector.h; sourceTree = ""; }; + 16CE7502F04D98AC3B1C93CFAA52DBDA /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 16D3F3AAD051C0568C7766CD69007D0A /* RNFBMeta.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBMeta.m; path = ios/RNFBApp/RNFBMeta.m; sourceTree = ""; }; + 16E471A27712CE9EB296524FB0C8DBB3 /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; 16F0EA6482987F1240C9EF62BC419BB1 /* FIRCLSAsyncOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSAsyncOperation.m; path = Crashlytics/Crashlytics/Operations/FIRCLSAsyncOperation.m; sourceTree = ""; }; - 170F73120ABD10627FB4ED4DA9672A2B /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = ""; }; - 171AEE9D422B4CED03DF8E467AAA45CD /* KeyCommands-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeyCommands-prefix.pch"; sourceTree = ""; }; 171E2F7335FA3822401B90809CDF31D2 /* FIRInstallationsItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsItem.m; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.m; sourceTree = ""; }; - 173016ACD0D682A252A2E1BC67C390D4 /* RCTDevLoadingViewSetEnabled.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingViewSetEnabled.h; sourceTree = ""; }; 17328D43CB20BD5A96214AB3CF83680C /* JitsiMeet.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JitsiMeet.framework; path = Frameworks/JitsiMeet.framework; sourceTree = ""; }; - 1755BCB66039C137A85759A7F94BCBA6 /* Pods-defaults-Rocket.Chat-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-defaults-Rocket.Chat-dummy.m"; sourceTree = ""; }; + 1742A79C0C3E90899FB5F9FBA7D59CC0 /* RCTFileReaderModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFileReaderModule.mm; sourceTree = ""; }; + 174DD3D3F2A5FB69D295E69B39EFB6B5 /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 1756CBAB34D943C6297BED0A55482AA7 /* SKHighlightOverlay.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKHighlightOverlay.mm; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitHighlightOverlay/SKHighlightOverlay.mm; sourceTree = ""; }; - 17847E24C5904581B8BEF96F70DFCFF0 /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; + 1758A6F4E7F4EDB8C7347927B69C4110 /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; + 17845CAD6F547C1EDF098F0E862265FE /* react-native-slider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-slider-dummy.m"; sourceTree = ""; }; + 1786B30D3A2D0FDA491DA441AA95B05F /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; + 1789278C6FEE726423261FA57764C9A1 /* Pods-defaults-NotificationService-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-defaults-NotificationService-resources.sh"; sourceTree = ""; }; 17927E411F9A2BFFE622A58AC94ABD1E /* FIRCLSNetworkResponseHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSNetworkResponseHandler.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSNetworkResponseHandler.m; sourceTree = ""; }; + 17B2D7D6EB299F30ECB668D48EFFC693 /* AsyncPauseState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AsyncPauseState.h; sourceTree = ""; }; 17C0CD6ADA9BC193B0782803DC4943F7 /* FIRCLSReportManager_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportManager_Private.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportManager_Private.h; sourceTree = ""; }; + 17C4A2EBA9F786833C9E659FC731CFD7 /* RNFetchBlobConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobConst.h; path = ios/RNFetchBlobConst.h; sourceTree = ""; }; 17D005E8CCCDFF81E0DEBB9090DEFCDC /* FirebaseAnalytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.debug.xcconfig; sourceTree = ""; }; 17EAE7495E58442FC2FD7773A34CB238 /* CPortability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CPortability.h; path = folly/CPortability.h; sourceTree = ""; }; - 17FB9D94F5FF23680996BFC5CF8F1EC2 /* RNDateTimePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePickerManager.m; path = ios/RNDateTimePickerManager.m; sourceTree = ""; }; + 17FB77BE527E85166F4699810C508556 /* Thread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Thread.h; sourceTree = ""; }; 180D1B18482573ABC89BFE48788B6AAC /* BaselinesTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = BaselinesTcp.cpp; path = rsocket/benchmarks/BaselinesTcp.cpp; sourceTree = ""; }; 181AF9851716867B9D19B12D9C435955 /* GULAppDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULAppDelegateSwizzler_Private.h; sourceTree = ""; }; 181BB8553F5626DBE6B2445592F321BF /* lossless_enc_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_mips_dsp_r2.c; path = src/dsp/lossless_enc_mips_dsp_r2.c; sourceTree = ""; }; - 181C97ECC59572541F253F5C42B03FD1 /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; 182A4AD9ECC2018EF67F3EC8BF813BBD /* File-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "File-inl.h"; path = "folly/gen/File-inl.h"; sourceTree = ""; }; - 183570369A4328F7B92F7F393713225F /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; 183DEFA82BC9DB9C9B0C37345C7E6763 /* GFlags.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GFlags.h; path = folly/portability/GFlags.h; sourceTree = ""; }; 1848CF67F1E051B439DED093BDF53A20 /* NSImage+Compatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+Compatibility.h"; path = "SDWebImage/Core/NSImage+Compatibility.h"; sourceTree = ""; }; - 1852E63B39A60C32242DC51BA5E79C12 /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = ""; }; - 185366F633C28434DC61E24706AAFFC3 /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; + 1849D9626394B1D952A744349A6634B7 /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = ""; }; 18571F19C03D63DC9FA1F9030B6EA0B9 /* FIRInstallationsAuthTokenResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAuthTokenResult.m; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResult.m; sourceTree = ""; }; 1857653120D5622FD9F39A9D005F8B7E /* AsyncUDPSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncUDPSocket.h; path = folly/io/async/AsyncUDPSocket.h; sourceTree = ""; }; 1859134AD65C65ED5257C915403A0415 /* IntrusiveList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IntrusiveList.h; path = folly/IntrusiveList.h; sourceTree = ""; }; - 186CE65727441187F17B59BDF3987169 /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = ""; }; 186F2C22A26007A725E79335C5E6BC62 /* UIView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCache.h"; path = "SDWebImage/Core/UIView+WebCache.h"; sourceTree = ""; }; - 187BDA455038E811AA40EF65B502C8FF /* RCTKeyCommandConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandConstants.h; path = ios/KeyCommands/RCTKeyCommandConstants.h; sourceTree = ""; }; - 188164D0CE75DA8B913C150432BA8CC2 /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = ""; }; + 1886BD93D7B131F8DBADECC1AA9B654F /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; 1892B79315556CD65E27E57D81FA5045 /* fr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fr.lproj; path = "Objective-C/TOCropViewController/Resources/fr.lproj"; sourceTree = ""; }; - 18932164C6B3C1F75CA390CF9F1D4F16 /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = ""; }; - 1897A301B36279D4D8AE2201B6A5DEC7 /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRedBox.h; path = React/CoreModules/RCTRedBox.h; sourceTree = ""; }; 18991E23AA99F50B64E25A247D7A6330 /* Checksum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Checksum.h; path = folly/hash/Checksum.h; sourceTree = ""; }; + 1899CDD77970FCB7A8B18F971C4DD188 /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = ""; }; 189DE0E4F9AFDB2E31C4C4257EE2E2BF /* GDTCORClock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORClock.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORClock.m; sourceTree = ""; }; - 18A89B3F6A55C38801D3BAAB8BFD0D9C /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; 18ADCDBC13F2746435E16CDFE483C6DD /* Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Async.h; path = folly/executors/Async.h; sourceTree = ""; }; - 18AEE788948D0F35540FB577C7FDECC6 /* RCTNativeAnimatedModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeAnimatedModule.mm; sourceTree = ""; }; 18B7462B3C061DE486F2ECD2DBB0EFC8 /* Barrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Barrier.h; path = folly/futures/Barrier.h; sourceTree = ""; }; 18BD1B7E92E88CC14EC8DE9514733A18 /* ChannelRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ChannelRequester.cpp; path = rsocket/statemachine/ChannelRequester.cpp; sourceTree = ""; }; + 18BE84982E8F142FE9CDCC750B190D31 /* RCTConvert+FFFastImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FFFastImage.m"; path = "ios/FastImage/RCTConvert+FFFastImage.m"; sourceTree = ""; }; 18C569751F640461AACE7DB4F9B16D40 /* SingleWriterFixedHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingleWriterFixedHashMap.h; path = folly/experimental/SingleWriterFixedHashMap.h; sourceTree = ""; }; 18D0B1E13C69654196028DD6EDCC3452 /* libRNFBApp.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFBApp.a; path = libRNFBApp.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 18DC6B69AA004E9F3BD7447EBC2AF9F1 /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; 18E4B2F4BB2F7FF67DB269B56E4CCDF0 /* IPAddressV4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressV4.h; path = folly/IPAddressV4.h; sourceTree = ""; }; - 190CE181BA87CD4A25DAAF844AD78673 /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.h; sourceTree = ""; }; - 193197E3F1750B82A4A2D256C0450725 /* RNConfigReader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNConfigReader-dummy.m"; sourceTree = ""; }; - 193445A0F9977B2A7F9DDCD56A8EA64E /* react-native-jitsi-meet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-jitsi-meet-prefix.pch"; sourceTree = ""; }; + 18EBC9E9AA518CA89C3B0494781387BA /* react-native-background-timer.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.debug.xcconfig"; sourceTree = ""; }; + 18F0FA4FDA122C17C4DCBEB2AA25B85E /* RCTSurfaceProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceProtocol.h; sourceTree = ""; }; + 18FFB6B8E3B72F4BA864DD9530CC7A6F /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; + 193324800AD3DBFE52C49B3E1428D6D4 /* RCTDisplayWeakRefreshable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayWeakRefreshable.m; sourceTree = ""; }; 1936453FF2A7E3A13063C4917C4D5598 /* libRCT-Folly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libRCT-Folly.a"; path = "libRCT-Folly.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 1969D4A64C9DBF508235F802293B8EBD /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = String.cpp; path = folly/String.cpp; sourceTree = ""; }; 19778043EF9C8D5381A4CDCD7EABD478 /* signal.c */ = {isa = PBXFileReference; includeInIndex = 1; path = signal.c; sourceTree = ""; }; + 199B4D9418A060D8E6D101491598E0C2 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; 199D2E3FA4093CD5CBD0F97D0EE70B56 /* FIRCLSUnwind_x86.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUnwind_x86.h; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_x86.h; sourceTree = ""; }; - 19B8A2A9818EEDF91CCBE35B0BDB5F50 /* Rsa.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Rsa.m; sourceTree = ""; }; 19BB8FE3084DED2BBFFA385ECA29B2E6 /* MMKV.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MMKV.release.xcconfig; sourceTree = ""; }; - 19BCF8673E3B945C77338B676EFD504C /* RCTImageStoreManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageStoreManager.mm; sourceTree = ""; }; - 19CC548808E20874D79C5F6D3ADA9594 /* BSG_KSCrashC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashC.h; sourceTree = ""; }; + 19C40F199DC8A09E224DB48995827F5E /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = ""; }; 19D8F967D64197E724B3530AC7D14799 /* kqueue.c */ = {isa = PBXFileReference; includeInIndex = 1; path = kqueue.c; sourceTree = ""; }; - 1A0D8220010F4F4C83B5717B055D0DC1 /* BugsnagSessionTrackingApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingApiClient.m; sourceTree = ""; }; - 1A10BAAA40C57253F593D49C3AD3E930 /* REAClockNodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAClockNodes.m; sourceTree = ""; }; + 1A1F19A586D4C0D63EA88B6ECDC690E2 /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; 1A2F80DEFE681CACE159542DB9E6A231 /* Benchmark.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Benchmark.cpp; path = folly/Benchmark.cpp; sourceTree = ""; }; 1A4213B6882D8C685BE04A8787BC1E6A /* Codel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Codel.h; path = folly/executors/Codel.h; sourceTree = ""; }; 1A54E82E346C84E98425FADAF6834BFD /* TcpDuplexConnection.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpDuplexConnection.cpp; path = rsocket/transports/tcp/TcpDuplexConnection.cpp; sourceTree = ""; }; + 1A5D76D484B71B551E3699390AAF7DE1 /* BugsnagReactNative.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.debug.xcconfig; sourceTree = ""; }; 1A70B7A56F68D3486558EAE18A64C6DE /* StreamRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamRequester.h; path = rsocket/statemachine/StreamRequester.h; sourceTree = ""; }; 1A749AD6FFFE36A24DFDAD2619EB68F7 /* FBLPromise+Delay.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Delay.m"; path = "Sources/FBLPromises/FBLPromise+Delay.m"; sourceTree = ""; }; - 1A86FA87365372CC6DA358E1D7AA4E89 /* NSData+EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+EXFileSystem.h"; path = "EXFileSystem/NSData+EXFileSystem.h"; sourceTree = ""; }; + 1A7CE26C0CA1D4575095C3AD73588D7B /* RCTNetworkPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkPlugins.h; path = Libraries/Network/RCTNetworkPlugins.h; sourceTree = ""; }; 1A8F7FA2623FB4162CFFE9AC380521F2 /* FIRHeartbeatInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRHeartbeatInfo.m; path = FirebaseCore/Sources/FIRHeartbeatInfo.m; sourceTree = ""; }; - 1A944C7B5220B25C71845EE68969C16A /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; - 1AAB4A336F5A139D39EACC06BB3355F3 /* RNNotificationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationUtils.h; path = RNNotifications/RNNotificationUtils.h; sourceTree = ""; }; 1AB2709DA658997009EE4C33507AAC44 /* FirebaseCrashlytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCrashlytics.release.xcconfig; sourceTree = ""; }; 1AD786D1FFEBD9B081A0830735573F7E /* FIRCLSRecordApplication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordApplication.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordApplication.m; sourceTree = ""; }; 1AEEDE00F48399B38ECC97FB2A33A46A /* FIRCLSInstallIdentifierModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSInstallIdentifierModel.h; path = Crashlytics/Crashlytics/Models/FIRCLSInstallIdentifierModel.h; sourceTree = ""; }; - 1AEF49ACB5EF2D4ABA32ECFCB4869D26 /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = ""; }; - 1AF174DE0B9C8BBF130307FE01ABE32F /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; + 1AF4330BD6DD0F1AAC8EAA362E56F1F4 /* BSG_KSCrashSentry_MachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_MachException.h; sourceTree = ""; }; 1AF8240480B74734E9ACF9DCC64540B5 /* Util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Util.h; path = folly/container/detail/Util.h; sourceTree = ""; }; 1AFBC8012C03C0758C3004F0FFCDDE3B /* Cursor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Cursor.cpp; path = folly/io/Cursor.cpp; sourceTree = ""; }; 1B02821B6E81E20C9CC6052F61C621C4 /* GULLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerLevel.h; path = GoogleUtilities/Logger/Public/GULLoggerLevel.h; sourceTree = ""; }; - 1B1C9F71987AC60FCAFC42E3641B09FF /* JSITracing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSITracing.h; sourceTree = ""; }; 1B1D16C4FA2EE254799289AADD10A332 /* GDTCORAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORAssert.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORAssert.m; sourceTree = ""; }; - 1B21F32BA07D0FD9583EA741D25ED58E /* UMAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppLoaderProvider.m; path = UMAppLoader/UMAppLoaderProvider.m; sourceTree = ""; }; - 1B2891362EEAF617C7B3E48B7AA33E1B /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; + 1B218D186F54EF65DEED555A468AC649 /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; + 1B21BCAB8E12847B8E6F62ADC277BB13 /* RCTUtilsUIOverride.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtilsUIOverride.h; sourceTree = ""; }; + 1B354C853DA1F53692CF84A3B1ABC877 /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = ""; }; + 1B3F7EED940B46ECFC021D632EC4EE86 /* RCTLogBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLogBox.mm; sourceTree = ""; }; + 1B5F6CEE5D7CFF670C9C2F1FC8621A17 /* RNDateTimePicker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDateTimePicker.release.xcconfig; sourceTree = ""; }; 1B6184996055D56D26C8211166775FE1 /* FlipperKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FlipperKit-dummy.m"; sourceTree = ""; }; 1B66C0BC893BAE6AF6FA76CBE2469AA8 /* GULMutableDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULMutableDictionary.m; path = GoogleUtilities/Network/GULMutableDictionary.m; sourceTree = ""; }; + 1B7A5687EC3FECBF2152FC845F27CF0C /* RCTVibration.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTVibration.mm; sourceTree = ""; }; 1B7B1EAFBA5C026A9F7DA41C1B308F5A /* Optional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Optional.h; path = folly/Optional.h; sourceTree = ""; }; 1B83C5B505E0B8D0D8572D5D9ECEF9D1 /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = SDWebImage/Core/SDWebImageDownloader.m; sourceTree = ""; }; 1B86A59900D99654F5C7B2EBC25EA41E /* SDWebImageCacheSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheSerializer.h; path = SDWebImage/Core/SDWebImageCacheSerializer.h; sourceTree = ""; }; - 1B928B8F75FD8467EF6D7ED0979DC3C1 /* subscription.md */ = {isa = PBXFileReference; includeInIndex = 1; name = subscription.md; path = docs/subscription.md; sourceTree = ""; }; 1B95CA518AB99C7208289965A486D6FE /* SequencedExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SequencedExecutor.h; path = folly/executors/SequencedExecutor.h; sourceTree = ""; }; 1B95FD1CBD6AAFC3CF3DA514411F74B4 /* Checksum.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Checksum.cpp; path = folly/hash/Checksum.cpp; sourceTree = ""; }; - 1B9BFE7844B1041FF8668DD421BD4957 /* React-RCTText.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.debug.xcconfig"; sourceTree = ""; }; - 1BA5299B024B88BB58761B11E1095029 /* RNNotificationCenterMulticast.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterMulticast.m; path = RNNotifications/RNNotificationCenterMulticast.m; sourceTree = ""; }; + 1B981C23504E6D05D84784151C16C344 /* RNNotificationParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationParser.h; path = RNNotifications/RNNotificationParser.h; sourceTree = ""; }; + 1B9BACB0377CD8C8008AD405848F4D2C /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = CxxNativeModule.cpp; sourceTree = ""; }; 1BB261D6EBB0A06A931BB83D097DB32C /* HardwareConcurrency.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = HardwareConcurrency.cpp; path = folly/system/HardwareConcurrency.cpp; sourceTree = ""; }; 1BBC025510EABED14B092533E2EA14D6 /* ThreadCachedInt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedInt.h; path = folly/ThreadCachedInt.h; sourceTree = ""; }; 1BC2C2D517C3AAECFF85699B7FA6FB09 /* FIRCLSURLSessionConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLSessionConfiguration.m; path = Crashlytics/Crashlytics/FIRCLSURLSession/FIRCLSURLSessionConfiguration.m; sourceTree = ""; }; - 1BC67473A06331BDC8686DC7ECFC9729 /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; 1BCDE75F8D6EB7B2E4AD002DD63895A9 /* GDTCCTPrioritizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTPrioritizer.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTPrioritizer.m; sourceTree = ""; }; + 1BD2D2A94E724B03DE3F8DF09C6C406D /* RNBootSplash.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNBootSplash.release.xcconfig; sourceTree = ""; }; + 1BE007A3B2DCB6601D82C16DCA04FC1C /* RCTCustomInputControllerTemp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomInputControllerTemp.m; sourceTree = ""; }; 1BE2CE95755FD233875DDCC84C917EA0 /* JSONSchema.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSONSchema.h; path = folly/experimental/JSONSchema.h; sourceTree = ""; }; - 1BF04880D3AE121D708597860B2B89A7 /* ObservingInputAccessoryViewTemp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ObservingInputAccessoryViewTemp.m; sourceTree = ""; }; - 1C174DFFB5EBB89E69CB861B5E3CC4B2 /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; 1C1EE646B96355CEC7249BBC052C77EC /* lossless_enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse41.c; path = src/dsp/lossless_enc_sse41.c; sourceTree = ""; }; + 1C363FF244E55F1750F22E78AB8BFCD8 /* rn-extensions-share.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "rn-extensions-share.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 1C4098C080880C9902B332954C09E608 /* EXVideoThumbnails.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXVideoThumbnails.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 1C418CFFC9F39E1A5FC204E52C134F4C /* AsyncTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTransport.h; path = folly/io/async/AsyncTransport.h; sourceTree = ""; }; - 1C4D1AE372E4FC9B337AB2A16356DEE8 /* React-CoreModules.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-CoreModules.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 1C55B76191027707AA39FB793E942FA5 /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; - 1C6FC7D8F1E1F3DF9608C971D2CF5C8C /* RCTTypeSafety.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.debug.xcconfig; sourceTree = ""; }; - 1C7107A992CAB08E5405E3EB1AD0C4DD /* SerialExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = SerialExecutor.cpp; sourceTree = ""; }; - 1C80D9D8E5CF1F2E467EE703052BFB0D /* RNCSafeAreaProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaProvider.h; path = ios/SafeAreaView/RNCSafeAreaProvider.h; sourceTree = ""; }; 1C846DAFD37C35A25F692FCE7C6E93F9 /* muxinternal.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxinternal.c; path = src/mux/muxinternal.c; sourceTree = ""; }; + 1C88629AF7D9C7E7E38F3E17677FC2DC /* RCTAnimationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationPlugins.h; path = Libraries/NativeAnimation/RCTAnimationPlugins.h; sourceTree = ""; }; 1C92285652DE1BEBF56EDE5BBC235C1B /* FBLPromises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromises.h; path = Sources/FBLPromises/include/FBLPromises.h; sourceTree = ""; }; - 1C994F4FA89A2345018D4D4F28B741BB /* RNDateTimePicker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDateTimePicker.release.xcconfig; sourceTree = ""; }; - 1CAB94F5343E60DDEBA8B5150AECF7DC /* BugsnagMetaData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagMetaData.h; sourceTree = ""; }; - 1CB7AC735F132CEDC3BE002987E90B2F /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; 1CD4739532193BEA6F2B46CE2CAC3A2A /* FIRInstallationsHTTPError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsHTTPError.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.h; sourceTree = ""; }; 1CD803A9BEF9283EC2BA36AE359720AB /* EDFThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EDFThreadPoolExecutor.cpp; path = folly/executors/EDFThreadPoolExecutor.cpp; sourceTree = ""; }; 1CDE6771380C768E14FD930E19FBAEFB /* FIRCLSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSLogger.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSLogger.m; sourceTree = ""; }; - 1CDE8084C7A68B06FE7B02019398D952 /* AutoAttachUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AutoAttachUtils.h; sourceTree = ""; }; 1CE60A3BCA8C0C72394A52F3E828C894 /* PriorityUnboundedQueueSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityUnboundedQueueSet.h; path = folly/concurrency/PriorityUnboundedQueueSet.h; sourceTree = ""; }; - 1CEA61F99AC3AB4F84E9BEEC43AF8B8D /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; 1CF6006987F5370C7D44118131A77BA4 /* MoveWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MoveWrapper.h; path = folly/MoveWrapper.h; sourceTree = ""; }; 1D0833EFB29C9DBA18B45BB7E8104330 /* vlog_is_on.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = vlog_is_on.cc; path = src/vlog_is_on.cc; sourceTree = ""; }; 1D0B5D9A2C2A0FC990882F9357818AA7 /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = SDWebImage/Core/SDWebImageCompat.m; sourceTree = ""; }; - 1D17E9422562B9AE40FF349AAE22B990 /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = "jsilib-posix.cpp"; sourceTree = ""; }; - 1D1B0ACE34D52490D575C7CB8F8857E3 /* fr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fr.lproj; path = ios/QBImagePicker/QBImagePicker/fr.lproj; sourceTree = ""; }; - 1D459110A843532B6331795D0BD473C9 /* Yoga-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-umbrella.h"; sourceTree = ""; }; + 1D211DAD656DEB2E2B152DF669D8F780 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 1D4EC3A4E9152127A244D35219F44B64 /* PTUSBHub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTUSBHub.h; path = peertalk/PTUSBHub.h; sourceTree = ""; }; - 1D6B5306D96B23FCD664055914201266 /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; + 1D5E991FA1F0360C7AAA387F45E784D2 /* REATransitionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionManager.h; sourceTree = ""; }; + 1D723EE26569B7CC5274D4FDAAC06E73 /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; 1D887A378298359AE26B8C8F180008B1 /* GMock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMock.h; path = folly/portability/GMock.h; sourceTree = ""; }; - 1D954CAC56BBE0F2A7FB2555D6D0E3E8 /* EXAppleAuthenticationButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationButton.h; path = EXAppleAuthentication/EXAppleAuthenticationButton.h; sourceTree = ""; }; 1DC66AC6FB5802B9BA94177EDB54263D /* libRNCPicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNCPicker.a; path = libRNCPicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 1DE1EF90DC2BBDA0ABA8208EFED815A0 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; 1DF5C4EEFBC2F3A09EB6CB6F3EDA71FD /* FLEXUtility.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FLEXUtility.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXUtility.mm; sourceTree = ""; }; 1DFF3208242ED749C395BE3D2E37E627 /* FIRCLSCompoundOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSCompoundOperation.m; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSCompoundOperation.m; sourceTree = ""; }; - 1E0D47826A73E69B50EE035AE0AD8D26 /* EXAppleAuthentication.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppleAuthentication.release.xcconfig; sourceTree = ""; }; 1E1007F4054FC430ED1A198952B47D69 /* FIRCLSReportAdapter_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportAdapter_Private.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSReportAdapter_Private.h; sourceTree = ""; }; - 1E20DE55FBDC168CFCAC3481AAE0AE96 /* ARTGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTGroup.h; path = ios/ARTGroup.h; sourceTree = ""; }; - 1E2572FDC01A536DEB900645D6705743 /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; 1E3906B67AE280892E16D218B31CE65D /* json.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json.cpp; path = folly/json.cpp; sourceTree = ""; }; 1E39C777BCB1CBEC757CF7DB20CD46B3 /* FIRCLSContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSContext.h; path = Crashlytics/Crashlytics/Components/FIRCLSContext.h; sourceTree = ""; }; 1E4230BE8F440376E8C2056CE10932FB /* FIRCLSContext.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSContext.m; path = Crashlytics/Crashlytics/Components/FIRCLSContext.m; sourceTree = ""; }; - 1E584945219F2EB096D01C32679825BA /* RCTConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConstants.h; sourceTree = ""; }; 1E5C1EF5ACFAEA6C34BD6D5DEDC3FD68 /* FlipperDiagnosticsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperDiagnosticsViewController.h; path = iOS/FlipperKit/FlipperDiagnosticsViewController.h; sourceTree = ""; }; - 1E6F67CA2E68EFFC32D7EE11D61642A2 /* RootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RootView.m; path = ios/RootView.m; sourceTree = ""; }; - 1E738D6AF6390CC87F29C7E097C88731 /* react-native-document-picker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-document-picker-prefix.pch"; sourceTree = ""; }; + 1E688FE81B06A10237ADB57140A2DC8C /* RNGestureHandlerDirection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerDirection.h; path = ios/RNGestureHandlerDirection.h; sourceTree = ""; }; 1E7A67F3728F9137FBCE4D5B6613BAEE /* Util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Util.h; path = folly/container/detail/Util.h; sourceTree = ""; }; + 1E8378298D5B969F8DE52819062D87F2 /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = ""; }; 1E89B6B8FDB288DDFFC2F6F07006D9FA /* Phase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Phase.h; path = folly/init/Phase.h; sourceTree = ""; }; 1EA1B57C073AC14B20B5E5905D1131EA /* CodedInputDataCrypt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CodedInputDataCrypt.h; path = Core/CodedInputDataCrypt.h; sourceTree = ""; }; - 1EA38016D925A891156C2CD4F49C291C /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; + 1EAEEC68C0C4EF5223271B9D61A19D6F /* ARTTextManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTTextManager.m; sourceTree = ""; }; 1EB3BCD632748D1750199C21F0F1FFF8 /* SDAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImage.m; path = SDWebImage/Core/SDAnimatedImage.m; sourceTree = ""; }; - 1EB50F3330ECA296E55E98523B523E7E /* ARTGroupManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTGroupManager.m; sourceTree = ""; }; - 1EBAA836C4E35678DAB65BA34B873FF7 /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; 1EC02292322F492419329A9C87450E9F /* GoogleDataTransport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransport-dummy.m"; sourceTree = ""; }; 1EC50934E3A2BC5FF287395B8A34E26E /* SerialExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SerialExecutor.cpp; path = folly/executors/SerialExecutor.cpp; sourceTree = ""; }; 1EC80EEA530279E219DA9C2BAFC44698 /* FIRCLSURLSessionConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionConfiguration.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/FIRCLSURLSessionConfiguration.h; sourceTree = ""; }; + 1ECB98E494D26D3CE6B88FA3164715A5 /* LICENSE.txt */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.txt; sourceTree = ""; }; 1ED1518F9B4D91C7212B1DF24337648F /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Sources/Private/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; - 1ED20F861A8E664E639B42BFF8598BE6 /* RCTConvert+FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FIRApp.h"; path = "ios/RNFBApp/RCTConvert+FIRApp.h"; sourceTree = ""; }; - 1ED578F6EF47354C7C22C4999FEAA42E /* EXConstants.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.debug.xcconfig; sourceTree = ""; }; - 1EEF95A4D33D57DB987173F263D9DC6B /* EXVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoPlayerViewController.m; sourceTree = ""; }; + 1ED60785E613974940745804A80CF521 /* BugsnagFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagFileStore.h; sourceTree = ""; }; + 1EF300043F25CCBF87B4550F45407717 /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = ""; }; 1EF847C047A35D234BA6D2C802DA29CE /* SysUio.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysUio.cpp; path = folly/portability/SysUio.cpp; sourceTree = ""; }; 1EFAA1EC8ABC4B195F6D05DB2149CC0A /* SocketFastOpen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketFastOpen.h; path = folly/detail/SocketFastOpen.h; sourceTree = ""; }; - 1F027FAF40C0626C6850E1DC593B64CE /* react-native-restart-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-restart-dummy.m"; sourceTree = ""; }; 1F0EE0F7910D4DE8ACCD1C5AA15A07C8 /* CancellationToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CancellationToken.h; path = folly/CancellationToken.h; sourceTree = ""; }; + 1F19CC5C35BF909ABD4BC370AB26FF49 /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; 1F21DE85C6358409AE64C374D0EC91C2 /* Futex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Futex.cpp; path = folly/detail/Futex.cpp; sourceTree = ""; }; + 1F26C9949B8C13255F0D9E2BF80025C9 /* RCTRefreshableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshableProtocol.h; sourceTree = ""; }; 1F27B274B4E3C0B45C501A1018E1EDC8 /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/experimental/Bits.h; sourceTree = ""; }; 1F2C767F744E3778FCAA39E128F8FBF0 /* HHWheelTimer-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "HHWheelTimer-fwd.h"; path = "folly/io/async/HHWheelTimer-fwd.h"; sourceTree = ""; }; 1F3B6EF4D34085B601971A0296E98F21 /* SharedPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedPromise.h; path = folly/futures/SharedPromise.h; sourceTree = ""; }; 1F52333D428D405656E110A96D202CD1 /* Conv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Conv.h; path = folly/chrono/Conv.h; sourceTree = ""; }; 1F6519389DFA260CF2086318A834088C /* Flipper.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Flipper.release.xcconfig; sourceTree = ""; }; 1F67315E7880925AA24F1ADCA8867579 /* GroupVarint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GroupVarint.h; path = folly/GroupVarint.h; sourceTree = ""; }; - 1FAC915F5B8ABD2A2423DC0F82E68945 /* RNCSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSlider.m; path = ios/RNCSlider.m; sourceTree = ""; }; - 1FCA87F84C5711AAB753CFA47A5DE767 /* BugsnagSessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTracker.h; sourceTree = ""; }; - 1FE679CF0F5DF3FD54DBD39B3FD918DD /* React-Core-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-umbrella.h"; sourceTree = ""; }; + 1FA781FE35B9737A289A6F6DE796B40D /* Color+Interpolation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Color+Interpolation.m"; sourceTree = ""; }; + 1FDBA1499FAC5D38003778610D1DFAC8 /* react-native-mmkv-storage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-mmkv-storage-dummy.m"; sourceTree = ""; }; + 1FE7C4C0DA60ED2DAB89FD5B20737950 /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = ""; }; + 1FEC121FD23728582B9C1DF5E28A277B /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; 202722AA0D229A11350F6DC0F267A0BA /* libRNBootSplash.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNBootSplash.a; path = libRNBootSplash.a; sourceTree = BUILT_PRODUCTS_DIR; }; 2054197C408D33E1C62FD02C30E9B296 /* ru.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ru.lproj; path = "Objective-C/TOCropViewController/Resources/ru.lproj"; sourceTree = ""; }; - 2078F51123D0A8E7CD3B49B2B0AE322E /* RCTDevLoadingViewSetEnabled.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingViewSetEnabled.m; sourceTree = ""; }; + 207111C4FFBA3C94778096073B011DFE /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; + 2071AD3F0AFE230C3414C7848E15AE62 /* RNFBAnalyticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBAnalyticsModule.h; path = ios/RNFBAnalytics/RNFBAnalyticsModule.h; sourceTree = ""; }; + 2082D8C40A78A5CF90F5A370481D0F45 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 208FA81342E93D1EEFE65C0E4EF49F03 /* BugsnagReactNativeEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagReactNativeEmitter.h; sourceTree = ""; }; 209301772AC99034EB96B79FE63096F9 /* Future.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Future.cpp; path = folly/futures/Future.cpp; sourceTree = ""; }; - 20AE4B6BA4246F453C9095E3493F6682 /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; - 20AE78BD34683B7EF4CD578BFBE2766C /* react-native-notifications.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-notifications.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 209F29716FAF00EE6C3A8047B39A532A /* RNForceTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNForceTouchHandler.h; sourceTree = ""; }; + 20A19B867E87A3F15E66D9D7C0D9DE34 /* REAModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REAModule.m; path = ios/REAModule.m; sourceTree = ""; }; + 20A5C47A270AF6321ACE7FF6B82E0F0F /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log.cpp; path = yoga/log.cpp; sourceTree = ""; }; + 20D29AC790079739A24F54BE9F434E94 /* REAStyleNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAStyleNode.m; sourceTree = ""; }; + 20D5664A86207CE161CEA323A6300292 /* RNVectorIcons-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNVectorIcons-prefix.pch"; sourceTree = ""; }; 20DD2DCEC6778419564746DE9727F304 /* MMKV_IO.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKV_IO.h; path = Core/MMKV_IO.h; sourceTree = ""; }; + 20F579A80884E8844CCC2526B455F17A /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; sourceTree = ""; }; 20F6BA2AE366AF4C6F7F93F4965CD616 /* StaticSingletonManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StaticSingletonManager.cpp; path = folly/detail/StaticSingletonManager.cpp; sourceTree = ""; }; 20FB1C46B3A480564D18373330A4363E /* utilities.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utilities.cc; path = src/utilities.cc; sourceTree = ""; }; 20FC4995E75BF49DB27DB50D147EE508 /* PromisesObjC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.debug.xcconfig; sourceTree = ""; }; @@ -9446,679 +9818,648 @@ 211FA11436C5447F1240832819907A3B /* PublisherBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PublisherBase.h; path = rsocket/statemachine/PublisherBase.h; sourceTree = ""; }; 21208A38F5A34E06291195EF0E2908C6 /* FileUtilDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtilDetail.h; path = folly/detail/FileUtilDetail.h; sourceTree = ""; }; 21232C6BB4536A408BDAE2BB5D559AD2 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Sources/Private/FIRLibrary.h; sourceTree = ""; }; - 212CF5559DCE659E3DA99B08DDCD4DF5 /* REATransformNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransformNode.m; sourceTree = ""; }; - 21329FB0685D071C3B316738C047E981 /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; 2137BD408F80C49698ED16257310376A /* ProtocolVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProtocolVersion.h; path = rsocket/framing/ProtocolVersion.h; sourceTree = ""; }; - 21388477A56F552239D112322AC081BB /* RCTConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConstants.m; sourceTree = ""; }; 213D548C6546BE0F12326CB0627B85DF /* AtomicLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicLinkedList.h; path = folly/AtomicLinkedList.h; sourceTree = ""; }; 213E5645948B35C26F6888909095F5A8 /* Varint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Varint.h; path = folly/Varint.h; sourceTree = ""; }; 2151DEF50B4887F6217F1F2C8F83338A /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Sources/Private/FIRComponentType.h; sourceTree = ""; }; 216BEC9C3E14F94116B4559C40897AF2 /* ConcurrentSkipList-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ConcurrentSkipList-inl.h"; path = "folly/ConcurrentSkipList-inl.h"; sourceTree = ""; }; 218686AD810DEA476DDD6BF4C3AFEBFE /* IPAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddress.h; path = folly/IPAddress.h; sourceTree = ""; }; - 21B12993427D7D0C83AAB9B181BEECCE /* LICENCE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENCE; sourceTree = ""; }; - 21B24D49253EBDA6825FFC23C8EC2C70 /* RNNotificationParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationParser.m; path = RNNotifications/RNNotificationParser.m; sourceTree = ""; }; - 21CCA9B0D76F7184E75764ADA893258D /* RCTAes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTAes.m; path = ios/RCTCrypto/RCTAes.m; sourceTree = ""; }; - 21D77BBDDC9574A05806235BE50D4DE8 /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; - 21D81F699EFB0D3D63D07F3C1B01AD12 /* BSG_KSCrashAdvanced.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashAdvanced.h; sourceTree = ""; }; + 218D3AFA6E45B878589B1C721E75F5CA /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; + 219E0924E0BE9C7E6130A5F93A67232A /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; + 21A6053EC3D1830C964689171A8B773B /* QBVideoIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIndicatorView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.m; sourceTree = ""; }; 21DE4820CB09FD8DF00F8B3310FA446F /* Syslog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Syslog.h; path = folly/portability/Syslog.h; sourceTree = ""; }; + 21ECF7AE502B94FDB7E0B8BD862E867A /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; 220361FF3B2778F8F38C2C4DCC5B49FD /* libEXConstants.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXConstants.a; path = libEXConstants.a; sourceTree = BUILT_PRODUCTS_DIR; }; 220D75BBF7829017349A979BCB734ED4 /* FIRCLSProcessReportOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSProcessReportOperation.m; path = Crashlytics/Crashlytics/Operations/Reports/FIRCLSProcessReportOperation.m; sourceTree = ""; }; - 22179B26EFA123B0FB129665B0D3749A /* Pods-defaults-Rocket.Chat.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-defaults-Rocket.Chat.release.xcconfig"; sourceTree = ""; }; - 221C3F9BE44D57ECB192722A4047F545 /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; - 221D46BED18BA4A887C727B565B3F9B3 /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; - 221EBEA1DCF0618E7E6D62958BF7250E /* RCTScrollEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollEvent.m; sourceTree = ""; }; - 222044B638A335E8264C585BF2EB541C /* BugsnagNotifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagNotifier.h; sourceTree = ""; }; + 220F7A02C50FD642BCE587FFBF9649EF /* react-native-simple-crypto.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-simple-crypto.release.xcconfig"; sourceTree = ""; }; + 2225BB6BB6B2D4F5898831945D3BB4BC /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; 22403A1A10B620C8AEDD2BB6D04A48F1 /* FIRCLSSymbolicationOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSymbolicationOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSymbolicationOperation.h; sourceTree = ""; }; 2249782DAE38F15094B7368177F456FD /* Constexpr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Constexpr.h; path = folly/portability/Constexpr.h; sourceTree = ""; }; - 226503FB82E50409B9100D2540B4EC08 /* RCTAccessibilityManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAccessibilityManager.mm; sourceTree = ""; }; + 225B31F9882865796B3764AE575F14B9 /* REATransitionValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionValues.m; sourceTree = ""; }; + 226310A8D5AB574DE177101E74A1DE17 /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; 2276E935AF07959AB2B1F1212BD9EF3F /* ScopedTraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopedTraceSection.h; path = folly/tracing/ScopedTraceSection.h; sourceTree = ""; }; 228D6DB21FCFE39B36DCB5F42552FB22 /* yuv_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips32.c; path = src/dsp/yuv_mips32.c; sourceTree = ""; }; 2290DE35F2FE49F15FDED12428AEDACB /* stop_watch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stop_watch.h; path = folly/stop_watch.h; sourceTree = ""; }; - 22AD38772A9FE6365A912C0AB9692C28 /* Registration.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = Registration.cpp; sourceTree = ""; }; + 229996EBA18541FD5A6EABDF119E951D /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; + 22A686E40495B915A10C8270E6551F91 /* ARTRadialGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRadialGradient.h; sourceTree = ""; }; 22B13775F5C133858DE4AF2F01D40718 /* lossless_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_neon.c; path = src/dsp/lossless_neon.c; sourceTree = ""; }; - 22DADB1CFC3AD9AD8407096A834D6C45 /* UMModuleRegistryHolderReactModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryHolderReactModule.h; sourceTree = ""; }; 22E37A1F9FEB8ACD0F110A8146B5BCD2 /* GoogleDataTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GoogleDataTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport.h; sourceTree = ""; }; - 2346A82F92324792A2DC137D68FD3D87 /* RNCPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCPickerManager.m; path = ios/RNCPickerManager.m; sourceTree = ""; }; - 234DFB6C65D79446F64AC817870B9DC0 /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; + 23184605EDB0FADD68E38564BD9EFDE2 /* Pods-defaults-ShareRocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-defaults-ShareRocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; + 23292AEFC97696E4FD1368554942AD87 /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = ""; }; + 233D8B94F298076784E62FDA89226294 /* RCTJSIExecutorRuntimeInstaller.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJSIExecutorRuntimeInstaller.mm; sourceTree = ""; }; 234F0314DE67CB4B3A250EF8DDD92405 /* MicroSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroSpinLock.h; path = folly/synchronization/MicroSpinLock.h; sourceTree = ""; }; + 2361CE3F774C1F8B37B55A13CBBD1863 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTClipboard.h; path = React/CoreModules/RCTClipboard.h; sourceTree = ""; }; + 236AF881401FAE128FAAC3B0FA3F256F /* EXVideoThumbnails.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXVideoThumbnails.release.xcconfig; sourceTree = ""; }; + 237391D445AE6C2688DAFAFABEDE9202 /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; 23744ABA4509EF6CB80AC27DE1337FAE /* InterProcessLock_Android.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InterProcessLock_Android.cpp; path = Core/InterProcessLock_Android.cpp; sourceTree = ""; }; - 237C663D9AB664CA0DCC2E4C41D2EA60 /* ARTGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTGroup.m; path = ios/ARTGroup.m; sourceTree = ""; }; 2380FF5BB3C57B87167C2E233299EC05 /* Fcntl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Fcntl.cpp; path = folly/portability/Fcntl.cpp; sourceTree = ""; }; - 23889D0E8A2F159ABBB81DAC1A78C208 /* FBLazyIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyIterator.h; path = FBLazyVector/FBLazyIterator.h; sourceTree = ""; }; + 23AE9981C25EC0DD6CAA9273628B1D1D /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; 23CBD9A37682B465F6CB75E650F8675D /* Flipper-PeerTalk.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-PeerTalk.release.xcconfig"; sourceTree = ""; }; 23CFC27A0D600C50FD6262EBCF48AAB9 /* NetOps.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = NetOps.cpp; path = folly/net/NetOps.cpp; sourceTree = ""; }; 23D46A4B7D4AF7D3AD7C0C7AC6357FA1 /* GDTCORUploadCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadCoordinator.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadCoordinator.h; sourceTree = ""; }; 23D92F955B626161AF653427B4BBB71B /* TokenBucket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TokenBucket.h; path = folly/TokenBucket.h; sourceTree = ""; }; 23DAE6AA300B3D3D134253810C2441BE /* Preprocessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Preprocessor.h; path = folly/Preprocessor.h; sourceTree = ""; }; 23E0C20316338E7EB9BFE9DF8D664C73 /* Init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Init.h; path = folly/ssl/Init.h; sourceTree = ""; }; + 23EAC0B27620F9F7EA42AD35A54E3752 /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = ""; }; 23EB914976C05BD72A2209E4A5D7B2D3 /* Observer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observer.h; path = yarpl/observable/Observer.h; sourceTree = ""; }; + 23EEA2A9DD8C96756CD217E2C8C65B28 /* EXResumablesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXResumablesManager.m; sourceTree = ""; }; + 23F38D8B8018A84BB11E245D1381A5EA /* RNBackgroundTimer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBackgroundTimer.m; path = ios/RNBackgroundTimer.m; sourceTree = ""; }; 23F9A8394A485E9F98B11A001596AA9B /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pl.lproj; path = "Objective-C/TOCropViewController/Resources/pl.lproj"; sourceTree = ""; }; 23FF30501568EB42FA7C87FC4B4E0038 /* Flowables.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Flowables.cpp; path = yarpl/flowable/Flowables.cpp; sourceTree = ""; }; 241FD3A495440FC29D4AC6656455F0FF /* enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_msa.c; path = src/dsp/enc_msa.c; sourceTree = ""; }; 2420C687E305DFC74BEF6A8AB892BC01 /* SDImageCacheConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheConfig.h; path = SDWebImage/Core/SDImageCacheConfig.h; sourceTree = ""; }; - 2424F8AE03455AE0AD4A1E5A7493D364 /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; 242758B9EDFF146ABE411909CAC8F130 /* libreact-native-appearance.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-appearance.a"; path = "libreact-native-appearance.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 2430CFEC73944B4E6CBACE3570B2F700 /* CodedInputData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CodedInputData.h; path = Core/CodedInputData.h; sourceTree = ""; }; - 2434FAD41DFD69B08F8BEC37D4395522 /* REAAlwaysNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAlwaysNode.m; sourceTree = ""; }; - 2438B8843689B891AE94D1925587D3D8 /* React-perflogger.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-perflogger.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 24419A3720DD6A543EDA5C339C6F95A7 /* UMImageLoaderInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.debug.xcconfig; sourceTree = ""; }; - 244400CF8D1E8B78B81B69A6F6764C81 /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = ""; }; - 244D4B8FB5468A8044F66AB2D782711E /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; - 2468288ADCF7AA8E3E71292644C5676D /* RCTVibrationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTVibrationPlugins.mm; sourceTree = ""; }; - 2472208C7EBAD82FE276343C838083B6 /* REAEventNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventNode.h; sourceTree = ""; }; - 2488B905A75D33D2A73E6BC7E0767FD1 /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevLoadingView.h; path = React/CoreModules/RCTDevLoadingView.h; sourceTree = ""; }; - 249322B797E52A0120B0A474CDBC1391 /* BSG_KSSignalInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSignalInfo.h; sourceTree = ""; }; - 24ADE51FB900B21561EDDA6C87068860 /* BugsnagBreadcrumb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagBreadcrumb.h; sourceTree = ""; }; - 24DD06DF3760AA8A84A2FD651A74E8B0 /* Pods-NotificationService-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-NotificationService-dummy.m"; sourceTree = ""; }; + 245ECF7B29C53EB3D624AA79946C00A8 /* React-runtimeexecutor.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-runtimeexecutor.release.xcconfig"; sourceTree = ""; }; + 24A3417FE1B047417425727CDF0DA377 /* Aes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Aes.h; sourceTree = ""; }; + 24D624636378CD4F756251BDFF96F26D /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 24E802A44DA54111432497AF0EBADE6C /* FIRCLSExecutionIdentifierModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSExecutionIdentifierModel.m; path = Crashlytics/Crashlytics/Models/FIRCLSExecutionIdentifierModel.m; sourceTree = ""; }; - 24E9FC4AB6089379891FD3D5620904B9 /* RNCWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebViewManager.m; path = apple/RNCWebViewManager.m; sourceTree = ""; }; - 24EDE437CEF92978BF7AFEBCADB858BB /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageLoader.mm; sourceTree = ""; }; - 25070A437821F373BFD985C4F1F101FC /* RCTJSInvokerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSInvokerModule.h; sourceTree = ""; }; - 250BB41F6D26242C3F01BC339EAFF55A /* RCTImageLoaderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderProtocol.h; path = Libraries/Image/RCTImageLoaderProtocol.h; sourceTree = ""; }; 252927535F70E0F87C20A16C6B6C1BE1 /* CPUThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CPUThreadPoolExecutor.h; path = folly/executors/CPUThreadPoolExecutor.h; sourceTree = ""; }; - 252D65C58D49F07778E4F08C39EB8282 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 2535B9E06F9982A035BE9900CD2ACDDE /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; - 25578B9A60447C91AA98CC57642AD848 /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; - 255860A0B808B0A41877A4B9DC8818A0 /* EXImageLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXImageLoader-prefix.pch"; sourceTree = ""; }; 25706E9BC7882308E1CBADFE1696B9B3 /* SDWebImageError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageError.h; path = SDWebImage/Core/SDWebImageError.h; sourceTree = ""; }; 2571DDCDB2652412E88CCFE7FFF135B1 /* small_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = small_vector.h; path = folly/small_vector.h; sourceTree = ""; }; - 25747DDE22751EFD64D62C45F85C1EFD /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; sourceTree = ""; }; 257487F947497776522450F01A975F69 /* TOCropOverlayView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropOverlayView.h; path = "Objective-C/TOCropViewController/Views/TOCropOverlayView.h"; sourceTree = ""; }; 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsinspector.a"; path = "libReact-jsinspector.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 2579C83AE47641A16DCDEB3AD0508DBB /* SmallLocks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SmallLocks.h; path = folly/synchronization/SmallLocks.h; sourceTree = ""; }; - 2581CD6267645E5B2A0298DC41C71DFF /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; - 2598E914567D704F311E434B75315CB7 /* RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotifications.m; path = RNNotifications/RNNotifications.m; sourceTree = ""; }; + 258482B084569DC0C1112CA43660CA3A /* RNGestureHandlerModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerModule.m; path = ios/RNGestureHandlerModule.m; sourceTree = ""; }; + 259DFDEAE65227AFC9022670B9B73495 /* BugsnagUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagUser.m; sourceTree = ""; }; 25A3922725F2DB608224CDDA8A856D1A /* UICollectionView+SKInvalidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionView+SKInvalidation.h"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UICollectionView+SKInvalidation.h"; sourceTree = ""; }; 25BDB5BBBC679FA82A17FC504F679035 /* SDImageCoderHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoderHelper.m; path = SDWebImage/Core/SDImageCoderHelper.m; sourceTree = ""; }; - 25BE79F8F3AC899AA194FF71777FDA12 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 25CEA0EDE1F1F4F5ED0DD3050A6FF576 /* pt-BR.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "pt-BR.lproj"; path = "Objective-C/TOCropViewController/Resources/pt-BR.lproj"; sourceTree = ""; }; - 25FD3A857C816DC2411312CF09FB956D /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; + 25D1F282AA2642EE4323F894908D4CC4 /* UMSensorsInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.release.xcconfig; sourceTree = ""; }; + 25DB1A2CD425834D51DBF9951B90345A /* react-native-safe-area-context.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-safe-area-context.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 25E6733A321E4C2A277571770B8D5A16 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 26172BF87BFBC776186999961DEE3E6A /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = ""; }; 2617B3D90DC123054065DC048C392F4B /* NSData+ImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+ImageContentType.h"; path = "SDWebImage/Core/NSData+ImageContentType.h"; sourceTree = ""; }; - 261D33A05F4F0528096A16019F0A2BD1 /* MessageTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageTypes.h; sourceTree = ""; }; - 262A342626B00C10D2647A70E9D7E86B /* BugsnagCrashReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashReport.m; sourceTree = ""; }; - 262DC452FD92F441F50D4570FAE4ACEA /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; + 26205161AA50954D082DD6F48826695F /* RNNotificationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationsStore.m; path = RNNotifications/RNNotificationsStore.m; sourceTree = ""; }; 2632AD27AF35AE4D7B055CA92A3B1858 /* DrivableExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DrivableExecutor.h; path = folly/executors/DrivableExecutor.h; sourceTree = ""; }; - 265E75E3AE4A43F75C357D411902647A /* React-jsinspector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsinspector.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 2644F2579B6A8617B5235C3BF091B1D3 /* UMImageLoaderInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.debug.xcconfig; sourceTree = ""; }; 2660FE5414FB1D00B91C0DB32FD889E1 /* hermes_tracing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hermes_tracing.h; path = destroot/include/hermes/hermes_tracing.h; sourceTree = ""; }; 26785966E130F952CD8CB3ACCFD3A7D6 /* EventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBase.h; path = folly/io/async/EventBase.h; sourceTree = ""; }; - 267905E3C815770B71178C6FB405140E /* NSValue+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSValue+Interpolation.h"; sourceTree = ""; }; 26801AEDC8F6E1A70C04F7068509ECA3 /* FlipperCppBridgingConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperCppBridgingConnection.mm; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingConnection.mm; sourceTree = ""; }; + 26808343AB28092E0DAB9877D31D6617 /* react-native-cookies.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cookies.release.xcconfig"; sourceTree = ""; }; + 26870246B6A46B10CD4C9299DE8C3D25 /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; + 269B79E04D74D32BB3857DEFBC2B344E /* QBImagePickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBImagePickerController.m; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.m; sourceTree = ""; }; 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTSettings.a"; path = "libReact-RCTSettings.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 269F7282EBA65F5D446AC2E31FB83CF0 /* FKUserDefaultsSwizzleUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKUserDefaultsSwizzleUtility.m; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsSwizzleUtility.m; sourceTree = ""; }; - 26A0D7C490FBD2800D290929CCA897BD /* RCTImageURLLoaderWithAttribution.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageURLLoaderWithAttribution.mm; sourceTree = ""; }; - 26A671BBA18FD0BAB99D9DCEC2816635 /* REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransition.m; sourceTree = ""; }; - 26B47003518E96C5A8A671261EA8C5EF /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; 26C4479AE2FD2A23C40DCA31F4837852 /* FIRCoreDiagnosticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsInterop.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h; sourceTree = ""; }; - 26D1AF537F43C9CA37FA73214836DC23 /* LNInterpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolation.h; sourceTree = ""; }; + 26DD49E2C4934CD535EFBBAABC571FE2 /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = ""; }; 26E253A144B29FD6ACEB1D84A5B4F6C2 /* dynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dynamic.cpp; path = folly/dynamic.cpp; sourceTree = ""; }; + 26E421091A9BB8C1DB5E4CA5715FF029 /* EXImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXImageLoader.h; path = EXImageLoader/EXImageLoader.h; sourceTree = ""; }; 26F915F6B91658E6473DBAF385C33F60 /* ConsumerBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConsumerBase.h; path = rsocket/statemachine/ConsumerBase.h; sourceTree = ""; }; 270500ED0A569CA88773DA34EB2A806A /* FingerprintPolynomial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FingerprintPolynomial.h; path = folly/detail/FingerprintPolynomial.h; sourceTree = ""; }; - 27050B5D12D0FB5C8520C9A4D51377CF /* BugsnagApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagApiClient.m; sourceTree = ""; }; + 27119F2A6238A2FC86DAFDE84A691EB4 /* EXHaptics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.release.xcconfig; sourceTree = ""; }; + 2714A8AFC726F79408724707E031F80F /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; 272CDB0FA827230F8DE743CE89D46813 /* Promise-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Promise-inl.h"; path = "folly/futures/Promise-inl.h"; sourceTree = ""; }; 2739ED4AC4CA3076A994D92159F6CF55 /* DistributedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DistributedMutex.h; path = folly/synchronization/DistributedMutex.h; sourceTree = ""; }; + 274876894F46385888D92B5FF70E18B5 /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = ""; }; 274B19FA8A792CB235E69E5DD624093F /* PasswordInFile.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PasswordInFile.cpp; path = folly/io/async/PasswordInFile.cpp; sourceTree = ""; }; + 275A1C7F93D8659DCE761FDF9A9267C4 /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; + 275B06783B4CBD407AB1C9906AB4FC35 /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; 2760A9D6AEC74F2005ED1B8F8B3AFCA9 /* FirebaseCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCrashlytics.h; path = Crashlytics/Crashlytics/Public/FirebaseCrashlytics.h; sourceTree = ""; }; - 277268E787A2182104B4413BDA8B6563 /* UMErrorCodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMErrorCodes.m; path = UMCore/UMErrorCodes.m; sourceTree = ""; }; + 276DB70CAFFA8C51DC9B44E88B8A4223 /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = ""; }; 2777CBD18D9C43C9A3474489B0460131 /* FIRCLSMachO.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMachO.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachO.m; sourceTree = ""; }; + 27871E35046D797BDFC6AB677CBFE34B /* RNRandomBytes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRandomBytes.m; path = ios/RCTCrypto/RNRandomBytes.m; sourceTree = ""; }; + 2787A45A8735757BF89DF8998E247CF0 /* RNCAsyncStorage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCAsyncStorage-dummy.m"; sourceTree = ""; }; 279390C893577F74DD2049383E1EDD1A /* libKeyCommands.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libKeyCommands.a; path = libKeyCommands.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 2794BF391589D1CFB5280CB6BDDBE022 /* RCTAlertManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAlertManager.mm; sourceTree = ""; }; 279EF3E4CDD5ED4115C487922F3CCA98 /* AsyncTrace.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncTrace.cpp; path = folly/detail/AsyncTrace.cpp; sourceTree = ""; }; - 27A4A26B39865A6CB46806501B41B410 /* React-CoreModules.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.debug.xcconfig"; sourceTree = ""; }; 27A5A3B49B8896316CAA20EDB06008AE /* SDWebImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.release.xcconfig; sourceTree = ""; }; 27AFB0003553227843B979313B68397D /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = SDWebImage/Core/SDWebImageDownloader.h; sourceTree = ""; }; - 27B95D25C59296DE4F9491AD1425DF06 /* RNGestureHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNGestureHandler-dummy.m"; sourceTree = ""; }; - 27BF5FC560FD2FAA9E0CE24B587EF40B /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModuleManager.mm; sourceTree = ""; }; + 27B7CEE5273A820E4FE8C0B13071E6DC /* BSGEventUploadObjectOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGEventUploadObjectOperation.m; sourceTree = ""; }; 27C22E18F4FEEECB7C921B89D1C16AF1 /* EventHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventHandler.cpp; path = folly/io/async/EventHandler.cpp; sourceTree = ""; }; 27C25D4CBD6AD371E662EA30DDEB4FA4 /* DynamicConverter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicConverter.h; path = folly/DynamicConverter.h; sourceTree = ""; }; + 27CAEC8C4FCBBA856272D59A8F1440A9 /* RNCSafeAreaProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaProviderManager.h; path = ios/SafeAreaView/RNCSafeAreaProviderManager.h; sourceTree = ""; }; + 27E48D41D14E4E75865F8FD09A45346B /* react-native-appearance.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-appearance.debug.xcconfig"; sourceTree = ""; }; + 27E7AC1CF68C839CBE82198DC24EFFB0 /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = ""; }; + 27E98DA502B46B1061E58261CCB42964 /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; 280005C2D697F4B8EE5FA8D2A16214F8 /* bignum-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "bignum-dtoa.cc"; path = "double-conversion/bignum-dtoa.cc"; sourceTree = ""; }; - 28123DB19C3F0DCA57159E998D699E85 /* Pods-defaults-RocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-defaults-RocketChatRN-resources.sh"; sourceTree = ""; }; 281397F1AB9BD21C08DEE8E0501AACA4 /* KeepaliveTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeepaliveTimer.h; path = rsocket/internal/KeepaliveTimer.h; sourceTree = ""; }; 281DE879623596E0556DFE46F612EF83 /* SDWebImageDownloaderResponseModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderResponseModifier.h; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.h; sourceTree = ""; }; - 28210BC2AA287948C474FC4DE7C13526 /* RNRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNRotationHandler.m; sourceTree = ""; }; - 2821FFDF8BCC296FAA8C2F7CFD2C3BF5 /* RCTConvertHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvertHelpers.h; sourceTree = ""; }; + 281DED7A5AC3482F24B86FA5ED70B94A /* RNRootView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNRootView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 2843CE246C3884DD21A4C251E8B34E25 /* libReactNativeUiLib.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactNativeUiLib.a; path = libReactNativeUiLib.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 2845AE37505E17E13FB2C18225966C08 /* EXVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoManager.m; sourceTree = ""; }; 284F8BD84956D62791B3DD3B673A9587 /* ExecutorWithPriority.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutorWithPriority.h; path = folly/executors/ExecutorWithPriority.h; sourceTree = ""; }; 285AC2398EBE625A8D9A4F1277BBAADE /* MapUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MapUtil.h; path = folly/MapUtil.h; sourceTree = ""; }; - 28794D09E1EC371253513C9CFD8D9F51 /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = ""; }; + 2877506D87948E011C9FBF18BDAB9E75 /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; 28862980D7EC5653DE2716BB9B13C94C /* GULNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetwork.m; path = GoogleUtilities/Network/GULNetwork.m; sourceTree = ""; }; - 28869E678ABEEEC133EF65E97FD6A5EE /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 288958F4742B33959C00CCDA830DEF73 /* Aligned.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Aligned.h; path = folly/lang/Aligned.h; sourceTree = ""; }; - 288F6C79144FE973185A8730DB2EB91E /* ARTRadialGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRadialGradient.h; sourceTree = ""; }; + 2895825EEFCDE8C55ADB08F03392972E /* react-native-simple-crypto.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-simple-crypto.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 289FAC143E9FC44F43C2C9F3BFD11E1C /* F14Table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Table.h; path = folly/container/detail/F14Table.h; sourceTree = ""; }; + 28A8F597A0C2B9228920010A7D3BA31D /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = ""; }; 28B56D2A63D67651137709B2BDCEE69D /* Foreach-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Foreach-inl.h"; path = "folly/container/Foreach-inl.h"; sourceTree = ""; }; - 28B9E2C90E2A68EFCBB472D555EBEEFC /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; - 28C355D499A3CBBB9DDF01674BAD2BD3 /* RCTI18nManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTI18nManager.mm; sourceTree = ""; }; 28C3762D3397CC9F4A3AE546622E7715 /* FileUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FileUtil.cpp; path = folly/FileUtil.cpp; sourceTree = ""; }; 28D50C0EAC121DA5EA76E53EF81A12AA /* IOThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOThreadPoolExecutor.h; path = folly/executors/IOThreadPoolExecutor.h; sourceTree = ""; }; 28E2BAFBF464123D07D80E88EC64B836 /* FirebaseCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCore.h; path = FirebaseCore/Sources/Public/FirebaseCore.h; sourceTree = ""; }; 28E6791CB338BCC501263524B29045DC /* json.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json.cpp; path = folly/json.cpp; sourceTree = ""; }; - 28FB3829A88EC4071042B4D690042CCB /* ReactNativeART.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeART.debug.xcconfig; sourceTree = ""; }; - 29230292827F1A18B38C070E5A38E5A5 /* react-native-appearance-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-appearance-prefix.pch"; sourceTree = ""; }; + 2907CC3C454CF4176D9898F9A569C05A /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; + 291A3EF93026735D4A371473E47296C4 /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; + 2922BDAB21DB02CBEE4EF0EAD5C083B1 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 293023BA89AA14C83B86A99FC19C66A2 /* React-cxxreact.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-cxxreact.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 293C236F257F950E2F2BF615684CE878 /* Codel.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Codel.cpp; path = folly/executors/Codel.cpp; sourceTree = ""; }; 294353905D4A2AB06259E346B63186D5 /* FIRComponentContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentContainer.m; path = FirebaseCore/Sources/FIRComponentContainer.m; sourceTree = ""; }; 2943A07F6C1324D10B05C1B00DB35875 /* pb_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_common.h; sourceTree = ""; }; - 29581F1EB845BFD0A7B1DE17099D7350 /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; + 2948517443F3306D1366C64D558F85D6 /* Pods-defaults-Rocket.Chat-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-defaults-Rocket.Chat-resources.sh"; sourceTree = ""; }; + 2949045990424B924BB4ACE1FF5B0454 /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; + 295599FD34D82437BF3C41270FBB2523 /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; 2964002BFB205F392D39B2C836B6AE19 /* MemoryIdler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MemoryIdler.cpp; path = folly/detail/MemoryIdler.cpp; sourceTree = ""; }; - 2966B2229A727F37015E74DBBDD9392E /* react-native-appearance.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-appearance.release.xcconfig"; sourceTree = ""; }; - 2979DA3846E886A4084515E8DA2D76C7 /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; - 297D994A28C40381F01D04E1A3214B05 /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; - 298EF32294E39FCD41FAC2AE85517610 /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = ""; }; - 29A522F564C45BAC1C908C4FA821DD3F /* Pods-ShareRocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.release.xcconfig"; sourceTree = ""; }; - 29A7CD22B9B99E12469FC6E951B08C6A /* RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotifications.h; path = RNNotifications/RNNotifications.h; sourceTree = ""; }; + 297E3326962EB460F2F3DCCB46B61FDD /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = ios/QBImagePicker/QBImagePicker/de.lproj; sourceTree = ""; }; + 2995DF92AA3FBAEA5B1D8A964592AFC5 /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; 29A82CA43E2FB7A6EF4D228560B1C21A /* TimeoutQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TimeoutQueue.cpp; path = folly/TimeoutQueue.cpp; sourceTree = ""; }; + 29B811FAE251A530D910EA08052ED41D /* ARTLinearGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTLinearGradient.h; sourceTree = ""; }; 29BB2342D6548FB4328A430E838AF6D1 /* F14Defaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Defaults.h; path = folly/container/detail/F14Defaults.h; sourceTree = ""; }; - 29BCC12FEC96FEC825291E3DE577C7AC /* RCTRedBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTRedBox.mm; sourceTree = ""; }; + 29C3FBC8358D2B9354ADE309861B9CDE /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRedBox.h; path = React/CoreModules/RCTRedBox.h; sourceTree = ""; }; 29D360BE948B0B8AE79B6F6128A14937 /* FIRCLSNetworkOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSNetworkOperation.m; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSNetworkOperation.m; sourceTree = ""; }; + 29D8C493EAE7FD366C03A3D9A1E33139 /* HighlighterView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = HighlighterView.m; sourceTree = ""; }; + 29DCEFBF38171CEEA0288A959C33AA72 /* NSData+EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+EXFileSystem.m"; path = "EXFileSystem/NSData+EXFileSystem.m"; sourceTree = ""; }; 29DF24F2AEDFDE6DADBA573079529B6B /* SpookyHashV1.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SpookyHashV1.cpp; path = folly/hash/SpookyHashV1.cpp; sourceTree = ""; }; - 29DF7DD9DE07AFF99EE4C902EC84AFA7 /* UMSensorsInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.release.xcconfig; sourceTree = ""; }; 2A052AC762DA5E58222E584F38CB2FF1 /* GULSecureCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSecureCoding.h; path = GoogleUtilities/Environment/Private/GULSecureCoding.h; sourceTree = ""; }; 2A0DE5C69F4A14E3A590C7453E23FDAD /* ScheduledFrameTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledFrameTransport.h; path = rsocket/framing/ScheduledFrameTransport.h; sourceTree = ""; }; - 2A24B280935A2F0232B12ABEF5E68C38 /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; - 2A7858D1D872AC31A34991A1AC19FB64 /* Sha.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Sha.h; sourceTree = ""; }; - 2A791E0505E08E5FAB70079C58C924F8 /* ARTSurfaceViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSurfaceViewManager.h; sourceTree = ""; }; + 2A11218245C003EDA9A0CB086BF522E4 /* Rsa.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Rsa.m; sourceTree = ""; }; + 2A14879F164852C742D96B8144D456A4 /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 2A1622AFF8166C9BC2526873A6A31D07 /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = ""; }; + 2A201E321369369E539FE39ED859515D /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDeviceInfo.h; path = React/CoreModules/RCTDeviceInfo.h; sourceTree = ""; }; + 2A213939D88D46C9D88D0BBCEF62E13D /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; + 2A2E31F1D554AB0E4ED50E5806B88B3E /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; + 2A3D59FB3665A31F8B7500521E96B781 /* ARTSolidColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSolidColor.h; sourceTree = ""; }; + 2A3F22FAC952E5430A805F4537973541 /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = ""; }; + 2A7B58051260494638C90C0308908B0B /* FBReactNativeSpec.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBReactNativeSpec.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 2A7B74E25DCF95117BA1DB7832421E28 /* GDTCORTransformer_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer_Private.h; sourceTree = ""; }; + 2A8048665A94723F5E7236C65B4D80F5 /* RNFBJSON.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBJSON.m; path = ios/RNFBApp/RNFBJSON.m; sourceTree = ""; }; 2A897F4C8EDD4045318816540C3C8C81 /* Rcu-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Rcu-inl.h"; path = "folly/synchronization/Rcu-inl.h"; sourceTree = ""; }; 2A8DBA4F20110FCD2B5510ADC12462F8 /* DiscriminatedPtrDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DiscriminatedPtrDetail.h; path = folly/detail/DiscriminatedPtrDetail.h; sourceTree = ""; }; - 2A9A010CB7EFEF22F0295385AC4A1E11 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 2A8F95830D3F54E598653D2A822A45C8 /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; 2A9CC50E192B5C6EDAF41409F4688612 /* Portability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Portability.h; path = folly/futures/Portability.h; sourceTree = ""; }; - 2AB2287C1FDD8A383794D79D3C811B59 /* BSG_KSArchSpecific.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSArchSpecific.h; sourceTree = ""; }; + 2A9DA7B3DEEF2490D3AFF80D02558599 /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; 2ABB4D4481DB4A0DC59ADFAA1D7E6372 /* ClockGettimeWrappers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ClockGettimeWrappers.h; path = folly/ClockGettimeWrappers.h; sourceTree = ""; }; - 2ACB15B509F18CDF482A4FA7D738B34F /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = CxxNativeModule.cpp; sourceTree = ""; }; + 2ACB1DD9B5C3CE4961BF64D0BABEF146 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 2ACCE6DDD9D46016A77D2950B591793B /* SetupResumeAcceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SetupResumeAcceptor.h; path = rsocket/internal/SetupResumeAcceptor.h; sourceTree = ""; }; - 2AD31C10F356F09D94160F5655A22C6E /* Yoga.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.debug.xcconfig; sourceTree = ""; }; - 2AE905F5C8BC97A988CFA795EBE3D363 /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; 2AE9C51AC524FAF90F73601566183A95 /* libreact-native-restart.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-restart.a"; path = "libreact-native-restart.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 2B0390D6B81009013AA751E358DFD433 /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; + 2AED415BF2CA0F102E482E3B33CF499C /* RCTPbkdf2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPbkdf2.h; path = ios/RCTCrypto/RCTPbkdf2.h; sourceTree = ""; }; 2B17A71888AA28CEFEC37B72F2A68A91 /* libreact-native-slider.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-slider.a"; path = "libreact-native-slider.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 2B361608B34C96A6FAB5E98FCEA3A462 /* Pods-ShareRocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ShareRocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; - 2B514FB464980A84858A82BABD127757 /* Yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-prefix.pch"; sourceTree = ""; }; - 2B58B7448722BED0C6800E8187B513A2 /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Solid.ttf; path = Fonts/FontAwesome5_Solid.ttf; sourceTree = ""; }; + 2B4BC89835F0B426BA24544643826522 /* RNCAppearanceProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProvider.m; path = ios/Appearance/RNCAppearanceProvider.m; sourceTree = ""; }; 2B718F26729C506A76A2B66E211E6927 /* GULReachabilityChecker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULReachabilityChecker.m; path = GoogleUtilities/Reachability/GULReachabilityChecker.m; sourceTree = ""; }; - 2B754C3879846382CAEE216F479D3A81 /* REAJSCallNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAJSCallNode.h; sourceTree = ""; }; 2B8E8C68AEE768BDD9E736F62AB3056B /* Stdio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Stdio.h; path = folly/portability/Stdio.h; sourceTree = ""; }; - 2BA6E2B807EADC6DBE56261217B8CD4B /* Hmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Hmac.h; sourceTree = ""; }; + 2BA3E5792BCC8BDA3697E65514DAA0E4 /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; 2BA78A360616F5D78A8FC1A42DB78ED7 /* EventBaseLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseLocal.h; path = folly/io/async/EventBaseLocal.h; sourceTree = ""; }; 2BB10CDB95E75C6961B3BB55A463C9BF /* FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROptions.m; path = FirebaseCore/Sources/FIROptions.m; sourceTree = ""; }; - 2BD87FC771BB04231CE2D088E7AA9AA1 /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; - 2BEF4D6A896CE5FDAD0DD5D191A5F9C4 /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; - 2C15F014F660AA158F9A7CAD4199DFA3 /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; - 2C1A980BB59E9E1BCA25A52550BC0B17 /* RNConfigReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNConfigReader.m; path = ios/RNConfigReader.m; sourceTree = ""; }; - 2C1B8AA7028C25E6A62FCC730DFE37A2 /* EXAppleAuthenticationButtonViewManagers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationButtonViewManagers.m; path = EXAppleAuthentication/EXAppleAuthenticationButtonViewManagers.m; sourceTree = ""; }; + 2BD45D297B804D133CC7BF454757DF21 /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; + 2BE066C60E8DFBD22751401C52C64631 /* BugsnagReactNativePlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagReactNativePlugin.h; sourceTree = ""; }; + 2BE952648F93797D468722B37002481C /* EXImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXImageLoader.m; path = EXImageLoader/EXImageLoader.m; sourceTree = ""; }; + 2C17B2692915442C061B9BD0B2FC5D68 /* RCTSourceCode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSourceCode.mm; sourceTree = ""; }; + 2C1EE05A18109AA23C61F78E7E447A87 /* RootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RootView.h; path = ios/RootView.h; sourceTree = ""; }; 2C1FABDEA357FDEA4376B5426958FB0D /* FIRCLSDwarfUnwind.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSDwarfUnwind.c; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfUnwind.c; sourceTree = ""; }; 2C27E6A4B9DEE937229E32BDF9455656 /* SKNamed.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKNamed.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNamed.mm; sourceTree = ""; }; - 2C28ABA6300CC963452E2F6BE818AC67 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; - 2C2FAC6E43FF96D09BBA247F341B74A6 /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; + 2C4686785AFDD41B0581622BD388B30E /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyboardObserver.h; path = React/CoreModules/RCTKeyboardObserver.h; sourceTree = ""; }; 2C4C8B8A91B2C7212F97BAF2DAE6A97B /* Firebase.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Firebase.debug.xcconfig; sourceTree = ""; }; 2C4D8DF159A741D57577CD8295426EBB /* FileUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtil.h; path = folly/FileUtil.h; sourceTree = ""; }; 2C54CBEF7275D9470822FE0D250A5B09 /* FIRCLSRecordIdentity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordIdentity.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordIdentity.h; sourceTree = ""; }; 2C5800E04BD2368D3CB11E16D4EF1829 /* MPMCPipelineDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCPipelineDetail.h; path = folly/detail/MPMCPipelineDetail.h; sourceTree = ""; }; 2C616658CC648E09155A506047BDB957 /* FIRCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCrashlytics.h; path = Crashlytics/Crashlytics/Public/FIRCrashlytics.h; sourceTree = ""; }; - 2C775C14924CE68B918E49DBC07E0462 /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = ""; }; + 2C87439E014D563FB46251C4F6383191 /* Pods-defaults-Rocket.Chat.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-defaults-Rocket.Chat.modulemap"; sourceTree = ""; }; + 2C8E879CBAB5F3D69BF50A13AD39F50C /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = ""; }; 2C93158493456F2BAA4F220083CADB69 /* Random-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Random-inl.h"; path = "folly/Random-inl.h"; sourceTree = ""; }; - 2C95F26847F307E7DCEB16772ED927A1 /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; - 2C9DCC228B654BC693B430822A72F794 /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; 2CA2B960B9E1731D599484C0CE3BA035 /* SDImageGIFCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGIFCoder.h; path = SDWebImage/Core/SDImageGIFCoder.h; sourceTree = ""; }; - 2CB7929AC318E4A3B4581CBD03407E6F /* MMKVStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MMKVStorage.m; path = ios/MMKVStorage.m; sourceTree = ""; }; - 2CD31BEB3A603CA7490419DCEB1B4AEC /* RCTDisplayWeakRefreshable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDisplayWeakRefreshable.h; path = Libraries/Image/RCTDisplayWeakRefreshable.h; sourceTree = ""; }; 2CE7BF3DDCFD977FF416D41F80C473E0 /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = src/demangle.cc; sourceTree = ""; }; 2D0AFB3AA334082BD476F588855D6AE5 /* GDTCORRegistrar_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORRegistrar_Private.h; sourceTree = ""; }; - 2D0F90F9DD1B215971A05EF66FC3366D /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; 2D2390B0DF63D8AA73976078BCD5CB07 /* CString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CString.h; path = folly/lang/CString.h; sourceTree = ""; }; 2D2D7C2D1FF6405FC4F8DCCBEB33D66F /* FIRCLSDownloadAndSaveSettingsOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSDownloadAndSaveSettingsOperation.m; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSDownloadAndSaveSettingsOperation.m; sourceTree = ""; }; + 2D34C1E13A0B82E82411A8B80CF5E46E /* react-native-blur.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-blur.debug.xcconfig"; sourceTree = ""; }; 2D581ED99932190F20B005D628B8B0D3 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = "Objective-C/TOCropViewController/Resources/en.lproj"; sourceTree = ""; }; 2D813A9476AB28E62E3DA121A0362C1B /* ThreadCachedInts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedInts.h; path = folly/synchronization/detail/ThreadCachedInts.h; sourceTree = ""; }; 2D86212C9EE02C3B1D98668EF11183C4 /* GDTCCTPrioritizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTPrioritizer.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTPrioritizer.h; sourceTree = ""; }; 2D86D213801ABEF7CD86291D4F3FDD34 /* libUMAppLoader.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMAppLoader.a; path = libUMAppLoader.a; sourceTree = BUILT_PRODUCTS_DIR; }; 2D874C0B29A25EF40764F5DBF1F06554 /* Subscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subscription.h; path = yarpl/observable/Subscription.h; sourceTree = ""; }; - 2D92C9C68EB84BBA051D7858C34F4BF8 /* react-native-orientation-locker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.debug.xcconfig"; sourceTree = ""; }; - 2DBD6394E03686C6B6746D6D05F1E81E /* BSG_KSSystemCapabilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemCapabilities.h; sourceTree = ""; }; - 2DF06812AE678B08CA60D0A615011B6D /* BugsnagKSCrashSysInfoParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKSCrashSysInfoParser.h; sourceTree = ""; }; - 2DFD8F11B45492A110007D80A1313453 /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; - 2E1F6476DD080549DFFF6FAA0034A183 /* BSG_KSSystemInfoC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfoC.h; sourceTree = ""; }; - 2E238C762DDC2AD8C15960A05BAA2352 /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; + 2DC979E4C53D61D48A37D92D822E0464 /* ReactCommon.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.release.xcconfig; sourceTree = ""; }; + 2DFFAD9F41C6A92527EED93D7F1EB23C /* RCTRedBoxSetEnabled.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxSetEnabled.m; sourceTree = ""; }; 2E23C9017DF38BEE442275A1E8AC6343 /* SocketFileDescriptorMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketFileDescriptorMap.h; path = folly/net/detail/SocketFileDescriptorMap.h; sourceTree = ""; }; 2E43413B26C98EF6028F572F7427F9E6 /* SlowFingerprint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SlowFingerprint.h; path = folly/detail/SlowFingerprint.h; sourceTree = ""; }; 2E456B5367A75D26021F4533FD7F0291 /* Observable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observable.h; path = yarpl/observable/Observable.h; sourceTree = ""; }; 2E4F334248833C97B3656DE81F2B2778 /* Fingerprint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fingerprint.h; path = folly/Fingerprint.h; sourceTree = ""; }; 2E73A9322BBB7C6B2CE667F4A5619F30 /* libMMKV.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = libMMKV.mm; path = iOS/MMKV/MMKV/libMMKV.mm; sourceTree = ""; }; 2E763E54264B6EE3E48C2E8F9CC09D76 /* webpi_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = webpi_dec.h; path = src/dec/webpi_dec.h; sourceTree = ""; }; - 2E7ADCD71BB9688CCDFA43D505366187 /* BSG_KSSingleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSingleton.h; sourceTree = ""; }; 2E7C44F8E7F7F762E989594768FD709E /* Flipper-RSocket-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-RSocket-dummy.m"; sourceTree = ""; }; - 2E92774EB52A10D9D917CF49F17A5AEC /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = ""; }; - 2E9692FA23C76680D83D321340DDBDC4 /* react-native-netinfo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-netinfo.debug.xcconfig"; sourceTree = ""; }; + 2E8A4966347DDE08B91EE969C520C066 /* UIImage+Extension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Extension.m"; path = "ios/src/UIImage+Extension.m"; sourceTree = ""; }; 2E989BFAB2A9F137B9B90605149AC2B9 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Demangle.cpp; path = folly/Demangle.cpp; sourceTree = ""; }; - 2ECF1E41A70CE52DB2CC8C252468307E /* UMPermissionsMethodsDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMPermissionsMethodsDelegate.m; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.m; sourceTree = ""; }; + 2EB2ED7BBB8478C051F527DDEF79EC6F /* RuntimeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RuntimeAdapter.h; sourceTree = ""; }; + 2ED748BD35A98F47D36456871617E751 /* RCTLogBoxView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLogBoxView.mm; sourceTree = ""; }; 2ED9BF56428DBA0DE10A75282936070F /* FIRCLSPackageReportOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSPackageReportOperation.m; path = Crashlytics/Crashlytics/Operations/Reports/FIRCLSPackageReportOperation.m; sourceTree = ""; }; 2EE81361339C5E1930DAF6A4CFD01B74 /* FLEXNetworkTransaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkTransaction.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkTransaction.h; sourceTree = ""; }; 2EEC082619F0F996306EE06C9EE41BD4 /* UIImage+ExtendedCacheData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ExtendedCacheData.h"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.h"; sourceTree = ""; }; - 2EFD0A6BE8310EB5AFA739603C80B858 /* Pods-defaults-Rocket.Chat-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-defaults-Rocket.Chat-acknowledgements.plist"; sourceTree = ""; }; + 2EFE75415A489ABB03321806F54AB213 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; + 2F063F42597664A28DB5D13D0BAD4FE9 /* Restart.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Restart.h; path = ios/Restart.h; sourceTree = ""; }; 2F0F85D3DB77B73B2A983CB6A7ABF28B /* ErrorCode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ErrorCode.cpp; path = rsocket/framing/ErrorCode.cpp; sourceTree = ""; }; - 2F37800457A2105A9E1F7E9F05B64EC7 /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = ""; }; 2F40785B36761D40360CCF0B7D0E1C43 /* MMKV_OSX.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKV_OSX.h; path = Core/MMKV_OSX.h; sourceTree = ""; }; - 2F579E724EA2F426EA62400C0D11C20B /* EXAV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAV-prefix.pch"; sourceTree = ""; }; 2F67A5F42B06C732F114178CBE4CA845 /* Select64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Select64.h; path = folly/experimental/Select64.h; sourceTree = ""; }; 2F6F8104994F8DC0891F5424518527FF /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Sources/Private/FIRDependency.h; sourceTree = ""; }; + 2F7346407420D349CF5ADF41C420A657 /* BugsnagSessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTracker.h; sourceTree = ""; }; + 2F85A36A7DF29262707FF6EAC03F1745 /* SafeAreaManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SafeAreaManager.h; sourceTree = ""; }; + 2F879142E2EE93DE74FB3050AB0E2791 /* TurboCxxModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = TurboCxxModule.cpp; sourceTree = ""; }; + 2F91A48D4257E40AAA818AB8B7100A38 /* RNScreens.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.release.xcconfig; sourceTree = ""; }; 2F99A0B6BBCF0E40F9EDF94E751A3821 /* HazptrObjLinked.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrObjLinked.h; path = folly/synchronization/HazptrObjLinked.h; sourceTree = ""; }; 2FA223FDB03BD8D6326DE81D5DD9B6F2 /* EliasFanoCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EliasFanoCoding.h; path = folly/experimental/EliasFanoCoding.h; sourceTree = ""; }; 2FB05ECB092D5342169D9D9695DF77D5 /* QueuedImmediateExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = QueuedImmediateExecutor.cpp; path = folly/executors/QueuedImmediateExecutor.cpp; sourceTree = ""; }; 2FD8BFB766C4D8652467E620E4061E38 /* Semaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Semaphore.h; path = folly/portability/Semaphore.h; sourceTree = ""; }; 2FDB606CC614250FF6B4EC84434F465A /* OpenSSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSL.h; path = folly/portability/OpenSSL.h; sourceTree = ""; }; - 2FE2345DFF9467DC1D23782D9AA4FFEA /* BugsnagErrorReportApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagErrorReportApiClient.h; sourceTree = ""; }; - 2FE8133B0C25ADFC09E0B2934C23999D /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; + 2FF5404F59DB9379D3ECCB28F24BAFA3 /* Pods-defaults-ShareRocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-defaults-ShareRocketChatRN-dummy.m"; sourceTree = ""; }; 300B9EB55C9B47A2297C2359CE720EA5 /* AsyncPipe.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncPipe.cpp; path = folly/io/async/AsyncPipe.cpp; sourceTree = ""; }; 30179570988891F43F9A54B32C56A700 /* Subscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Subscription.cpp; path = yarpl/observable/Subscription.cpp; sourceTree = ""; }; + 30243E7519676662464862B25AAD7BCC /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = ""; }; 302B252F9DADA18163B5E886774704D3 /* FlipperKitLayoutPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitLayoutPlugin.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin.h; sourceTree = ""; }; 302BF3C74637C7DB351858B047839178 /* FIRCLSBinaryImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSBinaryImage.h; path = Crashlytics/Crashlytics/Components/FIRCLSBinaryImage.h; sourceTree = ""; }; - 303C4921600ED01992C0528D52C81B42 /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = ""; }; - 303E051C808BB1AC99FC759FEA02C148 /* react-native-cookies-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-cookies-dummy.m"; sourceTree = ""; }; - 3058D8E566C29CDDAF09A479884C6A60 /* ARTNodeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTNodeManager.m; sourceTree = ""; }; + 304AD9DD746227D7CFF1D49EE52759C2 /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; + 304FE7BE8CD5D7068F8DDD996E27BD76 /* EXAVPlayerData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVPlayerData.h; path = EXAV/EXAVPlayerData.h; sourceTree = ""; }; 3063FC67A941CB517B8CBB84E4A02102 /* UIImage+Metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Metadata.h"; path = "SDWebImage/Core/UIImage+Metadata.h"; sourceTree = ""; }; - 30666158D35862E7FD3B905412A31D0B /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; + 306E981283C96604480F569449C71241 /* React-Core.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.release.xcconfig"; sourceTree = ""; }; + 306FDD037C73399B0B0783FC8DF4D453 /* RNFBUtilsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBUtilsModule.m; path = ios/RNFBApp/RNFBUtilsModule.m; sourceTree = ""; }; 30775C17AD0C769308C8D4EBB9172108 /* UIImage+ForceDecode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ForceDecode.h"; path = "SDWebImage/Core/UIImage+ForceDecode.h"; sourceTree = ""; }; - 309A2E7348A8D74A03AAF190CF5D9F4D /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; - 309DA7B93B5E0A0EF006A0404ED94E73 /* BSG_KSMach_Arm.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm.c; sourceTree = ""; }; + 308C47CE2D3A09406168330B0D50A90F /* BSG_KSString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSString.h; sourceTree = ""; }; 30AF8D3CCB290A00C1F861CCCCE68A94 /* Executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Executor.h; path = folly/Executor.h; sourceTree = ""; }; 30C66852419F645A443E08E8C32C0703 /* SDImageFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFrame.h; path = SDWebImage/Core/SDImageFrame.h; sourceTree = ""; }; + 30CB0B977F5A73E7AFE59076D674E06D /* RNJitsiMeetView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetView.m; path = ios/RNJitsiMeetView.m; sourceTree = ""; }; 30CCD0C483D6373D7BD16F68B8220D19 /* FIRCLSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSException.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSException.h; sourceTree = ""; }; 30D81A3D660D3599BC10A49C1F29EEE0 /* defer-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "defer-internal.h"; sourceTree = ""; }; 30E0158E717F1ED37C490CDF675CB681 /* Checksum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Checksum.h; path = Core/crc32/Checksum.h; sourceTree = ""; }; - 30EDA292489B0B8485F41B05A448D236 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; 30FBF9F21765CD2B2B91FB4335FCE513 /* SKBufferingPlugin+CPPInitialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SKBufferingPlugin+CPPInitialization.h"; path = "iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKBufferingPlugin+CPPInitialization.h"; sourceTree = ""; }; 310FC110EFDE34CDB679F28F1FCA2920 /* libevent.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libevent.release.xcconfig; sourceTree = ""; }; 311084FAB238D4B04EF72063D8B3C7DC /* Array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Array.h; path = folly/container/Array.h; sourceTree = ""; }; - 3114A72307B3DFA9225E53CFB22E2F3A /* ConnectionDemux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ConnectionDemux.h; sourceTree = ""; }; - 311D1BFE3AD300DD7B609B6C654D6638 /* RCTEventDispatcher.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTEventDispatcher.mm; sourceTree = ""; }; - 312B441FFA6CC93EC133D032A44193E6 /* REABezierNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABezierNode.m; sourceTree = ""; }; + 312650FE7FD503D2EC40D1882CCEA092 /* RNNotificationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationUtils.h; path = RNNotifications/RNNotificationUtils.h; sourceTree = ""; }; 313463C598C757EF8F324DB0BF06F135 /* SparseByteSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SparseByteSet.h; path = folly/container/SparseByteSet.h; sourceTree = ""; }; - 31434764D137A55B9F46647ACC703C8F /* RCTJSIExecutorRuntimeInstaller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSIExecutorRuntimeInstaller.h; sourceTree = ""; }; 3146EE7F2F7253CE4A19AE42577E2750 /* FIRInstallationsLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsLogger.m; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.m; sourceTree = ""; }; + 314D6A4AC5227189966DFE96E9021D45 /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppState.h; path = React/CoreModules/RCTAppState.h; sourceTree = ""; }; 3151C13364D2D1FBA4AA7C9D512719D8 /* DelayedDestructionBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DelayedDestructionBase.h; path = folly/io/async/DelayedDestructionBase.h; sourceTree = ""; }; 31539C38D495B50907FA4BBE5334CBCD /* SDWebImageDownloaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderConfig.m; path = SDWebImage/Core/SDWebImageDownloaderConfig.m; sourceTree = ""; }; - 316347958B816CA26656E7CA31F4EE08 /* RNRootView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRootView.debug.xcconfig; sourceTree = ""; }; 3165B7C50B8D93136632716AD3961A52 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Sources/Private/FIRDependency.h; sourceTree = ""; }; - 3176AB3C86C5700B205948C24DBD3022 /* Pods-defaults-Rocket.Chat.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-defaults-Rocket.Chat.debug.xcconfig"; sourceTree = ""; }; + 316A90574F4767203686A7B623BD08DF /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; 3179E362EF619F351025752F94B9DB5B /* AsyncSocketException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSocketException.h; path = folly/io/async/AsyncSocketException.h; sourceTree = ""; }; 3194A8673DB4A5FEE86505230F0E1A74 /* huffman_encode_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffman_encode_utils.h; path = src/utils/huffman_encode_utils.h; sourceTree = ""; }; + 319D4C18691771677FE83CCAF8807DBC /* RNCPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCPickerManager.h; path = ios/RNCPickerManager.h; sourceTree = ""; }; + 31A1445D31D37F28425B528799C43F1F /* React-cxxreact.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.release.xcconfig"; sourceTree = ""; }; 31BE77BA970F0F9CE3CADED50681A14F /* bufferevent_filter.c */ = {isa = PBXFileReference; includeInIndex = 1; path = bufferevent_filter.c; sourceTree = ""; }; 31C5EC4D0F956F3425D9D0AA293684FB /* SKSearchResultNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKSearchResultNode.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKSearchResultNode.h; sourceTree = ""; }; - 31C8C92AF9AED29D2EA5BC405702CCC6 /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAlertManager.h; path = React/CoreModules/RCTAlertManager.h; sourceTree = ""; }; + 31D0FBC843D7D2564E682644B2AA4E9C /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; 31D20C85F5829B2CD3A10D7F0581B896 /* Libgen.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Libgen.cpp; path = folly/portability/Libgen.cpp; sourceTree = ""; }; - 31F09DA1D85F78B3EC755EABF4A0442E /* REAPropsNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAPropsNode.h; sourceTree = ""; }; + 31E6E9ED526B2A75CD508972807E3085 /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPackagerConnection.mm; sourceTree = ""; }; + 31F582B92EDB6EB3FBA239D9BC06A49B /* BugsnagSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSession.h; sourceTree = ""; }; 31F5A89B5ABCFC4ABDCC5D2DE0378269 /* firebasecore.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = firebasecore.nanopb.h; path = Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.h; sourceTree = ""; }; - 3203C31776CA4DA3C1D69B0E9386215B /* BSG_KSJSONCodecObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodecObjC.h; sourceTree = ""; }; + 31FD48A1A79697ADAB2C8ACE3EF44707 /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = ""; }; 32049DBA956FAF95AB8A99703E214354 /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = SDWebImage/Core/SDImageCache.m; sourceTree = ""; }; + 320D2D9ED3CB8B62056C35DC07E096D4 /* BugsnagCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashSentry.h; sourceTree = ""; }; 321BE554D2E363EDFEC003839ADA7C62 /* IStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IStream.h; path = folly/gen/IStream.h; sourceTree = ""; }; - 3233B0285BABB269549B21B7FE43AD9D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 32393333791182EC6F342CFCF50B78E5 /* huffman_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffman_utils.h; path = src/utils/huffman_utils.h; sourceTree = ""; }; + 32423B2579BF05539AC55667519D1939 /* REATransitionAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionAnimation.m; sourceTree = ""; }; + 3243616DB85F9A421BA274E17024AB10 /* RNNotificationParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationParser.m; path = RNNotifications/RNNotificationParser.m; sourceTree = ""; }; + 3244965E9202F6697911B38410249411 /* EXLocalAuthentication.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXLocalAuthentication.release.xcconfig; sourceTree = ""; }; 326ACB88DD712B9EE33D62EA47050950 /* TracingRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TracingRuntime.h; path = destroot/include/hermes/TracingRuntime.h; sourceTree = ""; }; + 328FF4DA3783FF0044814C6596A7871C /* ARTBrush.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTBrush.m; sourceTree = ""; }; + 329287767C04EA1A5446C112A2C80F58 /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; + 32A022EC517F10D917BF4DBC33E5C851 /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSBundleType.cpp; sourceTree = ""; }; + 32A5033B53147739415CD64E50CB0241 /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; 32C09F0FA9D8B1AFE6F4D9994E4B577C /* PicoSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoSpinLock.h; path = folly/synchronization/PicoSpinLock.h; sourceTree = ""; }; + 32C94E4DC8CC970EE989EA673AF074B6 /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = ""; }; + 32CA7828799A6E45E4AA667862A300B4 /* BridgeNativeModulePerfLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BridgeNativeModulePerfLogger.h; path = reactperflogger/BridgeNativeModulePerfLogger.h; sourceTree = ""; }; + 32CA8CF10AFF6284DDC6E0B008D3FF2F /* IDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IDStore.m; path = ios/IDStore.m; sourceTree = ""; }; + 32CFF859FF41FB0A551A8E139D688D17 /* LNInterpolable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNInterpolable.m; sourceTree = ""; }; 32D1463A74A42DAEDD2840B3434A62A1 /* Peertalk.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Peertalk.h; path = peertalk/Peertalk.h; sourceTree = ""; }; + 32D34E1C373307BDCED0A4343DFDA2C3 /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; 32D640516510CD6D98C1762D93D29598 /* KeyValueHolder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = KeyValueHolder.cpp; path = Core/KeyValueHolder.cpp; sourceTree = ""; }; - 32E0CDBDAB1342AEAF6E279FA4F2B620 /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = ""; }; - 3304FD9DFDE8984E53FEC647B6148EA8 /* React-RCTAnimation.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTAnimation.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 3307140B2150CE64DA8836A94A018B22 /* changelist-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "changelist-internal.h"; sourceTree = ""; }; + 330CD7BDA80EE0DACB19C7498C4FDF00 /* BSG_KSFileUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSFileUtils.h; sourceTree = ""; }; 331FC717C92873188CC5A657D146E0CA /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = folly/lang/Exception.h; sourceTree = ""; }; - 33223AB54F9BEA9408E23CDF0B9910C9 /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; - 33390B7DAC1790AE2305451D1FD959DE /* React-CoreModules-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-CoreModules-prefix.pch"; sourceTree = ""; }; 3345BB29570C13C9BC107CEF66202103 /* Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Async.h; path = folly/executors/Async.h; sourceTree = ""; }; - 3346FF67145C187B9491C33D8E1FAA88 /* Feather.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Feather.ttf; path = Fonts/Feather.ttf; sourceTree = ""; }; 3347A1AB6546F0A3977529B8F199DC41 /* libPromisesObjC.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libPromisesObjC.a; path = libPromisesObjC.a; sourceTree = BUILT_PRODUCTS_DIR; }; 3350438F260AD1099BB622B3DD2B7478 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Sources/Private/FIRLibrary.h; sourceTree = ""; }; - 3358A83AEF6EE9650687137594F42E15 /* RNCSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewLocalData.m; path = ios/SafeAreaView/RNCSafeAreaViewLocalData.m; sourceTree = ""; }; 3358D2CA5F4B26E8D42DF90BC66436BD /* NestedCommandLineApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NestedCommandLineApp.h; path = folly/experimental/NestedCommandLineApp.h; sourceTree = ""; }; 335D89C0A9606E132F58F72559506EDF /* FBLPromise+Race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Race.h"; path = "Sources/FBLPromises/include/FBLPromise+Race.h"; sourceTree = ""; }; 33765EF0361FC5BD317E8134536E9D59 /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = src/glog/logging.h; sourceTree = ""; }; 337F59CD81DBE94A74954F4597B94B9C /* ExceptionString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionString.h; path = folly/ExceptionString.h; sourceTree = ""; }; - 3381F86F49C6C3DF26634CB5B738BEC1 /* MessageConverters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageConverters.h; sourceTree = ""; }; + 338D4E099E55BDD65470E14BF5332F87 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 339FD1678F620533FC6D3666F36ED195 /* Base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Base.h; path = folly/gen/Base.h; sourceTree = ""; }; 33A01B20A0E6F66087CEA56A381AD053 /* AtomicReadMostlyMainPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicReadMostlyMainPtr.h; path = folly/experimental/AtomicReadMostlyMainPtr.h; sourceTree = ""; }; 33A7E941A4206E08C5B025F4C63C64D2 /* ScopeGuard.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScopeGuard.cpp; path = folly/ScopeGuard.cpp; sourceTree = ""; }; - 33AC6CD2B0CB268E08F66AFC7741163D /* react-native-background-timer.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.release.xcconfig"; sourceTree = ""; }; - 33B010E5309147E701A211739B553C01 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 33B1D2967436E2AACBDD00065D25DDDE /* RNFBPreferences.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBPreferences.m; path = ios/RNFBApp/RNFBPreferences.m; sourceTree = ""; }; + 33AC82FB3AC41D5507F9362E56EF96D8 /* EXWebBrowser.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.debug.xcconfig; sourceTree = ""; }; 33B2EEF5CF6FD114264C2B7489C6CBFA /* StaticSingletonManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StaticSingletonManager.cpp; path = folly/detail/StaticSingletonManager.cpp; sourceTree = ""; }; - 33C537641F51D2CABD273135E4CC8707 /* EXVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewController.h; sourceTree = ""; }; - 33C66815DB0B429302AFF0A687C98F4E /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; + 33BC57FD8C3AF3FCF4BE94CC00476321 /* UMConstantsInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.debug.xcconfig; sourceTree = ""; }; + 33C451B5E70DB04A4D69D8018EFC491A /* RNImageCropPicker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.release.xcconfig; sourceTree = ""; }; 33CA2D791B052E6E11AC901556D70981 /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = src/glog/raw_logging.h; sourceTree = ""; }; - 33CE3A123A50C02157F9260308A228EE /* Pods-defaults-RocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-defaults-RocketChatRN.debug.xcconfig"; sourceTree = ""; }; 33DD3E5B5A4DC8E6EF82F41A5E8D1A7D /* FIRCLSReportManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportManager.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportManager.h; sourceTree = ""; }; + 33E0D68A84FF625B142642B4F3D770BB /* BSGUIKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGUIKit.h; sourceTree = ""; }; 33F8B614EDDB6B06EC53096D867D5B46 /* fast-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fast-dtoa.h"; path = "double-conversion/fast-dtoa.h"; sourceTree = ""; }; - 33F8FFA62D1612F7A046EB3870FF7036 /* ARTRenderable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTRenderable.h; path = ios/ARTRenderable.h; sourceTree = ""; }; - 340844A16372EB83F9981812977C0570 /* BugsnagNotifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagNotifier.m; sourceTree = ""; }; - 341A8F3B44712151883651FEB5C6CC66 /* UIResponder+FirstResponderTemp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIResponder+FirstResponderTemp.m"; sourceTree = ""; }; + 340F84EFB61AC1E0D0E05C5702D390AE /* FFFastImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageSource.m; path = ios/FastImage/FFFastImageSource.m; sourceTree = ""; }; 341F4134AE669A7FD76D0685541CEAAF /* FIRCLSFABNetworkClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABNetworkClient.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSFABNetworkClient.h; sourceTree = ""; }; - 3434389DF3696B53B90F2F2EBE9118AC /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; - 343678FC9AEFDE8EE70E7430AB1C0E23 /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; - 3439454C3088C0170A716389B9D5053D /* RCTUtilsUIOverride.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtilsUIOverride.m; sourceTree = ""; }; + 343390246A60444A23488A674E808245 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 343B97D9EEBAB3B0515FD53C6201334A /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Sources/Private/FIRAppInternal.h; sourceTree = ""; }; 343F5A180BBCD24462D71E00FBD98C87 /* SKTapListenerImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKTapListenerImpl.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTapListenerImpl.h; sourceTree = ""; }; 34489AAB6DBFFF119F52D9D8F28A5A0D /* FlipperPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperPlugin.h; path = iOS/FlipperKit/FlipperPlugin.h; sourceTree = ""; }; 344D4B81A4B4C0FF7F5D353EC4EDC00A /* ScopedEventBaseThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopedEventBaseThread.h; path = folly/io/async/ScopedEventBaseThread.h; sourceTree = ""; }; - 34634161DA346CAB6C7B657B670CBFAA /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; - 346C26C5FDF9D26B1BCE38D397689071 /* CallbackOStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CallbackOStream.h; sourceTree = ""; }; + 345FF1F313D26A85327F53FEF66D5C49 /* FFFastImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageViewManager.h; path = ios/FastImage/FFFastImageViewManager.h; sourceTree = ""; }; 349578B9758BE83C43BA33926084D1E3 /* ExecutorWithPriority.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutorWithPriority.h; path = folly/executors/ExecutorWithPriority.h; sourceTree = ""; }; - 34A86EE39FC721812E150ADDC0285835 /* React-RCTText.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTText.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 34AB1BEDE616A3B49F4EE42ECC2C6D3C /* TimerFD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimerFD.h; path = folly/experimental/TimerFD.h; sourceTree = ""; }; - 34AE617DAB12D0E38735A72FED407BE4 /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; + 34AB4B3088C51FCD93965DF27C55C21E /* RCTImageStoreManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageStoreManager.mm; sourceTree = ""; }; + 34B6A22FA44252C9AB9425D730AB19FD /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; + 34BBD5BBCA8379CE3AC869AF69F13FA2 /* RNGestureHandlerRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerRegistry.m; path = ios/RNGestureHandlerRegistry.m; sourceTree = ""; }; 34C842CD40D88AB4B2BF24FC77DA0009 /* libRNFBAnalytics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFBAnalytics.a; path = libRNFBAnalytics.a; sourceTree = BUILT_PRODUCTS_DIR; }; 34C8B1D1EEFDCEED588CE148E11B47E2 /* FIRErrors.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRErrors.m; path = FirebaseCore/Sources/FIRErrors.m; sourceTree = ""; }; 34D668980C096A561A31A2EB2F6A66BC /* SDWebImageError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageError.m; path = SDWebImage/Core/SDWebImageError.m; sourceTree = ""; }; - 34EDD220DA25B2D07F5487518908B99E /* HermesExecutorFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = HermesExecutorFactory.cpp; sourceTree = ""; }; - 34F8FA85D998FCF2F591931428F5BF8B /* react-native-slider.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-slider.debug.xcconfig"; sourceTree = ""; }; - 3501A0E8858D7CA4FFF44669F44ABF9D /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = ""; }; - 35042220C6CA8DB45EBC39D294E7A366 /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; - 3506CCA22F9C280673DF4C145292274D /* rn-extensions-share.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.release.xcconfig"; sourceTree = ""; }; + 34E97ED2E8B3D9030E0FEFDF1E0F0EA0 /* RNCMaskedView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCMaskedView.debug.xcconfig; sourceTree = ""; }; + 35092844B0028488DE18CCC8D155D32B /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; 350DD9B6FE8FD8B0CC9BC694C7DF881F /* utilities.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utilities.cc; path = src/utilities.cc; sourceTree = ""; }; - 351369DD9071D05A1497877778827722 /* RCTBlobPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBlobPlugins.h; sourceTree = ""; }; - 3524D969409DB4A13D443D60EBA6B885 /* Shared.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Shared.h; sourceTree = ""; }; 3530B06F6C9BBE90FDCBF0F5DB4BDD03 /* FrameSerializer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FrameSerializer.cpp; path = rsocket/framing/FrameSerializer.cpp; sourceTree = ""; }; - 3538A94DC5B3E4A351A04D08B566C024 /* RNFastImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.release.xcconfig; sourceTree = ""; }; - 353DF073CC553032BE78A83B80FC753B /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; - 3541C88B900E0CFC93964D090D7F4A30 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 354708D78F468148EEEE76491942439B /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; - 3547C5EE598BDF27BF5868CF6E1B4764 /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; - 354A8E18E1212F7DCDA9DADC44D7F5A0 /* React-jsi.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsi.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 3552447EDDD2011D9AD21F5EA2B9B7FF /* GlobalExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = GlobalExecutor.cpp; path = folly/executors/GlobalExecutor.cpp; sourceTree = ""; }; + 3553D4C544A3BEDF55E4F169FB3755E3 /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; 3554E36A810D8574E002C2092B9121F1 /* KeyValueHolder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeyValueHolder.h; path = Core/KeyValueHolder.h; sourceTree = ""; }; 355BC3442CE4ABB83B0CFA9680E8D1C1 /* YogaKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = YogaKit.modulemap; sourceTree = ""; }; + 355D6578FE6CE7A9FFF81C56C9A18088 /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; + 356DA93D46F12173410FCFE8AA805443 /* RCTImageLoaderWithAttributionProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderWithAttributionProtocol.h; path = Libraries/Image/RCTImageLoaderWithAttributionProtocol.h; sourceTree = ""; }; + 3572364D36B575E095ED6CF97556C4E5 /* BSGFileLocations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGFileLocations.h; sourceTree = ""; }; + 357963FAA9DC468CA01E17439E7FDD5D /* BSG_KSSystemInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSSystemInfo.m; sourceTree = ""; }; 358EE261026F11C402B0460DCA40BD33 /* OpenSSLThreading.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OpenSSLThreading.cpp; path = folly/ssl/detail/OpenSSLThreading.cpp; sourceTree = ""; }; + 3598CD9163C8A620F21EE26D2D077183 /* advancedIos.md */ = {isa = PBXFileReference; includeInIndex = 1; name = advancedIos.md; path = docs/advancedIos.md; sourceTree = ""; }; + 35B7D5020B6E5BA9A2FE52CC9AE126AD /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; 35B92DD54E7AC89C7BAF3A9792630E8D /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "Objective-C/TOCropViewController/Resources/zh-Hans.lproj"; sourceTree = ""; }; - 35CA625B987F4DE5A24455A8C15791F8 /* RCTLogBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLogBox.h; path = React/CoreModules/RCTLogBox.h; sourceTree = ""; }; + 35C462873D8556B83C39A330E577312B /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; 35D047C1E86408DCC29C1953F2CF1AC9 /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = "double-conversion/strtod.h"; sourceTree = ""; }; - 35D427331095E2422EC9BCF3C8D91CA9 /* FFFastImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageView.h; path = ios/FastImage/FFFastImageView.h; sourceTree = ""; }; - 35E173582E3662734807B5B30E6F3E6D /* RNForceTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNForceTouchHandler.h; sourceTree = ""; }; + 35D9EBB8F22D3DE7D5E65D8D66CBAADC /* QBAlbumsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.m; sourceTree = ""; }; + 35E8349DDFB19341CFB6AF34F3E9C974 /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = ""; }; 35EE45AAA32375675BA4E409CE39608C /* common_sse41.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse41.h; path = src/dsp/common_sse41.h; sourceTree = ""; }; 3603C8C324489767CDF0E94A5AEFAAC5 /* Log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Log.h; path = xplat/Flipper/Log.h; sourceTree = ""; }; - 361194A66DF7D2D5B9B38ED8BED6AAF9 /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = NativeToJsBridge.cpp; sourceTree = ""; }; 361B3EAC5B4BA385FD118F17A9B0D62E /* SysFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysFile.h; path = folly/portability/SysFile.h; sourceTree = ""; }; 363933C9D4336A82E96B622D5B760E34 /* sorted_vector_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sorted_vector_types.h; path = folly/sorted_vector_types.h; sourceTree = ""; }; + 3653433E05093D7DD292F6CF1840A064 /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevSettings.h; path = React/CoreModules/RCTDevSettings.h; sourceTree = ""; }; 36565EF649A1D1CC9CC7CB756E6298A9 /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/portability/String.h; sourceTree = ""; }; + 365DCA14B065A771C6DEA582FB1A0EF1 /* LNInterpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolation.h; sourceTree = ""; }; 3663947E78F78F183D279D27C650548D /* HeterogeneousAccess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HeterogeneousAccess.h; path = folly/container/HeterogeneousAccess.h; sourceTree = ""; }; - 3665F670F09B6CD165F2B9022FD63313 /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = RAMBundleRegistry.cpp; sourceTree = ""; }; - 366C17B6F7A70E0C496DC59B2EF479DB /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; 3675C963C782F3ECF1D355995424942C /* Subscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Subscription.cpp; path = yarpl/flowable/Subscription.cpp; sourceTree = ""; }; - 368072C9870618A735A29D132AD41D85 /* ReactCommon-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactCommon-dummy.m"; sourceTree = ""; }; - 3687848C4EC6E4E90F824D15E4A2D4E3 /* UMAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppRecordInterface.h; sourceTree = ""; }; 36C2D4F83741C5DF31ACE32DA45B4D33 /* FIRCLSRecordBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordBase.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordBase.m; sourceTree = ""; }; + 36C8AD4B44F8CE0B2A2E431FE0F6C235 /* RNBootSplash-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNBootSplash-prefix.pch"; sourceTree = ""; }; 36E4866295DA29143E64F3AADB213048 /* Windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Windows.h; path = folly/portability/Windows.h; sourceTree = ""; }; - 36F48B9009C0F1A2D6A6DB550409F4EC /* UMPermissionsInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.release.xcconfig; sourceTree = ""; }; + 36ECDE525D4C7376F5E88469F9AA0F0E /* ErrorUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ErrorUtils.h; sourceTree = ""; }; + 36F2F210CB0253245C2C4717A0A78D78 /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 36FB2386D2E70E78CC8780D01AEE8E72 /* TimeoutQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimeoutQueue.h; path = folly/TimeoutQueue.h; sourceTree = ""; }; - 3701A4329E51EDE753BB23D8D44B7BDF /* React-RCTLinking.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.debug.xcconfig"; sourceTree = ""; }; - 370E9321A37DE0001F7FF090BDF39968 /* React-Core.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.debug.xcconfig"; sourceTree = ""; }; + 37027DF918D6FE52D89F88CB601858ED /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; 3714F374E87928906502C9E5AF26AEBF /* alphai_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alphai_dec.h; path = src/dec/alphai_dec.h; sourceTree = ""; }; - 3716A19F80B70D0901D21C6CC1F456C6 /* MessageTypes.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = MessageTypes.cpp; sourceTree = ""; }; - 371B28F82A1ED21F2AEF3B36D7E0732B /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; + 372D48682B9E2DF058C7841B584D9BC1 /* ARTShape.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShape.h; path = ios/ARTShape.h; sourceTree = ""; }; 3737F11E4FA8A02C2FB84B43465555B1 /* StringKeyedUnorderedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedUnorderedMap.h; path = folly/experimental/StringKeyedUnorderedMap.h; sourceTree = ""; }; 374704F57732D2F851254C648CA148F2 /* FIRAnalyticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsInterop.h; path = Interop/Analytics/Public/FIRAnalyticsInterop.h; sourceTree = ""; }; + 3747165E54B4A958F377DCBB8451B514 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 3751C8EE9A818AABDBD2B0660FC9FF6E /* SKApplicationDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKApplicationDescriptor.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKApplicationDescriptor.m; sourceTree = ""; }; 3756EE7F1DFB6475A746872E741191EA /* CheckedMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CheckedMath.h; path = folly/lang/CheckedMath.h; sourceTree = ""; }; 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-cxxreact.a"; path = "libReact-cxxreact.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 377BE4B8159107B85112FCCFD2D2BB97 /* FirebaseCoreDiagnostics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnostics.release.xcconfig; sourceTree = ""; }; - 3781095AE9AEBCB5543EED223C80F128 /* RNDateTimePicker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDateTimePicker.debug.xcconfig; sourceTree = ""; }; - 378A18B2F40908AA0836AEC1D190D329 /* react-native-blur-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-blur-prefix.pch"; sourceTree = ""; }; 3791BF953E422EA15E7E7944B8F4CA24 /* RSocketResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketResponder.h; path = rsocket/RSocketResponder.h; sourceTree = ""; }; 37920939AB5D980EE983073A8D803CDA /* OpenSSLThreading.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLThreading.h; path = folly/ssl/detail/OpenSSLThreading.h; sourceTree = ""; }; - 3793552237EB390BDA89EC07E886FD21 /* react-native-safe-area-context.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-safe-area-context.release.xcconfig"; sourceTree = ""; }; 37988D45D75D810E145A28997B557A81 /* Frame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Frame.h; path = rsocket/framing/Frame.h; sourceTree = ""; }; + 379AAF32EBE1F942AD81C1C42FA1E080 /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = Libraries/Image/RCTImageEditingManager.h; sourceTree = ""; }; 37A59588AB9E695C969A7A078928DA45 /* Fcntl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fcntl.h; path = folly/portability/Fcntl.h; sourceTree = ""; }; + 37A7CDF7E561955A0C02FCF2279AB34E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 37B0BD899FBA992E7DEE922392E39845 /* RNFastImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFastImage-prefix.pch"; sourceTree = ""; }; + 37BC4DD8E2155A8B4DB3B8EB9AB6022C /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; 37BED821BCAC65D707441E38B19A810D /* Baton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Baton.h; path = folly/synchronization/Baton.h; sourceTree = ""; }; - 37D32DF5CAFB7A578D99EEEFF6C50DB9 /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; + 37CC656B732014A6AD8CB3244611BEEB /* BugsnagUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagUser.h; sourceTree = ""; }; 37E3F2AB320DD034E64B19E8A465385D /* Hardware.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hardware.h; path = folly/chrono/Hardware.h; sourceTree = ""; }; 37E86C5D337B57126E07CA772629577A /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Sources/Private/FIRComponent.h; sourceTree = ""; }; + 37E96A7AD6E875A29E6DCE288196CCA0 /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = ""; }; 37ED6C8E5748E3D977D1C2577627B96E /* Indestructible.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Indestructible.h; path = folly/Indestructible.h; sourceTree = ""; }; 37F4A35654D7581640A4041759FD1C2B /* ConnectionSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionSet.h; path = rsocket/internal/ConnectionSet.h; sourceTree = ""; }; 38258EDC2ECDB25B79EB77612803051E /* MacAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MacAddress.cpp; path = folly/MacAddress.cpp; sourceTree = ""; }; - 384B421008057686598A7C179F7362BA /* RCTEventDispatcherProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcherProtocol.h; sourceTree = ""; }; + 38566BD58F1A1BD25F8A4793D6740999 /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; 3856A7B799D915322E5F6E56FB2ED6E1 /* Sockets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sockets.h; path = folly/portability/Sockets.h; sourceTree = ""; }; - 385A49109272834E21E7E49A478041CB /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; 386A37173A1941791DC8E94F369E85DF /* AtomicNotification.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AtomicNotification.cpp; path = folly/synchronization/AtomicNotification.cpp; sourceTree = ""; }; - 387CDC1C8200BC0F0203FDD1D4DA2611 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 38811FF30BDDEC853CE21220CB6EF709 /* Pods-defaults-NotificationService-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-defaults-NotificationService-dummy.m"; sourceTree = ""; }; 3887EC7543C5FB4AF86290527D48BD28 /* ExceptionWrapper-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ExceptionWrapper-inl.h"; path = "folly/ExceptionWrapper-inl.h"; sourceTree = ""; }; - 3887FE44B2700E96BB40055055196F7A /* UMFileSystemInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.release.xcconfig; sourceTree = ""; }; + 389CD7741351AB924E728EC4798FC86B /* RNNotificationCenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenter.h; path = RNNotifications/RNNotificationCenter.h; sourceTree = ""; }; 389CFC3E4D576AC52BDAAC552137FFF1 /* EvictingCacheMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EvictingCacheMap.h; path = folly/container/EvictingCacheMap.h; sourceTree = ""; }; - 38A12A3ECC3F33AC639F777F219463C5 /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; - 38A55BC79E7DFA2240BE41A0764D2E17 /* BugsnagMetaData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagMetaData.m; sourceTree = ""; }; 38BBE2CA9186650AFBC919E763904BBD /* Atomic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Atomic.h; path = folly/portability/Atomic.h; sourceTree = ""; }; 38C5A3D20CC6919B029171559FD2EDEB /* RangeCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RangeCommon.h; path = folly/detail/RangeCommon.h; sourceTree = ""; }; - 38CCBAE1DA43B6128ACC21C7FF1A7712 /* react-native-document-picker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-document-picker.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 38DBC4FE53A7D3A0516B8339987659B6 /* FIRInstallationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStore.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.m; sourceTree = ""; }; + 38DE4B91225B3BFBA01EE2221CA2B29E /* RNCAppearanceProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProviderManager.h; path = ios/Appearance/RNCAppearanceProviderManager.h; sourceTree = ""; }; 38E1632332F89B9EB75BFF0DB62BFA66 /* CodedOutputData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CodedOutputData.h; path = Core/CodedOutputData.h; sourceTree = ""; }; - 38E4ABBA0ABBBDBB24FA3BD3D40CA755 /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; - 38EAEB2D222B886728E65358EA8E3B4E /* RNGestureHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandler.h; path = ios/RNGestureHandler.h; sourceTree = ""; }; 38EBC25C4EA7FD49EB95B1FDD35C5B50 /* GDTCOREventDataObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventDataObject.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCOREventDataObject.h; sourceTree = ""; }; 38EEC9DFD8C2803A99DE518F66CAE9DD /* SysStat.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysStat.cpp; path = folly/portability/SysStat.cpp; sourceTree = ""; }; 38F5C29B8BABB356CD6F46011DAFE915 /* FIRCLSCompoundOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCompoundOperation.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSCompoundOperation.h; sourceTree = ""; }; - 39075FBD60B624D44E193316E50A9AE4 /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; 39209F2A8F1496454A4AE88A288F0C42 /* AsyncTrace.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncTrace.cpp; path = folly/detail/AsyncTrace.cpp; sourceTree = ""; }; - 3923DC048D6AC93BBF04AF619D5D1A8C /* ARTCGFloatArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTCGFloatArray.h; path = ios/ARTCGFloatArray.h; sourceTree = ""; }; 39305B4A5D50A8905FE3337AF9BCC606 /* bufferevent_ratelim.c */ = {isa = PBXFileReference; includeInIndex = 1; path = bufferevent_ratelim.c; sourceTree = ""; }; 393CE8EC718597E11A7CEECF30F7B927 /* Invoke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Invoke.h; path = folly/functional/Invoke.h; sourceTree = ""; }; + 394476E4469983424DC3D7A08FF9FD34 /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = ""; }; + 39494CE5C6E65BE2867714886194D196 /* RNCWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebView.h; path = apple/RNCWebView.h; sourceTree = ""; }; 3951C11FDC3F933B2738237DE4204F58 /* FBLPromise+All.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+All.m"; path = "Sources/FBLPromises/FBLPromise+All.m"; sourceTree = ""; }; + 3951F28E64B23BE8624297CEEC5690AE /* React-RCTAnimation.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTAnimation.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 39558BEC676CF0090DC6F863F28DCF08 /* AtomicRef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicRef.h; path = folly/synchronization/AtomicRef.h; sourceTree = ""; }; - 3982D712C7B3264E2B4061DE932045C0 /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; - 39914936282CE677961F04971C0FA22A /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = ""; }; + 3956A43D3DF53657C5F1C8AB141FCA72 /* Thread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = Thread.cpp; sourceTree = ""; }; + 395A42BD9767360C5A6BF5EB5CDB1A2E /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; + 398D18514E2FEAC75960BF69A0DCC236 /* EXSessionTaskDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionTaskDispatcher.h; sourceTree = ""; }; + 3991D9E8935C272F2BEBD8F363AF3305 /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; + 3996EDD823280D882ED08A7C542F9AD8 /* UMAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLoaderInterface.h; sourceTree = ""; }; 39A87EC33C3AE727827CE0318565876B /* FIRCLSThreadArrayOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSThreadArrayOperation.m; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSThreadArrayOperation.m; sourceTree = ""; }; 39AE4BCE95194D82309404D0B73449CD /* SKButtonDescriptor.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKButtonDescriptor.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKButtonDescriptor.mm; sourceTree = ""; }; + 39CC6CCD7E3BAB1F4F89F8E146204926 /* React-CoreModules-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-CoreModules-prefix.pch"; sourceTree = ""; }; 39D1EEAFC914D6FEA74E28CDC4075CB6 /* Iterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Iterator.h; path = folly/container/Iterator.h; sourceTree = ""; }; + 39F7D18EC081B100AF21BD824398CC8D /* Pods-defaults-NotificationService-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-defaults-NotificationService-umbrella.h"; sourceTree = ""; }; + 3A01F89A0B9A22D8CBF6CF6A3DB222EB /* UMReactNativeAdapter.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.debug.xcconfig; sourceTree = ""; }; 3A0ABE66A02A244D2459E1093B2CB640 /* openssl_md5_one.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = openssl_md5_one.cpp; path = Core/aes/openssl/openssl_md5_one.cpp; sourceTree = ""; }; 3A11F134BC882C7D27091A2C96946962 /* EventCount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventCount.h; path = folly/experimental/EventCount.h; sourceTree = ""; }; 3A22E60D5FD59C685BF2A17BFE1C94FB /* IPAddressSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressSource.h; path = folly/detail/IPAddressSource.h; sourceTree = ""; }; - 3A29CC470A2E746B87226199C4119598 /* react-native-orientation-locker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-orientation-locker.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 3A491F93DC7157267CAA32CAD2943C5F /* RNFBCrashlyticsInitProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBCrashlyticsInitProvider.h; path = ios/RNFBCrashlytics/RNFBCrashlyticsInitProvider.h; sourceTree = ""; }; + 3A45D48E274BFCE3C858D392D9F949CA /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspectorDevServerHelper.mm; sourceTree = ""; }; 3A4BB6035141C108E1A0BA59217CE37D /* SSLSessionImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SSLSessionImpl.cpp; path = folly/ssl/detail/SSLSessionImpl.cpp; sourceTree = ""; }; 3A519F6518C260D0FF48E82C2A8808A4 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Sources/Private/FIRComponentType.h; sourceTree = ""; }; - 3A5B26A920688D9E84AA2D974DC794F6 /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = ""; }; - 3A73954671D5807ABB421650C558B1C4 /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; - 3A73A2D1784E04BFCCC8EE15146FEEFD /* RNCCameraRollManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCCameraRollManager.m; path = ios/RNCCameraRollManager.m; sourceTree = ""; }; 3A77F6EE9A506C325B1356B3440C8FF4 /* Partial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Partial.h; path = folly/functional/Partial.h; sourceTree = ""; }; 3A7FDCF8B52F0218F9B22DA685FFF3FD /* RequestResponseRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RequestResponseRequester.h; path = rsocket/statemachine/RequestResponseRequester.h; sourceTree = ""; }; 3A8CCCBE73A3BFD287D74C0DFBF7B010 /* SKRequestInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKRequestInfo.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKRequestInfo.h; sourceTree = ""; }; - 3A9E24B2B98CE17D546E24D2EBF76810 /* RNFetchBlobConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobConst.h; path = ios/RNFetchBlobConst.h; sourceTree = ""; }; - 3AC5DF238A917E53E15A45FF4472DA7A /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; 3AC7AC6810C2996CF21B58F57C3F54A4 /* GULMutableDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULMutableDictionary.h; path = GoogleUtilities/Network/Private/GULMutableDictionary.h; sourceTree = ""; }; 3ADA24494E344DDAD822C6DA6B4EF030 /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/Private/GULAppEnvironmentUtil.h; sourceTree = ""; }; - 3AE5122ACA6D6C851A41F6A84E1ADD37 /* RNPanHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPanHandler.m; sourceTree = ""; }; 3AE56CA7AC8987C48F156489C4059B75 /* Expected.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Expected.h; path = folly/Expected.h; sourceTree = ""; }; 3AEA4A114C08533A2C0F8E039A4C5EB9 /* libRNImageCropPicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNImageCropPicker.a; path = libRNImageCropPicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3AED56F927A549A7619ECF0369EEECFA /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = ""; }; - 3AF1EDF54E00844F994A82D1B8E59CA5 /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; 3AF1EEF7F1F5EBC06486735CE5F3E758 /* RangeSse42.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RangeSse42.cpp; path = folly/detail/RangeSse42.cpp; sourceTree = ""; }; 3AF66D31DBF731A2EB5A4616B400EED2 /* IOVec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOVec.h; path = folly/portability/IOVec.h; sourceTree = ""; }; 3B16F42AC62B1A9A9AE57DE532764A2F /* Base.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = Base.lproj; path = "Objective-C/TOCropViewController/Resources/Base.lproj"; sourceTree = ""; }; - 3B4A31BDDD4A0A956355E9AE13560C02 /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; - 3B565AFDEDD7825DA21E918E71D547E8 /* StorageSetters.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = StorageSetters.m; path = ios/StorageSetters.m; sourceTree = ""; }; + 3B335D891353EDABF098FC898DC8073B /* react-native-document-picker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.release.xcconfig"; sourceTree = ""; }; + 3B44AFCCB749BD05EB75EF3F8E1DE2E5 /* React-perflogger.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-perflogger.release.xcconfig"; sourceTree = ""; }; + 3B52C25E241A136F30D3AFEA155BECF7 /* REAPropsNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAPropsNode.h; sourceTree = ""; }; + 3B58D254DBD56810C7C07ABA162011BB /* BSGEventUploadKSCrashReportOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGEventUploadKSCrashReportOperation.h; sourceTree = ""; }; 3B61349BDE1BBD7581068301130AA7B8 /* ProxyLockable-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ProxyLockable-inl.h"; path = "folly/synchronization/detail/ProxyLockable-inl.h"; sourceTree = ""; }; 3B640835BAA914DD267B5E780D8CFEC7 /* libUMReactNativeAdapter.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMReactNativeAdapter.a; path = libUMReactNativeAdapter.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3B70ADDF52FB2A4D4C1C68671828F811 /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAccessibilityManager.h; path = React/CoreModules/RCTAccessibilityManager.h; sourceTree = ""; }; 3B752E769E8F38741D11CE8E7DAFF4BE /* EventBaseBackendBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBaseBackendBase.cpp; path = folly/io/async/EventBaseBackendBase.cpp; sourceTree = ""; }; 3B8270C83DA3FCB589B40A874C110126 /* PBUtility.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PBUtility.cpp; path = Core/PBUtility.cpp; sourceTree = ""; }; - 3B83F3A3E88B252222C7A6898F2C16DF /* BSG_KSCrashType.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashType.c; sourceTree = ""; }; 3B899CF40EB34555A58F17D2D7E0A951 /* json_pointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_pointer.h; path = folly/json_pointer.h; sourceTree = ""; }; 3B8A3FAEDB2F64DD6D6F17CD24CA370D /* SDImageIOAnimatedCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOAnimatedCoder.m; path = SDWebImage/Core/SDImageIOAnimatedCoder.m; sourceTree = ""; }; 3B930A32F432993FA5735ED7FFD3E125 /* FIRInstallationsAuthTokenResultInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResultInternal.h; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResultInternal.h; sourceTree = ""; }; - 3BACC82935E1E9692F2F8809B0DB218F /* RCTRedBoxSetEnabled.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxSetEnabled.m; sourceTree = ""; }; - 3BC628A5D6EFE5C1CF16793C2DD01ADB /* RCTPlatform.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPlatform.mm; sourceTree = ""; }; + 3B97C66180DF19949AF1558D6A0033C4 /* RCTLinkingPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLinkingPlugins.mm; sourceTree = ""; }; + 3BB254896ACC06AF2DEF34F612C19B71 /* RNCPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 3BDF8F521A698660A217C9B7AC6B17AA /* PTUSBHub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PTUSBHub.m; path = peertalk/PTUSBHub.m; sourceTree = ""; }; + 3BE5E4F1B8D8EEEACB8C8E1EBE765069 /* BSG_KSMach_x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_64.c; sourceTree = ""; }; 3BEBFA68C05885A1CC3877F22208E6D8 /* FIRCLSReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReport.h; path = Crashlytics/Crashlytics/Models/FIRCLSReport.h; sourceTree = ""; }; - 3BEF49093845DDC9CB2648D903D30325 /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; - 3BF064715DAE81E62551C5B6FCE360E0 /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = ""; }; + 3BF80B3C5C9D06C7E4861B18B24125A9 /* BSGEventUploadOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGEventUploadOperation.h; sourceTree = ""; }; 3BFA84E1B478F0D4404E7812D2B6B035 /* FlipperConnectionManagerImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FlipperConnectionManagerImpl.cpp; path = xplat/Flipper/FlipperConnectionManagerImpl.cpp; sourceTree = ""; }; - 3C08BCD03276C8D7469D408A695758C5 /* RNFBAnalytics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBAnalytics-dummy.m"; sourceTree = ""; }; - 3C0BC1F04A6EFDC4DBBBFEB6EA5C02BE /* IDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IDStore.h; path = ios/IDStore.h; sourceTree = ""; }; - 3C1839DCE564E713EDD0551FFADF6311 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 3C0E6135E6AF4241D0A7A7B3239C76BD /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = InspectorInterfaces.cpp; sourceTree = ""; }; + 3C12747050F11EA2EA2A16FFF839DC61 /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; 3C3297542C5015ECE437ADDA002D57BF /* openssl_md5.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = openssl_md5.h; path = Core/aes/openssl/openssl_md5.h; sourceTree = ""; }; 3C405EC7A77603ED777850B068C8117B /* F14Table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Table.h; path = folly/container/detail/F14Table.h; sourceTree = ""; }; - 3C413AF8991A80C938E8C801569B2C9E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 3C53D1447B47B5110DBB0C52B2EF28B3 /* react-native-mmkv-storage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-mmkv-storage.debug.xcconfig"; sourceTree = ""; }; - 3C56BFF9530285D0BE157F0826D01C7F /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; - 3C5F3081ED487C422AB3AF75093589E1 /* react-native-cameraroll.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-cameraroll.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 3C4440B36E277CE16DA33BC400C130CC /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; + 3C500AB3A394159D74E166DE57D0C06D /* react-native-safe-area-context.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-safe-area-context.release.xcconfig"; sourceTree = ""; }; 3C69E16660B149ABB112C2C8F03FF6CE /* rescaler_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_utils.c; path = src/utils/rescaler_utils.c; sourceTree = ""; }; + 3C74F4DCE22AD32551BC8F409F540F4C /* RNCPicker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCPicker.debug.xcconfig; sourceTree = ""; }; 3C79B1F5A3844A1537C78A0F404800A7 /* GDTCORTargets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTargets.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORTargets.h; sourceTree = ""; }; 3C85908CDB0ACD631B1B1E037E04BD63 /* EmitterFlowable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EmitterFlowable.h; path = yarpl/flowable/EmitterFlowable.h; sourceTree = ""; }; - 3CA1BCB8D88569EA2B15FA77381E8A25 /* RNGestureHandler.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.debug.xcconfig; sourceTree = ""; }; 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libglog.a; path = libglog.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3CAE08AD3C23F93D4E737EEDAF1FB756 /* React-Core.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.release.xcconfig"; sourceTree = ""; }; - 3CB793653BD41D8635C7E424363F51FB /* Shared.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Shared.m; sourceTree = ""; }; 3CB957F7D5240280A57EEDFC6B03ADDF /* GoogleDataTransport.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.debug.xcconfig; sourceTree = ""; }; - 3CBF266631DC8FAE9338AB776552C3E2 /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; - 3CCB552BE9C6ECDBB89B41EDE178BAAB /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; - 3CEF157F7B039B08A56ECFFA6E9E220F /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = ""; }; + 3CF2196A1EE0D95E00B03D669456756F /* UMModuleRegistryHolderReactModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryHolderReactModule.m; sourceTree = ""; }; + 3D05B428018345AF3E7B23DCC82F3F59 /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; + 3D16741B2FF5CADCB83B655457C3DF69 /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; 3D196C4EDEB47415D485A0236AC6D8D3 /* libevent-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "libevent-dummy.m"; sourceTree = ""; }; - 3D25AF5D38442FA4C8DB14BFD53FFA49 /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDeviceInfo.h; path = React/CoreModules/RCTDeviceInfo.h; sourceTree = ""; }; 3D3089FB9A74DB9C995A4671B1944823 /* OpenSSL-Universal.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "OpenSSL-Universal.release.xcconfig"; sourceTree = ""; }; 3D34BCB9EA9CF11A5F9C06040A886B25 /* Barrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Barrier.cpp; path = folly/futures/Barrier.cpp; sourceTree = ""; }; - 3D42540B4359851E48494A5F0E8CE6C7 /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; - 3D4520260EFE9D2140A4EBEBF1CA252E /* RNPushKitEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventHandler.m; path = RNNotifications/RNPushKitEventHandler.m; sourceTree = ""; }; 3D4F5116A90608016B3C8971E284CBB8 /* Atomic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Atomic.h; path = folly/portability/Atomic.h; sourceTree = ""; }; - 3D5BEE3E82ED31B8EC8C92B61ED8AA88 /* RNCMaskedView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCMaskedView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 3D65B29A18EC8789606B6EBE207F70C0 /* EXAppleAuthenticationButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationButton.m; path = EXAppleAuthentication/EXAppleAuthenticationButton.m; sourceTree = ""; }; 3D6853AA624FC5A933BB11FA7D0A0A67 /* Futex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Futex-inl.h"; path = "folly/detail/Futex-inl.h"; sourceTree = ""; }; - 3DADA606B8C057ADEBCB5E9445786FB7 /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; + 3D6A39C11AB41732F04B5DCBC4C192D1 /* react-native-cookies.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cookies.debug.xcconfig"; sourceTree = ""; }; + 3D6A7D1051A44C58772B267CE3C0CB9D /* BSGOnErrorSentBlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGOnErrorSentBlock.h; sourceTree = ""; }; + 3D8210E7D61088E626BC33C0AFF31B23 /* RCTScrollEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollEvent.m; sourceTree = ""; }; + 3D86D2A31A5C0B47043E1A36D380B41F /* RCTTypeSafety-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-prefix.pch"; sourceTree = ""; }; + 3DA24849CCBBC6DD9C7740C89655776A /* UIResponder+FirstResponderTemp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIResponder+FirstResponderTemp.h"; sourceTree = ""; }; 3DBCF2CFA6B9196E782F05003BFEB3E3 /* IndexedMemPool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IndexedMemPool.h; path = folly/IndexedMemPool.h; sourceTree = ""; }; - 3DC8A4B224AEF7E0E1E92DF483262A27 /* react-native-netinfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-netinfo.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 3DCCC9C42EB3E07CFD81800EC8A2515D /* QBImagePicker.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = QBImagePicker.bundle; path = "RNImageCropPicker-QBImagePicker.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; - 3DD9E75AA3D534EF30982FC4A81248EA /* EnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EnvironmentUtil.m; path = ios/RNDeviceInfo/EnvironmentUtil.m; sourceTree = ""; }; - 3DF526E4E93ACF0AC9E9F4CFA9F5FBBF /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 3DD200BF5701502D7B4E9ACFF160CDC1 /* ReactNativeShareExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeShareExtension.h; path = ios/ReactNativeShareExtension.h; sourceTree = ""; }; 3DFA608104A26481888AF421986C11E4 /* epolltable-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "epolltable-internal.h"; sourceTree = ""; }; 3E17D8288C72780F8067F47CB16FDE7E /* SysResource.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysResource.cpp; path = folly/portability/SysResource.cpp; sourceTree = ""; }; - 3E369252A69920EB832267852262ED84 /* react-native-simple-crypto-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-simple-crypto-dummy.m"; sourceTree = ""; }; - 3E5D9DD3FAD6AA13E27482A54160D3DE /* RCTView+SafeAreaCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTView+SafeAreaCompat.h"; path = "ios/SafeAreaView/RCTView+SafeAreaCompat.h"; sourceTree = ""; }; + 3E21C45B397F5E0D718972EB9A1AA3BD /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; + 3E6D248CD28BE41F933CC681EACB82F8 /* REAFunctionNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAFunctionNode.h; sourceTree = ""; }; 3E6E94B693FE00876871B854A67A2A1C /* FirebaseCrashlytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCrashlytics.debug.xcconfig; sourceTree = ""; }; 3E88485AF27879EA1753CBF403408C7A /* FBLPromise+Await.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Await.h"; path = "Sources/FBLPromises/include/FBLPromise+Await.h"; sourceTree = ""; }; 3E88D846200DFC32E1B1FB4A60EAF730 /* FIRCLSSignal.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSSignal.c; path = Crashlytics/Crashlytics/Handlers/FIRCLSSignal.c; sourceTree = ""; }; - 3E9BD9CB8DAE05A9F4592A77CFE061DB /* React-perflogger-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-perflogger-dummy.m"; sourceTree = ""; }; + 3E9BC6BA0472A721C157966D72DC29E8 /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; 3E9C9ECE7547F686B756902C9B85AD0D /* SetupResumeAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SetupResumeAcceptor.cpp; path = rsocket/internal/SetupResumeAcceptor.cpp; sourceTree = ""; }; - 3EA951621CD10F5E6E3B6F7D75726431 /* RNGestureHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerRegistry.h; path = ios/RNGestureHandlerRegistry.h; sourceTree = ""; }; 3EA9D6AF988840673AF7540C73AF91E8 /* LifoSemMPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LifoSemMPMCQueue.h; path = folly/executors/task_queue/LifoSemMPMCQueue.h; sourceTree = ""; }; 3EAD0B3A6057A359919AA91B85A91C4F /* ExecutionObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutionObserver.h; path = folly/experimental/ExecutionObserver.h; sourceTree = ""; }; 3EBB8DE63D81A58A5C248488CF5C0F61 /* PromisesObjC.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.release.xcconfig; sourceTree = ""; }; - 3ECD30BAF89FB6DDEF50CD85F2E4AAB7 /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyboardObserver.h; path = React/CoreModules/RCTKeyboardObserver.h; sourceTree = ""; }; 3EEAA606F6866DA20E6601B9655B1027 /* libBugsnagReactNative.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libBugsnagReactNative.a; path = libBugsnagReactNative.a; sourceTree = BUILT_PRODUCTS_DIR; }; 3EF4E581C7EAB7D5EBD1377F06CA0214 /* FIRInstallationsItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsItem.h; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.h; sourceTree = ""; }; - 3F051AEDE91D4957C0C3F84E70C68181 /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 3F11A1E42D71CCAA5D48973DA18EE089 /* RemoteObjectsTable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RemoteObjectsTable.h; sourceTree = ""; }; - 3F336AFF6CCC81636BB09D0E5FF870E6 /* RCTDevMenu.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevMenu.mm; sourceTree = ""; }; + 3F078F39E28D25346F07A1C58BABEFCD /* RCTLinkingPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingPlugins.h; path = Libraries/LinkingIOS/RCTLinkingPlugins.h; sourceTree = ""; }; + 3F27913042F4D16F669BC9B55EF37EC3 /* react-native-cookies-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-cookies-dummy.m"; sourceTree = ""; }; 3F3B13C8319674F7011E2EC4ECF09EA6 /* RequestResponseThroughputTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RequestResponseThroughputTcp.cpp; path = rsocket/benchmarks/RequestResponseThroughputTcp.cpp; sourceTree = ""; }; + 3F3BD9FE0ECD5B49CEFE657B3B74DA51 /* Registration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Registration.h; sourceTree = ""; }; 3F484593EFF29DBA96F4D324F71F0098 /* FutureSplitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureSplitter.h; path = folly/futures/FutureSplitter.h; sourceTree = ""; }; 3F4C9252C0AB1D6B047BB24CD5E7172C /* SDImageCacheDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheDefine.h; path = SDWebImage/Core/SDImageCacheDefine.h; sourceTree = ""; }; 3F522791A3F04533C3EE619702346991 /* FIRAnalyticsConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAnalyticsConfiguration.m; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.m; sourceTree = ""; }; - 3F57180E422673C4692FCB461E020874 /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = ""; }; + 3F5483E0672F46DDF80A6F09BA5152C4 /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = "jsilib-windows.cpp"; sourceTree = ""; }; + 3F633FC9A4ECFED62A7161EF40385593 /* EXVideoThumbnailsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXVideoThumbnailsModule.m; path = EXVideoThumbnails/EXVideoThumbnailsModule.m; sourceTree = ""; }; + 3F65646ECC691E18D39339948A9A1F33 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 3F7AF7C24195A31AE72C879CAD00133C /* Format-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Format-inl.h"; path = "folly/Format-inl.h"; sourceTree = ""; }; 3F813FC47D3E286B891888504333930C /* CocoaAsyncSocket-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CocoaAsyncSocket-dummy.m"; sourceTree = ""; }; 3F8B9DD0F5D0C01D1578E7363E4E1DC9 /* RequestResponseRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RequestResponseRequester.cpp; path = rsocket/statemachine/RequestResponseRequester.cpp; sourceTree = ""; }; - 3F93FA89E97BD72E71B198182FB2A5C5 /* RCTRequired.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRequired.h; path = RCTRequired/RCTRequired.h; sourceTree = ""; }; + 3F8F686F684238FD8D654AA6C5D5B1DA /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; 3F9E5087DC25C01058CCEF28892B1C75 /* SpookyHashV2.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SpookyHashV2.cpp; path = folly/hash/SpookyHashV2.cpp; sourceTree = ""; }; 3F9EBF0A4C3CC3EDC415626C8E7C4636 /* hermes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hermes.h; path = destroot/include/hermes/hermes.h; sourceTree = ""; }; - 3F9FC7E7CBCF1ED65FE6D79F702C0544 /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 3FA35B251233E0CD2A62A22DE7413B9E /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = ""; }; 3FAAD852C1CA9EF26844E8FA4D7D7229 /* RSocketServerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketServerState.h; path = rsocket/RSocketServerState.h; sourceTree = ""; }; 3FB18B497B48508BD83F35E98B89335D /* SocketAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketAddress.h; path = folly/SocketAddress.h; sourceTree = ""; }; - 3FC16B5822CD807AF238E1A6F803F523 /* UMFileSystemInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.debug.xcconfig; sourceTree = ""; }; 3FC593F0F6C973BD78BDD755CB42A289 /* ratelim-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ratelim-internal.h"; sourceTree = ""; }; - 3FF6F8DBB4B5B0A8A057D76CA075B8CF /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; - 40123FB2C7C27669E5D228D929778590 /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; - 4015B082139928B6E2862D193107C09B /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = ""; }; - 40213F7ED9829D61A078FF57E8BFA506 /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = ""; }; + 40192D0027FE3F73F92FFE2B8AF7A78F /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; 402AAB81A0A41700074D0620AF821F75 /* ssim_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim_sse2.c; path = src/dsp/ssim_sse2.c; sourceTree = ""; }; - 4037513116F425CCFC4AB7FE140F8F63 /* rn-extensions-share.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.debug.xcconfig"; sourceTree = ""; }; 4047BC0750B116B1191149A8E7B5389B /* libreact-native-mmkv-storage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-mmkv-storage.a"; path = "libreact-native-mmkv-storage.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 4068FB95892206282347082A92DDF33C /* SafeAreaSpacerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SafeAreaSpacerView.m; sourceTree = ""; }; - 407416942DB174729AF480B0485E62CC /* ReactNativeUiLib.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeUiLib.release.xcconfig; sourceTree = ""; }; - 4075B0E596DBA2515CC363B4E72837F6 /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; + 4068B8AF1FED71038AE3FE70D82055F0 /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = ""; }; 40957D11A50DE6E72211996E3F5392B0 /* UIImage+ForceDecode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ForceDecode.m"; path = "SDWebImage/Core/UIImage+ForceDecode.m"; sourceTree = ""; }; 40B967F7C56A728EEBFFF403E70495A0 /* Hazptr.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Hazptr.cpp; path = folly/synchronization/Hazptr.cpp; sourceTree = ""; }; - 40CD55D43B87E836C7FC1180FE897315 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 40C245091BB61392A5C0FEFAF15BF406 /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; 40D346238B3A3AF31BB285B00C29A094 /* FLEXNetworkRecorder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkRecorder.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkRecorder.h; sourceTree = ""; }; + 40D47D7CB3CE368C41CE58178D446F27 /* RNCSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSliderManager.m; path = ios/RNCSliderManager.m; sourceTree = ""; }; + 40D6B8422E3644B47E48FEDC7A277629 /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXAV/EXAudioRecordingPermissionRequester.m; sourceTree = ""; }; 40D77212AD7D72BB9EB317A8F71F76AC /* SKObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKObject.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKObject.h; sourceTree = ""; }; - 40E720BA850671C501E267E326B391AF /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 4100516A2F71C4FCEFF4C192A3E25A5C /* FIRCLSURLSessionDataTask_PrivateMethods.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionDataTask_PrivateMethods.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionDataTask_PrivateMethods.h; sourceTree = ""; }; + 411C5D3090597F745A84709D99C44A6B /* RCTNetworkTask.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworkTask.mm; sourceTree = ""; }; 41236F51B186E3AD72EC8098158E3633 /* CrashManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CrashManager.h; path = destroot/include/hermes/Public/CrashManager.h; sourceTree = ""; }; - 4129090DE76D1CBEFAACA23CC3C75113 /* BSG_KSObjC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSObjC.c; sourceTree = ""; }; - 4156BBA7834D6C6E55D194C89C53915F /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; + 41301A2B164A2E2586DB33EB7EA7DFC7 /* RCTLogBoxView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLogBoxView.h; path = React/CoreModules/RCTLogBoxView.h; sourceTree = ""; }; + 4138CC76BD93E8D27D33B1DC80BFD1A7 /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTMessageThread.mm; sourceTree = ""; }; + 413F677E17E91D83904D400E7DF52DBA /* EXSessionResumableDownloadTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionResumableDownloadTaskDelegate.m; sourceTree = ""; }; + 414D87E844AD74314047F1E73E041E3B /* BSGConfigurationBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGConfigurationBuilder.m; sourceTree = ""; }; + 4150B1022A1C4EA48976C1918DB2DA4D /* RNDocumentPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDocumentPicker.m; path = ios/RNDocumentPicker/RNDocumentPicker.m; sourceTree = ""; }; + 4158D7C8F9D15F608EA072E56C9C5029 /* RsaFormatter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RsaFormatter.m; sourceTree = ""; }; + 416922757DBB94A29AA7BA3BE7FD9908 /* BugsnagMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagMetadata.h; sourceTree = ""; }; 416D359A4FC7BB38FDA1EF50B2C9654C /* FIRInstallationsErrorUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrorUtil.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.h; sourceTree = ""; }; 416EEA29D5AD9BC6C8A5E7C50814100B /* bit_reader_inl_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bit_reader_inl_utils.h; path = src/utils/bit_reader_inl_utils.h; sourceTree = ""; }; 41718BA175DA03A8FF8BD8BC05A1E6E8 /* UIColor+SKSonarValueCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+SKSonarValueCoder.h"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIColor+SKSonarValueCoder.h"; sourceTree = ""; }; + 41855C855146AEE29E3AD4431CB64A27 /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Solid.ttf; path = Fonts/FontAwesome5_Solid.ttf; sourceTree = ""; }; 41B034CB24DAE6CFF748E08DAD09A2DA /* ParallelMap-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ParallelMap-inl.h"; path = "folly/gen/ParallelMap-inl.h"; sourceTree = ""; }; 41B4DD6B88E7EA1B7760F352EBEE8C01 /* bignum-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "bignum-dtoa.h"; path = "double-conversion/bignum-dtoa.h"; sourceTree = ""; }; - 41C26FA032AB83618A65DDD23EE12663 /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = ""; }; - 41C6226D2A2E1887F08D45F1C60C9D9A /* RNDateTimePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePicker.h; path = ios/RNDateTimePicker.h; sourceTree = ""; }; - 41D19D3BC27AEF5470E562A5FF4378D0 /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFollyConvert.mm; sourceTree = ""; }; + 41BEDDA58A460F4905BC985C1FDBC27D /* REACallFuncNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACallFuncNode.m; sourceTree = ""; }; + 41CD4FE0B9F16B00300218C0DC70ABF9 /* RCTHmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHmac.h; path = ios/RCTCrypto/RCTHmac.h; sourceTree = ""; }; 41E391FB458EE549981AC519F05E9422 /* libwebp-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "libwebp-prefix.pch"; sourceTree = ""; }; + 41ED38A68DA467AB533D7CF924B6A63F /* Pods-defaults-ShareRocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-defaults-ShareRocketChatRN.debug.xcconfig"; sourceTree = ""; }; 41FA13DF57954BD5E585AB26E68DE195 /* GULHeartbeatDateStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorage.h; path = GoogleUtilities/Environment/Private/GULHeartbeatDateStorage.h; sourceTree = ""; }; - 4204176EF5A4030028F636FFD1E8A41B /* BugsnagCrashSentry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashSentry.m; sourceTree = ""; }; - 421514AC35089A123F82847212688512 /* RCTAes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAes.h; path = ios/RCTCrypto/RCTAes.h; sourceTree = ""; }; + 42042C1A71F24D6A33EB035C65A1C078 /* react-native-mmkv-storage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-mmkv-storage-prefix.pch"; sourceTree = ""; }; + 4206D953AD1F576B3D25AB9DF3998B7E /* BugsnagDeviceWithState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagDeviceWithState.h; sourceTree = ""; }; 421A4791005C1BA0283FE5ED2FEEF2AF /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = src/raw_logging.cc; sourceTree = ""; }; 4225A60B45A95BED41217E53FC10BDDB /* PolyException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PolyException.h; path = folly/PolyException.h; sourceTree = ""; }; - 422B3205071C101532F25B9077D57A64 /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; - 4235868962C8D8DEF5EAE9896B79E6CB /* RNCSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaView.m; path = ios/SafeAreaView/RNCSafeAreaView.m; sourceTree = ""; }; - 4257DE517EBD8606610FFEC462A56B0B /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.h; sourceTree = ""; }; + 42734B3C6C2639A8757DAB59B6F974E4 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 4290579F62D9CCDBE1FEE050E84B7F2C /* ScheduledFrameProcessor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScheduledFrameProcessor.cpp; path = rsocket/framing/ScheduledFrameProcessor.cpp; sourceTree = ""; }; + 42961159B1D3A64B02FE53F5D5921D7B /* RNGestureHandlerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerManager.m; path = ios/RNGestureHandlerManager.m; sourceTree = ""; }; 429C870EF7851C5214B985CA7719601D /* VirtualEventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = VirtualEventBase.cpp; path = folly/io/async/VirtualEventBase.cpp; sourceTree = ""; }; - 42B00DB0587074A3C1364495D0F9CCBD /* VibrancyViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = VibrancyViewManager.m; path = ios/VibrancyViewManager.m; sourceTree = ""; }; - 42C7BFA8839318E173CD5F277B397D48 /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = ""; }; 42C85A45524DE2BA8DD6A46943FFF9E1 /* Uri.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Uri.h; path = folly/Uri.h; sourceTree = ""; }; - 42CCAE143472AD95202E046EFCF4DE38 /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobManager.mm; sourceTree = ""; }; 42D2022526F4B2777243BC68F4ABF49F /* UniqueInstance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UniqueInstance.cpp; path = folly/detail/UniqueInstance.cpp; sourceTree = ""; }; - 42D664A0C02CE8B359FBC56C3FF16612 /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; 42E07FEF574DA0ECD1BC7F643A4EC7CE /* json_pointer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_pointer.cpp; path = folly/json_pointer.cpp; sourceTree = ""; }; 42E3DD27E3C62F7A40FD2F65470B1589 /* PThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PThread.h; path = folly/portability/PThread.h; sourceTree = ""; }; 42E9A5F1D01E71AAEF7A1C0EE956D535 /* ScopedEventBaseThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScopedEventBaseThread.cpp; path = folly/io/async/ScopedEventBaseThread.cpp; sourceTree = ""; }; 43032CE22287A7D741D63E15464A404B /* ScopeGuard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopeGuard.h; path = folly/ScopeGuard.h; sourceTree = ""; }; 430CB77D6D03E7480CD6EDB29C7352B3 /* RelaxedConcurrentPriorityQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RelaxedConcurrentPriorityQueue.h; path = folly/experimental/RelaxedConcurrentPriorityQueue.h; sourceTree = ""; }; + 430D3FDF8D298AD145FDF3A90FD69493 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 43169030F1ECA77C243FA88624499E18 /* FIRCLSHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSHandler.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSHandler.h; sourceTree = ""; }; - 431C91E68C9AE179C2CAFD56C3051B9C /* RCTWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWeakProxy.h; sourceTree = ""; }; + 432D193BB206D15FA4F612B0D3090FBC /* BSG_KSCrash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrash.h; sourceTree = ""; }; 4340B7430F3D81B338E9EB775A64D8D7 /* vp8i_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_dec.h; path = src/dec/vp8i_dec.h; sourceTree = ""; }; - 43462A4C81987292895FEC812FF44DA8 /* RCTAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimatedImage.h; path = Libraries/Image/RCTAnimatedImage.h; sourceTree = ""; }; - 4362EF020BB9A08D93EC9E4761DE2237 /* RNBootSplash.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNBootSplash.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 434E94F8ABB8EC5550FB9722BBAB5A64 /* BugsnagLastRunInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagLastRunInfo.m; sourceTree = ""; }; + 435AE9BC5C9E3CF7503A8F43DB6123FC /* BSG_KSCrashSentry_NSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_NSException.h; sourceTree = ""; }; 4376713BCD5106D4E76A07353B85BF9E /* FIRCLSRecordHost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordHost.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordHost.m; sourceTree = ""; }; - 43786C2D8AFD12763D9DC05696BC9EC0 /* RCTLinkingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLinkingManager.mm; sourceTree = ""; }; 4384560BA5989E2B948CB1DB46E0181E /* FlipperCertificateExchangeMedium.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCertificateExchangeMedium.h; path = xplat/Flipper/FlipperCertificateExchangeMedium.h; sourceTree = ""; }; 43861F8B5D923063441C6C9B76B000CA /* Observables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observables.h; path = yarpl/observable/Observables.h; sourceTree = ""; }; + 43872AEC50F02D54258971586CCE5B86 /* RNGestureHandler.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNGestureHandler.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 43926C42B8EDE22B6094E95AC9E82CC8 /* SDDiskCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDiskCache.m; path = SDWebImage/Core/SDDiskCache.m; sourceTree = ""; }; 4393B1186FA44A018BBFA28C519A8C4A /* FIRCLSNetworkResponseHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSNetworkResponseHandler.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSNetworkResponseHandler.h; sourceTree = ""; }; + 43ACA7A17003998EDE71C59EE7DDBB10 /* libPods-defaults-NotificationService.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-defaults-NotificationService.a"; path = "libPods-defaults-NotificationService.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 43AEA98D17B75654E59BC31D37C4AE24 /* CacheLocality.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CacheLocality.h; path = folly/concurrency/CacheLocality.h; sourceTree = ""; }; - 43B0BCB384FA2C2B90881B82B576894B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 43AF0B370689AA129AD26A1065F12CAE /* BSG_KSCrashIdentifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashIdentifier.h; sourceTree = ""; }; 43BA4D2D3218ED77C5BA9CB2D3F81FD1 /* SpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpinLock.h; path = folly/SpinLock.h; sourceTree = ""; }; 43BC01F6464C78A7AD978DBF451A3241 /* RangeCommon.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RangeCommon.cpp; path = folly/detail/RangeCommon.cpp; sourceTree = ""; }; + 43CFFE187D922E2A69DF28EEEF6CB5D5 /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; + 43D4CFD7E0C1B4DBC898DD936DB82101 /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; 43D561D4EA27F9FF3B798E950D15E161 /* SwappableEventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SwappableEventBase.cpp; path = rsocket/internal/SwappableEventBase.cpp; sourceTree = ""; }; - 43EBCD8EE86F7C9E96A85F66ED497213 /* react-native-notifications.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.debug.xcconfig"; sourceTree = ""; }; - 44036119557B4464513ACB6E0DD07799 /* Pods-NotificationService-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-NotificationService-umbrella.h"; sourceTree = ""; }; + 43FE0A52F652BCA6541CD75F6855A028 /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; + 44122EACFF785CC25F182DF7C765E7E3 /* RNLocalize.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.debug.xcconfig; sourceTree = ""; }; 44146B6A81E627EDACB9809D2DD4EB2A /* CompileJS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompileJS.h; path = destroot/include/hermes/CompileJS.h; sourceTree = ""; }; - 441C502673B52E2B2CFADF89D4FA2660 /* RNCSafeAreaViewMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewMode.h; path = ios/SafeAreaView/RNCSafeAreaViewMode.h; sourceTree = ""; }; + 441502CC4AA123448A17A4F45A9351DD /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; 441EAB302C099E80DE9A5B559150B9ED /* FIRCLSOnboardingOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSOnboardingOperation.m; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSOnboardingOperation.m; sourceTree = ""; }; - 4424569666BFAAF9BAFA2791F9CB4300 /* RNVectorIconsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNVectorIconsManager.m; path = RNVectorIconsManager/RNVectorIconsManager.m; sourceTree = ""; }; + 442D2F71BDC5E59CA5DF4FA8490BFFD9 /* EXKeepAwake.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXKeepAwake.m; path = EXKeepAwake/EXKeepAwake.m; sourceTree = ""; }; 442ECB432E7884203A62F2A6522EF418 /* GTest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTest.h; path = folly/portability/GTest.h; sourceTree = ""; }; + 443779677599696911099703F1E27B42 /* React-cxxreact.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.debug.xcconfig"; sourceTree = ""; }; 444A46906D8E12F1A3B33616C40E9FE0 /* UncaughtExceptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UncaughtExceptions.h; path = folly/lang/UncaughtExceptions.h; sourceTree = ""; }; - 4472B00AC0D4D8655D54A55A0A190E06 /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = ""; }; - 448CE5F64D3458C4CA76D1C124E5F59B /* RNConfigReader.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNConfigReader.debug.xcconfig; sourceTree = ""; }; - 44B053FA00285F2C0DCD94BEAC5D0B76 /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = ""; }; - 44B3AC3A382198A1FC1377764842E54A /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; - 44BE1F1FD344C4C6C964AED218C6E055 /* RNDeviceInfo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.debug.xcconfig; sourceTree = ""; }; - 44C68B0BF6CD21A146605DA60902B87C /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = ""; }; - 44CA2DC53D39D61434A8271E72027722 /* RCTActionSheetManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTActionSheetManager.mm; sourceTree = ""; }; + 445FC593F30485717EBE305592618FD6 /* QBCheckmarkView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBCheckmarkView.m; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.m; sourceTree = ""; }; + 44747932CB8EA27D3A71CBE61CC868EB /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; + 44849A07404CF4A3B58A4DA314A75331 /* RCTRsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRsa.h; path = ios/RCTCrypto/RCTRsa.h; sourceTree = ""; }; 44CDC77F327D712E76506179E42099DA /* backward_references_cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_cost_enc.c; path = src/enc/backward_references_cost_enc.c; sourceTree = ""; }; 44D271098B5BCC88549B07E033D7938E /* ManualTimekeeper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ManualTimekeeper.cpp; path = folly/futures/ManualTimekeeper.cpp; sourceTree = ""; }; + 44D4034EE561C21C1F6F12E807E4ABC5 /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; 44F48B8158CB28A50A3532A4FA69E365 /* FBLPromise+All.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+All.h"; path = "Sources/FBLPromises/include/FBLPromise+All.h"; sourceTree = ""; }; - 4505A2DC2AA94681B244E2CF6D831A75 /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = ""; }; 450830B6145DACC4C6D5A7DC4011A9DB /* Uri-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Uri-inl.h"; path = "folly/Uri-inl.h"; sourceTree = ""; }; 45194B070A74DA7215769FF55734FF1C /* TcpConnectionAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpConnectionAcceptor.cpp; path = rsocket/transports/tcp/TcpConnectionAcceptor.cpp; sourceTree = ""; }; - 45252E0FABE010F3C70C129164C32B79 /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; 45269C5EE793D1B620BDCB32BD86F9FA /* IOBuf.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IOBuf.cpp; path = folly/io/IOBuf.cpp; sourceTree = ""; }; 452CC8CE14DB69F8B48468BE79829A20 /* rescaler_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips_dsp_r2.c; path = src/dsp/rescaler_mips_dsp_r2.c; sourceTree = ""; }; + 4535D92010F9CAB039FDCFF9CD6BA233 /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; 453EE913EAEECD3E8429629404148DE5 /* ht-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ht-internal.h"; sourceTree = ""; }; 45420B71146AFC154A4B2DF43AD79E2B /* bit_reader_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_reader_utils.c; path = src/utils/bit_reader_utils.c; sourceTree = ""; }; + 4546ECEAF10646D27459F8AFDD145330 /* RCTRequired.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRequired.h; path = RCTRequired/RCTRequired.h; sourceTree = ""; }; + 454A520F2F73FC2B2E8C35BC65566A9B /* RNLocalize.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.release.xcconfig; sourceTree = ""; }; 454E9EA0FB4C60C3075490BC8A0DE5D9 /* FIRCLSReport_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReport_Private.h; path = Crashlytics/Crashlytics/Models/FIRCLSReport_Private.h; sourceTree = ""; }; + 4559436A7956CE8D06BFF9273BCC41CB /* EXKeepAwake-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXKeepAwake-prefix.pch"; sourceTree = ""; }; 45688CB7F4790EFA9F1BA88B21774843 /* double-conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "double-conversion.h"; path = "double-conversion/double-conversion.h"; sourceTree = ""; }; 457BF153D04F4820C937FA37AFCD368D /* bufferevent.c */ = {isa = PBXFileReference; includeInIndex = 1; path = bufferevent.c; sourceTree = ""; }; 45819A60A49C114E82122B36C16F91E0 /* RSocketResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketResponder.cpp; path = rsocket/RSocketResponder.cpp; sourceTree = ""; }; 459058C8C420DB25AC00366251542B31 /* GDTCORTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer.h; sourceTree = ""; }; 45933FD560F9D023DC39B0A5D8792B0B /* FIRCLSURLSessionAvailability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionAvailability.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/FIRCLSURLSessionAvailability.h; sourceTree = ""; }; - 459C9A09C637182BA7152B33A7E9DC5B /* UMBarCodeScannerInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.debug.xcconfig; sourceTree = ""; }; - 45A27F45E451616474EE3BA06E6192CA /* RCTTurboModuleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModuleManager.h; sourceTree = ""; }; + 45ADF538F25776E64060B02AABA07AF4 /* EXConstants.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.release.xcconfig; sourceTree = ""; }; 45AFBA3BB759B887B744ADC25D4DF6D7 /* FlipperResponderImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperResponderImpl.h; path = xplat/Flipper/FlipperResponderImpl.h; sourceTree = ""; }; - 45FB3F7CC6A63A51F47CF5D70049EC1B /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = ""; }; - 460ACBD9D5F38F734A4148F9B6A2FD86 /* RCTCustomInputControllerTemp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomInputControllerTemp.m; sourceTree = ""; }; + 45CA01141554D9AC3DBB8776F286FFEC /* REAFunctionNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAFunctionNode.m; sourceTree = ""; }; + 45CBAD2BE825C521ABDEF3571C99DFF1 /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 45DF22CFEC6C88AEF4D15C665F595E8A /* RNFBApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBApp.debug.xcconfig; sourceTree = ""; }; 462C48E8BA7700B5491CB4AB994C7950 /* DiscriminatedPtrDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DiscriminatedPtrDetail.h; path = folly/detail/DiscriminatedPtrDetail.h; sourceTree = ""; }; 463B9B93FEF2AB780CA5E2E4FC38E86E /* GDTCORClock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORClock.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORClock.h; sourceTree = ""; }; 463C40BF9D263B0F0FFCC31EBEE4F3DD /* dec_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse2.c; path = src/dsp/dec_sse2.c; sourceTree = ""; }; + 463EAB7F09AAE5365F3A56A8C90295A1 /* RNFetchBlobRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobRequest.m; path = ios/RNFetchBlobRequest.m; sourceTree = ""; }; + 463FD6CE5E4650310F45D38D814546AB /* REAStyleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAStyleNode.h; sourceTree = ""; }; 46472793B74C28B0DD2EFD7560D4848A /* Subscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subscriber.h; path = yarpl/flowable/Subscriber.h; sourceTree = ""; }; 4647C9AE1DB91B4C22C79A10ACFCDDC6 /* fast-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fast-dtoa.h"; path = "double-conversion/fast-dtoa.h"; sourceTree = ""; }; 464D88FB4501E834EE17D24AF6A393EF /* FIRCLSCrashedMarkerFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCrashedMarkerFile.h; path = Crashlytics/Crashlytics/Components/FIRCLSCrashedMarkerFile.h; sourceTree = ""; }; @@ -10126,36 +10467,36 @@ 4652354732BAAD1E1BF37A644FBCFB1D /* DefaultKeepAliveExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DefaultKeepAliveExecutor.h; path = folly/DefaultKeepAliveExecutor.h; sourceTree = ""; }; 4657CCCB92CCDDA25EF0802548198033 /* WriteChainAsyncTransportWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WriteChainAsyncTransportWrapper.h; path = folly/io/async/WriteChainAsyncTransportWrapper.h; sourceTree = ""; }; 466E3D289B88C4EDE7CC37D8C9EEC208 /* EventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventHandler.h; path = folly/io/async/EventHandler.h; sourceTree = ""; }; + 4670D8DA5D87EEFC41A8D2E7E4631AC8 /* BugsnagBreadcrumb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagBreadcrumb.h; sourceTree = ""; }; + 467A1C2E44EBBD5913A8C578602C5AAE /* EXVideoThumbnails-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXVideoThumbnails-dummy.m"; sourceTree = ""; }; 467EFFCEBA0775F7D87CA343E87134AF /* ThreadCachedInts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedInts.h; path = folly/synchronization/detail/ThreadCachedInts.h; sourceTree = ""; }; - 46863C2F43604E20A65950938765D26B /* REAPropsNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAPropsNode.m; sourceTree = ""; }; 4687F8325AF288C107CAFE8BE316EEDD /* DistributedMutexSpecializations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DistributedMutexSpecializations.h; path = folly/synchronization/DistributedMutexSpecializations.h; sourceTree = ""; }; 469009AF4E41FD57592E38B8933095BE /* upsampling_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_neon.c; path = src/dsp/upsampling_neon.c; sourceTree = ""; }; - 469F3F63EC4D8CF348CA1DE498F5FB0C /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; 469FC656713290E03642BE6E71A20834 /* ObservableDoOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservableDoOperator.h; path = yarpl/observable/ObservableDoOperator.h; sourceTree = ""; }; 46B53E77B1FA9966C50B3BF377B08F20 /* GCDAsyncUdpSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDAsyncUdpSocket.m; path = Source/GCD/GCDAsyncUdpSocket.m; sourceTree = ""; }; - 46B5C746991BB21AB345F113FDD64D59 /* EXKeepAwake.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXKeepAwake.debug.xcconfig; sourceTree = ""; }; + 46B626453142EFDFCD5CFFCB077A10B4 /* React-RCTVibration.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTVibration.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 46BA6E771CACE78454D8AA68F8424498 /* GDTCCTUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTUploader.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTUploader.m; sourceTree = ""; }; 46BED2DF70C6BAE76102F1EED1551686 /* IPAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddress.h; path = folly/IPAddress.h; sourceTree = ""; }; 46CD1A9F5FC1F1EAE2FBD43827A6D039 /* IPAddressV6.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IPAddressV6.cpp; path = folly/IPAddressV6.cpp; sourceTree = ""; }; 46CDBAA05655D7D881FA38D4BD265FF0 /* ProxyLockable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProxyLockable.h; path = folly/synchronization/detail/ProxyLockable.h; sourceTree = ""; }; - 470C415D050AECE5E1CF430D95758BF7 /* react-native-cameraroll-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-cameraroll-prefix.pch"; sourceTree = ""; }; + 46F8E31A46FEC6CF9983BA7069B34C96 /* RNJitsiMeetView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetView.h; path = ios/RNJitsiMeetView.h; sourceTree = ""; }; + 470178089A8B574E25BA6E16B07CA254 /* TurboModuleBinding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TurboModuleBinding.h; sourceTree = ""; }; + 47104D1984A5C2F25BE8C9292B94B0AB /* installation.md */ = {isa = PBXFileReference; includeInIndex = 1; name = installation.md; path = docs/installation.md; sourceTree = ""; }; + 471436C5FCF70211E89590CF81E793B6 /* UMPermissionsMethodsDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsMethodsDelegate.h; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.h; sourceTree = ""; }; 4719575195AD664C0B7ABD653A1ABDB6 /* Cursor-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Cursor-inl.h"; path = "folly/io/Cursor-inl.h"; sourceTree = ""; }; 472D02EEF0092AF824E9106FFB083347 /* Executor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Executor.cpp; path = folly/Executor.cpp; sourceTree = ""; }; 473EAED02F9A9B0273273EC3A0DC6C8F /* SDImageCoderHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoderHelper.h; path = SDWebImage/Core/SDImageCoderHelper.h; sourceTree = ""; }; - 474223D795B2A606A21D7215C2DCBC9C /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = ""; }; + 475F5E2ABC28DCE812339550EE14A300 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = SimpleLineIcons.ttf; path = Fonts/SimpleLineIcons.ttf; sourceTree = ""; }; 4769820499D04031C91A6FC6F516BD20 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Sources/Private/FirebaseCoreInternal.h; sourceTree = ""; }; - 476A06F8FF3F0291E4E7579E63037F9F /* ReactNativeUiLib-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeUiLib-dummy.m"; sourceTree = ""; }; 4773ED3ABA888E69EA224359149F325D /* UIView+Yoga.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+Yoga.m"; path = "YogaKit/Source/UIView+Yoga.m"; sourceTree = ""; }; - 4788C60996B972D1306C2CFEDC6D0F40 /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = ""; }; - 479D8E3AD31B5C8B9194AF439B56E901 /* react-native-mmkv-storage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-mmkv-storage-dummy.m"; sourceTree = ""; }; + 478A05532884A912CEC3CE2A3FBFBDAB /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; + 478DF8C445CCDF77B39FA9B32149D61C /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; + 479E5A6756BD9FAFAF7BDE8B58EA1D30 /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = React/CoreModules/RCTWebSocketModule.h; sourceTree = ""; }; 47AB360C660F2545750D62C057AECBF9 /* GDTCORTransport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransport.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransport.m; sourceTree = ""; }; 47C809345916A8DA682664885653FA91 /* AtomicUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUtil.h; path = folly/synchronization/AtomicUtil.h; sourceTree = ""; }; 47C84FA9DBDB8034B972C27156F21F00 /* Merge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Merge.h; path = folly/container/Merge.h; sourceTree = ""; }; - 47E86F3C39AFA523236DE69000D99039 /* REASetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASetNode.m; sourceTree = ""; }; - 47E979636E1E0DF746A3AAB12AFC7949 /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; 48040670F59DBB3F85B5BDCCA8100CAC /* DynamicParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicParser.h; path = folly/experimental/DynamicParser.h; sourceTree = ""; }; - 48043D3EA7129121701C47C56E10A8FF /* RCTAlertManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAlertManager.mm; sourceTree = ""; }; - 480FA2DA01F8F810259D7713990142B5 /* react-native-jitsi-meet.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-jitsi-meet.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 480AA8188F9EA701921324A062433032 /* ARTGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTGroup.h; path = ios/ARTGroup.h; sourceTree = ""; }; 482C6BFEBA32EB9077DAFBC6513FFC1D /* GDTCORRegistrar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORRegistrar.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORRegistrar.m; sourceTree = ""; }; 4835786E04114DA8AC9459D9771373BF /* TOCropToolbar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropToolbar.m; path = "Objective-C/TOCropViewController/Views/TOCropToolbar.m"; sourceTree = ""; }; 4836A09444BBA1E2ED8276289A682230 /* GlobalExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalExecutor.h; path = folly/executors/GlobalExecutor.h; sourceTree = ""; }; @@ -10164,62 +10505,57 @@ 485C781CBCAEAD3D09B21CB983E20236 /* MapUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MapUtil.h; path = folly/MapUtil.h; sourceTree = ""; }; 486C74AA4878D5F7A4C090DB04C9CE3B /* AtomicRef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicRef.h; path = folly/synchronization/AtomicRef.h; sourceTree = ""; }; 48703AABCD31CFFBC91011A16BF55EEC /* YGLayout+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "YGLayout+Private.h"; path = "YogaKit/Source/YGLayout+Private.h"; sourceTree = ""; }; - 48789930FD5480441AD35F9EAD9A1F61 /* RNVectorIcons-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNVectorIcons-dummy.m"; sourceTree = ""; }; - 487CEC89AFF0DCBE9337BAEF7F1F156A /* LNAnimatorTemp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNAnimatorTemp.h; sourceTree = ""; }; 487D1690697E71AB3608BBB1B971C59D /* FIRInstallationsSingleOperationPromiseCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsSingleOperationPromiseCache.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.m; sourceTree = ""; }; - 488E883A1668AD27DE02DA6C8B1166EB /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; - 48A2DB68E2356F45E061527A12961AD9 /* HighlighterView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = HighlighterView.m; sourceTree = ""; }; - 48B3E535497202325EB89BD41651A560 /* BugsnagReactNative.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = BugsnagReactNative.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 4881DB0D5458E784FDA1D1DB2C6C66BD /* HighlighterViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = HighlighterViewManager.m; sourceTree = ""; }; + 48ABB4CD1CC777F2F66B8C111701D150 /* RNReanimated-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNReanimated-prefix.pch"; sourceTree = ""; }; 48D3CB40A59D83C6E945D88CC2CC0214 /* Launder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Launder.h; path = folly/lang/Launder.h; sourceTree = ""; }; - 48FE8DD4BFEB046D5CAE3925E26CB412 /* EXLocalAuthentication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocalAuthentication.m; path = EXLocalAuthentication/EXLocalAuthentication.m; sourceTree = ""; }; - 491287C43FB178F30432173009BDD921 /* InspectorState.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = InspectorState.cpp; sourceTree = ""; }; - 491C51CD28536CB3C58BBB9969764C6F /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; - 491FA9528E2B3B4E929893150763AA85 /* FBLazyVector.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.debug.xcconfig; sourceTree = ""; }; + 48FF49A5736D3E0E27EEF1C0B1B69DEE /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; 49223835FFBCC772834BC23A41BF7AE6 /* Random.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Random.cpp; path = folly/Random.cpp; sourceTree = ""; }; - 4925723943684CC0EFCE116A456047FF /* RCTRsaUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTRsaUtils.m; path = ios/RCTCrypto/RCTRsaUtils.m; sourceTree = ""; }; - 4928000D5821F6CD15D68D7CF809D66E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 492C2F67A9C418ADE27FE61B3781B974 /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; + 4931A8E8445EAB969B58E1A2F8890A80 /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = ""; }; 493DCB98EA5DCFD10DAB11CBB5E00622 /* GMock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMock.h; path = folly/portability/GMock.h; sourceTree = ""; }; 493FC93BC275FAAD101E6DE53C3A6E29 /* SKStateUpdateCPPWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKStateUpdateCPPWrapper.h; path = iOS/FlipperKit/SKStateUpdateCPPWrapper.h; sourceTree = ""; }; + 494B50D5D5537B2B9842B43BE6116BEE /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = ""; }; 494B87A43A32CA29805FA67042D33BDE /* dec_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_msa.c; path = src/dsp/dec_msa.c; sourceTree = ""; }; 494E934B4070A029E1A8D42C9BDF4646 /* libEXImageLoader.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXImageLoader.a; path = libEXImageLoader.a; sourceTree = BUILT_PRODUCTS_DIR; }; 495EB46C90284196792D3BC2F73D02C9 /* TOCropViewControllerTransitioning.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropViewControllerTransitioning.h; path = "Objective-C/TOCropViewController/Models/TOCropViewControllerTransitioning.h"; sourceTree = ""; }; + 49835B928F1BD03B9BF8EFAFBC8B036A /* BugsnagReactNative.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagReactNative.m; sourceTree = ""; }; 4990C4B9B9AA45A9F6839CFF93A49CEC /* UTF8String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UTF8String.h; path = folly/UTF8String.h; sourceTree = ""; }; - 499211ABA58F4E4365B47BFD78181E5A /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; 4993498A328BEB89326E75F6E62CD440 /* bignum-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "bignum-dtoa.h"; path = "double-conversion/bignum-dtoa.h"; sourceTree = ""; }; 49A802672B0D87070DE29302B001CBCD /* FlowableOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableOperator.h; path = yarpl/flowable/FlowableOperator.h; sourceTree = ""; }; 49ADD9E9092F2EBE6E2D3FCF1CEF87FB /* Unistd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unistd.h; path = folly/portability/Unistd.h; sourceTree = ""; }; 49D53E5ECAFF69A7D6F6C7CCC60D004A /* YGLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YGLayout.m; path = YogaKit/Source/YGLayout.m; sourceTree = ""; }; 4A04C5093939CC2837C05F0DF48DDCAA /* StaticConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticConst.h; path = folly/lang/StaticConst.h; sourceTree = ""; }; - 4A09100047E992538C7D75B4F541F18A /* RCTRequired.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.release.xcconfig; sourceTree = ""; }; 4A0DE597E4F93AA89C807FF6F46D7B65 /* FlipperDiagnosticsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperDiagnosticsViewController.m; path = iOS/FlipperKit/FlipperDiagnosticsViewController.m; sourceTree = ""; }; 4A1451795BAB36BC948A32F0BA98E35F /* Dirent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Dirent.h; path = folly/portability/Dirent.h; sourceTree = ""; }; 4A21DCEF09547DEB64B4744FAAD03666 /* StaticTracepoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticTracepoint.h; path = folly/tracing/StaticTracepoint.h; sourceTree = ""; }; 4A250A57F6B6B341255994B45DE729FA /* Malloc.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Malloc.cpp; path = folly/portability/Malloc.cpp; sourceTree = ""; }; 4A2B792B80ED688B169D906DB78A6E39 /* GULAppEnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppEnvironmentUtil.m; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.m; sourceTree = ""; }; - 4A484C1D078AFA7FB230A1CA36002D48 /* RNFetchBlobFS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobFS.h; path = ios/RNFetchBlobFS.h; sourceTree = ""; }; + 4A3539FC5276FDA9160CBF06662BF190 /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; + 4A503693896CA041F220F3392F98D2C4 /* BugsnagReactNative-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BugsnagReactNative-dummy.m"; sourceTree = ""; }; 4A509BA41AB36AFEFE7EC02BD8CA6ED5 /* demux.c */ = {isa = PBXFileReference; includeInIndex = 1; name = demux.c; path = src/demux/demux.c; sourceTree = ""; }; - 4A54730A4D16F602A7A23A860204F61D /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; 4A665DDBA684A68855493C39C9A17880 /* ConstexprMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConstexprMath.h; path = folly/ConstexprMath.h; sourceTree = ""; }; + 4A764BEE14BC35267D9FD25C78F6BB89 /* RNCAsyncStorage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCAsyncStorage.release.xcconfig; sourceTree = ""; }; + 4A791F484CACBA763C26A0655365C583 /* BSG_KSMach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMach.h; sourceTree = ""; }; 4A7A40CF223EA236B4C3E3A43161EBA8 /* IPAddressV6.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressV6.h; path = folly/IPAddressV6.h; sourceTree = ""; }; 4A7DC779EC9F79607D650D429C2CFB5E /* Hardware.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hardware.h; path = folly/synchronization/detail/Hardware.h; sourceTree = ""; }; - 4A88DF429FB34F1FDCA9CA6886EE9459 /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; + 4A94AB5BC9695876728A55E9BC8E5E72 /* RNConfigReader.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNConfigReader.release.xcconfig; sourceTree = ""; }; 4AA541D7BE961CC64F2D9CCD2719F85C /* SDImageHEICCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoderInternal.h; path = SDWebImage/Private/SDImageHEICCoderInternal.h; sourceTree = ""; }; - 4AAE599F3880E67FC8440567F9FAD422 /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = ""; }; - 4AB7D4BA2082ECB9E8FE8EEEAC815A5A /* RCTAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppearance.h; path = React/CoreModules/RCTAppearance.h; sourceTree = ""; }; - 4ABF947D7DE03BD959BAC26A2E9A7FF8 /* BugsnagSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSession.h; sourceTree = ""; }; - 4ACA96AF7A40917DC63DBD40FEBBB54B /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; + 4ACD3C341BF3A171077258DD2E353362 /* QBVideoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.m; sourceTree = ""; }; 4AD14B53656A77114A33E2075E243ACF /* Math.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Math.h; path = folly/Math.h; sourceTree = ""; }; 4AD8233600FFB546B71BAF0EBB79D22B /* FIRAnalyticsConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsConfiguration.h; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.h; sourceTree = ""; }; - 4ADAAA98943D36345D16BD28DB54FAFB /* LNAnimatorTemp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNAnimatorTemp.m; sourceTree = ""; }; 4ADFD1409A834BF3CF99EFB686438DC2 /* FIRErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrors.h; path = FirebaseCore/Sources/Private/FIRErrors.h; sourceTree = ""; }; - 4AE3CD610D12CC12718076BC213DF41D /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = ""; }; - 4AEFBA708B946901C44245DDCCD8A15D /* TurboModuleUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = TurboModuleUtils.cpp; sourceTree = ""; }; + 4AECC08C02DCA1B2C649AB26AAE1461E /* RCTTypeSafety.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.debug.xcconfig; sourceTree = ""; }; + 4B0034E6E9FECAB0B4DC477735148373 /* Entypo.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Entypo.ttf; path = Fonts/Entypo.ttf; sourceTree = ""; }; 4B01481011B177B9ED93006300270E5A /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = "double-conversion/utils.h"; sourceTree = ""; }; + 4B0C7D63BAB6C5746676851CD455CC6C /* react-native-background-timer.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-background-timer.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 4B0DA798E2D2355D319142E0A3A2AD19 /* TOActivityCroppedImageProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOActivityCroppedImageProvider.m; path = "Objective-C/TOCropViewController/Models/TOActivityCroppedImageProvider.m"; sourceTree = ""; }; 4B1D0814E55E56B96BFC377C0059C7FF /* SysMman.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysMman.h; path = folly/portability/SysMman.h; sourceTree = ""; }; - 4B381FB46DB755A2057D4D32406AE2A7 /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; sourceTree = ""; }; 4B47B609D18EF820F82E8AF062AE571D /* SDImageHEICCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageHEICCoder.m; path = SDWebImage/Core/SDImageHEICCoder.m; sourceTree = ""; }; 4B58A282A684CE85411B72C0613BB634 /* TimeoutManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TimeoutManager.cpp; path = folly/io/async/TimeoutManager.cpp; sourceTree = ""; }; + 4B5B3779D6AB8FEFC561F8749A3E7170 /* BSG_KSCrashReport.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashReport.c; sourceTree = ""; }; + 4B5D6AC6CE950516BB23A83FB1478C92 /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; + 4B61C20E4E6ED1ADB8280B01F982A3F1 /* KeyCommands.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeyCommands.release.xcconfig; sourceTree = ""; }; 4B6B9023DD73576E9A084D6BAB8A8500 /* HazptrRec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrRec.h; path = folly/synchronization/HazptrRec.h; sourceTree = ""; }; 4B70EDFA652908C411936321ADE7A72C /* thread_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_utils.h; path = src/utils/thread_utils.h; sourceTree = ""; }; 4B7124FEDB72AB8418902207CD8F8B49 /* SingletonStackTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonStackTrace.h; path = folly/detail/SingletonStackTrace.h; sourceTree = ""; }; @@ -10227,538 +10563,536 @@ 4B72CF035DDDD520F1E8BB2BAC516F3B /* MallctlHelper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MallctlHelper.cpp; path = folly/memory/MallctlHelper.cpp; sourceTree = ""; }; 4B7ABF9B133936B32C5EF56502D08238 /* F14Table.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = F14Table.cpp; path = folly/container/detail/F14Table.cpp; sourceTree = ""; }; 4B8D76CAE2FEE7117E9E0A6C31E9CFEB /* Range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Range.h; path = folly/Range.h; sourceTree = ""; }; + 4B8E3BCF06F973E8F0D678D9DD3178ED /* React.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.release.xcconfig; sourceTree = ""; }; + 4B96ADDB9FD90F50AE207FA323FF1978 /* BugsnagBreadcrumb.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagBreadcrumb.m; sourceTree = ""; }; + 4B98073CFC9C25D3AC7C10F3E831926B /* RNRootViewGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRootViewGestureRecognizer.m; path = ios/RNRootViewGestureRecognizer.m; sourceTree = ""; }; 4BA0DC74B20FFB89DC6B793878214871 /* ExceptionWrapper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ExceptionWrapper.cpp; path = folly/ExceptionWrapper.cpp; sourceTree = ""; }; 4BA1950E3338CF90E6291F27458625C5 /* FlipperConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnection.h; path = iOS/FlipperKit/FlipperConnection.h; sourceTree = ""; }; 4BA812FB89277D12BBAE8052D0AA1C09 /* Futex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Futex.cpp; path = folly/detail/Futex.cpp; sourceTree = ""; }; - 4BA82A9C11131F58A6147B3E57966BEA /* BSG_KSCrashSentry_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Private.h; sourceTree = ""; }; - 4BC5A4A6BDAEACD8A00C4CC082D99FC7 /* BSG_KSCrash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrash.m; sourceTree = ""; }; 4BC6D68855B4DB60DC353DDD7CB64C15 /* FBLPromise+Reduce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Reduce.h"; path = "Sources/FBLPromises/include/FBLPromise+Reduce.h"; sourceTree = ""; }; 4BC96ED503285A52E16D54ABA224AABF /* FIRCLSCodeMapping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCodeMapping.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSCodeMapping.h; sourceTree = ""; }; - 4BEEEF306AC143191D1E09F376687145 /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; - 4BF4A098D8D554A77811655BD6178416 /* RNCPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 4C03C2DE3EBDFE0B44CA7C61777FCC75 /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; - 4C09B299EC7EBF1CD2B386507D0ABF6A /* BSG_KSCrashReportStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportStore.h; sourceTree = ""; }; + 4BD5536E707ABA8BD79BBE4E822C7694 /* react-native-cameraroll.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-cameraroll.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 4BDD0D0B1D3BA5FD4C57167273A37400 /* RNFBSharedUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBSharedUtils.h; path = ios/RNFBApp/RNFBSharedUtils.h; sourceTree = ""; }; + 4BFEB680FE6D71C038B32F3068431F9B /* Pods-defaults-RocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-defaults-RocketChatRN.release.xcconfig"; sourceTree = ""; }; 4C0D19222FBB7FD8D7B92CB3243EABD1 /* openssl_cfb128.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = openssl_cfb128.cpp; path = Core/aes/openssl/openssl_cfb128.cpp; sourceTree = ""; }; - 4C0EDD80F2CEB0782312B00BF333D671 /* ReactCommon.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.release.xcconfig; sourceTree = ""; }; - 4C1356979F34071EFA57C35C20FE379B /* RCTTypeSafety.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTTypeSafety.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 4C1FE474229C2ACA4C7C4D7B00D43C22 /* filters.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters.c; path = src/dsp/filters.c; sourceTree = ""; }; + 4C2EDAD5ABAACBC7C7EDE94447778269 /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; + 4C4AB3BD3F116A129775D8C459F218F9 /* UMAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppRecordInterface.h; sourceTree = ""; }; + 4C4E63781EB5282F7FBEC911DEA07DD1 /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; 4C5953F908AA69045DC18DFE62C0EB9E /* SDWebImageTransitionInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransitionInternal.h; path = SDWebImage/Private/SDWebImageTransitionInternal.h; sourceTree = ""; }; - 4C6B8EC842DF0A12A01B6061F1796366 /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = ""; }; - 4C7A72327D475A8B2D86CB2E11B72B13 /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; - 4C7B91DC57EEC61DEFC6109C4F44BCA6 /* React-RCTSettings.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTSettings.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 4C7DD8FD043A47577F15DC6CF75B2B5F /* GroupVarintDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GroupVarintDetail.h; path = folly/detail/GroupVarintDetail.h; sourceTree = ""; }; 4C99E44EFF703AFF54FB84284C85BEFC /* ConcurrentSkipList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentSkipList.h; path = folly/ConcurrentSkipList.h; sourceTree = ""; }; - 4CB932C0999124835D917A5C6280C289 /* RNGestureHandlerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerManager.m; path = ios/RNGestureHandlerManager.m; sourceTree = ""; }; + 4C9FD89B38C20D172047C1DFFA6CFCC8 /* REATransformNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransformNode.h; sourceTree = ""; }; 4CBD13E740A98CB3DE73F9DF0337B28B /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = folly/Exception.h; sourceTree = ""; }; - 4CC8681119DE18394A7EB1CEE3B43643 /* React-cxxreact.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-cxxreact.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 4CD4CAE338C22B95462CA8D64D75BA67 /* LNInterpolable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolable.h; sourceTree = ""; }; 4CECE588B11B66574740EDC761BC4245 /* Sse.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Sse.cpp; path = folly/detail/Sse.cpp; sourceTree = ""; }; 4CED0991748193F85234B92043C467E6 /* ThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadPoolExecutor.cpp; path = folly/executors/ThreadPoolExecutor.cpp; sourceTree = ""; }; - 4CEFD888BCEC574EF8DCF820C4CD47A4 /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = ""; }; 4CFB0570DCDE324E6BE1532D8CF0082E /* GULSecureCoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSecureCoding.m; path = GoogleUtilities/Environment/GULSecureCoding.m; sourceTree = ""; }; - 4D3155513AAFB39104552D310A857A30 /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxMethod.mm; sourceTree = ""; }; - 4D479FFC149586E597ED1DBEEEA60A51 /* Aes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Aes.h; sourceTree = ""; }; + 4D2B5DC912FBCDE6B892CA46F279A39D /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; + 4D2FBE8FEFA4D8FD974BDC25702872C8 /* HermesExecutorFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = HermesExecutorFactory.cpp; sourceTree = ""; }; 4D4991C2BF9015361FE42050C678D141 /* AtomicUtil-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicUtil-inl.h"; path = "folly/synchronization/AtomicUtil-inl.h"; sourceTree = ""; }; - 4D4FDAB00C0EA2B8970D7994FFFA8279 /* React-jsiexecutor.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.debug.xcconfig"; sourceTree = ""; }; - 4D4FDF46C84B10890F329D83D59BD3CB /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; 4D6055979B22944E1EA738BA0EF95ABB /* YogaKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "YogaKit-dummy.m"; sourceTree = ""; }; - 4D98749A9EFF189033922C43BCA2F51A /* EXLocalAuthentication.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXLocalAuthentication.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 4D6D624CF810AD92E2B2562C0562C073 /* BSG_KSCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry.h; sourceTree = ""; }; + 4D7771767C0A64A4CFEC135F4E46E7A1 /* NativeModulePerfLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NativeModulePerfLogger.h; path = reactperflogger/NativeModulePerfLogger.h; sourceTree = ""; }; + 4D978CC181C344845AC6FDCFAE716AC1 /* ReactCommon-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactCommon-dummy.m"; sourceTree = ""; }; 4DA348A7D21149FE8CE8BB8E70E897ED /* MoveWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MoveWrapper.h; path = folly/MoveWrapper.h; sourceTree = ""; }; + 4DA6CCA1909E5F67EFB196C7F3C14F29 /* RCTImageURLLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoader.h; path = Libraries/Image/RCTImageURLLoader.h; sourceTree = ""; }; + 4DA79D93AE2E4975346F958D50E1974B /* ReactCommon.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.debug.xcconfig; sourceTree = ""; }; + 4DA85919DC6C929D42B9C85978020E39 /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; 4DADCE70A75208DE25BE7771DD9DF0DE /* StackTraceUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StackTraceUtils.h; path = rsocket/internal/StackTraceUtils.h; sourceTree = ""; }; 4DAEC73A517CF97C666864661DB55390 /* CustomizationPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CustomizationPoint.h; path = folly/lang/CustomizationPoint.h; sourceTree = ""; }; - 4DB4056F368C6E1AC8C74F2FD94324CB /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; 4DDF6F91919BA6848F310D266B5EF1FB /* FIRCLSDataCollectionToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSDataCollectionToken.m; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionToken.m; sourceTree = ""; }; - 4DE9214CE8536885558ABFF1032C77F7 /* Pods-defaults-Rocket.Chat-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-defaults-Rocket.Chat-acknowledgements.markdown"; sourceTree = ""; }; - 4DEFEA67D02FA564721B80789FB77DFD /* UMErrorCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMErrorCodes.h; path = UMCore/UMErrorCodes.h; sourceTree = ""; }; 4E04F05AACD8047089A85B4474584ADE /* ThreadName.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadName.h; path = folly/system/ThreadName.h; sourceTree = ""; }; + 4E060D1DC000ED351BF7F2053F8B242D /* ReactNativeART.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeART.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 4E0B0B3CDA631795F2F5D588FCF8AA9E /* TLRefCount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TLRefCount.h; path = folly/experimental/TLRefCount.h; sourceTree = ""; }; - 4E289072EA3238EE43CACE7C85948B45 /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; + 4E3D0BB48FDDCBE29E682D48D2261735 /* BugsnagSessionTrackingPayload.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingPayload.m; sourceTree = ""; }; + 4E43DDC445CD2E8A4C9B98D3A5864896 /* react-native-background-timer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-background-timer-dummy.m"; sourceTree = ""; }; 4E464EDB507E574CC1C3824FD4BEF570 /* rescaler_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_msa.c; path = src/dsp/rescaler_msa.c; sourceTree = ""; }; - 4E47B9632C6D7E9318BAA491685EC3DC /* BugsnagApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagApiClient.h; sourceTree = ""; }; 4E610DED409BEE9089F49167DE8A5A3F /* NotificationQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NotificationQueue.h; path = folly/io/async/NotificationQueue.h; sourceTree = ""; }; + 4E6FD3789AE32FF2039C5FC657EAA0A4 /* ARTGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTGroup.m; path = ios/ARTGroup.m; sourceTree = ""; }; 4E73EEF74DB33CC28663FD33E8340D37 /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logging.cc; path = src/logging.cc; sourceTree = ""; }; 4E7CEA9CAE2AF0E1A5E22F2EDDD3E2BE /* FIRLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRLogger.m; path = FirebaseCore/Sources/FIRLogger.m; sourceTree = ""; }; - 4E7F062D6F09F3B620A15E7F2C5BD06B /* EXLocalAuthentication.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXLocalAuthentication.release.xcconfig; sourceTree = ""; }; - 4E806A627D8A3EAEFF2878AC1FACCAC6 /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pl.lproj; path = ios/QBImagePicker/QBImagePicker/pl.lproj; sourceTree = ""; }; - 4EA08206F7B1C3D1D0B9FB48F2F048B4 /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; + 4EA0D8520C977127B4CFE93E6E40CCE0 /* BugsnagConfigSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagConfigSerializer.m; sourceTree = ""; }; 4EA1683C021C4EC5FEE026813886B9B8 /* DiscriminatedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DiscriminatedPtr.h; path = folly/DiscriminatedPtr.h; sourceTree = ""; }; - 4EA5CA7ED8EB6661AEE63F650BAB984B /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; 4EBC54B71950E3E9223F51E241B05BA5 /* TOCroppedImageAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCroppedImageAttributes.m; path = "Objective-C/TOCropViewController/Models/TOCroppedImageAttributes.m"; sourceTree = ""; }; - 4ECDFB77ED55DDC152572476C28A6383 /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; - 4EDB13431034DC092F4374B84345B44E /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; - 4EE245DA9365F9EC3928AB3C32356084 /* RCTTypeSafety.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.release.xcconfig; sourceTree = ""; }; + 4EBDF38D772E501B8DDFAD480A0A8439 /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; + 4EC9214E320BBD039409478C85CB3D4E /* BSG_KSCrashIdentifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashIdentifier.m; sourceTree = ""; }; + 4EDBEF597A90BB3A563FD690349CFDDE /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; 4EED55B8EA691269ACB175FDEF3A7FC1 /* FIRCLSInstallIdentifierModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSInstallIdentifierModel.m; path = Crashlytics/Crashlytics/Models/FIRCLSInstallIdentifierModel.m; sourceTree = ""; }; 4EEE229A6F5FBD1E1646B6DF98A66DD4 /* id.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = id.lproj; path = "Objective-C/TOCropViewController/Resources/id.lproj"; sourceTree = ""; }; 4EF4B6BBDDA951ECBADDA983E7E93BAB /* SDWebImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImage-dummy.m"; sourceTree = ""; }; 4EFA9ED6AB17B41486EAB2148F8C24B5 /* FlipperClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperClient.h; path = iOS/FlipperKit/FlipperClient.h; sourceTree = ""; }; - 4EFC0B2FFA3861FC2E19D0BE530CB5CD /* RNBootSplash.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNBootSplash.debug.xcconfig; sourceTree = ""; }; + 4F04F335D30B43118E83087B7DED120B /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = ""; }; 4F0EBDA87DC8D3A4C9A7FF510D285709 /* TOCropViewConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropViewConstants.h; path = "Objective-C/TOCropViewController/Constants/TOCropViewConstants.h"; sourceTree = ""; }; + 4F26628CAEF27009D5B48EE73606060B /* BSG_KSCrashSentry.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry.c; sourceTree = ""; }; 4F27E3FDA8B6F4EE4FE0EA2B5D213B03 /* kqueue-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "kqueue-internal.h"; sourceTree = ""; }; - 4F367BBCAA005A2A7BBDFB8865BEAECF /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 4F3909692D2EB196C7259A673D4E0BC7 /* FIRCLSAllocate.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSAllocate.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSAllocate.c; sourceTree = ""; }; + 4F3DBDE414164598AA85AF34D969F89D /* EXKeepAwake.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXKeepAwake.release.xcconfig; sourceTree = ""; }; + 4F49D2F2C2B99010A57070BFAB8D543D /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; 4F54D13B31B2191DE26549C9CCCE60BB /* HeterogeneousAccess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HeterogeneousAccess.h; path = folly/container/HeterogeneousAccess.h; sourceTree = ""; }; 4F58D090ED485B4C0D8704E5502A8CCA /* IOBuf.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IOBuf.cpp; path = folly/io/IOBuf.cpp; sourceTree = ""; }; - 4F840D78C1614BED3C1CE73DA8088F55 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; - 4F85C401E9C6B0AA8C57171AEB77C93D /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; 4F93F61A90764C0E78C82A039657A0C8 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = src/utils/utils.h; sourceTree = ""; }; 4F95F367C474284471D55C9963F1F6D2 /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = src/glog/log_severity.h; sourceTree = ""; }; - 4FAFD314E99B5803919A7E4EDC60258E /* ARTText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTText.m; path = ios/ARTText.m; sourceTree = ""; }; + 4FCCB673DB96C95279676B3DDB6E0FCE /* LICENCE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENCE; sourceTree = ""; }; 4FD51AC155A82E1BD08CC8EEB840440C /* GULAppDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULAppDelegateSwizzler.h; sourceTree = ""; }; - 4FD9060B3D3C139108B7CCF8DB6EB9F2 /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; + 4FD65F73976A789DD9400A46AC219377 /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; 4FDA96879D96070EB1983E98E655CBDC /* librn-fetch-blob.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "librn-fetch-blob.a"; path = "librn-fetch-blob.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 4FE1D3B427082E6E61CC0FE1559311CE /* RCTAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedImage.m; sourceTree = ""; }; 4FE7B594CF6867E71FE4E2301AFEAD29 /* quant_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_enc.c; path = src/enc/quant_enc.c; sourceTree = ""; }; 4FF999F8D3575678E2BA9D8CCC594E46 /* FlipperConnectionImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnectionImpl.h; path = xplat/Flipper/FlipperConnectionImpl.h; sourceTree = ""; }; - 4FFACB575653551A6A5A21B2DCDE0BCD /* RNReanimated-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNReanimated-prefix.pch"; sourceTree = ""; }; 4FFD4768964A96ED914AFC1FB2C3CD28 /* FIRCLSMachOBinary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMachOBinary.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOBinary.m; sourceTree = ""; }; + 50046DFFDEC7605D743CF83B7EB9EB5B /* RNGestureHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerRegistry.h; path = ios/RNGestureHandlerRegistry.h; sourceTree = ""; }; 5009B368367C8DF2D7EF0B5BE9AE61BE /* FutureExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureExecutor.h; path = folly/executors/FutureExecutor.h; sourceTree = ""; }; - 5016BD9FE0F8CC633BB29FD109481A3C /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = SimpleLineIcons.ttf; path = Fonts/SimpleLineIcons.ttf; sourceTree = ""; }; + 501761ADCF286CCADF126E860D725360 /* BlurEffectWithAmount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlurEffectWithAmount.h; path = ios/BlurEffectWithAmount.h; sourceTree = ""; }; 50261AF3C745BB3A0CDFA2344529F574 /* SpookyHashV2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpookyHashV2.h; path = folly/hash/SpookyHashV2.h; sourceTree = ""; }; 5029C3F1FAC79F19E9E6338F44DB533D /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Sources/Private/FirebaseCoreInternal.h; sourceTree = ""; }; - 502B24EF1B75489596F123D9A8BDFB7D /* BugsnagPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagPlugin.h; sourceTree = ""; }; - 502DF41673D24551D1053C75EA17F96D /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; - 5031A605E3E486316E0E47ABF063A379 /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = ""; }; + 50380A13EC2534D9286401EBD03FB7FF /* RNCSafeAreaViewMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewMode.h; path = ios/SafeAreaView/RNCSafeAreaViewMode.h; sourceTree = ""; }; 504AD14FE100A20D8DC16B176158574E /* ParkingLot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ParkingLot.h; path = folly/synchronization/ParkingLot.h; sourceTree = ""; }; - 506DB39CA9189B2AEAF25CCCBB892C5A /* EXSessionResumableDownloadTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionResumableDownloadTaskDelegate.m; sourceTree = ""; }; + 507D17D398B3DB183218F5B94245D41A /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; 509A1E62B3E7BC802847A7DB7EF72A0C /* HeterogeneousAccess-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "HeterogeneousAccess-fwd.h"; path = "folly/container/HeterogeneousAccess-fwd.h"; sourceTree = ""; }; 50A35339F5AB5829AC849060EC4E180B /* ExecutorWithPriority-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ExecutorWithPriority-inl.h"; path = "folly/executors/ExecutorWithPriority-inl.h"; sourceTree = ""; }; 50B5347C9A6E93B7D4CFC3673BA6FB7E /* libRNScreens.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNScreens.a; path = libRNScreens.a; sourceTree = BUILT_PRODUCTS_DIR; }; 50B8DC3F1C20DA72280B66682F52676F /* FIRCLSAsyncOperation_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSAsyncOperation_Private.h; path = Crashlytics/Crashlytics/Operations/FIRCLSAsyncOperation_Private.h; sourceTree = ""; }; 50C41EF12D05B64B2E575D8C73550625 /* FIRCLSReportUploader_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportUploader_Private.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportUploader_Private.h; sourceTree = ""; }; 50CAB6141E979DA768868D1CC0D4777B /* Framer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Framer.cpp; path = rsocket/framing/Framer.cpp; sourceTree = ""; }; - 50CAFB8F24C41D94870BC72414843960 /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; - 50D1A7BC406CD4E0A549A7972B5922C6 /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; + 50CC8B1CF4B75396D57F35580E672455 /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTEventDispatcher.h; path = React/CoreModules/RCTEventDispatcher.h; sourceTree = ""; }; + 50CEE436DC02365678F6BE65F5CB4CA0 /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; 50D23022535AF7BD0EF89E7177B837EF /* DelayedDestruction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DelayedDestruction.h; path = folly/io/async/DelayedDestruction.h; sourceTree = ""; }; + 50E1A35CCEA1D5F6736BC55A46B04A86 /* RsaFormatter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RsaFormatter.h; sourceTree = ""; }; 50E5E39E08E43D6230F656F5307A4CD1 /* Demangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Demangle.h; path = folly/Demangle.h; sourceTree = ""; }; 50E9B9774D4A3DD88A0582AB9E279476 /* EventHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventHandler.cpp; path = folly/io/async/EventHandler.cpp; sourceTree = ""; }; + 50E9BC19608F331299520F4A34F93BD0 /* RNNotificationCenterMulticast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterMulticast.h; path = RNNotifications/RNNotificationCenterMulticast.h; sourceTree = ""; }; 50F2B1496321F64AD7B0998350D4D009 /* FireAndForgetResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FireAndForgetResponder.cpp; path = rsocket/statemachine/FireAndForgetResponder.cpp; sourceTree = ""; }; 50F4AC2A1A2E84993D0251C762782555 /* YGLayoutExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = YGLayoutExtensions.swift; path = YogaKit/Source/YGLayoutExtensions.swift; sourceTree = ""; }; 510790E68DCEBCD3A692226FBC4D7816 /* FrameHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameHeader.h; path = rsocket/framing/FrameHeader.h; sourceTree = ""; }; + 510B5BA406387F705CE66C95EAD96005 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 511E9E59D0ED620364C19CBDB853ABE6 /* ChannelResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ChannelResponder.cpp; path = rsocket/statemachine/ChannelResponder.cpp; sourceTree = ""; }; 512D84FEAF0C88EA497E2182B0FEA701 /* MMKVCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MMKVCore-prefix.pch"; sourceTree = ""; }; - 513D5AC29B8F51346C2508D16D5F2395 /* RNDateTimePicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDateTimePicker-dummy.m"; sourceTree = ""; }; - 517009B16A91BB6A60658D78B01D767B /* React-RCTNetwork.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.release.xcconfig"; sourceTree = ""; }; - 517393F305886AC6D84CBFC78CB2A91E /* AutoAttachUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = AutoAttachUtils.cpp; sourceTree = ""; }; 51852D46308FFDE1FBDB5D68507E6D81 /* TOCropViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropViewController.h; path = "Objective-C/TOCropViewController/TOCropViewController.h"; sourceTree = ""; }; + 51932962389B22CF23FD8BB7939CDE28 /* REABlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABlockNode.m; sourceTree = ""; }; + 519F01F1D80CFDFC7A49BCA212123ABB /* RCTHmac.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTHmac.m; path = ios/RCTCrypto/RCTHmac.m; sourceTree = ""; }; 51B50F20C76CF72E2BEF8D4764235306 /* libReactNativeART.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactNativeART.a; path = libReactNativeART.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 51B5F94B663EA1729F3E6763EA3C5C8E /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = ""; }; + 51B85E44A450130E8077001DE97DDC86 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 51BFC1D0986C540B6E8C5C8456C71D32 /* Try-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Try-inl.h"; path = "folly/Try-inl.h"; sourceTree = ""; }; 51C259A9824478DE5643E9C5F2A26E91 /* TimeoutQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimeoutQueue.h; path = folly/TimeoutQueue.h; sourceTree = ""; }; 51C4E5F5418C933B54618D04FE90B1EC /* RWSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RWSpinLock.h; path = folly/RWSpinLock.h; sourceTree = ""; }; 51E0ED49F68A92B12E47D0F02CD1C207 /* FBLPromise+Timeout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Timeout.m"; path = "Sources/FBLPromises/FBLPromise+Timeout.m"; sourceTree = ""; }; + 52032420A8153D9845D314223D4F5169 /* CallbackOStream.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = CallbackOStream.cpp; sourceTree = ""; }; + 52051000F9BC6625B82A6F74204791A8 /* RNRootView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRootView.release.xcconfig; sourceTree = ""; }; + 52056FC19AE5CE79FA448C8CD56E2440 /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; 520842FBB570439D5E9C9C0F1D1828C5 /* OpenSSL-Universal.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "OpenSSL-Universal.debug.xcconfig"; sourceTree = ""; }; - 520A053EA65F2E76A25C5D074CD2562F /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = ""; }; + 520BB052543E92220A00A5375AC4F2A9 /* RNConfigReader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNConfigReader-dummy.m"; sourceTree = ""; }; + 5215B67020579C32FA153F00EE4FBC8D /* BSG_KSSignalInfo.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSignalInfo.c; sourceTree = ""; }; 5217079C508569C2D0F031D958008DBB /* FIRCLSURLSessionDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLSessionDataTask.m; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionDataTask.m; sourceTree = ""; }; 521AD8BDBE37B570B725AD6291946FEC /* FlipperPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperPlugin.h; path = xplat/Flipper/FlipperPlugin.h; sourceTree = ""; }; - 52230AEE9F74A43553D0178D37C7F4CE /* RNConfigReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNConfigReader.h; path = ios/RNConfigReader.h; sourceTree = ""; }; 52292E739162D20DA20E175D11C9397D /* SysFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysFile.h; path = folly/portability/SysFile.h; sourceTree = ""; }; 523701F2861A9AF389FC2C6E43D86D49 /* SDImageCachesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManager.h; path = SDWebImage/Core/SDImageCachesManager.h; sourceTree = ""; }; 52487E7EA3FF06EFCB57D1CD9FA0DCF2 /* Singleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Singleton.h; path = folly/detail/Singleton.h; sourceTree = ""; }; + 524B0CB6BB24B62F20F2D2771E91A839 /* React-perflogger-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-perflogger-prefix.pch"; sourceTree = ""; }; 524B7125CFC13FA52439FAA76CEAE3D1 /* GDTCCTNanopbHelpers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTNanopbHelpers.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTNanopbHelpers.m; sourceTree = ""; }; 52670FF4817FA37ED38D1FAEBA55FE4C /* dec_clip_tables.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_clip_tables.c; path = src/dsp/dec_clip_tables.c; sourceTree = ""; }; 52707312B51286806012D175CCFF6E9E /* SDImageCodersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCodersManager.h; path = SDWebImage/Core/SDImageCodersManager.h; sourceTree = ""; }; - 527BC6DBEB3A3082A05F74C8F3BC2BD6 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 529381D173E147F70AEF56A658BB161C /* RNCPicker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCPicker.debug.xcconfig; sourceTree = ""; }; + 5273FC4E408E37E58B7C8FD18FE41F20 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 52A7365380BDE375D1690CA2016D6E62 /* ReactNativeUiLib.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeUiLib.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 52A81437D376AA16FFEF16706FC8287F /* UMFontInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.release.xcconfig; sourceTree = ""; }; 52AC005AA38CFB40CD236E225477B6B6 /* fixed-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fixed-dtoa.h"; path = "double-conversion/fixed-dtoa.h"; sourceTree = ""; }; 52AD7AD43F17197B72F79473014FB75E /* MemoryFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryFile.h; path = Core/MemoryFile.h; sourceTree = ""; }; 52B3BD3001DD4C280B48DC3695188A70 /* ThreadWheelTimekeeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadWheelTimekeeper.h; path = folly/futures/ThreadWheelTimekeeper.h; sourceTree = ""; }; 52BC7916B2B7B219EB6FC9CC2A5AB472 /* PolyDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PolyDetail.h; path = folly/detail/PolyDetail.h; sourceTree = ""; }; 52BF20AE590FB1B2AEB17652F1AF704E /* FrameSerializer_v1_0.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FrameSerializer_v1_0.cpp; path = rsocket/framing/FrameSerializer_v1_0.cpp; sourceTree = ""; }; 52E1F69E1D0368EFA784C9D21D7DBD74 /* FIRCLSProcess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSProcess.h; path = Crashlytics/Crashlytics/Components/FIRCLSProcess.h; sourceTree = ""; }; + 52F252E0F0B192B8B9210D9400720D55 /* react-native-webview.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-webview.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 52FA215B0AABD63CF4160AC620BF6AF6 /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; 52FCF98CEFF94C742080B6965D537AD0 /* libreact-native-safe-area-context.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-safe-area-context.a"; path = "libreact-native-safe-area-context.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 530F1C764011FFBC084B034896A6E8A4 /* anim_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_decode.c; path = src/demux/anim_decode.c; sourceTree = ""; }; - 53270434087F128640352E5B81C521F5 /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; + 53119D11FE6E6BB4AE2A001EE20671DB /* Shared.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Shared.h; sourceTree = ""; }; + 5318214869ED3135FF6216D2E0BBE0A1 /* react-native-document-picker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-document-picker-prefix.pch"; sourceTree = ""; }; + 5321578E4C914574AC5A3F7F7ACF0704 /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; 5334928FBB0132296272FEA11164A514 /* FIRCLSProcess.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSProcess.c; path = Crashlytics/Crashlytics/Components/FIRCLSProcess.c; sourceTree = ""; }; - 534166A3C26B1A407637456375230513 /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; + 533BF04B4077FA2D7C5F3204BADA4DAF /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = ""; }; 53418337E874FD7F99613A3D213BEA32 /* Replaceable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Replaceable.h; path = folly/Replaceable.h; sourceTree = ""; }; 5344EE5042D2982D98BB85F45FACA5BB /* FIRAEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAEvent.h; path = Crashlytics/Crashlytics/Helpers/FIRAEvent.h; sourceTree = ""; }; 5347884F300F09F9653A026F17BCD141 /* FlipperCppBridgingConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCppBridgingConnection.h; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingConnection.h; sourceTree = ""; }; - 5361CB0935DE75BF4954CC589C697F5C /* EXKeepAwake.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXKeepAwake.m; path = EXKeepAwake/EXKeepAwake.m; sourceTree = ""; }; + 534C4979DAEE0F420291383A100BED53 /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; + 534DB8EDC3186CDE3523F27EA5582D99 /* react-native-jitsi-meet.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.debug.xcconfig"; sourceTree = ""; }; + 5358A11D087A13F0F9BAADB9C6044558 /* EXHaptics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.debug.xcconfig; sourceTree = ""; }; 536F7347189B2519493855E0FBBF78CB /* SanitizeThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeThread.h; path = folly/synchronization/SanitizeThread.h; sourceTree = ""; }; - 5399C3596FEA33E4943A0C0900F250E6 /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = experiments.h; sourceTree = ""; }; - 53B773CFD42773126DAEF28C9EC03409 /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; + 537D942E7F8CDD34D9798800DFD7B3E1 /* React-perflogger.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-perflogger.debug.xcconfig"; sourceTree = ""; }; 53BC247758C79B3738AB7B8F4964FCEE /* DistributedMutex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DistributedMutex-inl.h"; path = "folly/synchronization/DistributedMutex-inl.h"; sourceTree = ""; }; - 53CB9FC0A93CFCA2AC3CDECC6CA02107 /* BSG_RFC3339DateTool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_RFC3339DateTool.m; sourceTree = ""; }; 53E6098912BE03536ECD4B1FE675B237 /* evmap.c */ = {isa = PBXFileReference; includeInIndex = 1; path = evmap.c; sourceTree = ""; }; - 53E7E3570CB24F2714CA1C846EA0FFD7 /* react-native-jitsi-meet.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.debug.xcconfig"; sourceTree = ""; }; - 53EDC418FED268D0086748617F26DBF5 /* Pods-NotificationService-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-NotificationService-acknowledgements.plist"; sourceTree = ""; }; - 53F1C5AC523F842CC2FBF625C56A25DA /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.h; sourceTree = ""; }; + 53EA4730DD9F53694EA672E36F0054AF /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; 53FBAA5077083A561752542CB9651EF7 /* mux_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux_types.h; path = src/webp/mux_types.h; sourceTree = ""; }; 54016B7EE3DEBAD705D147B677B5369F /* FirebaseCrashlytics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCrashlytics-dummy.m"; sourceTree = ""; }; 5409A05504A9224238190E1A66F61FAD /* FLEXNetworkObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkObserver.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkObserver.h; sourceTree = ""; }; - 540C71FA6147E61EEA6143AD758CB705 /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; - 5412CD0E31F34E9F3702381C037BA9DC /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; 5415899438777A95114A46A19EB4EB86 /* picture_rescale_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_rescale_enc.c; path = src/enc/picture_rescale_enc.c; sourceTree = ""; }; - 544FE78DB48D93D01555D36D6D7D71A8 /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 542B769074BF2AB509D9DC76111A3546 /* RNFetchBlobConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobConst.m; path = ios/RNFetchBlobConst.m; sourceTree = ""; }; + 54491F5B3AE4721132EE26759F4E88F4 /* BSG_KSCrashSentry_Signal.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_Signal.c; sourceTree = ""; }; 5463A1ED9389FDAE33B159B05CD39CCD /* crashlytics.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crashlytics.nanopb.h; path = Crashlytics/Protogen/nanopb/crashlytics.nanopb.h; sourceTree = ""; }; - 5467384670BB5E3280C55165AC5655CC /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = ""; }; - 5474AC1721D19B83CDFBB3FB8A4B4337 /* RNCWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebView.m; path = apple/RNCWebView.m; sourceTree = ""; }; - 547AB6E6C57FBEEA0DEB91D856A63BBA /* react-native-cookies-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-cookies-prefix.pch"; sourceTree = ""; }; + 5478710FAB2D5DE952BA4AE4F25FEC57 /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; 5489F8899DE48A12C9A910B77CFBAACF /* FBLPromise+Always.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Always.h"; path = "Sources/FBLPromises/include/FBLPromise+Always.h"; sourceTree = ""; }; 54A0241C5AB2ECD06DAE4825A6FBAABE /* FIRInteropEventNames.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInteropEventNames.h; path = Interop/Analytics/Public/FIRInteropEventNames.h; sourceTree = ""; }; 54A5A7C199B2EF8C220DCFD279A36398 /* ExecutorWithPriority.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ExecutorWithPriority.cpp; path = folly/executors/ExecutorWithPriority.cpp; sourceTree = ""; }; + 54C3DB7CB50F66858BBCF53041CFFA71 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; 54C880A4BF84B88F1F9DADFB3F064F43 /* it.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = it.lproj; path = "Objective-C/TOCropViewController/Resources/it.lproj"; sourceTree = ""; }; + 54D44305B2A10ACB385926B44F27A128 /* EXAppleAuthentication-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAppleAuthentication-prefix.pch"; sourceTree = ""; }; 54D5F480D3D001B12F3F9B7A708902AB /* cpu.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cpu.c; path = src/dsp/cpu.c; sourceTree = ""; }; 54DE1CD8942989BC6D0340E4917972AE /* nl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = nl.lproj; path = "Objective-C/TOCropViewController/Resources/nl.lproj"; sourceTree = ""; }; + 54DFF4FA1AFD8A70E0EE2531B28728BA /* RNNotificationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationUtils.m; path = RNNotifications/RNNotificationUtils.m; sourceTree = ""; }; 54E3357E369C5F5A2A821A386ABF801A /* double-conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "double-conversion.cc"; path = "double-conversion/double-conversion.cc"; sourceTree = ""; }; + 54E444AF140E6610ABEB65A9939202F1 /* EXAV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAV-prefix.pch"; sourceTree = ""; }; + 550BFE8F5C79E6486A299B4A4E4C78DF /* FBLazyIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyIterator.h; path = FBLazyVector/FBLazyIterator.h; sourceTree = ""; }; + 550F4A1CB3049209E177D33601E9B7C0 /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; + 55191A8A5AD6909B4F06BF8902C0A36E /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 552069D1E4D7D8A5F376A2B75A54636F /* RSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocket.cpp; path = rsocket/RSocket.cpp; sourceTree = ""; }; 552390FE19CFD6F5D5586884FACFD5C0 /* MMKVLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKVLog.h; path = Core/MMKVLog.h; sourceTree = ""; }; - 552ACAC9BE797A8DEFA174D0C04DE191 /* RCTKeyCommandConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandConstants.m; path = ios/KeyCommands/RCTKeyCommandConstants.m; sourceTree = ""; }; + 55294EC3E504C8BA006BB2B2EBA6DAC8 /* Exceptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Exceptions.h; sourceTree = ""; }; 554C9744B627BCE0D470D29FD391FE4F /* random_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = random_utils.c; path = src/utils/random_utils.c; sourceTree = ""; }; 5552D7AE40E5A50731F0F4C046F682DC /* Flipper-PeerTalk.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-PeerTalk.debug.xcconfig"; sourceTree = ""; }; 556022F0512FB062A96153D84CAD318B /* HazptrObjLinked.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrObjLinked.h; path = folly/synchronization/HazptrObjLinked.h; sourceTree = ""; }; 55768652A0C6C1024B76E44458316F0D /* ScheduledSubscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScheduledSubscription.cpp; path = rsocket/internal/ScheduledSubscription.cpp; sourceTree = ""; }; - 557FB656903AB1CF7A53942FE6D2C153 /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = Instance.cpp; sourceTree = ""; }; + 557C06D43567F388267AB80BAAF2CCCA /* MRCCanary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MRCCanary.m; sourceTree = ""; }; 55831EB804F47E27775A4F202AAEC9A5 /* HazptrThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrThreadPoolExecutor.h; path = folly/synchronization/HazptrThreadPoolExecutor.h; sourceTree = ""; }; + 558D3F7ACAF31C18087EB60CBBEF6338 /* KeyCommands.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeyCommands.debug.xcconfig; sourceTree = ""; }; 55B349C864E792E7F69E016CCB3CD3A5 /* PriorityThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityThreadFactory.h; path = folly/executors/thread_factory/PriorityThreadFactory.h; sourceTree = ""; }; 55B433F142C10604DED65C5B3CD6AE2C /* SDWebImageIndicator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageIndicator.m; path = SDWebImage/Core/SDWebImageIndicator.m; sourceTree = ""; }; - 55BAE6DFEA798F7DA014A1CB4C27FB5D /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = ""; }; 55C2494C1C2BAC91A84EA92BDE1AA6A9 /* SDFileAttributeHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDFileAttributeHelper.h; path = SDWebImage/Private/SDFileAttributeHelper.h; sourceTree = ""; }; - 55D7C479CFA836BE5AEDA831A4C43640 /* RuntimeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RuntimeAdapter.h; sourceTree = ""; }; + 55D1B6B22130A6906F858A24EBA49AC0 /* EXVideoThumbnailsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXVideoThumbnailsModule.h; path = EXVideoThumbnails/EXVideoThumbnailsModule.h; sourceTree = ""; }; 55D8C288D400FF1755F9015056E5E34A /* CodedInputDataCrypt_OSX.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CodedInputDataCrypt_OSX.cpp; path = Core/CodedInputDataCrypt_OSX.cpp; sourceTree = ""; }; + 55D918DA09C748DE14493F55B5EF6DFB /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; 55DE32077AF24CFA4B8C6153B81CE367 /* ScheduledSingleSubscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSingleSubscription.h; path = rsocket/internal/ScheduledSingleSubscription.h; sourceTree = ""; }; 55E5F67EF246FFC6CAC577A6181668C0 /* FlipperClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FlipperClient.cpp; path = xplat/Flipper/FlipperClient.cpp; sourceTree = ""; }; - 55EACC7566C50B68BA32129DFB49768F /* BSGOutOfMemoryWatchdog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGOutOfMemoryWatchdog.m; sourceTree = ""; }; - 55F735F7B49FCE1144653E67FA4429F9 /* TurboCxxModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = TurboCxxModule.cpp; sourceTree = ""; }; + 55EDE0BD7CB5DAA7AD533C74F9DEF1AD /* RNNotificationEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationEventHandler.m; path = RNNotifications/RNNotificationEventHandler.m; sourceTree = ""; }; 55F82640CBEB65A43180581A1F52B31B /* ThreadWheelTimekeeper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadWheelTimekeeper.cpp; path = folly/futures/ThreadWheelTimekeeper.cpp; sourceTree = ""; }; - 5602C42462E64D62814F0E3ED63F3D1F /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; 560446E9ECE8A3E9D5852595DDB3F947 /* EventBaseBackendBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseBackendBase.h; path = folly/io/async/EventBaseBackendBase.h; sourceTree = ""; }; - 561520D036043B1892AC6D71E7A79807 /* react-native-safe-area-context.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-safe-area-context.debug.xcconfig"; sourceTree = ""; }; 5617917CB20E847E1CF7B0488DD757C5 /* BitVectorCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitVectorCoding.h; path = folly/experimental/BitVectorCoding.h; sourceTree = ""; }; 5617A0417C21E344068EC440BE7AE2FA /* UIView+SKInvalidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+SKInvalidation.h"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIView+SKInvalidation.h"; sourceTree = ""; }; - 563E0A0FEB65B564D6A02A0A948B2E62 /* libPods-NotificationService.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-NotificationService.a"; path = "libPods-NotificationService.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 5645C0927BAD2436C33746C8ABCF0237 /* BugsnagSessionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTracker.m; sourceTree = ""; }; + 5621347BF283A428BFA1DECDA7C75631 /* RNCWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebView.m; path = apple/RNCWebView.m; sourceTree = ""; }; + 563880E140BAE9F0CD6A507B16D921F3 /* EXVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewController.h; sourceTree = ""; }; 56519DD0C7D108E7542EE6CBD4386759 /* AtFork.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AtFork.cpp; path = folly/detail/AtFork.cpp; sourceTree = ""; }; - 566570BDA47DC31BBAED8966AF990BAA /* UMAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppLoaderProvider.h; path = UMAppLoader/UMAppLoaderProvider.h; sourceTree = ""; }; + 565C98C0F87D64F187F1425AEA777E05 /* SerialExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = SerialExecutor.cpp; sourceTree = ""; }; 5669BD5467E7448A1D8086103C214E2E /* FIRCLSURLSessionDownloadTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionDownloadTask.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionDownloadTask.h; sourceTree = ""; }; - 566DB4CA0926FF5EA43B7B86012DDEB2 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 56792528CABA3BF6C5F8953B66E97235 /* RNVectorIcons.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.debug.xcconfig; sourceTree = ""; }; - 568061B962A8628A2583A8F201F9C2E5 /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; - 56894362FD30EFFECBB287DD509BF51B /* UMAppLoader.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMAppLoader.debug.xcconfig; sourceTree = ""; }; - 56B095963C683986CB4A5B767F900091 /* RCTPerfMonitor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPerfMonitor.mm; sourceTree = ""; }; + 567132C080CB36CCAE683AD8A7F396F3 /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; + 568E4B473F5892180E742DDA535A93AE /* RCTCustomKeyboardViewControllerTemp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomKeyboardViewControllerTemp.h; sourceTree = ""; }; + 56BCA2B97E1DAE73AA56E72BEEFB6722 /* RNPanHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPanHandler.m; sourceTree = ""; }; + 56C209F75E540ED4D8203CDE11F2E1B8 /* EXWebBrowser.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.release.xcconfig; sourceTree = ""; }; 56C70B4DCF1B4B7B72930A3391747A64 /* dec_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips_dsp_r2.c; path = src/dsp/dec_mips_dsp_r2.c; sourceTree = ""; }; - 56D5E512D14827A857149974C62F7D82 /* RNLocalize.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.release.xcconfig; sourceTree = ""; }; + 56E5FA42808A7E3FA3882E05796F2BE2 /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; 56EA0A0FE0344C01612010C4CCF72387 /* FIRInstallationsSingleOperationPromiseCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsSingleOperationPromiseCache.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.h; sourceTree = ""; }; - 56F935D771C7BAE38583B64FE84C10A5 /* NSData+EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+EXFileSystem.m"; path = "EXFileSystem/NSData+EXFileSystem.m"; sourceTree = ""; }; - 56FE541BF406645C5E5F86CB57A9D70A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 570C4FC163FDB50A3BA899B5D8E85574 /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/portability/Malloc.h; sourceTree = ""; }; - 571A7705686EE4EB6614EADDD6412C1B /* ARTNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTNode.h; path = ios/ARTNode.h; sourceTree = ""; }; - 57222C714B5A15ED10F130985E02E6AA /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTMessageThread.mm; sourceTree = ""; }; + 5717BE80A558DC52BD945542F682495A /* react-native-jitsi-meet.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.release.xcconfig"; sourceTree = ""; }; 57296D14B37F4B594C34FDEC9A63E717 /* F14Map-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "F14Map-fwd.h"; path = "folly/container/F14Map-fwd.h"; sourceTree = ""; }; - 5733AA14A8EDC4682DC0516B0A519130 /* QBCheckmarkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBCheckmarkView.h; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.h; sourceTree = ""; }; 5737DDB4BC95AD399B3206838AB97095 /* libRNCAsyncStorage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNCAsyncStorage.a; path = libRNCAsyncStorage.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 574448DDB956D4C4A26897FFD13475A1 /* BSGEventUploadKSCrashReportOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGEventUploadKSCrashReportOperation.m; sourceTree = ""; }; 574E8A849B86DCF8EE5726418D974721 /* libEXWebBrowser.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXWebBrowser.a; path = libEXWebBrowser.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 575C0CA92CD3A201B1E951FA6470DC7D /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; - 575F76368DC8C6F29C0A90086379CC3A /* BugsnagUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagUser.m; sourceTree = ""; }; - 5766F4C74896E331137F2B2E94327B16 /* REAClockNodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAClockNodes.h; sourceTree = ""; }; - 576F8706451A4977F83DDFE1E1BE5A63 /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = ModuleRegistry.cpp; sourceTree = ""; }; + 576AD448826523267C1B77104A090AF9 /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; 57700021537417430A8DB243329E7650 /* PTProtocol.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PTProtocol.m; path = peertalk/PTProtocol.m; sourceTree = ""; }; 57772953C8F6A7EE7549195AE3766F39 /* Windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Windows.h; path = folly/portability/Windows.h; sourceTree = ""; }; - 577EABC9E9CB6E84A24FED8B74000D09 /* RNFBRCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBRCTEventEmitter.h; path = ios/RNFBApp/RNFBRCTEventEmitter.h; sourceTree = ""; }; 57B323E86461E56DCA658BB778E3012C /* Framer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Framer.h; path = rsocket/framing/Framer.h; sourceTree = ""; }; - 57C4CE6F525A7E042FC0D6770E33DD76 /* VibrancyViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VibrancyViewManager.h; path = ios/VibrancyViewManager.h; sourceTree = ""; }; - 57D92B45F84540F338A1EEA5DB2FB194 /* RNPinchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPinchHandler.m; sourceTree = ""; }; - 57E758D75B96F7F59C307EFF1E38FA75 /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; - 57F10CEC1473367D8AD232FDECDB57FE /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 581A7309AEB5386F083C9E89EC8CE4DF /* RCTRsaUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RCTRsaUtils.swift; path = ios/RCTCrypto/RCTRsaUtils.swift; sourceTree = ""; }; + 57F145D7F0B28F41789BDD4674BC470E /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; + 580DCF30E8F730B898A9CB6FDA5A1DBA /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; + 58185E3C2604FA10E23E4B814C6AA23A /* TurboModuleUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = TurboModuleUtils.cpp; sourceTree = ""; }; + 581B0AD8D2AF95FB3BA0D971E4BE811A /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = ""; }; + 581DB7D061A947F37F56A814CD0A96F3 /* BugsnagThread.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagThread.m; sourceTree = ""; }; + 5824F8E1DF5A3B5BE9B2B0B16CF93383 /* BugsnagPlatformConditional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagPlatformConditional.h; sourceTree = ""; }; 58273B190325B547D525894CCAF07636 /* evthread.c */ = {isa = PBXFileReference; includeInIndex = 1; path = evthread.c; sourceTree = ""; }; 583C1F06C507008E12FCD264B2ED8555 /* SynthTraceParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SynthTraceParser.h; path = destroot/include/hermes/SynthTraceParser.h; sourceTree = ""; }; - 584D1E9388E75686B93B35E2FC543999 /* UMFaceDetectorInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.release.xcconfig; sourceTree = ""; }; - 5856DF3456105DB470C5E270C33CBAD7 /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTEventDispatcher.h; path = React/CoreModules/RCTEventDispatcher.h; sourceTree = ""; }; - 58680E8D1775DE8E7BC44584389F8E53 /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCExecutorFactory.mm; sourceTree = ""; }; + 583CAA829AE25EB98694B65A874253F7 /* RCTKeyCommandConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandConstants.m; path = ios/KeyCommands/RCTKeyCommandConstants.m; sourceTree = ""; }; 587CA81CE7102CB1AE338DEDA0A1B0D5 /* FIRCLSReportAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSReportAdapter.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSReportAdapter.m; sourceTree = ""; }; - 5882B340EDC0435EE5759E04FC4D9CA9 /* TurboModuleBinding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TurboModuleBinding.h; sourceTree = ""; }; + 58817D2F48C0FC9AF0AB1D02CBEE1801 /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; 5882B802CF53A5BD9EDA6D07631B851F /* CocoaAsyncSocket.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaAsyncSocket.release.xcconfig; sourceTree = ""; }; 588E2150CDB29AE75B83DC77C9A0D29C /* CancelingSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CancelingSubscriber.h; path = yarpl/flowable/CancelingSubscriber.h; sourceTree = ""; }; - 589A90DC21B86114FE26A76388EEA3D0 /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; + 58963096519D6C779211460CABBD94E7 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 589DC083B14AD4EC32A765ECD809C693 /* SafeAreaSpacerShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SafeAreaSpacerShadowView.h; sourceTree = ""; }; + 589EFF994DF8E0A93512C85DE371D6DD /* react-native-blur.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-blur.release.xcconfig"; sourceTree = ""; }; 58A9B9AC86A3C640CA3F1826C1B01A7E /* File.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = File.h; path = folly/File.h; sourceTree = ""; }; 58B8205D88F6BC2164C9E39D657287A0 /* Aligned.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Aligned.h; path = folly/lang/Aligned.h; sourceTree = ""; }; - 58B8ECF76AAEE475E2FBC8334AB95A7A /* ReactNativeUiLib.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeUiLib.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 58B94465E6740BC4396BE9B1AA8814EC /* anim_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_encode.c; path = src/mux/anim_encode.c; sourceTree = ""; }; + 58BEA1567C200E7F5F6B279975DF007C /* RNCWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebViewManager.h; path = apple/RNCWebViewManager.h; sourceTree = ""; }; 58C6E7E33F256B29ECC94140A062E1F8 /* Barrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Barrier.h; path = folly/futures/Barrier.h; sourceTree = ""; }; - 58CBC1DF083659122FEE54E8664332CC /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; - 58D3AF415B00309C8E9321772845BFD5 /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = ""; }; + 58EC4AF8CC887E52459F1B6E3EC87A2F /* ARTTextFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTTextFrame.h; path = ios/ARTTextFrame.h; sourceTree = ""; }; + 58F641A2244B06835BA45E03ED2D38D6 /* EXAV.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAV.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 58FA23D37D8D8DF8F7AEEF92C9A7F627 /* EDFThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EDFThreadPoolExecutor.h; path = folly/executors/EDFThreadPoolExecutor.h; sourceTree = ""; }; 58FDB347CF2505169C6622AA7F6B1624 /* GDTCOREvent+GDTCCTSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GDTCOREvent+GDTCCTSupport.h"; path = "GoogleDataTransportCCTSupport/GDTCCTLibrary/Public/GDTCOREvent+GDTCCTSupport.h"; sourceTree = ""; }; 5903689357297B6FC54A8D0B3466D988 /* Uri.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Uri.cpp; path = folly/Uri.cpp; sourceTree = ""; }; - 5917733B8AAA8B57183D45D1D9E0EB06 /* RNFBAnalytics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFBAnalytics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 5904BCC1697988B38283030C5C0C88DF /* RCTConvert+REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+REATransition.m"; sourceTree = ""; }; + 591FA607D74A59DECE40C10AAE8667E7 /* QBVideoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.h; sourceTree = ""; }; + 5922923155F3938505DC98B5FD1F7886 /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; 592DC2321A8788889B3D76D68D24B042 /* FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRApp.m; path = FirebaseCore/Sources/FIRApp.m; sourceTree = ""; }; - 594A47DA5B2376EB909943CA3A7AED04 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; - 594B203FD15CA48E370EE4C54FAC957B /* ARTRenderableManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRenderableManager.h; sourceTree = ""; }; + 592DD183E51F970BE56CF088A5393452 /* React-CoreModules-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-CoreModules-dummy.m"; sourceTree = ""; }; 5955B368F840981A96CA92E5EC8D0045 /* DistributedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DistributedMutex.h; path = folly/synchronization/DistributedMutex.h; sourceTree = ""; }; + 5959A814B9579DC7EF9000E11F7FE3D0 /* Pbkdf2.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Pbkdf2.m; sourceTree = ""; }; 596F10574E5D420FE66BBA5FD276D16F /* AsyncServerSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncServerSocket.h; path = folly/io/async/AsyncServerSocket.h; sourceTree = ""; }; + 597A1AF2A1F2D22B468797A24BCF763B /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFPSGraph.h; path = React/CoreModules/RCTFPSGraph.h; sourceTree = ""; }; + 598032C41ED7209D4D75542FF1256B60 /* RCTKeyCommandsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandsManager.m; path = ios/KeyCommands/RCTKeyCommandsManager.m; sourceTree = ""; }; 598202B7E8219B4266CB62E0A114604D /* event.c */ = {isa = PBXFileReference; includeInIndex = 1; path = event.c; sourceTree = ""; }; 598D07341ECC791245D8956E8B93C174 /* ThreadCachedLists.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedLists.h; path = folly/synchronization/detail/ThreadCachedLists.h; sourceTree = ""; }; 59A422662B4C7E84503A2F4A62B082F6 /* FIRCLSFileManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFileManager.m; path = Crashlytics/Crashlytics/Models/FIRCLSFileManager.m; sourceTree = ""; }; 59AE21B3569D28AC69900B2F770A4A0E /* GCConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCConfig.h; path = destroot/include/hermes/Public/GCConfig.h; sourceTree = ""; }; - 59CF888CFAFFFA6819FEC7C84676F0C2 /* React-RCTLinking.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTLinking.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 59BD0C07D24524D4C340E46EC4907F53 /* RNFlingHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFlingHandler.m; sourceTree = ""; }; + 59C26B81DF6371141DB47D218E5792DA /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; 59ED6F706C9D0F558FED09E373412B9C /* FBLPromisePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromisePrivate.h; path = Sources/FBLPromises/include/FBLPromisePrivate.h; sourceTree = ""; }; 5A1CA625338CE59842D278D9464912E7 /* FIRAnalyticsConnector.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FIRAnalyticsConnector.framework; path = Frameworks/FIRAnalyticsConnector.framework; sourceTree = ""; }; 5A1D49F08EA04CD0332FF2CEDCE38B9E /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = src/glog/raw_logging.h; sourceTree = ""; }; - 5A2341E12FAB23D2BD2757BCEDD80427 /* RCTImageEditingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageEditingManager.mm; sourceTree = ""; }; 5A29B3E4A16627EEEB36AC28A8C68324 /* FIRCLSURLSessionUploadTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionUploadTask.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionUploadTask.h; sourceTree = ""; }; + 5A2E6B443111E31A19B7468C0E056A7B /* libPods-defaults-ShareRocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-defaults-ShareRocketChatRN.a"; path = "libPods-defaults-ShareRocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 5A358E9295CEDF21341438F2707CE599 /* OpenSSL-Universal-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "OpenSSL-Universal-xcframeworks.sh"; sourceTree = ""; }; 5A4D44FB517A2D94D03CAEC0D755B71A /* Codel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Codel.h; path = folly/executors/Codel.h; sourceTree = ""; }; - 5A619E7C5BEDBD8FF75CC6FB98249386 /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; + 5A73746A235A5F24EC13651F3F434619 /* BSG_KSSysCtl.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSysCtl.c; sourceTree = ""; }; + 5A89A78A49C5BA532B42B922603F10D5 /* RNRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNRotationHandler.m; sourceTree = ""; }; + 5A8E6865E8B1705CA95C0ED9EB913458 /* RCTConvert+ART.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+ART.h"; path = "ios/RCTConvert+ART.h"; sourceTree = ""; }; 5A9D7451AAEF6D630785986A58FDC007 /* FIRCLSSettings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSettings.m; path = Crashlytics/Crashlytics/Models/FIRCLSSettings.m; sourceTree = ""; }; - 5AB301AC3A089A667C0342156B31CBE2 /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; 5AB921F5A3DEFCBC88A0237C87AA2066 /* FIRCLSFABAsyncOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFABAsyncOperation.m; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSFABAsyncOperation.m; sourceTree = ""; }; + 5ACE5409F7D0811D41E16155430497AC /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; + 5AD22713EE6E7C846525A656A9999E89 /* BugsnagClient+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagClient+Private.h"; sourceTree = ""; }; 5AD3167E0123CD275B0C9FCABD515EA8 /* SDWebImageDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDefine.h; path = SDWebImage/Core/SDWebImageDefine.h; sourceTree = ""; }; - 5AE36BD42B59F23DB7879CEBF3950A5D /* RCTPbkdf2.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTPbkdf2.m; path = ios/RCTCrypto/RCTPbkdf2.m; sourceTree = ""; }; + 5AE33E6B0FBB3B12DA4E53484838DA32 /* react-native-appearance-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-appearance-dummy.m"; sourceTree = ""; }; + 5AE726FBD7EA3190FFA99F5A8DF3F737 /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAccessibilityManager.h; path = React/CoreModules/RCTAccessibilityManager.h; sourceTree = ""; }; 5B00BE8F8B05FC8407638AC7886DFA5A /* ConnectionFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionFactory.h; path = rsocket/ConnectionFactory.h; sourceTree = ""; }; - 5B062F792B90C0FFB25C7A0DAC10F247 /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; 5B18306BC869E0A6F64DC3423EC37D63 /* FIRLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoggerLevel.h; path = FirebaseCore/Sources/Public/FIRLoggerLevel.h; sourceTree = ""; }; - 5B186345815F6A815E8705BF239D68DC /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = ""; }; 5B1A3A030C5391095F45FBDA62640A67 /* Syslog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Syslog.h; path = folly/portability/Syslog.h; sourceTree = ""; }; - 5B1DBBE9203BCBA001D885ACA16BE0F5 /* BSG_KSSystemInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSSystemInfo.m; sourceTree = ""; }; - 5B2254B969B01665658D2FAC2D991BC8 /* react-native-simple-crypto.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-simple-crypto.release.xcconfig"; sourceTree = ""; }; 5B226505A9C8CFF13FE2314419290926 /* cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_enc.c; path = src/enc/cost_enc.c; sourceTree = ""; }; - 5B3170EE2F9508AC106F091EE78E7CF3 /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = ""; }; + 5B314EBC0F63CD448CFF48D750EBD705 /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.h; sourceTree = ""; }; 5B3357A1CE67C0BF4AE31936A1BE6888 /* libYogaKit.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libYogaKit.a; path = libYogaKit.a; sourceTree = BUILT_PRODUCTS_DIR; }; 5B42126EAF02047EADFC9E6162C406BC /* AsyncGeneratorShim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncGeneratorShim.h; path = yarpl/flowable/AsyncGeneratorShim.h; sourceTree = ""; }; 5B4439507548AB0D9403B7C0702F9051 /* Flipper-Glog.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Glog.debug.xcconfig"; sourceTree = ""; }; 5B49FDBF3FC01A38C036AFDF31332825 /* Demangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Demangle.h; path = folly/Demangle.h; sourceTree = ""; }; - 5B74D2662B077094DB23560B2624AC8D /* React-perflogger.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-perflogger.debug.xcconfig"; sourceTree = ""; }; + 5B707ED67B4BB2FCDC42FE3B71683C3D /* BSGSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGSerialization.h; sourceTree = ""; }; + 5B7929894D1887234B31F855496F5AC9 /* RNCSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaShadowView.h; path = ios/SafeAreaView/RNCSafeAreaShadowView.h; sourceTree = ""; }; 5B79F9D35FD7D0A9CC6EEA2FC0B28D87 /* AutoTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AutoTimer.h; path = folly/experimental/AutoTimer.h; sourceTree = ""; }; 5B9A6ACBF39BC62B711A68ECDD7E99A5 /* yuv_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_neon.c; path = src/dsp/yuv_neon.c; sourceTree = ""; }; - 5BBD2F56DE1B3C0CA7D05AD02C2F235B /* HighlighterViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = HighlighterViewManager.h; sourceTree = ""; }; 5BC13F39AC5C4806FD4BEED0207D40BA /* json_pointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_pointer.h; path = folly/json_pointer.h; sourceTree = ""; }; 5BD5DC609D90282613BD259D7B7025A0 /* FIRCLSUnwind_x86.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSUnwind_x86.c; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_x86.c; sourceTree = ""; }; - 5BD6848DDEF9209E9B81397B5A1F9AF5 /* RCTCustomKeyboardViewControllerTemp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomKeyboardViewControllerTemp.h; sourceTree = ""; }; - 5BDA26914C4E565302DAF3E2410D8326 /* RCTGIFImageDecoder.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTGIFImageDecoder.mm; sourceTree = ""; }; - 5BDA7FF7370A980A82E2384DA1A3D7EA /* RNFetchBlob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFetchBlob.h; sourceTree = ""; }; 5BDE5CE1F29F2B5E710DBC832F28D9B5 /* Iterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Iterator.h; path = folly/container/Iterator.h; sourceTree = ""; }; 5C127F75FA6077FB8DAB2F87EFD5DC08 /* RSocketStats.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketStats.cpp; path = rsocket/RSocketStats.cpp; sourceTree = ""; }; - 5C1AD67E8F8D80A069E55A5F294A72CD /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; - 5C38396678B7BDB25D669DB58C1C6B60 /* REATransitionValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionValues.m; sourceTree = ""; }; + 5C31E2A1FFF7C0019D735887896DF06A /* BugsnagHandledState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagHandledState.m; sourceTree = ""; }; + 5C4250C05D4C210BAFA42C1CB4B27CB5 /* RNFBCrashlytics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBCrashlytics-prefix.pch"; sourceTree = ""; }; + 5C4DE2956E605D7F293176107A826EBA /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = ""; }; 5C54F02D722B48B0AA6F0F2997F6DC92 /* RWSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RWSpinLock.h; path = folly/synchronization/RWSpinLock.h; sourceTree = ""; }; 5C6F10F55828C306F9087EA3BE6FFA76 /* IOThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOThreadPoolExecutor.h; path = folly/executors/IOThreadPoolExecutor.h; sourceTree = ""; }; + 5C7493E37DFFDB0A29EA930EBD0F25C2 /* ARTNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTNode.m; path = ios/ARTNode.m; sourceTree = ""; }; 5C80621220CDF16B10C3A915E83A66BE /* pb_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_decode.c; sourceTree = ""; }; 5C8840FC1E09D950CB658115B4791F05 /* common_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_dec.h; path = src/dec/common_dec.h; sourceTree = ""; }; - 5C95B85703FD3909D26F4D6F5F09452B /* BSG_KSCrashSentry_MachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_MachException.h; sourceTree = ""; }; + 5C916787C74604D8FD50FB4D7B25FFDA /* ARTRenderableManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRenderableManager.h; sourceTree = ""; }; + 5C9B552556AD3AC3AC9A1FF4D59CECE1 /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobCollector.mm; sourceTree = ""; }; 5CA67C3517994DD4BC785DB3A2B4FB1A /* MMKV.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MMKV.cpp; path = Core/MMKV.cpp; sourceTree = ""; }; - 5CA7ECB7CF77BAF895C2BAB733C0766E /* RNNotificationCenterListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterListener.m; path = RNNotifications/RNNotificationCenterListener.m; sourceTree = ""; }; - 5CB9F9D2D9DC5D4EC91C330EA3FE1DE8 /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; - 5CCA2B6B419C8CD92F127D2EDF5AD457 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 5CE89E55A272534E50ECB568DA41EA28 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 5CEEA2881319348B74379E95580994B0 /* EXVideoThumbnails.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXVideoThumbnails.debug.xcconfig; sourceTree = ""; }; + 5CAB83F1E564EEB611ED28B0CEAF30FE /* RNDateTimePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePickerManager.h; path = ios/RNDateTimePickerManager.h; sourceTree = ""; }; + 5CC09DC9037224C3B66F8AC19F2B6059 /* RCTPlatform.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPlatform.mm; sourceTree = ""; }; + 5CD4624DD0FCA9E92E21136ACCE7F269 /* react-native-safe-area-context-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-safe-area-context-dummy.m"; sourceTree = ""; }; 5CEEAEB3328E9D73020B5EB925D69D19 /* FBDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBDefines.h; path = iOS/FBDefines/FBDefines.h; sourceTree = ""; }; 5CF3C79BD496F82B25133B4BBF8480A7 /* GDTCOREvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCOREvent.h; sourceTree = ""; }; - 5CF59257F3C0F2DB8EC4951850A41F31 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 5D09B9B81C4A268D1194275F7C4547BF /* Align.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Align.h; path = folly/lang/Align.h; sourceTree = ""; }; - 5D1D2EF99CA87FA22276B9092E0609BE /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; + 5D3EA5B4B575BDA257735202166064A3 /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; + 5D404758C9F5D8AB79A1DF5B3E7D2E32 /* RNSScreenStackHeaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStackHeaderConfig.m; path = ios/RNSScreenStackHeaderConfig.m; sourceTree = ""; }; + 5D43D654FCA7F23771F07696175762B7 /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSExecutor.cpp; sourceTree = ""; }; 5D701AED020EB1DA57B6FDE8E105FA78 /* StaticTracepoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticTracepoint.h; path = folly/tracing/StaticTracepoint.h; sourceTree = ""; }; - 5D775911616F066110A00982DB65A0CF /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSIndexedRAMBundle.cpp; sourceTree = ""; }; + 5D74EF68D1949BD56732B7EAB1BFCE79 /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = ""; }; 5D7795BE80B6157A02063B428151BA3C /* SDAsyncBlockOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAsyncBlockOperation.h; path = SDWebImage/Private/SDAsyncBlockOperation.h; sourceTree = ""; }; + 5D7BE327B326B95C648585A7BE370A3A /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeModule.mm; sourceTree = ""; }; 5D807357EC0B10568626B6462BAE2112 /* F14Table.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = F14Table.cpp; path = folly/container/detail/F14Table.cpp; sourceTree = ""; }; - 5D86198D4949CCBF29B30C14A072C51C /* Pods-defaults-Rocket.Chat-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-defaults-Rocket.Chat-resources.sh"; sourceTree = ""; }; 5D95CD156892E8171703B58D48E2D707 /* SDWebImageOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOperation.m; path = SDWebImage/Core/SDWebImageOperation.m; sourceTree = ""; }; 5DA06A75A3E5419934A4FD58166B2332 /* diy-fp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "diy-fp.h"; path = "double-conversion/diy-fp.h"; sourceTree = ""; }; 5DAE9BA82BA92370D5416D2AE6FA9324 /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.m"; sourceTree = ""; }; 5DB376A59FEDEFFDE68EA4CA8C8D80F4 /* AtFork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtFork.h; path = folly/detail/AtFork.h; sourceTree = ""; }; - 5DB4BF71ED971EDCB9BE4DACF1F70251 /* BSG_KSCrashState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashState.h; sourceTree = ""; }; 5DB6C7D6E115FC52ECED1026C673AD3A /* TOCropView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropView.h; path = "Objective-C/TOCropViewController/Views/TOCropView.h"; sourceTree = ""; }; - 5DEBC1BAF574AFBE0A240EC4B92B9222 /* RNCAsyncStorageDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorageDelegate.h; path = ios/RNCAsyncStorageDelegate.h; sourceTree = ""; }; + 5DE1DEECA7B95C2F487E21F26B6995B3 /* RNDateTimePicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDateTimePicker-dummy.m"; sourceTree = ""; }; 5DEC62479ED4703A3493A030B50AC9AE /* SingletonStackTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonStackTrace.h; path = folly/detail/SingletonStackTrace.h; sourceTree = ""; }; 5DFDE0F1F6827D9150F1F6A956057CA6 /* FIRCLSUUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUUID.m; path = Crashlytics/Shared/FIRCLSUUID.m; sourceTree = ""; }; 5DFF7397E09CAEAD4EF98B7FC86A0F4F /* AsyncUDPSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncUDPSocket.cpp; path = folly/io/async/AsyncUDPSocket.cpp; sourceTree = ""; }; + 5E14FCE40864E45913A2C969C0B2D7A1 /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; 5E18EDA82B7F891804060AECEF71B5BE /* PBUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PBUtility.h; path = Core/PBUtility.h; sourceTree = ""; }; 5E191E90BBC4E5C7147A7B5E598B5512 /* GTest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTest.h; path = folly/portability/GTest.h; sourceTree = ""; }; - 5E1E8657FE2715577316C9E5298CC67A /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; 5E28E5E5D8F3D49FB0BC9C998D181E05 /* bufferevent_pair.c */ = {isa = PBXFileReference; includeInIndex = 1; path = bufferevent_pair.c; sourceTree = ""; }; + 5E386DC9A27321FB9860CF02FA9F8D03 /* REATransitionAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionAnimation.h; sourceTree = ""; }; 5E3947DC22A5110AC3C2BEA168E2B5E5 /* GULNetworkConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkConstants.h; path = GoogleUtilities/Network/Private/GULNetworkConstants.h; sourceTree = ""; }; 5E4674603A5D5B9215FFA0F8E69F8B71 /* liblibwebp.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = liblibwebp.a; path = liblibwebp.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 5E47FC1B177ED11362FBB280B902E135 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 5E650516DB771BA1A51A67A821704DA4 /* quant_levels_dec_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_dec_utils.c; path = src/utils/quant_levels_dec_utils.c; sourceTree = ""; }; + 5E6C0041DF66013D73FBEED12E372544 /* TurboModulePerfLogger.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = TurboModulePerfLogger.cpp; sourceTree = ""; }; + 5E798A9318B82BB207DAEBB2D6604A9E /* QBAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetCell.m; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.m; sourceTree = ""; }; 5E7AC2F842CF15F2E25C14CED3929FF8 /* Parallel-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Parallel-inl.h"; path = "folly/gen/Parallel-inl.h"; sourceTree = ""; }; - 5E87B44B33AAED551BDFE7329D248E7C /* Pods-defaults-RocketChatRN-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-defaults-RocketChatRN-frameworks.sh"; sourceTree = ""; }; - 5E9036CFB2799E65E288D45785C8D208 /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; - 5E96CBF4AB411D188859DD799CB2BDAA /* RNFBApp.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFBApp.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 5EB11152E396D621E3766B2CF8AF5A3B /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; - 5EC4CCD019D6BB26A7A773D0011083C7 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 5EAE9196962CE4F1B28D093A73FEFB1D /* React-runtimeexecutor.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-runtimeexecutor.debug.xcconfig"; sourceTree = ""; }; 5EC93F69EB17565DC472711C55309B4C /* Arena-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Arena-inl.h"; path = "folly/memory/Arena-inl.h"; sourceTree = ""; }; + 5ECE145F88E238B706A47CA042E7F8C0 /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; 5ED1781E466357A234FAA7C7480F39C7 /* TOCropToolbar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropToolbar.h; path = "Objective-C/TOCropViewController/Views/TOCropToolbar.h"; sourceTree = ""; }; 5ED3A731B84B5126546C42978C09FCD0 /* FIRInstallationsIDController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIDController.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.m; sourceTree = ""; }; - 5EDAEF49F6BF9D3DA5503E36236593FD /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; + 5EDE4B6188274A04D1D48E9D069863FC /* UMCameraInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.debug.xcconfig; sourceTree = ""; }; 5EF8A94048C6DB061F18D39393DD8E0C /* buffer.c */ = {isa = PBXFileReference; includeInIndex = 1; path = buffer.c; sourceTree = ""; }; - 5F2683A971E15880EF5B327BD5626263 /* React-CoreModules-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-CoreModules-dummy.m"; sourceTree = ""; }; 5F26D293A32C713B8BFCD57BD007346D /* Sched.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Sched.cpp; path = folly/portability/Sched.cpp; sourceTree = ""; }; - 5F2B7B521B5CB97DC3E8275845FE10E8 /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; - 5F4F629A06B57337573242D35CD5AA6E /* ARTPattern.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTPattern.m; sourceTree = ""; }; - 5F5208C843EA6C6D04890C6B59961C9C /* RCTLinkingPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLinkingPlugins.mm; sourceTree = ""; }; + 5F3837B4B558F144062895D604B49077 /* Yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 5F57E078B3F1604F757A25A55E445B3D /* react-native-cookies-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-cookies-prefix.pch"; sourceTree = ""; }; 5F62DCB13F6FE4400AF13DBBAB827945 /* UIImage+WebP.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+WebP.m"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.m"; sourceTree = ""; }; - 5F669730EEE8E6B98C2C7F778D951E3C /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; 5F7131E80F05E6182455932994237783 /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/Bits.h; sourceTree = ""; }; - 5F972AC9C15EA18677280333E536CEB6 /* Connection.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = Connection.cpp; sourceTree = ""; }; 5F9930C748EC0C40FBA684586C473A75 /* hermes-engine-copy-dsyms.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "hermes-engine-copy-dsyms.sh"; sourceTree = ""; }; 5F996B391DAE5F571B5F458C5A371768 /* GDTCORUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploader.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORUploader.h; sourceTree = ""; }; + 5FAA21C6C0C9980EEE59850DC56F4710 /* EXAppleAuthentication.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppleAuthentication.release.xcconfig; sourceTree = ""; }; 5FAA8AA11C5B657BABEB5CA3B444722F /* FIRAnalyticsInteropListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsInteropListener.h; path = Interop/Analytics/Public/FIRAnalyticsInteropListener.h; sourceTree = ""; }; - 5FC40ED6C98F0824A871FF77F70F8337 /* RNCWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebView.h; path = apple/RNCWebView.h; sourceTree = ""; }; + 5FE6C989797E55076A1A74AF992750C5 /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; 5FF6612843F3346BFEAF10A6DC11B13E /* FlowableTimeoutOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableTimeoutOperator.h; path = yarpl/flowable/FlowableTimeoutOperator.h; sourceTree = ""; }; - 60182C824BDFDB45B28B9510884D115A /* RNCNetInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCNetInfo.m; path = ios/RNCNetInfo.m; sourceTree = ""; }; + 60048274722CA6F80CC4A99152E981E4 /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; 602BD77857A04584FC205689CE88517E /* FlipperKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FlipperKit.debug.xcconfig; sourceTree = ""; }; + 603131F97BAA207E67383A8A998042A4 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; 603227E13E228FE45C25D295A158787D /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Sources/Private/FIRComponentContainer.h; sourceTree = ""; }; 6035C4A147C0B8830C13A13C56336ABA /* F14Map-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "F14Map-fwd.h"; path = "folly/container/F14Map-fwd.h"; sourceTree = ""; }; - 607E59673F2126D78532D061EB6CDDC6 /* react-native-blur-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-blur-dummy.m"; sourceTree = ""; }; + 603DE106673E866A530CB5FBA50E0F94 /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; + 6057631DB1CAF97943B1AA60672D95C2 /* RNPushKitEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventListener.h; path = RNNotifications/RNPushKitEventListener.h; sourceTree = ""; }; + 607B3D72F1D65F0541F6A67178F50A0C /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = ""; }; + 60816C0E7B00326FCAD09074D41D8E75 /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; 6081D20F35C515C6DB4F00B0209A46F4 /* SDGraphicsImageRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDGraphicsImageRenderer.h; path = SDWebImage/Core/SDGraphicsImageRenderer.h; sourceTree = ""; }; - 608CD4F8E082098759CAC66864BF63FA /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; + 60914E3939A0BE01C52CB41770FDFB11 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; 60A78B90FBEAE0D288D92B02DE601C21 /* UniqueInstance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UniqueInstance.cpp; path = folly/detail/UniqueInstance.cpp; sourceTree = ""; }; - 60ABBF8A4B9F566D966A46A31D8C9A11 /* React-RCTBlob.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.release.xcconfig"; sourceTree = ""; }; + 60A8A8253558AB307ED8E84CF4F5D614 /* RNLongPressHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNLongPressHandler.h; sourceTree = ""; }; + 60D1A26443E475C946E7CBB625FC3318 /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; + 60D442A392DA9A7A6DD57F6D01D72702 /* RNCPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCPicker-dummy.m"; sourceTree = ""; }; + 60EA4B570BE390DC3171F49D41731488 /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; 60F35749AE880A93AA3F8B9E8DEF69B0 /* DynamicBoundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicBoundedQueue.h; path = folly/concurrency/DynamicBoundedQueue.h; sourceTree = ""; }; 60F3BCBDD6A323B314E65E8E2810E3C2 /* RecordIO.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RecordIO.cpp; path = folly/io/RecordIO.cpp; sourceTree = ""; }; - 61230AE453795B7A133A7459CE9BEBA6 /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 60FC3B7F56EDDDD84C2E753CD47A7FAE /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; + 611AE1380C322873C05FF482BC9482F7 /* RNVectorIconsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNVectorIconsManager.h; path = RNVectorIconsManager/RNVectorIconsManager.h; sourceTree = ""; }; 612C955AED499AA9C055FF8D5FDD1640 /* SDImageCacheDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheDefine.m; path = SDWebImage/Core/SDImageCacheDefine.m; sourceTree = ""; }; 614730BC9C015864F40F7F79D3DA1546 /* AtomicNotification-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicNotification-inl.h"; path = "folly/synchronization/AtomicNotification-inl.h"; sourceTree = ""; }; + 614947D4527A86D0737DD42B9A20A26A /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; 614BA35B6914DE93A82BE6DC1195EBE9 /* AtomicUnorderedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUnorderedMap.h; path = folly/AtomicUnorderedMap.h; sourceTree = ""; }; - 614E4058F18C064D420942BA82412734 /* RNNativeViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNNativeViewHandler.m; sourceTree = ""; }; + 6174C6C58855E02EEFC88B8F6D256DF9 /* Yoga.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Yoga.modulemap; sourceTree = ""; }; + 617B784FD1DFF9097BAFE1E2344EB943 /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; 617DC4CFBCE1FAC3EED379342C098A6D /* FIRCLSURLSessionDownloadTask_PrivateMethods.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionDownloadTask_PrivateMethods.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionDownloadTask_PrivateMethods.h; sourceTree = ""; }; 618086732FB8BEF7EB0994CD5B8498CD /* ManualExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ManualExecutor.h; path = folly/executors/ManualExecutor.h; sourceTree = ""; }; - 618CEA2056B333277B5FDB6C9A335161 /* RNFBMeta.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBMeta.h; path = ios/RNFBApp/RNFBMeta.h; sourceTree = ""; }; - 6190629C5E04AF8D24FDEF0CE9F3E25A /* React-RCTNetwork.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.debug.xcconfig"; sourceTree = ""; }; - 61A5623BACFC54B40BECCC9D5CD72BA1 /* QBVideoIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIndicatorView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.h; sourceTree = ""; }; + 61966A99342D60B517BD347F8A86DA49 /* RNConfigReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNConfigReader.h; path = ios/RNConfigReader.h; sourceTree = ""; }; + 61A4BB49B9D906AC2985AD80CF88A646 /* RNVectorIcons.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.release.xcconfig; sourceTree = ""; }; 61BC42558FD1A68292D50CDD2D1E6983 /* Instructions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Instructions.h; path = folly/experimental/Instructions.h; sourceTree = ""; }; - 61BEFA697114506898F5EF0F02F44C7C /* RCTLogBoxView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLogBoxView.h; path = React/CoreModules/RCTLogBoxView.h; sourceTree = ""; }; 61C1AC94DA8359D54DFA47BA5050F019 /* StringKeyedSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedSet.h; path = folly/experimental/StringKeyedSet.h; sourceTree = ""; }; - 61C3A2D07C40B6FEDB9157CF5121EDB3 /* BugsnagErrorReportApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagErrorReportApiClient.m; sourceTree = ""; }; 61C5237AA4FF1AE4631BC96A273B9D85 /* SDWebImageTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageTransition.m; path = SDWebImage/Core/SDWebImageTransition.m; sourceTree = ""; }; 61CB4D4ACAB911DE070EDC4C8B5F88DC /* SpookyHashV1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpookyHashV1.h; path = folly/hash/SpookyHashV1.h; sourceTree = ""; }; 61F4312D6E2ABF2D879843953CC06ABF /* OpenSSLHash.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OpenSSLHash.cpp; path = folly/ssl/OpenSSLHash.cpp; sourceTree = ""; }; 61FAF4CE050658BE2F201783FE487029 /* CppAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CppAttributes.h; path = folly/CppAttributes.h; sourceTree = ""; }; - 61FECB7565483F35A4A79A45FBB46538 /* RNFBCrashlytics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFBCrashlytics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 620F7BDC04D8C8FC48B1A38DDDA2EE0E /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; + 61FFC7CC0B3B4AA85642907AD9B5C5CB /* EXSessionDownloadTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionDownloadTaskDelegate.h; sourceTree = ""; }; 62211D510BC0A02100BC630FA71A248E /* EventBaseLocal.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBaseLocal.cpp; path = folly/io/async/EventBaseLocal.cpp; sourceTree = ""; }; 62241FF2F74F1894A38653432A83E2DB /* mm-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "mm-internal.h"; sourceTree = ""; }; + 62317B39353F9FFF8355EEB75F3F34A5 /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 62349CEF1BEF279D189F7115CFD85FD1 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Sources/Private/FIRComponentContainer.h; sourceTree = ""; }; - 62378A8F43173332A123B8CB04B4DA3C /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; 624B9F811291F5AF60BF66DA62A4BC33 /* FBLPromise+Recover.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Recover.h"; path = "Sources/FBLPromises/include/FBLPromise+Recover.h"; sourceTree = ""; }; - 626E78CAC13DC163B172B18AB8B900B9 /* RCTImageURLLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoader.h; path = Libraries/Image/RCTImageURLLoader.h; sourceTree = ""; }; - 627622AC23DD03D9DD5E6337E505E548 /* QBAssetsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.m; sourceTree = ""; }; - 627D20F1B33BC522318E7820082BC048 /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; - 629B984ED021E1DCFB8A9837C7E2B90B /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; + 6250AE0BC5C931BC2D8257FEA03EC40D /* NSError+BSG_SimpleConstructor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSError+BSG_SimpleConstructor.m"; sourceTree = ""; }; + 62915D9EE18CF11F2284CBAEA75CC96E /* BugsnagKeys.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagKeys.m; sourceTree = ""; }; + 6298AE3E0AD6B0EB0E8FA035BC850A15 /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; 62A93AAB3B73950E2B5F76E03DE1FD0F /* SKSwizzle.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKSwizzle.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKSwizzle.mm; sourceTree = ""; }; 62AE8B9F5D600E833DBC71FCA6DD3A00 /* TimeoutManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TimeoutManager.cpp; path = folly/io/async/TimeoutManager.cpp; sourceTree = ""; }; 62B73A440AD7CB767A967E0875089085 /* FIRCLSInternalLogging.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSInternalLogging.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSInternalLogging.c; sourceTree = ""; }; 62BD993AF8582A2D4517FBE2A6DCCB40 /* FlatCombiningPriorityQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlatCombiningPriorityQueue.h; path = folly/experimental/FlatCombiningPriorityQueue.h; sourceTree = ""; }; - 62D1922830D1CAFE025EA04917AFA751 /* UMAppLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMAppLoader-prefix.pch"; sourceTree = ""; }; + 62D27314EB70A5DB01D620B3C7B5AE22 /* EXConstants.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.debug.xcconfig; sourceTree = ""; }; 62DA78B0C8B22C0F5F258C14B2B653A9 /* UninitializedMemoryHacks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UninitializedMemoryHacks.h; path = folly/memory/UninitializedMemoryHacks.h; sourceTree = ""; }; 62F459488D43AA27FF3659559D36B974 /* DelayedDestructionBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DelayedDestructionBase.h; path = folly/io/async/DelayedDestructionBase.h; sourceTree = ""; }; - 630EC295F1EEE562FFA273E7F7DF23E1 /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = ""; }; + 62F8007FC792903E650CF2C9E6DCF5C4 /* RNFBAnalytics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBAnalytics-prefix.pch"; sourceTree = ""; }; 63181DA198763B9B8CAD33951BAC9300 /* ThreadName.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadName.cpp; path = folly/system/ThreadName.cpp; sourceTree = ""; }; + 631870C24E6FF50FFE8421AB36226223 /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.h; sourceTree = ""; }; + 6319E115C683CD8817790D3D6A945E4D /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; 632154CA99C3395F324D6E8391E97CD6 /* SDAnimatedImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SDAnimatedImageView+WebCache.h"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.h"; sourceTree = ""; }; 6325EB92C709FD51590164146B016D32 /* ThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadFactory.h; path = folly/executors/thread_factory/ThreadFactory.h; sourceTree = ""; }; + 6340CF85ACC147112B0CF70EF2FE49DA /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 634C827508AD23CC96DA5F402D7C9362 /* TupleOps.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TupleOps.h; path = folly/experimental/TupleOps.h; sourceTree = ""; }; 6358C91D6EFFFEE83C8D79EAC09C685D /* UIImage+CropRotate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+CropRotate.h"; path = "Objective-C/TOCropViewController/Categories/UIImage+CropRotate.h"; sourceTree = ""; }; 635ABD2D0367C7A831A83C0C4FD12CF2 /* UIImage+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Transform.h"; path = "SDWebImage/Core/UIImage+Transform.h"; sourceTree = ""; }; - 635EDD101CFD063AB290BAD6A17A7E7D /* EXAudioSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioSessionManager.h; path = EXAV/EXAudioSessionManager.h; sourceTree = ""; }; 636EA45DECCDA93699ABC2B3569AB75E /* SDImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoader.m; path = SDWebImage/Core/SDImageLoader.m; sourceTree = ""; }; - 6377DE541E0C6E7297F6C5EF6D754F48 /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; 637C838337F31ED529BCEA41C0F4A3E4 /* FKUserDefaultsPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKUserDefaultsPlugin.m; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsPlugin.m; sourceTree = ""; }; - 638E4D6A72441CCAD608D5F691C34053 /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; - 639BDD55C6A351931E7B5962D40BF504 /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = ""; }; - 63A5C562EC8E993C5AC57AB81FEBC9B3 /* BSG_KSString.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSString.c; sourceTree = ""; }; + 6397ABA682F826ECC4ADD5A6A5140726 /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; + 63A78931AA61F6FBBB499A3DEE605446 /* RCTUIImageViewAnimated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIImageViewAnimated.m; sourceTree = ""; }; 63A7B528365B39E6C6E9F68527A0D320 /* FIRComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponent.m; path = FirebaseCore/Sources/FIRComponent.m; sourceTree = ""; }; 63AE044CCFF233460DB6306511A7B7C2 /* RSocketStats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketStats.h; path = rsocket/RSocketStats.h; sourceTree = ""; }; + 63C45641EB5DB3C16645B6FADBA569B7 /* BugsnagEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagEvent.m; sourceTree = ""; }; 63D0C21CDE1E08E58AFE3105E685007B /* FIRCLSMachOSlice.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMachOSlice.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOSlice.m; sourceTree = ""; }; 63E1B74E561C965DABC1A328D38BBD67 /* FileUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FileUtil.cpp; path = folly/FileUtil.cpp; sourceTree = ""; }; - 6407EBC83BE6A19967C53EE9F7B8FFE5 /* RNCMaskedView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCMaskedView.release.xcconfig; sourceTree = ""; }; - 6430379ECF72CFBE46FBAD269394ABC1 /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; - 643C284C788DFDDA64CE7315DE23C92D /* RCTConvert+FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FIRApp.m"; path = "ios/RNFBApp/RCTConvert+FIRApp.m"; sourceTree = ""; }; + 64087F3B75718DA47431935A6FF88F39 /* ARTText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTText.m; path = ios/ARTText.m; sourceTree = ""; }; + 642047E681784F26A48404E6D40A6ABD /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; + 64272172F300480AAB5564037E52F9C2 /* RNFBAppModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBAppModule.h; path = ios/RNFBApp/RNFBAppModule.h; sourceTree = ""; }; 644633337DCD128ED7793DA3C7441FEB /* alpha_processing_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_neon.c; path = src/dsp/alpha_processing_neon.c; sourceTree = ""; }; 644E133CF3831EA6989CE8834B6575E6 /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = src/raw_logging.cc; sourceTree = ""; }; 6469A47D128F2A11EBBF60DD1195B115 /* FIRCLSRecordHost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordHost.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordHost.h; sourceTree = ""; }; + 6471F18D06F32C511636C48B2D479CCC /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; 647CE40CF1C8A2EB7C6DA7AD4397FDC3 /* SharedPromise-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SharedPromise-inl.h"; path = "folly/futures/SharedPromise-inl.h"; sourceTree = ""; }; 6497352FEB02FB97EDC668D210D9D639 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Sources/Private/FIROptionsInternal.h; sourceTree = ""; }; 6498003091836BC30C2529E6F103179E /* Futex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Futex-inl.h"; path = "folly/detail/Futex-inl.h"; sourceTree = ""; }; 64AA081DD681754AE4C37B1CF1559595 /* TOCropScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropScrollView.h; path = "Objective-C/TOCropViewController/Views/TOCropScrollView.h"; sourceTree = ""; }; 64AEE34E39F21439039BA2068927D0F2 /* IntrusiveList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IntrusiveList.h; path = folly/IntrusiveList.h; sourceTree = ""; }; - 64AF78F1D3EAA55B4FB07910063FCB39 /* REAValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAValueNode.m; sourceTree = ""; }; 64B3EB06DBD57A098DB73AE093530DC6 /* F14Map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Map.h; path = folly/container/F14Map.h; sourceTree = ""; }; 64C7DEA7D869F455672B981CDD297434 /* TypedIOBuf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypedIOBuf.h; path = folly/io/TypedIOBuf.h; sourceTree = ""; }; - 64E106A7EF61FBD69B3F90133BD754FE /* RCTImageDataDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageDataDecoder.h; path = Libraries/Image/RCTImageDataDecoder.h; sourceTree = ""; }; 64EC894656BBCA746633441C44840EB0 /* PriorityLifoSemMPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityLifoSemMPMCQueue.h; path = folly/executors/task_queue/PriorityLifoSemMPMCQueue.h; sourceTree = ""; }; 64F1C6DC263490A0830F3D93F7AEC22D /* vlog_is_on.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = vlog_is_on.cc; path = src/vlog_is_on.cc; sourceTree = ""; }; - 64F83F66DCCD6256DEE11988E3EADB11 /* RCTJSScriptLoaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSScriptLoaderModule.h; sourceTree = ""; }; 64FDB424456A4DD24183CF1B2202D02E /* evhttp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evhttp.h; path = include/evhttp.h; sourceTree = ""; }; - 651A1E9A9371528060742E73ED50B7BE /* react-native-safe-area-context-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-safe-area-context-dummy.m"; sourceTree = ""; }; + 651A8F3131951CB6910C3BC1B587DEA4 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 65234B3E668A42D9137B2C7AB051EE37 /* libFlipperKit.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFlipperKit.a; path = libFlipperKit.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6525E5BC4FA81595E90608B5DC99A111 /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; 6526F41ECBDF99585387BFDC5787A33B /* Random.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Random.h; path = folly/Random.h; sourceTree = ""; }; 6533957012F837CCA5A902610A989D73 /* ReentrantAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReentrantAllocator.h; path = folly/memory/ReentrantAllocator.h; sourceTree = ""; }; - 654B4588CF131310C1E22D0639B391FB /* QBAlbumsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.h; sourceTree = ""; }; + 654A312852DD07D4EC6DC4D1DF016102 /* EXAV.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.debug.xcconfig; sourceTree = ""; }; 655295FC2D10FA8D103EC75D8A0C884B /* SocketFileDescriptorMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketFileDescriptorMap.h; path = folly/net/detail/SocketFileDescriptorMap.h; sourceTree = ""; }; 655AB00308011B638B5EA2AA6AE30280 /* SDImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageWebPCoder.h; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.h; sourceTree = ""; }; 657C2BB6771EEDE6789A18E1920992B2 /* SKIOSNetworkAdapter.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKIOSNetworkAdapter.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/SKIOSNetworkAdapter.mm; sourceTree = ""; }; - 65A10CD384166D4915AA30899818E55F /* RNFetchBlobProgress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobProgress.h; path = ios/RNFetchBlobProgress.h; sourceTree = ""; }; - 65B0799628CA4546DA0AA234AF4B0251 /* RNVectorIcons.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.release.xcconfig; sourceTree = ""; }; + 6588EE64A2769BC2FE5EC0F6D78CD8E4 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; + 658CDE58F0A145A01F4B64355610CEA8 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 65931E231ED87291782F00320FD5E79D /* RNNotificationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationsStore.h; path = RNNotifications/RNNotificationsStore.h; sourceTree = ""; }; + 659AF947B8078759249913E120B5CC48 /* RNFetchBlobProgress.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobProgress.m; path = ios/RNFetchBlobProgress.m; sourceTree = ""; }; + 65A8ACF1D7DE947873F2F653FE01B728 /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = ""; }; 65B29ADF9EF6733B27B00153E334C733 /* boost-for-react-native.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "boost-for-react-native.release.xcconfig"; sourceTree = ""; }; 65C39BD507722298D52DB1270A2BFABE /* FIRCoreDiagnosticsConnector.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnosticsConnector.m; path = FirebaseCore/Sources/FIRCoreDiagnosticsConnector.m; sourceTree = ""; }; 65C4D9484C6E95E9F01F5CA361F5F57E /* rescaler_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_neon.c; path = src/dsp/rescaler_neon.c; sourceTree = ""; }; 65C750CF4B56A5F3925533462CABEC7A /* SafeAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SafeAssert.h; path = folly/lang/SafeAssert.h; sourceTree = ""; }; 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libYoga.a; path = libYoga.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 65DCD89017277DA042318CC0C4F6A952 /* MessageConverters.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = MessageConverters.cpp; sourceTree = ""; }; 65F1AC1A3944F25FB966B24E6E90882F /* RangeCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RangeCommon.h; path = folly/detail/RangeCommon.h; sourceTree = ""; }; - 65F449F2C0D676302A7D3EFECD8DDEE8 /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 65F5FB558C6BE50EC9471DC96E88DE1F /* RCTConvert+REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+REATransition.m"; sourceTree = ""; }; 65F7A0C6C87BF5E149864516855F9BB0 /* MemoryFile_Android.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MemoryFile_Android.cpp; path = Core/MemoryFile_Android.cpp; sourceTree = ""; }; - 660AEFAFDDB0EDC43EFB550CFB6D835E /* RCTUtilsUIOverride.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtilsUIOverride.h; sourceTree = ""; }; - 6615A2E2272EE55298643FBBEFD8EE16 /* EXPermissions.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.debug.xcconfig; sourceTree = ""; }; + 660AB5C7E94D9F3FEF94F33259865B5F /* RNNotificationCenterListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterListener.h; path = RNNotifications/RNNotificationCenterListener.h; sourceTree = ""; }; 666D07CFFA0543E74260EBDA643C53E5 /* strlcpy-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "strlcpy-internal.h"; sourceTree = ""; }; 666E72807891C591E025A75410CD2A26 /* libReact-perflogger.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-perflogger.a"; path = "libReact-perflogger.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 6687502C2231BC03919355A6C7410E2D /* RCTConvertHelpers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTConvertHelpers.mm; sourceTree = ""; }; 6691DF0CB8F296A5B4193C56713D9084 /* FIRAValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAValue.h; path = Crashlytics/Crashlytics/Helpers/FIRAValue.h; sourceTree = ""; }; 6699132F7FA7337ED210A2AEF692D1CD /* enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc.c; path = src/dsp/enc.c; sourceTree = ""; }; 66A3E0F59BFBF183C03632E2F93359A4 /* ManualExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ManualExecutor.cpp; path = folly/executors/ManualExecutor.cpp; sourceTree = ""; }; - 66B29694F66CA2A9B64C6C6276003DB6 /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; - 66CA7A79D16A8E49C9E8D0BF80631C67 /* rn-extensions-share-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-extensions-share-dummy.m"; sourceTree = ""; }; - 66DBED08D481E3230301B0600488D541 /* BSG_KSCrashSentry_MachException.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_MachException.c; sourceTree = ""; }; + 66B424E1E337CAC9AA470426F174F470 /* RNCConnectionStateWatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCConnectionStateWatcher.h; path = ios/RNCConnectionStateWatcher.h; sourceTree = ""; }; + 66E95A42F0A22197DC0CC828955BCA58 /* BSG_KSBacktrace.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSBacktrace.c; sourceTree = ""; }; 66EE8C7854B55B201886046863BC7BF0 /* FBLPromise+Await.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Await.m"; path = "Sources/FBLPromises/FBLPromise+Await.m"; sourceTree = ""; }; + 66F0D8BBD14EFB8EA9197CDCE644FAB0 /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; 670D865981D234F25D9D09BEEA071BAF /* SDImageTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageTransformer.m; path = SDWebImage/Core/SDImageTransformer.m; sourceTree = ""; }; - 673AC98601EA685ECC95DCF683933C54 /* RNNotificationCenterListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterListener.h; path = RNNotifications/RNNotificationCenterListener.h; sourceTree = ""; }; - 67443A0D721E53CCA52629029D127560 /* react-native-slider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-slider-prefix.pch"; sourceTree = ""; }; - 6748AF569364CD745C071D9CD54291DE /* RNJitsiMeetViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetViewManager.m; path = ios/RNJitsiMeetViewManager.m; sourceTree = ""; }; 67547ABBE9B4176AC94A8DF3675333BE /* CallOnce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallOnce.h; path = folly/synchronization/CallOnce.h; sourceTree = ""; }; - 675CAEE33B9097E82C62669A02A100FD /* RNFBCrashlytics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBCrashlytics-prefix.pch"; sourceTree = ""; }; 675E5ADC3EACC082F3B1BAAA56677263 /* DistributedMutexSpecializations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DistributedMutexSpecializations.h; path = folly/synchronization/DistributedMutexSpecializations.h; sourceTree = ""; }; 6771D231F4C8C5976470A369C474B32E /* libReact-CoreModules.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-CoreModules.a"; path = "libReact-CoreModules.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 677A0291688B635D3F8CBAEE82288760 /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event.h; path = include/event.h; sourceTree = ""; }; 67801958A02500B281EC81392CED35CE /* crc32_armv8.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = crc32_armv8.cpp; path = Core/crc32/crc32_armv8.cpp; sourceTree = ""; }; - 6780A66BC4062D4ABA53E6B60F07CBBE /* RNPushKitEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventListener.h; path = RNNotifications/RNPushKitEventListener.h; sourceTree = ""; }; + 678C3CA52E8662BB138C894265599275 /* React-RCTSettings.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.release.xcconfig"; sourceTree = ""; }; 678C4DAE117185D4BB58E20B091B3292 /* AsyncSSLSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncSSLSocket.cpp; path = folly/io/async/AsyncSSLSocket.cpp; sourceTree = ""; }; 6791FB3EDD564BD9752FDCCF60CA3EBA /* ThreadedExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadedExecutor.cpp; path = folly/executors/ThreadedExecutor.cpp; sourceTree = ""; }; + 67A418ACC80C140583AE0AC6CFFA5D8B /* RCTImageDataDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageDataDecoder.h; path = Libraries/Image/RCTImageDataDecoder.h; sourceTree = ""; }; 67A7E38CB6EA455F1DB1AC26C42A0EFA /* Padded.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Padded.h; path = folly/Padded.h; sourceTree = ""; }; - 67BF755F9D7AAF2B6B7788A8DC0103FC /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 67C5FAE32BEA89A9F629CED076CF7F99 /* experiments-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "experiments-inl.h"; sourceTree = ""; }; + 67B0B5C0025E7B120F21C60622927C4C /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; + 67C0A615EC5CE05FBDFF23BFEF29B103 /* StorageGetters.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = StorageGetters.m; path = ios/StorageGetters.m; sourceTree = ""; }; + 67CAA565D53A463C56D681FD8D161D9F /* BlurEffectWithAmount.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BlurEffectWithAmount.m; path = ios/BlurEffectWithAmount.m; sourceTree = ""; }; 67D5F573B6CFD6FF0723A26620D16C35 /* FIRErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrors.h; path = FirebaseCore/Sources/Private/FIRErrors.h; sourceTree = ""; }; - 67DE76349AA2DBFCB1AE91B38BFB8E78 /* UMModuleRegistryHolderReactModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryHolderReactModule.m; sourceTree = ""; }; - 67FED35915516D004344018E4837E98B /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; - 68008AE029AA078C70913264227235C1 /* REACondNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACondNode.h; sourceTree = ""; }; + 67FC132B2BFBA61E75482AE535AD2BCB /* react-native-cameraroll.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.release.xcconfig"; sourceTree = ""; }; 68060AEBDFA64E78B014DA913C5C68F2 /* io_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = io_dec.c; path = src/dec/io_dec.c; sourceTree = ""; }; + 6810A6ED3034CA85E3808DA46E080054 /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; + 6810FE9C38430A012054DCA1F480FCA3 /* BugsnagStacktrace.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagStacktrace.m; sourceTree = ""; }; + 68166958B14ADCB402252DD19DBCF907 /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = ""; }; 681A1AB2EE91831DCFF815571703FE6D /* Hardware.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Hardware.cpp; path = folly/synchronization/detail/Hardware.cpp; sourceTree = ""; }; - 682D1DDFE6604C66DC56A6904F4A0CFA /* BugsnagHandledState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagHandledState.h; sourceTree = ""; }; 684772E1C17950688E2D02F4D586194B /* idec_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = idec_dec.c; path = src/dec/idec_dec.c; sourceTree = ""; }; - 68552BEDC89D66210CD1DAC47C465168 /* BlurViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlurViewManager.h; path = ios/BlurViewManager.h; sourceTree = ""; }; + 68486419F43F8281CD207605D2E14272 /* RCTConvert+ART.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+ART.m"; path = "ios/RCTConvert+ART.m"; sourceTree = ""; }; 685C9C5FD5924F761267DFE1A9612E80 /* ThreadCachedLists.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedLists.h; path = folly/synchronization/detail/ThreadCachedLists.h; sourceTree = ""; }; - 687E451D04769F753593715A51175ED7 /* REABlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABlockNode.h; sourceTree = ""; }; - 68B62AE30242F2428DF3825991AFC489 /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; + 68855EB97EDD027373CF568D23BD5DF6 /* RNConfigReader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNConfigReader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 6889C8BC615C521EE2FB3D13B4AAA3A0 /* UMFontInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.debug.xcconfig; sourceTree = ""; }; 68B8924F51A5D653C23A9DA652BE953B /* AtomicHashArray-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicHashArray-inl.h"; path = "folly/AtomicHashArray-inl.h"; sourceTree = ""; }; + 68C9E6D3EB09E903470E81DBF85202E6 /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; 68CBB36E7717339C490EC08F8C06B009 /* FIRCLSCompactUnwind.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSCompactUnwind.c; path = Crashlytics/Crashlytics/Unwind/Compact/FIRCLSCompactUnwind.c; sourceTree = ""; }; - 68CC8BB57B703D782276E083F73451FC /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; + 68D9357F6B530E418ECB4089AF8372A5 /* RNFBJSON.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBJSON.h; path = ios/RNFBApp/RNFBJSON.h; sourceTree = ""; }; 68E5B1003B8DCEFF9213D3CA6C3AA20D /* EventBaseManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseManager.h; path = folly/io/async/EventBaseManager.h; sourceTree = ""; }; + 68F5A2D99D26FA53F6F483CE78272FCB /* RNCAssetsLibraryRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAssetsLibraryRequestHandler.h; path = ios/RNCAssetsLibraryRequestHandler.h; sourceTree = ""; }; 690044B01CE1973C18744D256E86F459 /* Try.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Try.h; path = folly/Try.h; sourceTree = ""; }; - 691DC86469A0E20B38DF416D365DD6B9 /* RNFBApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBApp.debug.xcconfig; sourceTree = ""; }; - 691F68D1104C3DC9EC6978403FEACA7D /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; - 692604FFEA1609303AF1A54694CA2ABF /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; + 6909DC17B79287F476ED5275B90B517D /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; 6931DC644FEDF73FEBBE11DF0C21A77D /* openssl_aes_locl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = openssl_aes_locl.h; path = Core/aes/openssl/openssl_aes_locl.h; sourceTree = ""; }; - 693B5756644F952AD45D01C2CD4C9852 /* RCTImageLoaderWithAttributionProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderWithAttributionProtocol.h; path = Libraries/Image/RCTImageLoaderWithAttributionProtocol.h; sourceTree = ""; }; + 69389DC458827669951C8BAA959A038A /* RCTTypeSafety.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTTypeSafety.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 6940E70BC2B82A3348601D7EB06E6568 /* FBCxxFollyDynamicConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBCxxFollyDynamicConvert.h; path = iOS/FlipperKit/FBCxxFollyDynamicConvert/FBCxxFollyDynamicConvert.h; sourceTree = ""; }; 6942351307BC1F54575D9853307EAE0E /* libGoogleDataTransportCCTSupport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransportCCTSupport.a; path = libGoogleDataTransportCCTSupport.a; sourceTree = BUILT_PRODUCTS_DIR; }; 69461254E0F0D3F1C43476F6235680E3 /* GULSecureCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSecureCoding.h; path = GoogleUtilities/Environment/Private/GULSecureCoding.h; sourceTree = ""; }; - 69581175C16A8A465496D40FA2094F5B /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; - 695FAE585C90D54BF4B116FF4A349829 /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; + 696B1D52D0D68745C933A07535EEDDCF /* RCTAppState.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppState.mm; sourceTree = ""; }; 696DE55C286BFCE9ABFD2B09F49FBF2C /* NSButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSButton+WebCache.h"; path = "SDWebImage/Core/NSButton+WebCache.h"; sourceTree = ""; }; + 697AD1D3EC759E22877C4FDBCFCF6816 /* RCTSettingsPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSettingsPlugins.mm; sourceTree = ""; }; 69845DF7E945F2C245A84A9EB73674A1 /* F14SetFallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14SetFallback.h; path = folly/container/detail/F14SetFallback.h; sourceTree = ""; }; - 698E67A5FC5F74ABB902D4C5BE7D2857 /* LongLivedObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = LongLivedObject.cpp; sourceTree = ""; }; 6991BE63F2E573C66593317FD6BC4642 /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIDynamic.h; path = destroot/include/jsi/JSIDynamic.h; sourceTree = ""; }; + 6994E61B1A90908489F7A027BC5BDC02 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 69B07D62B4420F1F79859BE4CEBE6317 /* F14Set-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "F14Set-fwd.h"; path = "folly/container/F14Set-fwd.h"; sourceTree = ""; }; - 69C92812257DBCADEEF2E62E4A7A8D68 /* EXSessionUploadTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionUploadTaskDelegate.m; sourceTree = ""; }; + 69B4659927463CDABCB118B5DEC7ED20 /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; + 69CBDAEC21CED6734106C954B1F4AB29 /* RNReanimated.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNReanimated.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 69D34CE26D3CB422F08A8EBDA79343E3 /* TOCropViewController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TOCropViewController-prefix.pch"; sourceTree = ""; }; 69D3B6CCE8A8969EE3C7CAFE9900BFCE /* FIRCLSReportUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportUploader.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportUploader.h; sourceTree = ""; }; 69E9EBCDB1ECAB7A20C2934E5487BCD8 /* rescaler_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rescaler_utils.h; path = src/utils/rescaler_utils.h; sourceTree = ""; }; @@ -10766,2620 +11100,2717 @@ 6A07399903C688EED824AF5CD4ED6843 /* SysMembarrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysMembarrier.h; path = folly/portability/SysMembarrier.h; sourceTree = ""; }; 6A096EC171F2532ED7AA64B58D2D2138 /* SDWebImageWebPCoder-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImageWebPCoder-prefix.pch"; sourceTree = ""; }; 6A0A2760653BF9EBB93B810586FD6825 /* TOCropOverlayView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropOverlayView.m; path = "Objective-C/TOCropViewController/Views/TOCropOverlayView.m"; sourceTree = ""; }; + 6A110C638AB89D801A638CD5BE920798 /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; + 6A11237B02A98AEAEEF0BAEC3866800C /* react-native-jitsi-meet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-jitsi-meet-prefix.pch"; sourceTree = ""; }; 6A190983119A82156CA0B4A385EE69BB /* Core-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Core-inl.h"; path = "folly/gen/Core-inl.h"; sourceTree = ""; }; + 6A19D8BD47C70E27B2D60A385E031D01 /* React-Core-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-umbrella.h"; sourceTree = ""; }; 6A1E9C1B0EFF5B1C55F68933D06863DE /* bufferevent-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "bufferevent-internal.h"; sourceTree = ""; }; 6A2ABF0D6496094126D0C76FF799A01F /* CoreCachedSharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreCachedSharedPtr.h; path = folly/concurrency/CoreCachedSharedPtr.h; sourceTree = ""; }; - 6A2AF247FC31D3D4EC1388A44719EF39 /* React-RCTImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTImage.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 6A312051722868095F0B57B9DF72AD23 /* GDTCORLifecycle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORLifecycle.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORLifecycle.h; sourceTree = ""; }; + 6A3F39F545F907AF8B49B170FBE2599D /* REAPropsNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAPropsNode.m; sourceTree = ""; }; 6A41D7E2DBBC26D635269DD18909A0B0 /* PThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PThread.h; path = folly/portability/PThread.h; sourceTree = ""; }; - 6A4AF1326E421028E60AF99BCF020020 /* RNFBJSON.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBJSON.h; path = ios/RNFBApp/RNFBJSON.h; sourceTree = ""; }; + 6A49593F09314002179F647E3B3F9781 /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; 6A4B08830BCD18DEC0487928F7DD1183 /* FIRCLSCrashedMarkerFile.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSCrashedMarkerFile.c; path = Crashlytics/Crashlytics/Components/FIRCLSCrashedMarkerFile.c; sourceTree = ""; }; 6A55C04E01ACF9ECB1600AECCFCBD53C /* HazptrUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrUtils.h; path = folly/synchronization/detail/HazptrUtils.h; sourceTree = ""; }; - 6A601E3CC5D26B3989370CF7C479F9C8 /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPlatform.h; path = React/CoreModules/RCTPlatform.h; sourceTree = ""; }; - 6A749218B06B95BF1C8412194242EEB0 /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = ""; }; - 6A78BB79A816BAAA08ACA4B49EE68C23 /* ARTBrush.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTBrush.m; sourceTree = ""; }; 6AB4C38354B40701BDF1A1954B9961DA /* JitsiMeetSDK.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JitsiMeetSDK.release.xcconfig; sourceTree = ""; }; 6ABC70D8E3CD1011B90A77C789F11198 /* GoogleUtilities.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.debug.xcconfig; sourceTree = ""; }; 6AD2999A13828C3996ABC48EF58DB9E0 /* FBLPromise+Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Async.h"; path = "Sources/FBLPromises/include/FBLPromise+Async.h"; sourceTree = ""; }; - 6ADB46F0379CAA95E7C8402BA3F0BD1E /* RCTLogBoxView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLogBoxView.mm; sourceTree = ""; }; - 6ADCBB00B64226BA363D0D887DCBD9E4 /* BSG_KSCrashC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashC.c; sourceTree = ""; }; 6ADEB961DEDA65743BCB157D54689070 /* Utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utility.h; path = folly/synchronization/Utility.h; sourceTree = ""; }; - 6AEA540EBD145F05A9C283DD8DF728C4 /* BSG_KSCrashSentry_User.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_User.h; sourceTree = ""; }; + 6AE76AE1AFE4CFEA4DBE648484A0B5B0 /* TurboModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = TurboModule.cpp; sourceTree = ""; }; 6AF2C1FE145FB923BB121653B852C92F /* AtomicIntrusiveLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicIntrusiveLinkedList.h; path = folly/AtomicIntrusiveLinkedList.h; sourceTree = ""; }; 6AFD3DAEA617156BF2B54EC866156EA4 /* listener.c */ = {isa = PBXFileReference; includeInIndex = 1; path = listener.c; sourceTree = ""; }; - 6B04D802C155AFC7BFE192BEA8530F96 /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; - 6B0E7E1DACD749F5D83A7FDE42D5C858 /* UIImage+Extension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Extension.m"; path = "ios/src/UIImage+Extension.m"; sourceTree = ""; }; + 6AFEA695161609385AB7DFD9B211A61C /* ConnectionDemux.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = ConnectionDemux.cpp; sourceTree = ""; }; 6B13A8544A674349A2B8685A22CF4DA5 /* NetOps.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = NetOps.cpp; path = folly/net/NetOps.cpp; sourceTree = ""; }; - 6B18D9CCA3190DF28E422E2DB4F8F735 /* EXImageLoader.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXImageLoader.debug.xcconfig; sourceTree = ""; }; 6B283E3E1AF9FE53C336B499AB040D8C /* FBLPromise+Recover.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Recover.m"; path = "Sources/FBLPromises/FBLPromise+Recover.m"; sourceTree = ""; }; - 6B316F3EB3F04EB82A40DE42C29374D4 /* SafeAreaManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SafeAreaManager.m; sourceTree = ""; }; + 6B459DE3753ACF65B3EE6005C011ABAA /* BugsnagSessionFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionFileStore.h; sourceTree = ""; }; + 6B462E204A57616C620FCD610EFD07A8 /* EXAppleAuthenticationButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationButton.m; path = EXAppleAuthentication/EXAppleAuthenticationButton.m; sourceTree = ""; }; + 6B51ED28BE9F80874D2FED1984B9BD21 /* RNFBAnalytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBAnalytics.debug.xcconfig; sourceTree = ""; }; + 6B581AF2E83EF6009140B64543AC95C1 /* Pods-defaults-RocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-defaults-RocketChatRN-acknowledgements.plist"; sourceTree = ""; }; + 6B596B6A233AC2997CB28970BFAAB97C /* RNFBApp-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBApp-prefix.pch"; sourceTree = ""; }; 6B66C21CAE7DE77D9BAA440A406B201D /* FIRCLSDownloadAndSaveSettingsOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDownloadAndSaveSettingsOperation.h; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSDownloadAndSaveSettingsOperation.h; sourceTree = ""; }; 6B6792230C95B3E30825ACD9B116B40D /* ThreadLocalDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLocalDetail.h; path = folly/detail/ThreadLocalDetail.h; sourceTree = ""; }; 6B6AF267F4A7C6DE4A649FA84CE33D1D /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Sources/Private/FIRLibrary.h; sourceTree = ""; }; - 6B8B5DD9592BCEACA9C54DDBB4C954A7 /* RCTUIImageViewAnimated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIImageViewAnimated.m; sourceTree = ""; }; 6B9475DFB50607546ADDE85EFFA6AB56 /* IPAddressException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressException.h; path = folly/IPAddressException.h; sourceTree = ""; }; - 6B9685D2A2AEA1220BE43ECDC9E9E22E /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; - 6BB558448356A4D39A31307FD3C409F4 /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; - 6BD7928662171E9A101EEB078942B3DD /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = ""; }; + 6BB250331658AE5163B01B81D50B014F /* BSG_KSCrashType.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashType.c; sourceTree = ""; }; + 6BC844546A49F881F76425F68A1F936E /* react-native-appearance.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-appearance.release.xcconfig"; sourceTree = ""; }; 6BF6B2F608C86C28E7AFB5A77D03196D /* CancellationToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CancellationToken.h; path = folly/CancellationToken.h; sourceTree = ""; }; 6BFB4F0358B1ACEFB5E3C7512D6AD07A /* Future-pre.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Future-pre.h"; path = "folly/futures/Future-pre.h"; sourceTree = ""; }; + 6C038D726C9B5961986DC385A924ED87 /* RNCAppearanceProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProviderManager.m; path = ios/Appearance/RNCAppearanceProviderManager.m; sourceTree = ""; }; 6C1989CBEB6492178FB599E7162B2097 /* GlobalExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = GlobalExecutor.cpp; path = folly/executors/GlobalExecutor.cpp; sourceTree = ""; }; 6C237B5740E47D383CF27A8B511D0898 /* SDWebImageTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransition.h; path = SDWebImage/Core/SDWebImageTransition.h; sourceTree = ""; }; - 6C2F19B01CDE0E540916BF36C0D235C2 /* RNFetchBlobProgress.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobProgress.m; path = ios/RNFetchBlobProgress.m; sourceTree = ""; }; - 6C5B9B1C082DE54F9B9D5DABB08C2F8F /* Connection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Connection.h; sourceTree = ""; }; - 6C5F4C2E47B7500B938112601B233090 /* KeyCommands.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeyCommands.debug.xcconfig; sourceTree = ""; }; + 6C42293110E4BFCD51D38CDFD8A3C674 /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; + 6C50F0B068A73AFAA9B5CC8A6EE68016 /* CallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallInvoker.h; path = ReactCommon/CallInvoker.h; sourceTree = ""; }; + 6C8504725868A39F09E3FFF4D0A5E3DC /* MMKVStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MMKVStorage.m; path = ios/MMKVStorage.m; sourceTree = ""; }; 6C8D435674D93881B7111A8FBBEE9D1E /* Overload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Overload.h; path = folly/Overload.h; sourceTree = ""; }; - 6CA9C2CF15A63F4CA8A773271762C929 /* FFFastImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageViewManager.m; path = ios/FastImage/FFFastImageViewManager.m; sourceTree = ""; }; + 6CADFA2A40FBABA870ABD822D9B135E7 /* RCTNativeAnimatedModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeAnimatedModule.mm; sourceTree = ""; }; + 6CBD09F71E3B527302EF7324C4215788 /* EXImageLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXImageLoader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 6CBEFE4F9E22AFDC6347A739BB35FF8C /* libCocoaAsyncSocket.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libCocoaAsyncSocket.a; path = libCocoaAsyncSocket.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6CC587454BD6B008658D1F81D5C7D43F /* IOS7Polyfill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOS7Polyfill.h; path = ios/IOS7Polyfill.h; sourceTree = ""; }; + 6CCC914F4F5E3F78B40CCDAC0BDEB908 /* RCTBlobCollector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBlobCollector.h; sourceTree = ""; }; + 6CD0239177EF8EE0D59AB9A4F5F3C1F4 /* RCTUIImageViewAnimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTUIImageViewAnimated.h; path = Libraries/Image/RCTUIImageViewAnimated.h; sourceTree = ""; }; + 6CD2507059F1C896B0B80005FEC8F1CC /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; 6CF53837C68C7B590404D59EF0192BFC /* mux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux.h; path = src/webp/mux.h; sourceTree = ""; }; + 6CF745EDA739D9C3E1176587CBC2416F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 6CFDA273373426936C27E061A9BA16A2 /* dynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dynamic.cpp; path = folly/dynamic.cpp; sourceTree = ""; }; + 6CFF6339FBEA769B1F8F933E9BB6D49B /* RCTConvertHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvertHelpers.h; sourceTree = ""; }; 6D035BF61D6DF1BDDA08411148CE3E73 /* FIRCLSURLBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLBuilder.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSURLBuilder.h; sourceTree = ""; }; - 6D0DA8859E79F2DB7185EEC52C8A9ED2 /* RCTConvert+FFFastImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FFFastImage.m"; path = "ios/FastImage/RCTConvert+FFFastImage.m"; sourceTree = ""; }; - 6D199D416CB2EE9DF1C8EF4CB6B39AB8 /* REACallFuncNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACallFuncNode.h; sourceTree = ""; }; - 6D241D128FCBB15F4E45464434335482 /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = ""; }; - 6D27A3C49C11A184F74D0B9BA233D1CF /* BugsnagSessionFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionFileStore.m; sourceTree = ""; }; + 6D04BB5E40BA5D8B5192C6EEBBD84FE1 /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; + 6D15A2BDD2DD1DDE07F55DA3ED1F6D2A /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCExecutorFactory.mm; sourceTree = ""; }; 6D32352F57E8F9AA7298DD4C5C8B23BD /* F14Policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Policy.h; path = folly/container/detail/F14Policy.h; sourceTree = ""; }; 6D394A72631D12B745FC13EBB49EBD4A /* alpha_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_enc.c; path = src/enc/alpha_enc.c; sourceTree = ""; }; + 6D4488B3A6E4CE9B4FDFD87803624CEF /* RCTClipboard.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTClipboard.mm; sourceTree = ""; }; 6D491A5BE778C93D4886A5C866040891 /* FIRConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRConfiguration.m; path = FirebaseCore/Sources/FIRConfiguration.m; sourceTree = ""; }; 6D65F1A831B333D8CF7EB66829B4339A /* libreact-native-blur.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-blur.a"; path = "libreact-native-blur.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 6D67E32F1621EB8851E0CC5B2C35BB15 /* histogram_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = histogram_enc.h; path = src/enc/histogram_enc.h; sourceTree = ""; }; 6D716AC570A14D99A2182905FE68EC50 /* EventBaseThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBaseThread.cpp; path = folly/io/async/EventBaseThread.cpp; sourceTree = ""; }; 6D72FDDBC60397E485A899802B6F59BA /* F14MapFallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14MapFallback.h; path = folly/container/detail/F14MapFallback.h; sourceTree = ""; }; 6D744C16B2F99CC6C399F2964E2BED17 /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "SDWebImage/Core/UIImage+GIF.m"; sourceTree = ""; }; - 6D77E7395968BFCF421B518C6BB9797B /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; + 6D7916C3FADB90D716EC5DFF41BB3D99 /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; 6D873A659FB8A00376E60A16382DB886 /* ScheduledExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledExecutor.h; path = folly/executors/ScheduledExecutor.h; sourceTree = ""; }; 6D8BCB33436BE48FAD4C6E8DD4A9C0C6 /* FutureDAG.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureDAG.h; path = folly/experimental/FutureDAG.h; sourceTree = ""; }; - 6D912204E55E4D99267763A4775EC975 /* BSG_KSCrashSentry_CPPException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_CPPException.h; sourceTree = ""; }; + 6D96E809EA4CE71B2F3930CB24DB6293 /* RNCConnectionState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCConnectionState.m; path = ios/RNCConnectionState.m; sourceTree = ""; }; 6DADA8D716CE4503A3E311B00DC0BB26 /* DebuggerAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DebuggerAPI.h; path = destroot/include/hermes/DebuggerAPI.h; sourceTree = ""; }; - 6DB5AC5E0BDFD084B5EC2322AD4CCB7A /* Zocial.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Zocial.ttf; path = Fonts/Zocial.ttf; sourceTree = ""; }; - 6DC7A00F522AFE9858ECA2B4700FDC85 /* BSG_KSCrashType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashType.h; sourceTree = ""; }; + 6DBC133BD573DB96A2EFAC4EFE1318BC /* rn-extensions-share-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-extensions-share-prefix.pch"; sourceTree = ""; }; + 6DCC0C7F66B675D989796CA6C01D6D6D /* RNDeviceInfo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.release.xcconfig; sourceTree = ""; }; + 6DD121FD76E97C58E23365FDFC628B14 /* EXImageLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXImageLoader-dummy.m"; sourceTree = ""; }; 6DE2E381F8E1CE4FA0EC39A780E182F4 /* Builtins.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Builtins.cpp; path = folly/portability/Builtins.cpp; sourceTree = ""; }; + 6DE49ECD736F3A64C331F6A1E4F30C4E /* READebugNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = READebugNode.h; sourceTree = ""; }; 6DF210C698286DA9A48D500C07B827B0 /* FramedReader.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FramedReader.cpp; path = rsocket/framing/FramedReader.cpp; sourceTree = ""; }; + 6DF61E1E4E09C55C34D232E606DAEC35 /* RNImageCropPicker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.debug.xcconfig; sourceTree = ""; }; + 6E00A3B55B15D71B2CD3B55336524196 /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; + 6E0611FB660329A962544FF42EC9A319 /* ReactNativeShareExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeShareExtension.m; path = ios/ReactNativeShareExtension.m; sourceTree = ""; }; + 6E0689640886583CF0A244F816A2FD5B /* EXLocalAuthentication-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXLocalAuthentication-dummy.m"; sourceTree = ""; }; 6E06CF35D5BF7A55466AB24B113BEC05 /* strlcpy.c */ = {isa = PBXFileReference; includeInIndex = 1; path = strlcpy.c; sourceTree = ""; }; + 6E0CDCC5D6ED7F4BA5BD967EE9279F4B /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = ""; }; 6E137C9A8D2E3E9A5EF10B8265E9656A /* FIRExceptionModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRExceptionModel.m; path = Crashlytics/Crashlytics/FIRExceptionModel.m; sourceTree = ""; }; + 6E14464624A16C87A3E048A7BD5D4F68 /* BugsnagConfigSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagConfigSerializer.h; sourceTree = ""; }; 6E1E0315F092C2654B08337CEF9B874D /* MemoryFile_Win32.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MemoryFile_Win32.cpp; path = Core/MemoryFile_Win32.cpp; sourceTree = ""; }; 6E28EDF634FF6ECE4803956901A890EB /* analysis_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = analysis_enc.c; path = src/enc/analysis_enc.c; sourceTree = ""; }; - 6E2AD4DC3C7BAFF897E5295A7023310C /* QBAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetCell.h; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.h; sourceTree = ""; }; + 6E29334AD715950C356E291A618D2281 /* BugsnagMetadataStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagMetadataStore.h; sourceTree = ""; }; + 6E320D828713423902FF9737F8D8B1DF /* RCTImagePlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImagePlugins.h; path = Libraries/Image/RCTImagePlugins.h; sourceTree = ""; }; 6E32947F097148F59B3F1E82CA8CFAF1 /* evrpc-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "evrpc-internal.h"; sourceTree = ""; }; + 6E4512E71DEA6EB132DB9A11EE925080 /* React-RCTAnimation.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.release.xcconfig"; sourceTree = ""; }; + 6E567830E7845629D2196E6C4E1652B9 /* RCTPbkdf2.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTPbkdf2.m; path = ios/RCTCrypto/RCTPbkdf2.m; sourceTree = ""; }; 6E862EF5EF45C3A65DC568F4D8060AAC /* FIRCLSDataParsing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDataParsing.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDataParsing.h; sourceTree = ""; }; 6E88B1A9026F546D449585CF54CEB725 /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/lang/Bits.h; sourceTree = ""; }; - 6E89F29E71CAEEC86A9612DEEA4D8DC5 /* ARTSurfaceView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTSurfaceView.m; path = ios/ARTSurfaceView.m; sourceTree = ""; }; 6E981642F410BB1CAC1402953B1C9C35 /* GULNetworkURLSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkURLSession.m; path = GoogleUtilities/Network/GULNetworkURLSession.m; sourceTree = ""; }; 6E994E6FB4BBB5D87BDF1A7DE791E5E6 /* ParallelMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ParallelMap.h; path = folly/gen/ParallelMap.h; sourceTree = ""; }; - 6E99D6C2A288A7C117EAAE21A1959639 /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; 6EA1D92786FCD194CDB476F296BED4AD /* FIRCLSUnwind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUnwind.h; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind.h; sourceTree = ""; }; 6EB546ADA24193FABD659F8D647F5A17 /* SanitizeLeak.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeLeak.h; path = folly/memory/SanitizeLeak.h; sourceTree = ""; }; + 6EC09334D862F611D8B61F433B6C8440 /* RNConfigReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNConfigReader.m; path = ios/RNConfigReader.m; sourceTree = ""; }; + 6EC653EE003D3BA9DA51B6784B49E387 /* Aes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Aes.m; sourceTree = ""; }; + 6ED44C6E2CAA76255A8A8349F38A9EC4 /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; + 6ED4D25011BAD0ECDF0976D92211BF3F /* RCTActionSheetManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTActionSheetManager.mm; sourceTree = ""; }; 6EDA96412237D84713DD44019D1495A1 /* FIRCLSURLSessionTask_PrivateMethods.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionTask_PrivateMethods.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionTask_PrivateMethods.h; sourceTree = ""; }; - 6EF097E2388755E1D73D9DF2E6C84190 /* BSG_KSCrashIdentifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashIdentifier.m; sourceTree = ""; }; + 6F0154D8ACB77B410E5B940FAA48A9FE /* RNVectorIconsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNVectorIconsManager.m; path = RNVectorIconsManager/RNVectorIconsManager.m; sourceTree = ""; }; 6F0271863C4BA41E4574C7D6BB595537 /* FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRApp.h; path = FirebaseCore/Sources/Public/FIRApp.h; sourceTree = ""; }; - 6F0521569B50C41F5CA8E4871C6533CA /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; + 6F1A6CB5AD58A8B648B42C549671774B /* RCTFileRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFileRequestHandler.mm; sourceTree = ""; }; + 6F202CC58071BB662983E064EB4D8F0C /* React-RCTActionSheet.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.debug.xcconfig"; sourceTree = ""; }; 6F25DD195E34542EF84D539694EAD5F0 /* FIRCLSUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUserDefaults.h; path = Crashlytics/Crashlytics/FIRCLSUserDefaults/FIRCLSUserDefaults.h; sourceTree = ""; }; - 6F2FF19D8BFD77A700EB6457E8DD9F0D /* ARTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTSurfaceView.h; path = ios/ARTSurfaceView.h; sourceTree = ""; }; 6F36E13AC167DFE778E66EEF82E1F9E6 /* TOCropView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropView.m; path = "Objective-C/TOCropViewController/Views/TOCropView.m"; sourceTree = ""; }; - 6F47C36D2EAD0640B20CA6E7577E4505 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 6F56E28417CCFCCEE48F22DBCCC87198 /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; - 6F7241F44EB4C0A9C5C998545C7CC74B /* RNCMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedView.m; path = ios/RNCMaskedView.m; sourceTree = ""; }; - 6FB553E345465ACCFBEA29590F793975 /* React-RCTActionSheet.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTActionSheet.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 6F662D0D4F3FA959BF89BA93821F6FAB /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; + 6F7DD3947C6404858F17C6C80EC228E4 /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; + 6F815F8790C9087086FE9DE411255EBF /* RCTWebSocketExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTWebSocketExecutor.mm; sourceTree = ""; }; + 6F94301C0561DD443C43F2F07AE4968F /* ARTLinearGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTLinearGradient.m; sourceTree = ""; }; + 6FA0AD66C02F21425433DDB9366CD22F /* RNPushKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKit.h; path = RNNotifications/RNPushKit.h; sourceTree = ""; }; 6FBB3076E8F8AAE9C08B725DFAB0C8D3 /* RWSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RWSpinLock.h; path = folly/RWSpinLock.h; sourceTree = ""; }; - 6FC0225CC3853B5DABF6CFEF92183314 /* RCTConvert+RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+RNNotifications.h"; path = "RNNotifications/RCTConvert+RNNotifications.h"; sourceTree = ""; }; 6FC51C20FB20896CA9591C38F77525E7 /* WaitOptions.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WaitOptions.cpp; path = folly/synchronization/WaitOptions.cpp; sourceTree = ""; }; - 6FDED32CB264782EC40E218658D69CC3 /* UMAppLoader.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMAppLoader.release.xcconfig; sourceTree = ""; }; + 6FC75FAFE2C0BD318AD7EAE187B8AE0F /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Regular.ttf; path = Fonts/FontAwesome5_Regular.ttf; sourceTree = ""; }; 6FE8D5121E05847BA6EB20C418665D7B /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = src/glog/log_severity.h; sourceTree = ""; }; 6FED52E48A4F7480A2C6FF36C02DB30A /* Utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utility.h; path = folly/Utility.h; sourceTree = ""; }; - 6FF7222CF7B231FA58FF160C0DDDFBB2 /* react-native-simple-crypto.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "react-native-simple-crypto.modulemap"; sourceTree = ""; }; + 6FFAD7ACA0EE339C6FAE4005EA9B3FC7 /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libDoubleConversion.a; path = libDoubleConversion.a; sourceTree = BUILT_PRODUCTS_DIR; }; 7016FEDF15804B202D40011AFA46C7A1 /* FIRConfigurationInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfigurationInternal.h; path = FirebaseCore/Sources/FIRConfigurationInternal.h; sourceTree = ""; }; - 7018D19C272BB68149C8AF74788193D3 /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; 701944664DEF41CE893374775990E72D /* PTPrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTPrivate.h; path = peertalk/PTPrivate.h; sourceTree = ""; }; 701E5530C6B17E2445815FABEF3968E4 /* Semaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Semaphore.h; path = folly/portability/Semaphore.h; sourceTree = ""; }; 7036E8E663E35BB5DB6C32198B066FE6 /* SwappableEventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SwappableEventBase.h; path = rsocket/internal/SwappableEventBase.h; sourceTree = ""; }; - 704FDD18FBE854022CF0A629F0DF6340 /* react-native-notifications-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-notifications-prefix.pch"; sourceTree = ""; }; + 7039C0FCA8DD90A20EE87615ECC66BC8 /* RNCAssetsLibraryRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAssetsLibraryRequestHandler.m; path = ios/RNCAssetsLibraryRequestHandler.m; sourceTree = ""; }; 70675BE4961BC87599BFAD42BBF644C4 /* Sleeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sleeper.h; path = folly/synchronization/detail/Sleeper.h; sourceTree = ""; }; - 7075F2303111FFA440AA3570F1AED4E7 /* RNNotificationCenterMulticast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterMulticast.h; path = RNNotifications/RNNotificationCenterMulticast.h; sourceTree = ""; }; 707628E00EAB111824A6EB05D32A9831 /* Request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Request.h; path = folly/io/async/Request.h; sourceTree = ""; }; - 708E9A123344EB6FEFBCEB160EBB895F /* REATransitionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionManager.h; sourceTree = ""; }; - 70B51929E900D9E9A5F019AC15F42EFB /* NativeModulePerfLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NativeModulePerfLogger.h; path = reactperflogger/NativeModulePerfLogger.h; sourceTree = ""; }; - 70CD5ADC760D553E10D65A3B9E09C39C /* EXSessionTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionTaskDelegate.m; sourceTree = ""; }; - 70D36F7A072F0C872A6C09963F61A777 /* REAFunctionNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAFunctionNode.h; sourceTree = ""; }; + 7085CC1C2C2A9C58F7099F2ADC7F4AE6 /* RNCPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCPickerManager.m; path = ios/RNCPickerManager.m; sourceTree = ""; }; + 70867544D01800EA6114ADA436856864 /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = React/CoreModules/RCTWebSocketExecutor.h; sourceTree = ""; }; + 708F4376C358D7131052A82B9135C4A6 /* RCTAccessibilityManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAccessibilityManager.mm; sourceTree = ""; }; + 70A8EB919807F827463064A126AD186A /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; + 70A8F6F5498FFF2183DE83495A2A6750 /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; + 70BFA5E481DB2ED2EDD2DC75CC99DB74 /* BugsnagApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagApiClient.h; sourceTree = ""; }; + 70C686F8D4EC9EA5ED579895B57B2716 /* RNGestureHandlerEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerEvents.m; path = ios/RNGestureHandlerEvents.m; sourceTree = ""; }; + 70D108EC355DF85A27E3C4DBC75DF773 /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; + 70DFB992E5E5E1CB0CC34C34C8BECFB8 /* api.md */ = {isa = PBXFileReference; includeInIndex = 1; name = api.md; path = docs/api.md; sourceTree = ""; }; 70E5267514362AC438D2016BFB6782C3 /* FIRCLSDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDefines.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSDefines.h; sourceTree = ""; }; 70F794C19EB963A9D7CFF9111E434BEC /* filters_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_sse2.c; path = src/dsp/filters_sse2.c; sourceTree = ""; }; - 70FB10EA9B7A302F1ECE8BCEBC616991 /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; - 7116D28EDA6E4AD76321FE8FB9D10C3E /* RNCPicker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCPicker.release.xcconfig; sourceTree = ""; }; 711A800CF56C88C5CA3487D9A12B0336 /* MMKVCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MMKVCore.debug.xcconfig; sourceTree = ""; }; - 712009C99073672BFF4D2D1DB1445FC8 /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = ""; }; - 7125FF740077098B59A78E66EB1F40FE /* Pods-ShareRocketChatRN.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-ShareRocketChatRN.modulemap"; sourceTree = ""; }; + 712977A45BF435F5FBBB354F1236B801 /* RCTRsaUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RCTRsaUtils.swift; path = ios/RCTCrypto/RCTRsaUtils.swift; sourceTree = ""; }; 713226B89EB5E0214720191C9C8FF78C /* SDWebImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.debug.xcconfig; sourceTree = ""; }; 7141B2FD3EAB6D6D1972EF3F045B9845 /* FIRCLSSignal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSignal.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSSignal.h; sourceTree = ""; }; 7142F1FB30D196FFDE9E3CEBCCCE4C8B /* Sched.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sched.h; path = folly/portability/Sched.h; sourceTree = ""; }; 714617101653AABBA370CB7F07BC74DD /* Subprocess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subprocess.h; path = folly/Subprocess.h; sourceTree = ""; }; - 71615F7EFCD256976D549E99131A859E /* BugsnagFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagFileStore.h; sourceTree = ""; }; - 7161FAB61D36A7B10B627AC4876AEDA5 /* RCTKeyCommandsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandsManager.h; path = ios/KeyCommands/RCTKeyCommandsManager.h; sourceTree = ""; }; 7168429E95F77F02B8E48355B4F86802 /* RCT-Folly.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "RCT-Folly.debug.xcconfig"; sourceTree = ""; }; 717F866F052C70065D76AAF36F80803C /* FlipperRSocketResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FlipperRSocketResponder.cpp; path = xplat/Flipper/FlipperRSocketResponder.cpp; sourceTree = ""; }; - 7180F959DA402FDFF49C58E1FCE63552 /* BSG_KSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSLogger.h; sourceTree = ""; }; 7189806B62CAABC6A938101E021B1B48 /* PriorityLifoSemMPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityLifoSemMPMCQueue.h; path = folly/executors/task_queue/PriorityLifoSemMPMCQueue.h; sourceTree = ""; }; 7194150125DD93BA2E704772FCAE9146 /* evutil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evutil.h; path = include/evutil.h; sourceTree = ""; }; 71958D0A1F6512F350E97FAA14DCFAB9 /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = folly/Exception.h; sourceTree = ""; }; 71AE22565DA82EAA87D9FBFEE7C353B9 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Demangle.cpp; path = folly/detail/Demangle.cpp; sourceTree = ""; }; 71D33565832EF9643AF1A9C72CFC9A05 /* InlineExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InlineExecutor.cpp; path = folly/executors/InlineExecutor.cpp; sourceTree = ""; }; - 71D7089B2132E929ACA848DA82D1A2E3 /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; 71E1DD6187842470489C1B6D031A902E /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = SDWebImage/Core/SDWebImageManager.h; sourceTree = ""; }; 71EF12AE0C678D1106C73CA089B8FDAC /* SDWebImageCacheKeyFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheKeyFilter.m; path = SDWebImage/Core/SDWebImageCacheKeyFilter.m; sourceTree = ""; }; 71FC4AB86EE39074E96E5C28674EA949 /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "SDWebImage/Core/UIView+WebCacheOperation.m"; sourceTree = ""; }; - 720A0875F70D1778F0D2AAA94D3AFD34 /* BSG_KSCrashReportFilterCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilterCompletion.h; sourceTree = ""; }; - 7214962918216B419B8D26296C62CF6A /* BlurViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BlurViewManager.m; path = ios/BlurViewManager.m; sourceTree = ""; }; - 72152681489C95FEFD1601ECDAC422FF /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeModule.mm; sourceTree = ""; }; + 721EFFEAF7FEF462064ADAE255C90DED /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 7230FD2897AE4D58AEFEA90FAF377284 /* HazptrThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = HazptrThreadPoolExecutor.cpp; path = folly/synchronization/HazptrThreadPoolExecutor.cpp; sourceTree = ""; }; - 724D71AA50D9A7B8ED4A377648D7AE68 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; 72505AE0D9A7E5D7961E65C7BC1D3030 /* FIRExceptionModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRExceptionModel.h; path = Crashlytics/Crashlytics/Public/FIRExceptionModel.h; sourceTree = ""; }; - 72549368E3605C8B77F4769CDBD2EBCF /* UMCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.release.xcconfig; sourceTree = ""; }; 725581291AB34A22FDD48D80C8380B6A /* vi.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = vi.lproj; path = "Objective-C/TOCropViewController/Resources/vi.lproj"; sourceTree = ""; }; 72558F571738704549E1838E845D2770 /* libEXLocalAuthentication.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXLocalAuthentication.a; path = libEXLocalAuthentication.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 725A1A8E044277E56A6C7F050026271B /* EXFileSystem.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.debug.xcconfig; sourceTree = ""; }; + 72631910F86F3EE0DD864035E0C8BB24 /* RemoteObjectsTable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RemoteObjectsTable.h; sourceTree = ""; }; + 7267D00F1FD7F2751F6F318FB868C7EA /* EXSessionResumableDownloadTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionResumableDownloadTaskDelegate.h; sourceTree = ""; }; + 726E49399B5063C9D4B8A919C8DC332A /* react-native-netinfo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-netinfo.debug.xcconfig"; sourceTree = ""; }; 7283439E2F42BB1F01D41FDBA247CAFE /* FlipperConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnection.h; path = xplat/Flipper/FlipperConnection.h; sourceTree = ""; }; 72835F36D45E0327A28A757A7B2340F9 /* ipv6-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ipv6-internal.h"; sourceTree = ""; }; - 728DCD7B35A7852B1FD750F76741E897 /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = ""; }; - 72902D0631A7B5703B22C961F29FFA83 /* EXImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXImageLoader.m; path = EXImageLoader/EXImageLoader.m; sourceTree = ""; }; - 729325CDE10088C9A1033DA3862EF71A /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; + 7283EB23F32AC740B558D0C30B95E95C /* RNEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNEventEmitter.h; path = RNNotifications/RNEventEmitter.h; sourceTree = ""; }; 729D1112986370E02BFA684FD3F582D1 /* Poly-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Poly-inl.h"; path = "folly/Poly-inl.h"; sourceTree = ""; }; - 72A9DD5733C7107B4349211499AB6D36 /* RNFBApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBApp.release.xcconfig; sourceTree = ""; }; - 72B1E8C766EEEBA806779AA73EB8A200 /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; - 72C7F8D7DB334764864941C2C0562C4C /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 72A91CE4609B0AF92D06577F1DD39A0F /* BSG_KSArchSpecific.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSArchSpecific.h; sourceTree = ""; }; 72D64CBEA652505759A9A44431D4712A /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Sources/Private/FIRAppInternal.h; sourceTree = ""; }; + 72D924B8236E2AF165F6D5F8354A471D /* BSG_KSSystemInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfo.h; sourceTree = ""; }; 72DE4BF3FB9CE0858E90F96FEF8A53AE /* libRNDateTimePicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDateTimePicker.a; path = libRNDateTimePicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; 72E494917AC5EC2582197F07061A28B0 /* libEXPermissions.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXPermissions.a; path = libEXPermissions.a; sourceTree = BUILT_PRODUCTS_DIR; }; 72F272903FFBC94B4E4612A594A555FF /* evrpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evrpc.h; path = include/evrpc.h; sourceTree = ""; }; + 730CBBDFDEB767F625E342CD591BCFBD /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; 7329DC9DC46804A4F663CE828B7DF7E1 /* FunctionScheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FunctionScheduler.h; path = folly/experimental/FunctionScheduler.h; sourceTree = ""; }; - 73316DB1DBC3402150E9CBDDF72A9B67 /* UMBarCodeScannerInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.release.xcconfig; sourceTree = ""; }; 733ED06FBC1F2020F12228873F997D20 /* SafeAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SafeAssert.h; path = folly/lang/SafeAssert.h; sourceTree = ""; }; 7343CA8A9C7528DFE57EC1F85F33C409 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Sources/Private/FIRAppInternal.h; sourceTree = ""; }; - 734948868FD3466401304F71E4D66AA1 /* RNCSafeAreaViewEdges.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewEdges.m; path = ios/SafeAreaView/RNCSafeAreaViewEdges.m; sourceTree = ""; }; 734E703831B26FFA5CD930FA8D15BE86 /* AtomicHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashMap.h; path = folly/AtomicHashMap.h; sourceTree = ""; }; - 734F3DC90DCE493473646EE7FBD61D76 /* ARTNodeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTNodeManager.h; sourceTree = ""; }; + 7350AC9E8B2BC0D2157BBD0C505BCEB7 /* Hmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Hmac.h; sourceTree = ""; }; + 735F9214AF5AF9C5F1500BB498DBDC15 /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; 7368C7BB10308A0411937E8FED486628 /* Sse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sse.h; path = folly/detail/Sse.h; sourceTree = ""; }; - 736EDBC0DCBFC91C303ADD0406ADC0C4 /* InspectorState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorState.h; sourceTree = ""; }; - 738197BA72E5EF123592C722CA7206FD /* REAOperatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAOperatorNode.h; sourceTree = ""; }; - 738329BFE8F5DCCB402225DBBF9A323B /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; + 737C47ACA6A64D7767636BBE62E6B723 /* RNPushKitEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventHandler.m; path = RNNotifications/RNPushKitEventHandler.m; sourceTree = ""; }; 7397E539A39B1BE430B7A86A3D7AA9B3 /* rescaler.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler.c; path = src/dsp/rescaler.c; sourceTree = ""; }; + 739C26D6C8C0848BCEE6E33039D4CA57 /* RNCMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedViewManager.h; path = ios/RNCMaskedViewManager.h; sourceTree = ""; }; 73A59776370089BF47A36F0979BECF4A /* log.c */ = {isa = PBXFileReference; includeInIndex = 1; path = log.c; sourceTree = ""; }; - 73AE15DC1FB21681CBAF993064E7DF51 /* EXResumablesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXResumablesManager.h; sourceTree = ""; }; 73BE7F7E69A8E5DF009A8FD8C3FE67B6 /* cached-powers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "cached-powers.cc"; path = "double-conversion/cached-powers.cc"; sourceTree = ""; }; + 73C84770ED47B977C24E8DC125B6EC1B /* BugsnagBreadcrumb+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagBreadcrumb+Private.h"; sourceTree = ""; }; 73E2107DD4CEDAC8631E3F8D4AC29C87 /* FBVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBVector.h; path = folly/FBVector.h; sourceTree = ""; }; - 73E3623C7BA84609B7F9153744E6C7A6 /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; 73E41D6E861C487FF12A532066A0920A /* HazptrDomain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrDomain.h; path = folly/synchronization/HazptrDomain.h; sourceTree = ""; }; + 73E46AB944E91B060A550C4C5605837C /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; + 73E578732206D30A3DD14484BEE74608 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 73ECF13767B57DEF145AD8A4E935C77C /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; 73EF414ADC9425D54A581AC4EDED9B24 /* SharedMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SharedMutex.cpp; path = folly/SharedMutex.cpp; sourceTree = ""; }; - 7407811B66DDD0110526BD7FEC370D4C /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; + 73F9C5FBFBBC5A005A4AE1FE0927089F /* BugsnagEventDeserializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagEventDeserializer.m; sourceTree = ""; }; 742DFD3C79A95BFA465F215781AFD8CD /* EventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBase.h; path = folly/io/async/EventBase.h; sourceTree = ""; }; 74331866546A2EF1194D00398E03F336 /* Expected.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Expected.h; path = folly/Expected.h; sourceTree = ""; }; - 743B26E20D8673229070367B13C805DB /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; - 745DFED99C7D3160B495419A1A3A211F /* RCTImagePlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImagePlugins.h; path = Libraries/Image/RCTImagePlugins.h; sourceTree = ""; }; + 744A8C51F58F8778C55BA80C9470047A /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; 747BE71E8C82E7E029D0E1901F01B273 /* FIRVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVersion.h; path = FirebaseCore/Sources/FIRVersion.h; sourceTree = ""; }; - 748FA945E7F2ECC16670A665D3BCF688 /* RNRandomBytes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRandomBytes.h; path = ios/RCTCrypto/RNRandomBytes.h; sourceTree = ""; }; 74B062219A682207723A6303E2CA31A6 /* dwarf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dwarf.h; path = Crashlytics/third_party/libunwind/dwarf.h; sourceTree = ""; }; - 74C483730FEC4C3814C78CC526820975 /* ARTBrush.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTBrush.h; sourceTree = ""; }; + 74C2665FF0FD8E698863719998648C12 /* BugsnagConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagConfiguration.h; sourceTree = ""; }; 74CD68F1A3B029127CCDC4D6601C3655 /* RSocketParameters.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketParameters.cpp; path = rsocket/RSocketParameters.cpp; sourceTree = ""; }; - 74E5795989677BD11D84DD618F6B1C27 /* RNFetchBlob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFetchBlob.m; sourceTree = ""; }; + 74DB06B63902EA9FEA6180E8CEF465B4 /* RuntimeAdapter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = RuntimeAdapter.cpp; sourceTree = ""; }; + 74EF1021D13B81EA41A5928C1E898140 /* BugsnagStackframe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagStackframe.h; sourceTree = ""; }; 74FC53950672DDDEAE0DC47EA151ABEF /* FIRCLSMultipartMimeStreamEncoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMultipartMimeStreamEncoder.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSMultipartMimeStreamEncoder.h; sourceTree = ""; }; - 7503E9C7DD66C725C3B6B3B279F46E47 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 7500E3E1B45B0BEE182E458B83EC4818 /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 7505D90D2C884C300D75B003B59BB35E /* RNCWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebViewManager.m; path = apple/RNCWebViewManager.m; sourceTree = ""; }; + 750A0AA43A23732D2135BFC9A2BC39A5 /* RNFBApp.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFBApp.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 7516BE3DA685CEDF74312C0C1CA78095 /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; 752F50B33E0456ED5566DDBB00DF1A71 /* Spin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Spin.h; path = folly/synchronization/detail/Spin.h; sourceTree = ""; }; 75363C348BFBE2799A03172F6AA1D7EF /* IOBufQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOBufQueue.h; path = folly/io/IOBufQueue.h; sourceTree = ""; }; 7536C3E69616C9AB111495D6F460242E /* AsymmetricMemoryBarrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsymmetricMemoryBarrier.h; path = folly/synchronization/AsymmetricMemoryBarrier.h; sourceTree = ""; }; + 753AAAB7744B065CE8CE50EB04D985B3 /* RNJitsiMeetViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetViewManager.m; path = ios/RNJitsiMeetViewManager.m; sourceTree = ""; }; + 7547F8E6B74F348AA102F489A03E09D9 /* RCTSha.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSha.m; path = ios/RCTCrypto/RCTSha.m; sourceTree = ""; }; 754E234EEBF74BEB989FA3F5F1BC97FF /* SKViewControllerDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKViewControllerDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewControllerDescriptor.h; sourceTree = ""; }; 7552AC22B045F411D709DEF542496909 /* FBLPromise+Async.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Async.m"; path = "Sources/FBLPromises/FBLPromise+Async.m"; sourceTree = ""; }; 75563EAB5D1BADF587F512EF467D9CB1 /* IOObjectCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOObjectCache.h; path = folly/executors/IOObjectCache.h; sourceTree = ""; }; 7560A5F7BC3A7C879FEFAE363E8D0E43 /* FlipperKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FlipperKit.modulemap; sourceTree = ""; }; - 756239EA5AEBA1B683E5B4FBDBEE26BE /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 7564E0F7847B6D9FD254CC09384997A0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 757A0C01A2A62533D19E98342F8B5D0D /* RCTConvert+FFFastImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FFFastImage.h"; path = "ios/FastImage/RCTConvert+FFFastImage.h"; sourceTree = ""; }; + 7580B58FA5ADD47A6A8B642F8F19CB50 /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; 7581311455DB6CDA5EE85DCA93A6D7AC /* SKSwizzle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKSwizzle.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKSwizzle.h; sourceTree = ""; }; + 759323202EFD7C39295D2C7CCDC547E7 /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; 7594BECDFBA4190D7EF60C88EB269846 /* Unicode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unicode.h; path = folly/Unicode.h; sourceTree = ""; }; 759AE7B54AF92C3EFB888E9A1E4A49F9 /* Stdlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Stdlib.h; path = folly/portability/Stdlib.h; sourceTree = ""; }; + 759E76BF4E0BCEEDF0710C73EE7060A9 /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; 75ACAE008DA57AB16A0C12D15D86D5FE /* FBLPromise+Then.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Then.h"; path = "Sources/FBLPromises/include/FBLPromise+Then.h"; sourceTree = ""; }; - 75EE89527E4349B46208645D63B85BFA /* BSG_KSCrashDoctor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashDoctor.m; sourceTree = ""; }; + 75AFC01FBF230F63FACF16D65C354CDF /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 75CF82490FC7DFB75FE21312B7DBDCA5 /* rn-fetch-blob.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "rn-fetch-blob.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 75D2A5E2501562326163271A71C6F178 /* React-Core.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-Core.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 75EEF05A44965EBDD6F264E117E56443 /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = jsilib.h; path = destroot/include/jsi/jsilib.h; sourceTree = ""; }; - 75FCAC09D5C0F159E4617EB14AF7220D /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; + 75EFBDB34FBBB2FE216E35ED156B3113 /* FBLazyVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyVector.h; path = FBLazyVector/FBLazyVector.h; sourceTree = ""; }; 75FE639F23AD7D3BB243E0AD9988E003 /* huffman_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_utils.c; path = src/utils/huffman_utils.c; sourceTree = ""; }; - 7603A664128750A61D7A95A3A2CE7D98 /* RNRootView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNRootView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 760C480A9FF3DF129FE571D562011BC1 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 760D8A6ADF87C5E2101909974CE1C931 /* ThreadId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadId.h; path = folly/system/ThreadId.h; sourceTree = ""; }; 761205744C0A0C3ECE16EE27DD734BFD /* Utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utility.h; path = folly/synchronization/Utility.h; sourceTree = ""; }; 761424EAD5660486653AC7FB3BFC141F /* TimerFDTimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimerFDTimeoutManager.h; path = folly/experimental/TimerFDTimeoutManager.h; sourceTree = ""; }; 761B0A90B62FD46941587EE7D33277AE /* Arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Arena.h; path = folly/memory/Arena.h; sourceTree = ""; }; - 761D253CF3AEBD546D663579BBEE55FD /* React-RCTAnimation.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.release.xcconfig"; sourceTree = ""; }; - 7620D890F194860EE2882BB61D61EA29 /* SafeAreaSpacerShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SafeAreaSpacerShadowView.m; sourceTree = ""; }; + 761D2449B1CD7B8FA9187B26166B2AC4 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; 7627539D8AF7D002F4A4360B6B27BFFF /* Subprocess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subprocess.h; path = folly/Subprocess.h; sourceTree = ""; }; - 762BA1FB95C0828800C43D58EBCAB1FE /* Thread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = Thread.cpp; sourceTree = ""; }; + 76335C94BC3A1B44E3DF023ABC327CFA /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist"; sourceTree = ""; }; 7656B7BFE45650CC91E9A7D6BC46B62C /* UIView+SKInvalidation.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "UIView+SKInvalidation.mm"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIView+SKInvalidation.mm"; sourceTree = ""; }; + 7656DD83199B7D21A2A2AFE76A975118 /* RCTBundleURLProvider.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBundleURLProvider.mm; sourceTree = ""; }; 765C7F6D692CD6A890EC5C076DD04165 /* GULNetworkMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkMessageCode.h; path = GoogleUtilities/Network/Private/GULNetworkMessageCode.h; sourceTree = ""; }; 767B925C026CB9A6115D2DAA8564ACF5 /* AtomicUtil-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicUtil-inl.h"; path = "folly/synchronization/AtomicUtil-inl.h"; sourceTree = ""; }; 76A2FBF4184A2FCA5AC7623C4BC03C3C /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logging.cc; path = src/logging.cc; sourceTree = ""; }; 76A8C67765DA89F084B107A64F614A08 /* MMKVMetaInfo.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = MMKVMetaInfo.hpp; path = Core/MMKVMetaInfo.hpp; sourceTree = ""; }; - 76BF8F438FA28DCCFBEBD0967D7762E3 /* RNCAppearanceProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProviderManager.h; path = ios/Appearance/RNCAppearanceProviderManager.h; sourceTree = ""; }; - 76F040F7FB81248FFFB036799F33A65C /* RNImageCropPicker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.release.xcconfig; sourceTree = ""; }; + 76DC70ECDB4F06A59740A2EF006983BE /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; 76F1A8FD599DF8E618FA93B58360A75C /* FKPortForwardingServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKPortForwardingServer.h; path = iOS/FlipperKit/FKPortForwarding/FKPortForwardingServer.h; sourceTree = ""; }; - 76FD7112207DB1C9B17F1193EA7E776A /* EvilIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = EvilIcons.ttf; path = Fonts/EvilIcons.ttf; sourceTree = ""; }; 770C9E7B377482C3CDAC5BFD3DBD94DE /* AtomicHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashMap.h; path = folly/AtomicHashMap.h; sourceTree = ""; }; - 773992093A04E0259ACE4B4372CA2E91 /* StorageGetters.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = StorageGetters.m; path = ios/StorageGetters.m; sourceTree = ""; }; + 773AEAE125E1B97FCE5EFAB6EFE16A8A /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTExceptionsManager.mm; sourceTree = ""; }; 773CD67E1C5C5916902E835142CB8110 /* cached-powers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "cached-powers.cc"; path = "double-conversion/cached-powers.cc"; sourceTree = ""; }; + 773F67187D644D69CDBF5E12F7BABA77 /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; 7740BA7FA0A7CD669E269EA357054220 /* ThreadWheelTimekeeperHighRes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadWheelTimekeeperHighRes.h; path = folly/experimental/ThreadWheelTimekeeperHighRes.h; sourceTree = ""; }; + 7752D2A9B047C5C829174949116FD9D8 /* RNDeviceInfo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.debug.xcconfig; sourceTree = ""; }; 775D02E0BCC26F06F0C7E64E8F728344 /* EventBaseThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseThread.h; path = folly/io/async/EventBaseThread.h; sourceTree = ""; }; - 776E5E49840078C2F45821AFA4A09A05 /* BSG_KSString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSString.h; sourceTree = ""; }; + 776B3012326972E4E0C073ECF6219795 /* React-perflogger-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-perflogger-dummy.m"; sourceTree = ""; }; 777C2BBE7EEA5B56B30C1A83D6FED868 /* hermes-engine.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "hermes-engine.debug.xcconfig"; sourceTree = ""; }; - 7787B315AF1E178579D9ADAD6A1CA017 /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; - 7789E06A53820A1024B786F2143645B1 /* RNGestureHandlerButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButton.h; path = ios/RNGestureHandlerButton.h; sourceTree = ""; }; - 778E00A85B2819C06A2BF56AA88BD580 /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; + 77807DD48D1773606AF513C2B92338F5 /* UMFaceDetectorInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.debug.xcconfig; sourceTree = ""; }; + 7782E390EB5A04EF25130C2A2A8D343F /* RNCNetInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCNetInfo.h; path = ios/RNCNetInfo.h; sourceTree = ""; }; 779317CA3A38F38A2E8452DA500B10EB /* SerialExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SerialExecutor.cpp; path = folly/executors/SerialExecutor.cpp; sourceTree = ""; }; 7799E18DBF8044E92CF250F46DCD321D /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/gen/String.h; sourceTree = ""; }; + 7799E6AB9741A90186122CF2B9D0146D /* QBAlbumCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumCell.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.h; sourceTree = ""; }; 779A992D4CEE8008A2CEE3910FEF2805 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Sources/Private/FIRComponent.h; sourceTree = ""; }; 77ACDDC07D639F420CA1C30073310AC8 /* GlobalShutdownSocketSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalShutdownSocketSet.h; path = folly/io/GlobalShutdownSocketSet.h; sourceTree = ""; }; 77B4AD5BD0867366BCAC679EF4C7DD7F /* Flowables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Flowables.h; path = yarpl/flowable/Flowables.h; sourceTree = ""; }; - 77D46E0618613F508E55962FFBD13DFE /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; 77DFA611185C19D8EA65EBBE6DD2DF6C /* MMBuffer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MMBuffer.cpp; path = Core/MMBuffer.cpp; sourceTree = ""; }; 77E27FA756A6B7F123B5FD0442782FD4 /* evconfig-private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "evconfig-private.h"; sourceTree = ""; }; - 781BC3B3D61FB739D337D760CCCFD103 /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; - 783BE74482F26E7A96DE2F3A74B7FE6A /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = ""; }; - 7844B99C090843EDAFD2A13939C66B78 /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; - 78565C447D42AA93B9742D7D0974078B /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; - 785A3246CFACBDE37FE258ADD1B952B5 /* RNCAsyncStorage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCAsyncStorage.release.xcconfig; sourceTree = ""; }; + 77EB9E7906E4AF58634F7804B1AC54B1 /* MessageConverters.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = MessageConverters.cpp; sourceTree = ""; }; + 781C339E09C3A84606F79E7D18E333E6 /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; + 784506C0C4C013F8ABF39538C9B3BB10 /* BugsnagThread+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagThread+Private.h"; sourceTree = ""; }; + 784DEF566EEE9ED8B16D39E08CBC534A /* React-RCTNetwork.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTNetwork.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 785695B3B7894BAD50ED54CC9BE52491 /* React-jsinspector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsinspector.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 785B606FC7774F8E8A8F2286341D5D4E /* Codel.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Codel.cpp; path = folly/executors/Codel.cpp; sourceTree = ""; }; + 785EDE9EB6D9A2635C20A40E0D42021D /* RCTNetworkPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworkPlugins.mm; sourceTree = ""; }; 7862C607B7BE0510C2D65193F9B4B4F9 /* libTOCropViewController.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libTOCropViewController.a; path = libTOCropViewController.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 7864748CA36975D9B0488B0A0F8FCE38 /* RCTSourceCode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSourceCode.mm; sourceTree = ""; }; - 7873F2160F8B4C80F734A499A5C9FF82 /* RCTVibration.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTVibration.mm; sourceTree = ""; }; + 786DC84CE97474698A7E3B5134CC6EB1 /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; 7878050845433B5C208F692C2F294BE2 /* NSBezierPath+SDRoundedCorners.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBezierPath+SDRoundedCorners.m"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.m"; sourceTree = ""; }; 7878CA8D54C4B07AC9493E905F05E20B /* RequestResponseResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RequestResponseResponder.h; path = rsocket/statemachine/RequestResponseResponder.h; sourceTree = ""; }; + 787FE093039C112C0D403D31F56C367B /* React-RCTActionSheet.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTActionSheet.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 78805741973DFB53A145A589929A9B63 /* config_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_enc.c; path = src/enc/config_enc.c; sourceTree = ""; }; - 78881ECD93FBC810CDA088B42407607C /* RNGestureHandlerDirection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerDirection.h; path = ios/RNGestureHandlerDirection.h; sourceTree = ""; }; - 789B2B29325D12DE736E8759DF579A7B /* BSG_KSCrashSentry.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry.c; sourceTree = ""; }; - 78AB9608FEA6D2371BA875A9A63096B8 /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; - 78B1D287D193C79CB46C20485CFBF225 /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTExceptionsManager.h; path = React/CoreModules/RCTExceptionsManager.h; sourceTree = ""; }; + 7882F64290BD38F9E125BF84409F74A5 /* UMBarCodeScannerInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.release.xcconfig; sourceTree = ""; }; + 7887E907B8FD1216406FF6C50AD5A66F /* RCTImageView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageView.mm; sourceTree = ""; }; + 788A40ED01BB50ABD4F04BF4036D602E /* ARTTextManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTTextManager.h; sourceTree = ""; }; + 78947469984D2FD1BB8948C883C719B0 /* RNCSafeAreaProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaProvider.h; path = ios/SafeAreaView/RNCSafeAreaProvider.h; sourceTree = ""; }; + 789E43D8893122D597A2C48EDB7CFD7C /* BSG_KSCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReport.h; sourceTree = ""; }; + 78B4B36C13100D30E53040F5DBA07C93 /* react-native-restart.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-restart.release.xcconfig"; sourceTree = ""; }; + 78B7E72795E2B29EDDE0ACDB1A9D248B /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; 78BC83CC850F23118262A47B9213D1B4 /* AtomicNotification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicNotification.h; path = folly/synchronization/AtomicNotification.h; sourceTree = ""; }; 78D4A07F409C5EC209DE0046743FB84C /* ThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadFactory.h; path = folly/executors/thread_factory/ThreadFactory.h; sourceTree = ""; }; - 78D716DADEB39698A894597E74CFAFA7 /* RCTBundleURLProvider.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBundleURLProvider.mm; sourceTree = ""; }; + 78D86B2A9ECB46E74E8330B64B2E55F9 /* Yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Yoga-dummy.m"; sourceTree = ""; }; 78F6CA26048D0032F0E6D6ECC660D451 /* ThreadLock_Win32.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadLock_Win32.cpp; path = Core/ThreadLock_Win32.cpp; sourceTree = ""; }; 79045EA0EA1525B86D20B46C46E39329 /* AsyncServerSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncServerSocket.cpp; path = folly/io/async/AsyncServerSocket.cpp; sourceTree = ""; }; - 79080FFBD5863F916E0FBD16D55AA057 /* react-native-background-timer.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.debug.xcconfig"; sourceTree = ""; }; - 79162227240B6786E43A59ACEA4B1F44 /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; - 79203CE758071A3F21EAD7781876DC3F /* RNCAppearanceProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProviderManager.m; path = ios/Appearance/RNCAppearanceProviderManager.m; sourceTree = ""; }; 792D7911DF2A48D00794E7EC7357C1F8 /* ScopedLock.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = ScopedLock.hpp; path = Core/ScopedLock.hpp; sourceTree = ""; }; - 7930696DB31D929DB6B53E5603372CEE /* RCTImageViewManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageViewManager.mm; sourceTree = ""; }; - 793356BA3841923C3ACCC6E6566E9430 /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; + 792FFD4B7461BB989E9DBD562EAB13A6 /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = Libraries/Image/RCTImageStoreManager.h; sourceTree = ""; }; 79335A93D83AE486F8FF48BDCC4B04CE /* Libgen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Libgen.h; path = folly/portability/Libgen.h; sourceTree = ""; }; 7936B2B68C9F299497D44B44C6790BD2 /* Asm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Asm.h; path = folly/portability/Asm.h; sourceTree = ""; }; - 7947BD29451A52BD502A1B3010C36A0C /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; 794E673F0C3BE71ED6B7DD19CAB7EB7B /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = SDWebImage/Core/SDImageCache.h; sourceTree = ""; }; 7963E4D9437C77A4AD380A283F73B8CD /* utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = utils.c; path = src/utils/utils.c; sourceTree = ""; }; + 7975AC71361D847C020289BF2CE5BBB9 /* BSG_KSJSONCodec.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSJSONCodec.c; sourceTree = ""; }; 797A5D5B3084449D2EA9A26C6A00D6A0 /* Shell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Shell.h; path = folly/system/Shell.h; sourceTree = ""; }; - 79A9637B9FBB5335261BF42C8A47D090 /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; - 79B26C58D06F6696F397C92BF8100E69 /* REACondNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACondNode.m; sourceTree = ""; }; - 79E3ED98C72D10CEA3B2407F751510F4 /* REANodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REANodesManager.m; path = ios/REANodesManager.m; sourceTree = ""; }; + 79B29BED9BBCAA461C6D59F27D7BADC4 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; + 79BBBADB6047CFBD36EF663F59F64A44 /* Pods-defaults-Rocket.Chat-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-defaults-Rocket.Chat-frameworks.sh"; sourceTree = ""; }; + 79BFEF1825847DD28E26539EE299B92B /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; + 79D0F4BEC16414280B347604DB4E25E4 /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = ""; }; 79EB358D44D6C8AF5B7D86450DD1FEAB /* FBLPromise+Retry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Retry.h"; path = "Sources/FBLPromises/include/FBLPromise+Retry.h"; sourceTree = ""; }; - 7A07089A6630D56DCCD6F6C37D3AA5B9 /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = ""; }; + 79FF51D4FDAC160E28C8A3F34D2E45C7 /* Pods-defaults-ShareRocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-defaults-ShareRocketChatRN-resources.sh"; sourceTree = ""; }; + 7A039AC3AF9B6A4E8EC9068BFFB63CDE /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; 7A2EDFBE8E6EBC1A2691133E5F859A12 /* SKDescriptorMapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKDescriptorMapper.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKDescriptorMapper.h; sourceTree = ""; }; 7A3BF570E94C8640895966EC47D8ABFD /* ExceptionString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionString.h; path = folly/ExceptionString.h; sourceTree = ""; }; - 7A40344F67101B3A95E46A054ABE755D /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; - 7A483D34E4942951688DEC7E921B8540 /* RNCConnectionStateWatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCConnectionStateWatcher.m; path = ios/RNCConnectionStateWatcher.m; sourceTree = ""; }; - 7A60818DA0A7BC2DB9547CBE018B0133 /* react-native-restart-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-restart-prefix.pch"; sourceTree = ""; }; + 7A4E2F3708CA04A758B943E594737114 /* QBImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBImagePickerController.h; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.h; sourceTree = ""; }; + 7A5058AECCABB9E39123724170D99D66 /* QBSlomoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBSlomoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.m; sourceTree = ""; }; + 7A52E65AEAC493527C07E619FAACD214 /* BugsnagDeviceWithState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagDeviceWithState.m; sourceTree = ""; }; + 7A608E0C3CA94318016EB7D1EC63456F /* RCTAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppearance.h; path = React/CoreModules/RCTAppearance.h; sourceTree = ""; }; 7A68BE5DE275AC8222532BCA9206A279 /* json_patch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_patch.h; path = folly/json_patch.h; sourceTree = ""; }; - 7A9443962511C92FD7F5225D9E1A6C0A /* FFFastImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageView.m; path = ios/FastImage/FFFastImageView.m; sourceTree = ""; }; - 7AB4410136A763B5B97A1CB08BD038DF /* RCTTypedModuleConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTypedModuleConstants.h; sourceTree = ""; }; + 7A7E94FCC43BD2D48FF40007268678CB /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = ""; }; 7ABB4E8B99C98B574CB424B8DDFAA63C /* strtod.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strtod.cc; path = "double-conversion/strtod.cc"; sourceTree = ""; }; 7ABDE4FF616E844389AC74A4458AFF47 /* BitIteratorDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitIteratorDetail.h; path = folly/container/detail/BitIteratorDetail.h; sourceTree = ""; }; 7AC7CEAE075D5FE37F18F69929AF0DB6 /* vp8l_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_dec.c; path = src/dec/vp8l_dec.c; sourceTree = ""; }; 7ACF75B83E9BCF1F92190D41B8827A12 /* FIRComponentContainerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainerInternal.h; path = FirebaseCore/Sources/FIRComponentContainerInternal.h; sourceTree = ""; }; - 7AE36C604CCE170F098593FC34F96AAF /* QBImagePicker.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = QBImagePicker.storyboard; path = ios/QBImagePicker/QBImagePicker/QBImagePicker.storyboard; sourceTree = ""; }; + 7AE5CF45ABF4F6803BE087F741E80D4C /* BugsnagSessionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTracker.m; sourceTree = ""; }; + 7AED5BBB1861BBE84645A9A7B9670CE9 /* ARTRenderableManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRenderableManager.m; sourceTree = ""; }; 7AF0EDBD81AE0FAFA35C0AB0497212B4 /* FormatTraits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FormatTraits.h; path = folly/FormatTraits.h; sourceTree = ""; }; - 7B07F6CDC189F85A34478B0D84841E15 /* EXAppleAuthentication-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAppleAuthentication-dummy.m"; sourceTree = ""; }; + 7AF194825F5D1BAADE276FBE93BA8106 /* RCTTypedModuleConstants.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTypedModuleConstants.mm; sourceTree = ""; }; 7B11CBC013C592CAFFF90DDC74BBBEE3 /* FlowableObserveOnOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableObserveOnOperator.h; path = yarpl/flowable/FlowableObserveOnOperator.h; sourceTree = ""; }; + 7B191C0582A1D295552BE54AB1442E8E /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 7B2914B9B967D4181977345B5C172F7D /* GULNetworkURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkURLSession.h; path = GoogleUtilities/Network/Private/GULNetworkURLSession.h; sourceTree = ""; }; - 7B316F9C57B13936AED3BB69B300691B /* UMCameraInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.release.xcconfig; sourceTree = ""; }; + 7B2B988372B94744CFCB043C04181A2F /* react-native-orientation-locker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.debug.xcconfig"; sourceTree = ""; }; + 7B2FFA910A38768736885FE35A5CF89B /* RNDateTimePicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDateTimePicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 7B3BCBAF0DBA3247D26157C240545AF1 /* SysResource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysResource.h; path = folly/portability/SysResource.h; sourceTree = ""; }; 7B4997BE75B671F317C2EF73421AF78C /* ParkingLot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ParkingLot.h; path = folly/synchronization/ParkingLot.h; sourceTree = ""; }; 7B4FCBFF3CE54A00C2F44A31FB4C5FA7 /* poll.c */ = {isa = PBXFileReference; includeInIndex = 1; path = poll.c; sourceTree = ""; }; - 7B5F6F7FB8E998677282001A8C8425D6 /* EXAppleAuthenticationMappings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationMappings.m; path = EXAppleAuthentication/EXAppleAuthenticationMappings.m; sourceTree = ""; }; + 7B6DD548394A644C697223589C5139FB /* EXSessionTaskDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionTaskDispatcher.m; sourceTree = ""; }; 7B7B40FEF2CA07AB1DFF7B12D0DB76A7 /* TOCropViewControllerTransitioning.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropViewControllerTransitioning.m; path = "Objective-C/TOCropViewController/Models/TOCropViewControllerTransitioning.m"; sourceTree = ""; }; - 7B7B5399A4E1E6F214BD725F1FA4635A /* EXWebBrowser.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.debug.xcconfig; sourceTree = ""; }; - 7B8F97C229DB76EA48CE693024FC5BE1 /* RNFBJSON.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBJSON.m; path = ios/RNFBApp/RNFBJSON.m; sourceTree = ""; }; - 7BA08BCE9F42463588E3E97BD471CD11 /* MMKVStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKVStorage.h; path = ios/MMKVStorage.h; sourceTree = ""; }; - 7BA4E47A1FFF7ECD3994E443C14F65E6 /* EXAppleAuthenticationMappings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationMappings.h; path = EXAppleAuthentication/EXAppleAuthenticationMappings.h; sourceTree = ""; }; + 7B8AF369F25FF411A049E73F240EF7F1 /* RNFBSharedUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBSharedUtils.m; path = ios/RNFBApp/RNFBSharedUtils.m; sourceTree = ""; }; + 7BA63D71EF3A6A046A72FA153D8D8971 /* BSG_KSBacktrace_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace_Private.h; sourceTree = ""; }; 7BA6F36479FF33E103FFB4087E81E9E2 /* Replaceable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Replaceable.h; path = folly/Replaceable.h; sourceTree = ""; }; - 7BA8D44E9F44FC58D71C3B883752F223 /* UMPermissionsInterface-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMPermissionsInterface-prefix.pch"; sourceTree = ""; }; 7BB74AB265F6AE55D2337D7E434DFC7C /* bignum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bignum.h; path = "double-conversion/bignum.h"; sourceTree = ""; }; + 7BC33DE4C5189CC11594CC9726C5E670 /* RNFetchBlobFS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobFS.h; path = ios/RNFetchBlobFS.h; sourceTree = ""; }; 7BC49A12A1FFA6C6DBE2E137733C3CDD /* Memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Memory.h; path = folly/Memory.h; sourceTree = ""; }; - 7BDAA6332B8FE46FE88C1FAAD8C43549 /* RuntimeExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RuntimeExecutor.h; path = ReactCommon/RuntimeExecutor.h; sourceTree = ""; }; + 7BCED6B3574C45530A644C900F6813F5 /* React-RCTBlob.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTBlob.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 7BD4BC06C4F2B33F49A31B34CEFC5BAE /* RCTKeyCommandsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandsManager.h; path = ios/KeyCommands/RCTKeyCommandsManager.h; sourceTree = ""; }; 7BDF2E19961193DD18051E70754886F2 /* HazptrThrLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrThrLocal.h; path = folly/synchronization/HazptrThrLocal.h; sourceTree = ""; }; 7BE09AE7D89E67A3549EB8A5B7B2CD7E /* Arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Arena.h; path = folly/memory/Arena.h; sourceTree = ""; }; - 7BED3E9E4BF7DC3DC2B504642ACAAE18 /* RNFBMeta.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBMeta.m; path = ios/RNFBApp/RNFBMeta.m; sourceTree = ""; }; 7BEEB143F660792E34A92AA98D4043D4 /* EventUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventUtil.h; path = folly/io/async/EventUtil.h; sourceTree = ""; }; - 7C08C6D39091B515F437109B741BC482 /* EXWebBrowser.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.release.xcconfig; sourceTree = ""; }; + 7C0A0A6CB3381FB125B7DB0B51F1D7DC /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; + 7C0B43A991C621D8375536967E7F702D /* ARTRenderable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTRenderable.m; path = ios/ARTRenderable.m; sourceTree = ""; }; 7C0C072C906C75C8B707432DD2546F53 /* FIRCLSURLSessionDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionDataTask.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionDataTask.h; sourceTree = ""; }; 7C11E1C5E45CC15821A35863F16FA1B0 /* StreamStateMachineBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamStateMachineBase.cpp; path = rsocket/statemachine/StreamStateMachineBase.cpp; sourceTree = ""; }; + 7C2765C0E9ACB7E4846FB7A43CA21755 /* EXLocalAuthentication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocalAuthentication.m; path = EXLocalAuthentication/EXLocalAuthentication.m; sourceTree = ""; }; 7C29BD3BD584BB49CE36715D9D1254BD /* Unit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unit.h; path = folly/Unit.h; sourceTree = ""; }; 7C2B6BD46CD0D6B84F5DF2CAE06AA6F6 /* InitThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InitThreadFactory.h; path = folly/executors/thread_factory/InitThreadFactory.h; sourceTree = ""; }; 7C3AE8AB82104DA1D57947D5F350DF05 /* FBLPromise+Retry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Retry.m"; path = "Sources/FBLPromises/FBLPromise+Retry.m"; sourceTree = ""; }; 7C417B868FBE646E1842489AC453BE29 /* OpenSSLLockTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLLockTypes.h; path = folly/ssl/OpenSSLLockTypes.h; sourceTree = ""; }; - 7C4ACC8C6645C264E409BC4D3A20E808 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 7C4E364F9508DC861238EE4AB7F3EEE1 /* FBLPromise+Delay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Delay.h"; path = "Sources/FBLPromises/include/FBLPromise+Delay.h"; sourceTree = ""; }; - 7C51B7072F6C7CE2E0CCE2E4A012C53C /* RCTTypedModuleConstants.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTypedModuleConstants.mm; sourceTree = ""; }; - 7C5657A0501FD0E478C4F29DA1F9C27B /* EXVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoManager.h; sourceTree = ""; }; 7C6E28B05FDE1F1220AB6DE4481E0C48 /* GlobalThreadPoolList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalThreadPoolList.h; path = folly/executors/GlobalThreadPoolList.h; sourceTree = ""; }; + 7C73775E47D4CF9B92EF7CCBDA2F0B96 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 7C822944916997393C83B0CF3310A16B /* SDImageGIFCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGIFCoder.m; path = SDWebImage/Core/SDImageGIFCoder.m; sourceTree = ""; }; 7C83D83A0D4C1323C708527D106098BC /* MicroSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroSpinLock.h; path = folly/MicroSpinLock.h; sourceTree = ""; }; 7C8E82EC8AAEA9B4CE0D2B7BCD31E075 /* lossless_enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_neon.c; path = src/dsp/lossless_enc_neon.c; sourceTree = ""; }; - 7CA9D35E6DEC2B8DC589CA55C44ECBA4 /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; + 7CA405638D48DB19A0E0CFF3F8B4738F /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; 7CB388056028D7AA7C6FD0156B291F39 /* Unicode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Unicode.cpp; path = folly/Unicode.cpp; sourceTree = ""; }; 7CD6F641BB6063F13EA12BA92620DE6E /* animi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = animi.h; path = src/mux/animi.h; sourceTree = ""; }; 7CECBAB05A930D507AE7B0E29056A501 /* SDImageCacheConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheConfig.m; path = SDWebImage/Core/SDImageCacheConfig.m; sourceTree = ""; }; - 7CF6E3597138D19F6B45E31897D0DD4B /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; 7D1197EAB8DC51BB58614FA311213FE6 /* Fingerprint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fingerprint.h; path = folly/Fingerprint.h; sourceTree = ""; }; - 7D1EEACADE83839614558A6E592233BC /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; - 7D232688AE46532D2447393A3A564800 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 7D20DEEC7640A7E26DE4F76A033D9641 /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = ""; }; 7D26E0223B986942AE9A33FFAB0D09D4 /* DrivableExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DrivableExecutor.h; path = folly/executors/DrivableExecutor.h; sourceTree = ""; }; - 7D30E2993D68BD7EC30537F610662BE5 /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; 7D3A80EE210FFA27031327E4B6770689 /* FlipperInitConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperInitConfig.h; path = xplat/Flipper/FlipperInitConfig.h; sourceTree = ""; }; - 7D3BA5115F9737AE637D285A7D17ECEA /* Aes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Aes.m; sourceTree = ""; }; 7D4E753D377F1A7B0CEEECEF14FBDE54 /* Chrono.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Chrono.h; path = folly/Chrono.h; sourceTree = ""; }; - 7D60683732997EED066EC0AB0345CC3F /* React-RCTImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.release.xcconfig"; sourceTree = ""; }; + 7D61EC35D28B4EF1C2E3F7DB04DB7EB7 /* BSGAppHangDetector.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGAppHangDetector.m; sourceTree = ""; }; 7D62A205D7B6D909481AF0182C083272 /* FIRCrashlytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCrashlytics.m; path = Crashlytics/Crashlytics/FIRCrashlytics.m; sourceTree = ""; }; 7D6DC76017C081128AF141B447DA147B /* Rcu.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Rcu.cpp; path = folly/synchronization/Rcu.cpp; sourceTree = ""; }; 7D7EFA14CEAB378BAE4FD09AA6B5FDF1 /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Sources/Private/FIRHeartbeatInfo.h; sourceTree = ""; }; - 7DB4E8B56F16D9070533E4CE8D2AEE0C /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = ""; }; - 7DB9CD724A87ED3DB923BB48DADA5884 /* BugsnagSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSession.m; sourceTree = ""; }; - 7DBE8F496AE84BF950116DBAD4643801 /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; - 7DC1F0B6DA7032667B72AE5ACDE4227C /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevMenu.h; path = React/CoreModules/RCTDevMenu.h; sourceTree = ""; }; + 7D85B1D5F8F87719F04404EECA61FC8B /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTStatusBarManager.h; path = React/CoreModules/RCTStatusBarManager.h; sourceTree = ""; }; + 7DDAD7B74DF964029D8C8E0445940E3D /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 7DDD0E4D55A3F32EBF355204599D60A0 /* F14Set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Set.h; path = folly/container/F14Set.h; sourceTree = ""; }; - 7DE885C78076134935C547C3A9DF5AAC /* rn-fetch-blob.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.debug.xcconfig"; sourceTree = ""; }; - 7DECE3AD29CC36E9C2CC1FFBA3546E9D /* EXAppleAuthenticationRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationRequest.m; path = EXAppleAuthentication/EXAppleAuthenticationRequest.m; sourceTree = ""; }; - 7DFA9D4608861726508384EDDE3CEA62 /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; - 7E01591617629535D184939E51F17771 /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; - 7E01BF33F859C8BA6324FC306CB52D2B /* BugsnagSink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSink.m; sourceTree = ""; }; + 7E005D68E62F981E2203A551D6EA372D /* React-RCTImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTImage.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 7E103FA6ED177E4D7EF38AD267B42C58 /* libreact-native-cookies.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-cookies.a"; path = "libreact-native-cookies.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 7E190197A8BCD54D5B863CD1090FC782 /* diy-fp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "diy-fp.cc"; path = "double-conversion/diy-fp.cc"; sourceTree = ""; }; + 7E329469FAA7DDFFCC66C76EDC885390 /* VibrancyView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = VibrancyView.m; path = ios/VibrancyView.m; sourceTree = ""; }; + 7E357F7D22698AB72EC4DED0CB3475B8 /* RNCAppearance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearance.m; path = ios/Appearance/RNCAppearance.m; sourceTree = ""; }; 7E3A58C5C01BED5DD03BE3F5A0FB6D11 /* FIRCLSAllocate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSAllocate.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSAllocate.h; sourceTree = ""; }; 7E5ED61984AC5D0734B2848B826BA9D7 /* GULHeartbeatDateStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorage.h; path = GoogleUtilities/Environment/Private/GULHeartbeatDateStorage.h; sourceTree = ""; }; + 7E61F8A63FBA407A952062E0F522055D /* React-RCTBlob.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.release.xcconfig"; sourceTree = ""; }; + 7E6ACF4F764B85148076064F490E35DC /* localNotifications.md */ = {isa = PBXFileReference; includeInIndex = 1; name = localNotifications.md; path = docs/localNotifications.md; sourceTree = ""; }; + 7E6FC010879F7EE8CDCA75EFA68919D7 /* RCTConvert+REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+REATransition.h"; sourceTree = ""; }; 7E75554C6C3D8AB01B1D0B5851FEACB5 /* MPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCQueue.h; path = folly/MPMCQueue.h; sourceTree = ""; }; 7E7E46B76D0AFE3DFC477DC55C5DB326 /* libEXAppleAuthentication.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAppleAuthentication.a; path = libEXAppleAuthentication.a; sourceTree = BUILT_PRODUCTS_DIR; }; 7E7FEF0E48A56300697B528E63674E6A /* Likely.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Likely.h; path = folly/Likely.h; sourceTree = ""; }; + 7E82C6B85AA6A1A43C7EA0B9C5B0DBA1 /* BSG_KSSystemInfoC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfoC.h; sourceTree = ""; }; + 7E82EE73F5EEB92B1F189A5C87C94C90 /* RNRootView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNRootView-dummy.m"; sourceTree = ""; }; + 7E91599FA3BC0029A923484575892EE9 /* UMCameraInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.release.xcconfig; sourceTree = ""; }; 7E9567E0914302535C295590D9E802F2 /* ConcurrentSkipList-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ConcurrentSkipList-inl.h"; path = "folly/ConcurrentSkipList-inl.h"; sourceTree = ""; }; - 7EA8282D3FEFF06E4C897E6ED3D9EB29 /* RNReanimated.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.release.xcconfig; sourceTree = ""; }; 7EA857DA8A2209FA98D02BE1E40ADEC8 /* openssl_aes-armv4.S */ = {isa = PBXFileReference; includeInIndex = 1; name = "openssl_aes-armv4.S"; path = "Core/aes/openssl/openssl_aes-armv4.S"; sourceTree = ""; }; - 7EC13516487926C6336696A51BE2741A /* REAAlwaysNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAlwaysNode.h; sourceTree = ""; }; 7EC7BD368C6B452764445084F34B5EFD /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Sources/Private/FIRLogger.h; sourceTree = ""; }; - 7ECF371981DB912567D273476DE67202 /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTExceptionsManager.mm; sourceTree = ""; }; 7ED107C7D265D1E13894AC662AE1149C /* FIRInstallationsIIDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.h; sourceTree = ""; }; - 7EEB715F7479DC38EE5268AD369FB045 /* Bugsnag.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Bugsnag.m; sourceTree = ""; }; - 7EF0B16ECF34B288D753FC7B5F377EA5 /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; - 7EF223ED0444B6177C34995C03F7833F /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; + 7ED7E10E5234C551A746021EEC0D7E11 /* BitUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitUtils.h; path = yoga/BitUtils.h; sourceTree = ""; }; + 7EE4C717F5E2017DF21EF0ED8ED107E1 /* StorageSetters.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = StorageSetters.m; path = ios/StorageSetters.m; sourceTree = ""; }; + 7EECDBA9C2689D8B2D852984061BAE5C /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; + 7EF1B4B664E008E8F33B1CBE45A07A6F /* RNFBCrashlyticsInitProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBCrashlyticsInitProvider.m; path = ios/RNFBCrashlytics/RNFBCrashlyticsInitProvider.m; sourceTree = ""; }; + 7EF6B9A47FFA6087F2E4D57B895577D6 /* EXAppleAuthenticationMappings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationMappings.h; path = EXAppleAuthentication/EXAppleAuthenticationMappings.h; sourceTree = ""; }; 7F0D2C5FD5821F14AF72DA3AA3FE84F6 /* BaselinesAsyncSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = BaselinesAsyncSocket.cpp; path = rsocket/benchmarks/BaselinesAsyncSocket.cpp; sourceTree = ""; }; + 7F391CE3D6B0FE9ACF4401557839803D /* RNRootView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRootView.debug.xcconfig; sourceTree = ""; }; 7F4298341DE529438F567BC7B6605C84 /* Flowable_FromObservable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Flowable_FromObservable.h; path = yarpl/flowable/Flowable_FromObservable.h; sourceTree = ""; }; 7F5467A50B2433558AF81A19C71F11A9 /* FIRCLSSerializeSymbolicatedFramesOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSerializeSymbolicatedFramesOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSerializeSymbolicatedFramesOperation.h; sourceTree = ""; }; - 7F5D97D6C4DC63D8F34EBDB1C3D242AC /* EXVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoView.h; sourceTree = ""; }; - 7F61568FDAD9793D667A39D598FF656B /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; 7F648289041B3DCBC9D738576A3D9B2A /* FIRCLSByteUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSByteUtility.m; path = Crashlytics/Shared/FIRCLSByteUtility.m; sourceTree = ""; }; - 7F694550EB70903F2284F3EBBE04B8E9 /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; - 7F6ED1F6766EF8EB9CAD8BB243639756 /* RNCAsyncStorage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCAsyncStorage-dummy.m"; sourceTree = ""; }; 7F763AD72B33D446728D68075D4A6AC7 /* pb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb.h; sourceTree = ""; }; + 7F78273B44B4DA42DBE6141598922D84 /* BSG_KSSysCtl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSysCtl.h; sourceTree = ""; }; 7F7FAEEC6D720AA177A3ABE4D635B2D2 /* SysTime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysTime.cpp; path = folly/portability/SysTime.cpp; sourceTree = ""; }; - 7F8B17942D5B94E95453AD5DB71A89E3 /* RCTSurfaceProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceProtocol.h; sourceTree = ""; }; + 7F89B97D7C9697721F4789BEAEA2E875 /* MaterialIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialIcons.ttf; path = Fonts/MaterialIcons.ttf; sourceTree = ""; }; 7F90B4D772589C134A9486E832D59BFB /* FIRAppAssociationRegistration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAppAssociationRegistration.m; path = FirebaseCore/Sources/FIRAppAssociationRegistration.m; sourceTree = ""; }; 7F934D5CF6DFDE0A7D00F52698ED4CA6 /* PTProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTProtocol.h; path = peertalk/PTProtocol.h; sourceTree = ""; }; 7F976042875AB37E3178DA3B51131C0F /* random_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random_utils.h; path = src/utils/random_utils.h; sourceTree = ""; }; + 7F9BD92B9BDF85B886D741E7E003973C /* BSGAppKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGAppKit.h; sourceTree = ""; }; 7F9C61CA331FC7DDC4C288FE4E047574 /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "SDWebImage/Core/UIImage+GIF.h"; sourceTree = ""; }; - 7FB196E790FA568772298C408B335F2E /* BSGConnectivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGConnectivity.h; sourceTree = ""; }; 7FB87EB46998796DCFC2FA8FAB22730B /* PriorityUnboundedBlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityUnboundedBlockingQueue.h; path = folly/executors/task_queue/PriorityUnboundedBlockingQueue.h; sourceTree = ""; }; - 80049D4E1624B165BD88D111C95A490D /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; - 800CE32E685228077687AEA7CCFBF170 /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; + 7FE97DB842A59B5C2F615564FE5857EE /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = ""; }; 80211F1678ED1CAB959ACFB0AE2E477D /* hu.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = hu.lproj; path = "Objective-C/TOCropViewController/Resources/hu.lproj"; sourceTree = ""; }; 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTLinking.a"; path = "libReact-RCTLinking.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 802CB453B0BAF36161876899B9C007B5 /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; 80313E41FC783BC7ACFB49F771393302 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Sources/Private/FIRLogger.h; sourceTree = ""; }; 8031872DCCE430B11F0E3C6A6E3DC9FC /* FlipperKitReactPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperKitReactPlugin.m; path = iOS/Plugins/FlipperKitReactPlugin/FlipperKitReactPlugin/FlipperKitReactPlugin.m; sourceTree = ""; }; - 803385913A06D30DF515AD0E3A72DD09 /* Registration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Registration.h; sourceTree = ""; }; + 803652DA292561BA0F2B796EB01CC231 /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; + 8040A7E3C4F4E92E5B9FC6E74CD3B7B0 /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; + 804615896A1BBBB7B8BA5D29291F8864 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 80465CD88BDB7A9BE15102CF50241913 /* BitIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitIterator.h; path = folly/container/BitIterator.h; sourceTree = ""; }; 80482005A3D7C74B5C232B9C7E752CA0 /* ThreadCachedArena.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadCachedArena.cpp; path = folly/memory/ThreadCachedArena.cpp; sourceTree = ""; }; - 805EAA504AB5F67C0D94AC7A74F09827 /* BSG_KSFileUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSFileUtils.h; sourceTree = ""; }; 80633C5A8B082AA86AFAECD105185D55 /* FBLPromise+Testing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Testing.m"; path = "Sources/FBLPromises/FBLPromise+Testing.m"; sourceTree = ""; }; 8069BAC4F69AE5E45CBB8F33CB396B67 /* evutil_time.c */ = {isa = PBXFileReference; includeInIndex = 1; path = evutil_time.c; sourceTree = ""; }; 8074129DF318155B29544548E1CAF4A3 /* libreact-native-jitsi-meet.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-jitsi-meet.a"; path = "libreact-native-jitsi-meet.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 807FB3BD4F4C8DC51A9131B966235F59 /* FIRAEvent+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRAEvent+Internal.m"; path = "Crashlytics/Crashlytics/Helpers/FIRAEvent+Internal.m"; sourceTree = ""; }; 808157E8035BB54AD67EED203B4A8AD8 /* FIRInstallations.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallations.m; path = FirebaseInstallations/Source/Library/FIRInstallations.m; sourceTree = ""; }; 80840BAF96C12C2F4F42314F720FB483 /* SysSyscall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysSyscall.h; path = folly/portability/SysSyscall.h; sourceTree = ""; }; - 809E57C2926BEB5289728A671F93A914 /* RNCPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCPicker.m; path = ios/RNCPicker.m; sourceTree = ""; }; 80A51B61FECFED8D1A0D95AAD32A2938 /* libEXHaptics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXHaptics.a; path = libEXHaptics.a; sourceTree = BUILT_PRODUCTS_DIR; }; 80AB0B92F34862EBF7AAE62BCD3BFB2C /* Common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Common.h; path = rsocket/internal/Common.h; sourceTree = ""; }; 80B008CA424CDE6C865EAD3147A8E58C /* SequencedExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SequencedExecutor.h; path = folly/executors/SequencedExecutor.h; sourceTree = ""; }; - 80B975273860E25E1DAB2C561454F27C /* AntDesign.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = AntDesign.ttf; path = Fonts/AntDesign.ttf; sourceTree = ""; }; 80C0413E19A2DBCC3F6918891B6DCA41 /* Event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Event.h; path = folly/portability/Event.h; sourceTree = ""; }; - 80C8A84BBD3FC1AABB3E6E71442DAA31 /* HighlighterView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = HighlighterView.h; sourceTree = ""; }; - 80DEB6F7BB5140A191C8091E78BC3CD9 /* EXLocalAuthentication-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXLocalAuthentication-dummy.m"; sourceTree = ""; }; - 80EF4E07C284504EABFCEB8CA96D7CEC /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; + 80F694FBCE9A3D4733A7A20AEBD4C67A /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 81095CC27AB0AD6D943702F4AAED8A59 /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = ""; }; + 810D5871ADA0B4191B15B5E4A9394733 /* RNCookieManagerIOS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCookieManagerIOS.m; path = ios/RNCookieManagerIOS/RNCookieManagerIOS.m; sourceTree = ""; }; + 81191814B978606260CA5B4EC460E41E /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; + 81228D55716D17AA0DE748C8160BB301 /* ARTSurfaceView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTSurfaceView.m; path = ios/ARTSurfaceView.m; sourceTree = ""; }; 8123AF2E83A4B7A6DEE967C1E895AAAF /* SKEnvironmentVariables.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKEnvironmentVariables.m; path = iOS/FlipperKit/SKEnvironmentVariables.m; sourceTree = ""; }; 812ED9CD85898FB3B82136F7CB9A3191 /* libRNConfigReader.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNConfigReader.a; path = libRNConfigReader.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 816AC9450EEDFF23FDB4EB8A859EF22A /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = React/CoreModules/RCTWebSocketExecutor.h; sourceTree = ""; }; - 818CB0D5B66DB7CD5A9B03951812A7CF /* SafeAreaManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SafeAreaManager.h; sourceTree = ""; }; 819501D9827962ADC0B59DDBC46D6313 /* FlipperStep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperStep.h; path = xplat/Flipper/FlipperStep.h; sourceTree = ""; }; - 81983EC4B579E9EA59E82033CB268BD6 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 81A05C8E8890D8184D5C24DB13E3B2D9 /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; 81A496C1E15F3F3AC37175B4920FF619 /* Cursor-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Cursor-inl.h"; path = "folly/io/Cursor-inl.h"; sourceTree = ""; }; - 81ABB69299E6F3BB892E995CFDCECD7A /* Pods-ShareRocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ShareRocketChatRN-dummy.m"; sourceTree = ""; }; + 81AF47282A6DA97839BF24F1A5FA42E7 /* React-callinvoker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-callinvoker.release.xcconfig"; sourceTree = ""; }; 81B637E3ADF97DD6C410CDCA1F53A559 /* ManualTimekeeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ManualTimekeeper.h; path = folly/futures/ManualTimekeeper.h; sourceTree = ""; }; - 81C90EF8F95DD7867ED3541AD3996752 /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; 81D5CF11457126BB7F19358332C49508 /* FlipperResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperResponder.h; path = xplat/Flipper/FlipperResponder.h; sourceTree = ""; }; + 81EB88AF33AF8FCFE87CD8EACA206B4F /* EXSessionUploadTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionUploadTaskDelegate.h; sourceTree = ""; }; 81EBB074B75AC78031E9362402A44DAE /* AsyncTimeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTimeout.h; path = folly/io/async/AsyncTimeout.h; sourceTree = ""; }; - 81FA991C2212606567952D4A3B8044DE /* BSG_KSCrashCallCompletion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashCallCompletion.m; sourceTree = ""; }; 8200BAC2C1DEC23C001DE5C895A8CC79 /* SanitizeThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SanitizeThread.cpp; path = folly/synchronization/SanitizeThread.cpp; sourceTree = ""; }; - 8200E5D8453D570E848614A7B5E0A803 /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; - 8205F5FE7761128F3F68F5C115896879 /* UMAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLoaderInterface.h; sourceTree = ""; }; + 8215C5F33AEA1B010AC029A40C872169 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 82169797FE5B608D75B4F5F79C13280D /* ThreadCachedInt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedInt.h; path = folly/ThreadCachedInt.h; sourceTree = ""; }; - 823342DC31FD6486EE7CBDC785774403 /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; - 82391B90CCEF95B447654F7B2458083C /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; - 82420E82EA187A1162875A5F912F175A /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; - 82455AFAA247F44EF2C7E74E2A84FBAC /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; - 824CAF3A35BC6BD51DB86FA0F25AF6CE /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; - 82528F33CA02E533E44939A0C2850FC2 /* EXVideoThumbnailsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXVideoThumbnailsModule.h; path = EXVideoThumbnails/EXVideoThumbnailsModule.h; sourceTree = ""; }; + 821EFB2AD57FC7AAF6E4807273C20B56 /* ARTShapeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTShapeManager.h; sourceTree = ""; }; + 82205CE222B6E04489CA0E4B9CB5DABD /* RCTRedBoxSetEnabled.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxSetEnabled.h; sourceTree = ""; }; 825B2285A1530B004DDAD6CEE1315843 /* frame_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_enc.c; path = src/enc/frame_enc.c; sourceTree = ""; }; - 825CA8E7DDDF856470916C132E617B5F /* react-native-webview.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.debug.xcconfig"; sourceTree = ""; }; 8263CCFE9BAAD61D8DE661674A7EA03D /* PriorityUnboundedQueueSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityUnboundedQueueSet.h; path = folly/concurrency/PriorityUnboundedQueueSet.h; sourceTree = ""; }; 82654E144A90FED84B5D39EE71AF431F /* fa-IR.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "fa-IR.lproj"; path = "Objective-C/TOCropViewController/Resources/fa-IR.lproj"; sourceTree = ""; }; - 826924820A89CCD41EAFFDFF5C397862 /* UMFaceDetectorInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.debug.xcconfig; sourceTree = ""; }; - 826B9376C887114ACD8AC99586D15218 /* RNFBCrashlyticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBCrashlyticsModule.h; path = ios/RNFBCrashlytics/RNFBCrashlyticsModule.h; sourceTree = ""; }; - 826D8E801EA68CF54FD3D32F7EFFCEED /* RNCMaskedView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCMaskedView-dummy.m"; sourceTree = ""; }; - 827446B595DC3D7EE069CAA8799A49CC /* BSG_KSCrash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrash.h; sourceTree = ""; }; + 82746B65ADB874980B643F7D6A9EACA4 /* react-native-mmkv-storage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-mmkv-storage.debug.xcconfig"; sourceTree = ""; }; + 827B56C1E939D2F8F150F08DF0948799 /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageLoader.mm; sourceTree = ""; }; 828CB40D123F17957991467978968C8E /* glog.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = glog.debug.xcconfig; sourceTree = ""; }; 82908EB5AA22CDA5F63B991A8908CDC9 /* endian_inl_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endian_inl_utils.h; path = src/utils/endian_inl_utils.h; sourceTree = ""; }; - 8299F6E8BD0F3CCFC1F7B288BDCB3ECF /* RCTDeviceInfo.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDeviceInfo.mm; sourceTree = ""; }; + 829C9C9E602BAD1C89CF50E09A76222B /* BSG_KSCrashDoctor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashDoctor.h; sourceTree = ""; }; 82CD836887898CD56425D5AE3E6F3813 /* FIRInstallationsHTTPError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsHTTPError.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.m; sourceTree = ""; }; - 82FE8D534BF2AFBFA6988C6E000FB2D5 /* RNRootView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNRootView-dummy.m"; sourceTree = ""; }; - 83001033CA399D8268EC5116EBCDC01E /* BSG_KSMach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMach.h; sourceTree = ""; }; + 82ED9F1782E3FD8F7E0CB9DA88B7D1C7 /* REAValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAValueNode.h; sourceTree = ""; }; 83015F74B9F4F8612DBA0CD2A7132244 /* SKHiddenWindow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKHiddenWindow.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKHiddenWindow.h; sourceTree = ""; }; + 831F2BE7509E960A2247F8069F11035A /* RNVectorIcons-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNVectorIcons-dummy.m"; sourceTree = ""; }; 8352C4658640E252FE8BB25FCEDF2A0A /* FKPortForwardingCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKPortForwardingCommon.h; path = iOS/FlipperKit/FKPortForwarding/FKPortForwardingCommon.h; sourceTree = ""; }; - 8362362156D5E925271D7E0EE22A1520 /* REATransitionAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionAnimation.h; sourceTree = ""; }; + 83606A2F1248F96972C39BBACDC1C362 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 836C95D081ECB5434F342E17A88F8CA0 /* ClockGettimeWrappers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ClockGettimeWrappers.h; path = folly/ClockGettimeWrappers.h; sourceTree = ""; }; 8371C3FBE908131FE0B4BAAE1E6D2F52 /* HeterogeneousAccess-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "HeterogeneousAccess-fwd.h"; path = "folly/container/HeterogeneousAccess-fwd.h"; sourceTree = ""; }; + 8373F8F5AA7C5023F46D1F4436A71193 /* FFFastImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageSource.h; path = ios/FastImage/FFFastImageSource.h; sourceTree = ""; }; 837E9CF02683AFD9515312499D96F62E /* Time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Time.h; path = folly/portability/Time.h; sourceTree = ""; }; 837EFFA6ADD6F536B9A48C66A773DD2B /* UIColor+SDHexString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+SDHexString.m"; path = "SDWebImage/Private/UIColor+SDHexString.m"; sourceTree = ""; }; - 8386D6C82BF5872E4E7790B6602841E6 /* RNFastImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFastImage-prefix.pch"; sourceTree = ""; }; + 838CB3AD58AAF778C3820188C89DEAE7 /* RCTSha.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSha.h; path = ios/RCTCrypto/RCTSha.h; sourceTree = ""; }; + 838D1BC1B1D71324DA582F1D93B77A63 /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; 839253E53A9EB87E2EA39F80D36577BB /* Future.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Future.cpp; path = folly/futures/Future.cpp; sourceTree = ""; }; - 83A0F06909DE94E788633152B76B7A4B /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = ""; }; 83A36CA920B64E06B7FE6550C363A78E /* Rcu-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Rcu-inl.h"; path = "folly/synchronization/Rcu-inl.h"; sourceTree = ""; }; 83A8CC3246A95431ACEA83C7C742228B /* libreact-native-netinfo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-netinfo.a"; path = "libreact-native-netinfo.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 83B05D19439553D21178193FF0C75B05 /* vp8li_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_enc.h; path = src/enc/vp8li_enc.h; sourceTree = ""; }; 83BF47C14F8ECEF5838A4507B32CC1A7 /* TOActivityCroppedImageProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOActivityCroppedImageProvider.h; path = "Objective-C/TOCropViewController/Models/TOActivityCroppedImageProvider.h"; sourceTree = ""; }; - 83D5AA99E0E6E0F53037D6DB37801041 /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = ""; }; 83D65B87F81FC79D264226D68569D33A /* Futex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Futex.h; path = folly/detail/Futex.h; sourceTree = ""; }; 83DC996CF00F18599135A2312BD308E7 /* pt.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pt.lproj; path = "Objective-C/TOCropViewController/Resources/pt.lproj"; sourceTree = ""; }; 83E759385470971E9A1619229F94FBAC /* FixedString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FixedString.h; path = folly/FixedString.h; sourceTree = ""; }; + 83F0718D4AC46929A67616693A2E5E6A /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = ""; }; 83F37D98A00763F81E61FCC64732810A /* String-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "String-inl.h"; path = "folly/String-inl.h"; sourceTree = ""; }; - 83F4BA4B5A456BDCFC98937D539B9D13 /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; - 83FED3058E5CBB81A370C617DEADE879 /* react-native-simple-crypto-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-simple-crypto-prefix.pch"; sourceTree = ""; }; + 83FC195C5C31491E3BCB9BAD956650FE /* React-RCTText.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.release.xcconfig"; sourceTree = ""; }; 83FFB31122ACD6342390D22F82E06526 /* Flipper-PeerTalk-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-PeerTalk-prefix.pch"; sourceTree = ""; }; 8403A2E98112F59D3BAF6617AECA11EC /* ThreadLocalDetail.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadLocalDetail.cpp; path = folly/detail/ThreadLocalDetail.cpp; sourceTree = ""; }; - 840CA435196E8AA94B62876E546400E7 /* RNCAppearance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearance.m; path = ios/Appearance/RNCAppearance.m; sourceTree = ""; }; 8412BB89120242D71285FD959BAB4CE2 /* StreamFragmentAccumulator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamFragmentAccumulator.cpp; path = rsocket/statemachine/StreamFragmentAccumulator.cpp; sourceTree = ""; }; 842065B8B3BD58AC120D1C31CB5FB335 /* Time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Time.h; path = folly/portability/Time.h; sourceTree = ""; }; 842663EF20781EC453C3AB321DD4BF19 /* GULSceneDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSceneDelegateSwizzler.m; path = GoogleUtilities/SceneDelegateSwizzler/GULSceneDelegateSwizzler.m; sourceTree = ""; }; - 842BAEFE6645458EE0F6E3A333F9C324 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; 842CE69EF38520DDAA52171D3B28A041 /* GULLoggerCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerCodes.h; path = GoogleUtilities/Common/GULLoggerCodes.h; sourceTree = ""; }; + 8431F6CE5B1B0F548F4F3EB21BC2AE40 /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; 843C93882E727468AB416A5D1983E793 /* GULSceneDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler.h; path = GoogleUtilities/SceneDelegateSwizzler/Private/GULSceneDelegateSwizzler.h; sourceTree = ""; }; - 844DD2443B6ABF176775F2DD005A932D /* RNPushKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKit.m; path = RNNotifications/RNPushKit.m; sourceTree = ""; }; + 8443DF482A4A09A72E9EE2EF68264AA6 /* RNCookieManagerIOS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCookieManagerIOS.h; path = ios/RNCookieManagerIOS/RNCookieManagerIOS.h; sourceTree = ""; }; + 8448FB44BB6062AC013CFCC3DDC33FDD /* EXAppleAuthenticationRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationRequest.m; path = EXAppleAuthentication/EXAppleAuthenticationRequest.m; sourceTree = ""; }; 845095425A65B403ED01C9E0327CEB2B /* FirebaseCoreDiagnostics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnostics.debug.xcconfig; sourceTree = ""; }; 8450CF4C473130B21E41CB49420EB6B3 /* TcpDuplexConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpDuplexConnection.h; path = rsocket/transports/tcp/TcpDuplexConnection.h; sourceTree = ""; }; 845121F58E60C9853B35C0969291ADC2 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = "double-conversion/utils.h"; sourceTree = ""; }; - 8479AF02B317D9F048384BDC21418898 /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; - 8489282849C955E49516A3FB5FCC01A7 /* ReactNativeUiLib-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeUiLib-prefix.pch"; sourceTree = ""; }; 8497CB456BD2A261AC99B47B49846351 /* StreamStateMachineBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamStateMachineBase.h; path = rsocket/statemachine/StreamStateMachineBase.h; sourceTree = ""; }; 849B5400332E67CB49AB4618ABFE2341 /* SDWebImageDownloaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderConfig.h; path = SDWebImage/Core/SDWebImageDownloaderConfig.h; sourceTree = ""; }; 849FC69E990B83A69FC8A87B83C1C2EB /* FIRCLSUUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUUID.h; path = Crashlytics/Shared/FIRCLSUUID.h; sourceTree = ""; }; 84A7E4EA97CD08BAA03992168255DF5F /* Foreach-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Foreach-inl.h"; path = "folly/container/Foreach-inl.h"; sourceTree = ""; }; 84C6B17C8D76B76582EE0FA44BC1C73B /* lossless.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless.c; path = src/dsp/lossless.c; sourceTree = ""; }; - 84DDBC06ABC89E2CF6270F907F76C137 /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; - 84E31AD7495B25B636004D03A408D97B /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; + 84EC04911BB9E6D9B7856568B9938009 /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; + 84EEFE25DC085D62DA57C42255443BB3 /* react-native-simple-crypto-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-simple-crypto-prefix.pch"; sourceTree = ""; }; 84F337E321B6C51564FA2BBE9406F7E8 /* Promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Promise.h; path = folly/futures/Promise.h; sourceTree = ""; }; + 84F81D9B45FDBD78B5ACB07C50EBCCB6 /* RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotifications.m; path = RNNotifications/RNNotifications.m; sourceTree = ""; }; + 84FACB1B8A9DB495EDF073E347729893 /* RNFetchBlob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFetchBlob.h; sourceTree = ""; }; 84FCCA45C59E07CDDF03842BAA20E30E /* FKUserDefaultsPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKUserDefaultsPlugin.h; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsPlugin.h; sourceTree = ""; }; - 85130ACC8455CC3152011775F18857A8 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 853C1CF66632CEC2D68C7EFC135B6D39 /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; + 85358689783C24A98EC1C4B280D8640B /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; + 853DA4003B234224D0BEF3F4ABD94970 /* SafeAreaSpacerViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SafeAreaSpacerViewLocalData.m; sourceTree = ""; }; 854392E79DEFD120A20C066DCB55C4AF /* filters_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_utils.c; path = src/utils/filters_utils.c; sourceTree = ""; }; + 8563B2FC4FB842CB858FC49BF425377E /* react-native-background-timer.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.release.xcconfig"; sourceTree = ""; }; 85679925C7418CFBC8047231557F405D /* event-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "event-internal.h"; sourceTree = ""; }; 856B5CD56F194FAD26EA91620B66D614 /* libGoogleDataTransport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransport.a; path = libGoogleDataTransport.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8571823AA5D946194320312B28D9AEEF /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSIDynamic.cpp; sourceTree = ""; }; + 85782E5A0FDBD520761C5860C266BA68 /* RNGestureHandlerButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButton.h; path = ios/RNGestureHandlerButton.h; sourceTree = ""; }; + 8579EF0DCAD00BFCB49994109AB73B0D /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; 857B28839350C25A775AB9D97BFFFE9B /* FBLPromise+Catch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Catch.h"; path = "Sources/FBLPromises/include/FBLPromise+Catch.h"; sourceTree = ""; }; + 85850D0F4EDDE83B68C1D3E63B63EB40 /* BugsnagSessionTrackingApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingApiClient.m; sourceTree = ""; }; 858AFA83985937825473045CF6808B15 /* librn-extensions-share.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "librn-extensions-share.a"; path = "librn-extensions-share.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 85A2BAA8D45A771F937588ADB880E6B0 /* BugsnagSessionTrackingPayload.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingPayload.m; sourceTree = ""; }; + 859B9C5CC2B046D642D6E37D5EC38A39 /* ReactNativeUiLib.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeUiLib.debug.xcconfig; sourceTree = ""; }; 85BCB73B53578F6422484F9D3075B556 /* GULNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetwork.h; path = GoogleUtilities/Network/Private/GULNetwork.h; sourceTree = ""; }; - 85BE3D93383E5DF47337EFEDF0B147CE /* React-RCTVibration.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTVibration.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 85CCC568F8B4853890D4002955C643F0 /* histogram_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = histogram_enc.c; path = src/enc/histogram_enc.c; sourceTree = ""; }; - 85D33A1402CC1B5CCE66713F4160CA37 /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = ""; }; + 85DF6CE874D2DF49B49C7EEA5F4E7BD7 /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; 85E337353277B5A943B144A297742D26 /* Request.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Request.cpp; path = folly/io/async/Request.cpp; sourceTree = ""; }; - 85EFD9F3442332557D08D6F064A12543 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; - 85F454D900D9E3F1EC0368BA1E08F269 /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; + 85E37AF30AB738B8B5EFA1D488C0E827 /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; + 85E941E45C8BA1C7C836427904213DD1 /* Restart.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Restart.m; path = ios/Restart.m; sourceTree = ""; }; + 85EBAEA75FFA7DD5F1973B6C687C2441 /* UMErrorCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMErrorCodes.h; path = UMCore/UMErrorCodes.h; sourceTree = ""; }; + 85EC70A6AA577F3618C422F6509F6B57 /* FBReactNativeSpec.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.release.xcconfig; sourceTree = ""; }; + 85F0409B00976E265E97759FCCD27E57 /* RNCSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaView.h; path = ios/SafeAreaView/RNCSafeAreaView.h; sourceTree = ""; }; 860239C88599BC26C8132EA2A3B02158 /* FixedString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FixedString.h; path = folly/FixedString.h; sourceTree = ""; }; + 8615DB1436F8371A8275C4ACBDA47BFC /* React-RCTNetwork.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.debug.xcconfig"; sourceTree = ""; }; 862386D325E2D34453FACDF8BC1C8191 /* SocketAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketAddress.h; path = folly/SocketAddress.h; sourceTree = ""; }; 8628666FA737EDC5296AE41BD832DECF /* DelayedDestruction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DelayedDestruction.h; path = folly/io/async/DelayedDestruction.h; sourceTree = ""; }; 86375444C196BA272DDBB8165BF64A15 /* libFirebaseCrashlytics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCrashlytics.a; path = libFirebaseCrashlytics.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 863FFB2563D846E6655C95E09E864C34 /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = experiments.cpp; sourceTree = ""; }; 8645C0A09204F941254F04AFF321631B /* MemoryMapping.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MemoryMapping.cpp; path = folly/system/MemoryMapping.cpp; sourceTree = ""; }; + 8658DD24119E5EAE6FFA7E2582255C55 /* BugsnagConfiguration+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagConfiguration+Private.h"; sourceTree = ""; }; 8664497135BCFA9897D91A8767C2B915 /* TypeInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypeInfo.h; path = folly/lang/TypeInfo.h; sourceTree = ""; }; + 867184BCA9B2D56CB73DAE176DC85425 /* REAClockNodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAClockNodes.h; sourceTree = ""; }; 867B29A1250B07A84E8BC281E2916F23 /* FIRErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrorCode.h; path = FirebaseCore/Sources/Private/FIRErrorCode.h; sourceTree = ""; }; - 86A0D72A3E8E03D802DF437E0C04E8B5 /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; - 86A632B5E966333C0668221A7CAA0212 /* HighlighterViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = HighlighterViewManager.m; sourceTree = ""; }; + 867F1FFA3E6F115C3382FC63FA4E2B27 /* Pods-defaults-RocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-defaults-RocketChatRN-resources.sh"; sourceTree = ""; }; + 868B8F033FCD7483A5C51ED38B9A065C /* FBReactNativeSpec.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.debug.xcconfig; sourceTree = ""; }; + 8698DF0DE08A137A8C816089106F8DA6 /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = ""; }; + 86A4D1DD994C66B202FFE6800530D499 /* BugsnagThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagThread.h; sourceTree = ""; }; + 86AA0BB8AB1F81709D8DAE74879B068D /* RCTAsyncLocalStorage.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAsyncLocalStorage.mm; sourceTree = ""; }; 86B97EE47635299C9D8446981F698087 /* ExceptionWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionWrapper.h; path = folly/ExceptionWrapper.h; sourceTree = ""; }; 86C8AFAF52D4784EC7065D0D01FB286C /* Future-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Future-inl.h"; path = "folly/futures/Future-inl.h"; sourceTree = ""; }; 86C9BD0FB1C49F89C85AB3AEE0919D46 /* GlobalThreadPoolList.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = GlobalThreadPoolList.cpp; path = folly/executors/GlobalThreadPoolList.cpp; sourceTree = ""; }; - 86CFE60E12EE97FFCD2AEE589B017D22 /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; 86D3CC47B0C340A700E877DEF908FAA8 /* SKScrollViewDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKScrollViewDescriptor.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKScrollViewDescriptor.m; sourceTree = ""; }; + 86D860598D8AF40A45A7B59E29840C40 /* RCTTiming.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTiming.mm; sourceTree = ""; }; 86D9281E1BAC373B598A7CD54FB33844 /* Flipper-RSocket.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-RSocket.debug.xcconfig"; sourceTree = ""; }; 86DB9FF8A5FF212C97C3C37B038AAD4A /* AsyncSocketBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSocketBase.h; path = folly/io/async/AsyncSocketBase.h; sourceTree = ""; }; 86DBDB5227F92345841DF5233237B253 /* Types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Types.h; path = folly/futures/detail/Types.h; sourceTree = ""; }; - 86DE22F6FE748461A4460AEF613CB60E /* RNFetchBlobNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobNetwork.h; path = ios/RNFetchBlobNetwork.h; sourceTree = ""; }; + 86E61A981CF42C4B23BAB5518A622CB0 /* BugsnagApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagApp.m; sourceTree = ""; }; + 86F6DE72AF784651FC53232D648747AE /* react-native-simple-crypto-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-simple-crypto-dummy.m"; sourceTree = ""; }; 871379DC580A9906566837C1B872A61C /* MMKV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKV.h; path = iOS/MMKV/MMKV/MMKV.h; sourceTree = ""; }; - 872EC1213FBF861ADC6E190A6D144C06 /* BSG_KSMach_x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_64.c; sourceTree = ""; }; - 87313FD28D8E6BA857907A1617E2E4F1 /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = ""; }; + 872D2FCB86AC74686DC67A7EE65FA3A1 /* REAUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAUtils.h; path = ios/REAUtils.h; sourceTree = ""; }; 8731BAC61933E776D4154A97D7F4D917 /* fi.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fi.lproj; path = "Objective-C/TOCropViewController/Resources/fi.lproj"; sourceTree = ""; }; 8759EFD10AA0DA5C62FA058D4B47E9E9 /* RWSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RWSpinLock.h; path = folly/synchronization/RWSpinLock.h; sourceTree = ""; }; - 875DED61A06CE318AEE1294518695660 /* react-native-cameraroll.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.debug.xcconfig"; sourceTree = ""; }; - 876970F6A9EA5AABD769FE441E0644FF /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSBundleType.cpp; sourceTree = ""; }; + 876151ECB586864624FAF9EE49CA3D76 /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = ""; }; 876DB1F6D29925E73C087F2C3AB36795 /* SysStat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysStat.h; path = folly/portability/SysStat.h; sourceTree = ""; }; - 876DC40AD195D742638FA9BF1C0D7921 /* RNFetchBlobConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobConst.m; path = ios/RNFetchBlobConst.m; sourceTree = ""; }; - 87748E27FEC252F9DB7E83F57992D891 /* SafeAreaSpacerShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SafeAreaSpacerShadowView.h; sourceTree = ""; }; 87787F196653CC71282BF0F30B7D5C0A /* FlipperResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperResponder.h; path = iOS/FlipperKit/FlipperResponder.h; sourceTree = ""; }; 877E589A8BF687225F8BDA9BB84A5517 /* FIRCLSMachOBinary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachOBinary.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOBinary.h; sourceTree = ""; }; 8784FBC1C5E137B83281BBDA13166A55 /* CacheLocality.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CacheLocality.h; path = folly/concurrency/CacheLocality.h; sourceTree = ""; }; 8788C27754B696BDA8DD6600A957E14B /* AESCrypt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AESCrypt.h; path = Core/aes/AESCrypt.h; sourceTree = ""; }; - 87A42002CE935D81735F7BBDC468920F /* RemoteObjectsTable.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = RemoteObjectsTable.cpp; sourceTree = ""; }; - 87A9DF17D8AC30F800D695E7C1CE49DF /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; - 87C229F1F692C5339612090BC827C2C8 /* EXKeepAwake-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXKeepAwake-dummy.m"; sourceTree = ""; }; 87D361A17427A801DBF47CD2D9BFCC01 /* strtod.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strtod.cc; path = "double-conversion/strtod.cc"; sourceTree = ""; }; - 87EFCCB416B724AA2A36760419C1D6FB /* RCTRefreshableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshableProtocol.h; sourceTree = ""; }; - 87F85C8D392247940F2D06630D914116 /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; - 883542833FE5BFC88FDFFCFEA3F9DC1E /* EXAppleAuthentication-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAppleAuthentication-prefix.pch"; sourceTree = ""; }; + 87E47624EA5966C953C89E28C2FA8F10 /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; + 87EF8DAC74FFF7785C03693CE6ED7236 /* NSError+BSG_SimpleConstructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSError+BSG_SimpleConstructor.h"; sourceTree = ""; }; + 87F2CBC95E98D64C0ADA8517411FE08D /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; + 87F3ACB4AF1829993FE242559CF76FCA /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; + 87FB3BAE4C0608D564B86E1ED9EE89A7 /* KeyCommands-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeyCommands-prefix.pch"; sourceTree = ""; }; + 880C9C45607A70557E9BA69E0F44E00D /* BSG_KSObjC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSObjC.c; sourceTree = ""; }; 88397D67F1AC5325B9C5CDF7112BF6CF /* DoubleConversion.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DoubleConversion.debug.xcconfig; sourceTree = ""; }; 883E39C9150F6F0FFA19107EE0D2FC9E /* SDWebImageIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageIndicator.h; path = SDWebImage/Core/SDWebImageIndicator.h; sourceTree = ""; }; - 884A68A503B81022B9DCDF496B2723F4 /* Inspector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = Inspector.cpp; sourceTree = ""; }; + 88503417B54D3757756715839F7FDEE0 /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = ""; }; 885292AF47B79C9F9792145F265F4642 /* GDTCORReachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORReachability.h; sourceTree = ""; }; - 886591E5AA46B071E652AC8CFBB30BDD /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; - 888C52782E96EDD715D39EDD4C53314A /* RNScreens.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.debug.xcconfig; sourceTree = ""; }; - 88B2FF6B7A7D12447B6E80EF8AEB892A /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDataBigString.mm; sourceTree = ""; }; - 88CCE6464D89071E71BE9A8A5D3ECED7 /* RCTView+SafeAreaCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTView+SafeAreaCompat.m"; path = "ios/SafeAreaView/RCTView+SafeAreaCompat.m"; sourceTree = ""; }; - 88DDBFC3B61FAB1F9A0438758D23ED76 /* RCTImageURLLoaderWithAttribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoaderWithAttribution.h; path = Libraries/Image/RCTImageURLLoaderWithAttribution.h; sourceTree = ""; }; - 88F21242C0569DF77EC652CB7E45B984 /* REAStyleNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAStyleNode.m; sourceTree = ""; }; - 88F4E05408849735CE9E7F092A7B555E /* FBReactNativeSpec.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.debug.xcconfig; sourceTree = ""; }; + 885E67E45CB9292D54C7AE825D2CC130 /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; + 88924A7F0E7ED8E66C1C0A3ABE595DE3 /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = ""; }; 88F8A7279BB40AE2387BE1D231002F03 /* FIRCLSNetworkOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSNetworkOperation.h; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSNetworkOperation.h; sourceTree = ""; }; - 890233325EC57DDFD53354C5A83DA51A /* EXKeepAwake.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXKeepAwake.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 8907F3F77CF6C50D7C220B4046CFA9A7 /* AtomicStruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicStruct.h; path = folly/synchronization/AtomicStruct.h; sourceTree = ""; }; + 8909D94BC2491628F567748899BADD31 /* rn-extensions-share.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.release.xcconfig"; sourceTree = ""; }; 8910ED61EA488A224272FCA22AD8C114 /* SKHiddenWindow.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKHiddenWindow.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKHiddenWindow.m; sourceTree = ""; }; - 89150B0A3D5E2A096D1706A478282A89 /* SafeAreaSpacerViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SafeAreaSpacerViewManager.h; sourceTree = ""; }; - 89313FAE5BFAD3E3EE2F8C5F6AFA9492 /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = ""; }; + 896D88B2987A64FD6E6A606176592663 /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; 897624EA4822C72FCC452205A90DFCEE /* AtomicUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUtil.h; path = folly/synchronization/AtomicUtil.h; sourceTree = ""; }; - 897DFBE6E915403BED169E59A27B41CE /* EXAVPlayerData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVPlayerData.h; path = EXAV/EXAVPlayerData.h; sourceTree = ""; }; 8987A4D1D0660908F0E583A0A5E1D8EC /* GlobalThreadPoolList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalThreadPoolList.h; path = folly/executors/GlobalThreadPoolList.h; sourceTree = ""; }; - 8992EC690655551AB49DB2B1245424D9 /* RCTAnimationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAnimationPlugins.mm; sourceTree = ""; }; 8998273719FDD789E6F9C7541AFD0B33 /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNVectorIcons.a; path = libRNVectorIcons.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 89D4F729E6BD5C757B99E718C8D3BD70 /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; + 89A476ACB3FE57D02EC16766114B7E08 /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; sourceTree = ""; }; + 89D1E92791BD83D34D81B52060907553 /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; 89DBA7C561C5E445FC40A52A05441870 /* FIRAppAssociationRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppAssociationRegistration.h; path = FirebaseCore/Sources/FIRAppAssociationRegistration.h; sourceTree = ""; }; - 89E405CCA1A391442D8914E9B728BCD2 /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = ""; }; 89E52F7FC20434097820D21A19F7A961 /* FBLPromise+Wrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Wrap.h"; path = "Sources/FBLPromises/include/FBLPromise+Wrap.h"; sourceTree = ""; }; + 89E76C6091B3365DFAFAB90BF5C9CFDF /* RCTBlobPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobPlugins.mm; sourceTree = ""; }; + 89E93430F71A71DBFADC0D1285DF7A14 /* EXFileSystem.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.release.xcconfig; sourceTree = ""; }; 89F8DA17B84406296466CA0BD7774307 /* StreamThroughputTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamThroughputTcp.cpp; path = rsocket/benchmarks/StreamThroughputTcp.cpp; sourceTree = ""; }; 8A097A82EB5F9568D3CD84603C037131 /* GDTCORDataFuture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORDataFuture.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORDataFuture.h; sourceTree = ""; }; - 8A3940F1B4BCA47EE3978550D1283B3C /* RNCSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaShadowView.m; path = ios/SafeAreaView/RNCSafeAreaShadowView.m; sourceTree = ""; }; 8A3DB7B67BAC8384B203734EB780A8EA /* FIRCLSReportAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportAdapter.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSReportAdapter.h; sourceTree = ""; }; - 8A5525F3F6FF25A9058B2CB012A330B2 /* SecureStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SecureStorage.m; path = ios/SecureStorage.m; sourceTree = ""; }; + 8A4F992D9FCFC9A6A3E8F32CA25A1412 /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8A53EC9FB8607A9EC1BD5F88AE6F883E /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; 8A55EA8DB6FFFDD98AC945B1B3D554C6 /* GroupVarint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GroupVarint.h; path = folly/GroupVarint.h; sourceTree = ""; }; 8A8419792B253793EEFA61EE8E0A6E9E /* ThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadPoolExecutor.h; path = folly/executors/ThreadPoolExecutor.h; sourceTree = ""; }; 8A8E9CFBF687EC1E6D5F284EC2205B4D /* ro.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ro.lproj; path = "Objective-C/TOCropViewController/Resources/ro.lproj"; sourceTree = ""; }; - 8A946CBA0236163B5D6AD1CBAE7E8594 /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = ""; }; + 8AA2A7AA72B24124B829115293D735E6 /* react-native-restart.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-restart.debug.xcconfig"; sourceTree = ""; }; + 8AA602DCBEEDEA49A0A583EEDCF0ACFC /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; + 8AA93F829781BB82572A2B7D14A93599 /* ReactNativeUiLib.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeUiLib.release.xcconfig; sourceTree = ""; }; + 8AAD0CD25566C3DF95A09CE18005BFDD /* RNFBVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBVersion.m; path = ios/RNFBApp/RNFBVersion.m; sourceTree = ""; }; 8ABA4E5F665B0B8B414DBC00C6F5F45A /* FlipperKitNetworkPlugin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperKitNetworkPlugin.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin.mm; sourceTree = ""; }; + 8AC9189025B8BE1B454FF175813E2356 /* RNFetchBlobReqBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobReqBuilder.h; path = ios/RNFetchBlobReqBuilder.h; sourceTree = ""; }; 8ACA5A3A6CD82F1DFA5BA81BA8BA4E2B /* yuv_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips_dsp_r2.c; path = src/dsp/yuv_mips_dsp_r2.c; sourceTree = ""; }; - 8AD99CC42EA871973374320DEAAC03B2 /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; - 8ADBF4015F18DAC6EFEB1C77982055D7 /* REAValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAValueNode.h; sourceTree = ""; }; + 8ACE9792D970512C40AB945A7A2B9C24 /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = ""; }; + 8AD0F0D4592049D910132658A22E08AB /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; 8ADD9A407E7D7F73D4235E69A029B08D /* Conv.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Conv.cpp; path = folly/Conv.cpp; sourceTree = ""; }; - 8AE5283E41BBB16A0A78B75721D9B299 /* RNSScreenStackHeaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderConfig.h; path = ios/RNSScreenStackHeaderConfig.h; sourceTree = ""; }; 8AE6FF8CF2D49101587FD8DFC0377561 /* TcpConnectionFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpConnectionFactory.h; path = rsocket/transports/tcp/TcpConnectionFactory.h; sourceTree = ""; }; 8AE7CE9F04ED973A0AB63ADFD39B84B0 /* MMKV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKV.h; path = Core/MMKV.h; sourceTree = ""; }; - 8AE85482E2ED181686FFA5A6A79E4AB5 /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; - 8AE9CE8ACD136B91A56AA6E459F4C046 /* RNFBApp-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBApp-prefix.pch"; sourceTree = ""; }; 8AFD581736261F2861B84FE2B7207D9B /* RValueReferenceWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RValueReferenceWrapper.h; path = folly/lang/RValueReferenceWrapper.h; sourceTree = ""; }; 8B03784A0DB6018C0A8088E56A9C06FB /* FIRCLSApplication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSApplication.m; path = Crashlytics/Crashlytics/Components/FIRCLSApplication.m; sourceTree = ""; }; - 8B2A1D080E634E58293E932858D9EA98 /* EXSessionResumableDownloadTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionResumableDownloadTaskDelegate.h; sourceTree = ""; }; - 8B44E2BA237EA657E0BA4B863125FFBB /* Thread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Thread.h; sourceTree = ""; }; + 8B36E70850A67C0E5A32854B477E6DB3 /* Pods-defaults-Rocket.Chat-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-defaults-Rocket.Chat-acknowledgements.markdown"; sourceTree = ""; }; 8B44F205BF9B9D8EE635E4D9543EFAF1 /* ScheduledFrameTransport.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScheduledFrameTransport.cpp; path = rsocket/framing/ScheduledFrameTransport.cpp; sourceTree = ""; }; - 8B5D8681740738084057C0DFFE33BF5E /* Exceptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Exceptions.h; sourceTree = ""; }; - 8B68614B7A954CB2FD54D2A664EC9D67 /* RsaFormatter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RsaFormatter.h; sourceTree = ""; }; - 8B96FBD3F084B25C0C52E865813E4690 /* RNJitsiMeetViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetViewManager.h; path = ios/RNJitsiMeetViewManager.h; sourceTree = ""; }; - 8BAA844162D89BF78534CD2CE919D5B9 /* RCTSha.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSha.m; path = ios/RCTCrypto/RCTSha.m; sourceTree = ""; }; - 8BAA87E670DEE936E5745F8F7A840F85 /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = ""; }; - 8BB0E9E60732C9652D4DD7158C0B974A /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 8BCB4BDAF4E9D1B93951E3D14688C2B8 /* BSG_KSMach_x86_32.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_32.c; sourceTree = ""; }; - 8BCE966DF43AC7CEE300D7041B0D3554 /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; - 8BE4CFE9565176BE22DC0163128A6039 /* BlurEffectWithAmount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlurEffectWithAmount.h; path = ios/BlurEffectWithAmount.h; sourceTree = ""; }; - 8BE6963548902B3345CE6319C1EFC46D /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTI18nManager.h; path = React/CoreModules/RCTI18nManager.h; sourceTree = ""; }; - 8BF5265048C519B0DADD791A7D0EF1A5 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 8BFD3A3A3C98ECBC0BD2A15A481F8D59 /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; + 8B5EA7310EF8CC88530EBDC323C4F645 /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; + 8B7051532588B84E1D86679E3355DAE6 /* RNFetchBlobNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobNetwork.m; path = ios/RNFetchBlobNetwork.m; sourceTree = ""; }; + 8B8B3AB8E994E97D8D8B5A5956B0383F /* BugsnagSessionTrackingPayload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingPayload.h; sourceTree = ""; }; + 8BE1EDF4BEF9F1060858A53C96B4DFD3 /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; + 8BE6ADD1D1BE6811A03AFB71BBB1B55C /* RNFBAnalyticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBAnalyticsModule.m; path = ios/RNFBAnalytics/RNFBAnalyticsModule.m; sourceTree = ""; }; + 8BEA84648DD179648D9C23A7512E5D32 /* RCTGIFImageDecoder.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTGIFImageDecoder.mm; sourceTree = ""; }; 8BFF647876CB7C31171CD68C2B2688E5 /* IPAddressV6.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressV6.h; path = folly/IPAddressV6.h; sourceTree = ""; }; - 8C235F93DCD2E0ACA5D8543E5D889AB1 /* notificationsEvents.md */ = {isa = PBXFileReference; includeInIndex = 1; name = notificationsEvents.md; path = docs/notificationsEvents.md; sourceTree = ""; }; - 8C23BAB539C031E6E4AF31CBBB19EFB1 /* Yoga.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.release.xcconfig; sourceTree = ""; }; + 8C02F3C11B8B542603922016BFECE1B3 /* RCTRequired.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTRequired.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8C1132CCBD5C35499E22128E3F54A07B /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = ""; }; + 8C1679586971637160054AD84FFF9389 /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = ""; }; 8C2BF6D7D29BA84505F3F81A66087F40 /* Singleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Singleton.h; path = folly/Singleton.h; sourceTree = ""; }; 8C32EFB899197ECB36CD52A99530F9D3 /* SSLOptions.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SSLOptions.cpp; path = folly/io/async/SSLOptions.cpp; sourceTree = ""; }; - 8C3B6BCE228748A7C85DC27F26E7C631 /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; 8C3E2A6E6F93E60E397F6C0BBA710BF5 /* libreact-native-cameraroll.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-cameraroll.a"; path = "libreact-native-cameraroll.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 8C3E8B06E49C353852A8F06C8D386711 /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; - 8C598E27AD7DB764D597A04471162067 /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; 8C5A833DB4603F418D6E176A275CB16F /* Core.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Core.h; path = folly/futures/detail/Core.h; sourceTree = ""; }; 8C64D5E749D0C9E115805E9FF856C854 /* UIColor+SDHexString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+SDHexString.h"; path = "SDWebImage/Private/UIColor+SDHexString.h"; sourceTree = ""; }; 8C8477445D129B95B0123B10B04C8B2A /* Uri.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Uri.h; path = folly/Uri.h; sourceTree = ""; }; 8C9EAC92532EB2946D33D8AB3EAAEA74 /* FlipperCppWrapperPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCppWrapperPlugin.h; path = iOS/FlipperKit/CppBridge/FlipperCppWrapperPlugin.h; sourceTree = ""; }; + 8CAFCFDEAC634A6E70497DD50AFA9962 /* UMAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppLoaderProvider.h; path = UMAppLoader/UMAppLoaderProvider.h; sourceTree = ""; }; 8CB4425DEDB29C7C46FA36E77962311C /* GCDAsyncUdpSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDAsyncUdpSocket.h; path = Source/GCD/GCDAsyncUdpSocket.h; sourceTree = ""; }; 8CB5A4488DD9C1D73C063B5AF6E4F7D2 /* SoftRealTimeExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SoftRealTimeExecutor.h; path = folly/executors/SoftRealTimeExecutor.h; sourceTree = ""; }; 8CBCC34DEE63E69D64899C43FD54A785 /* FIRCoreDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsData.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h; sourceTree = ""; }; 8CC9178C366942FD6FF6A115604EAD58 /* libFirebaseCoreDiagnostics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCoreDiagnostics.a; path = libFirebaseCoreDiagnostics.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8CCF2A4D4486F1371EF28C581C24CF65 /* SocketFastOpen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketFastOpen.h; path = folly/detail/SocketFastOpen.h; sourceTree = ""; }; + 8CDE84785C27C0FF357553A775D1308A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 8CE91CAD974A0975205D751C86C23139 /* AtomicHashMap-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicHashMap-inl.h"; path = "folly/AtomicHashMap-inl.h"; sourceTree = ""; }; - 8CF899EFB71F38AEE156A535F6F569AB /* ReactNativeART-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeART-dummy.m"; sourceTree = ""; }; + 8CEC25A51E15793898FD4217D0D0CF0B /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Brands.ttf; path = Fonts/FontAwesome5_Brands.ttf; sourceTree = ""; }; + 8CEF6312A691D6DB22CF8785A46A0F92 /* Bugsnag+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Bugsnag+Private.h"; sourceTree = ""; }; + 8D0A6E6852DDB2645E8D6F3F1EE778C7 /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; 8D0C14BFCFF30C61341F3F7AF0BE77AC /* GlobalExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalExecutor.h; path = folly/executors/GlobalExecutor.h; sourceTree = ""; }; 8D2EA741293DB1E455E1E6953536B516 /* JemallocHugePageAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JemallocHugePageAllocator.h; path = folly/experimental/JemallocHugePageAllocator.h; sourceTree = ""; }; - 8D330BD11C8CA4C1E679116A9B1ECE3F /* RCTHmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHmac.h; path = ios/RCTCrypto/RCTHmac.h; sourceTree = ""; }; - 8D35528CEE3134F3FC43F729A9AD5F01 /* BugsnagConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagConfiguration.m; sourceTree = ""; }; 8D413F8DFA6A6911681D61472C0DC9EF /* GULKeychainUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainUtils.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainUtils.m; sourceTree = ""; }; + 8D4C7E239FF2B59CAAB77967C86A9E05 /* InspectorState.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = InspectorState.cpp; sourceTree = ""; }; 8D689EB828C16EC54FA9EE86DC83F4C7 /* Retrying.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Retrying.h; path = folly/futures/Retrying.h; sourceTree = ""; }; 8D6FA0A067E58BD035A8CB254BF874DD /* backward_references_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_enc.c; path = src/enc/backward_references_enc.c; sourceTree = ""; }; 8D721A4D99E3EBB65E1C7B97E9D78DA4 /* GDTCORUploadPackage_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadPackage_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadPackage_Private.h; sourceTree = ""; }; - 8D8115907DABD52D7AE23BE75B06FBDA /* Rsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Rsa.h; sourceTree = ""; }; 8D8867473DC9435ABC10784A09B021FE /* ExceptionWrapper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ExceptionWrapper.cpp; path = folly/ExceptionWrapper.cpp; sourceTree = ""; }; - 8D95A4792658552AC3DAC799FFAFD857 /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; - 8D99450DAAD42748A2271809EA7BA1CA /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; + 8D9037CD1178822F4B7F101ED0CEE3EA /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; + 8D9321406BF7CDEAA9D3F9279CB455A8 /* FBLazyVector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBLazyVector.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8D994088F51E423A98794D609E35CAF6 /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAsyncLocalStorage.h; path = React/CoreModules/RCTAsyncLocalStorage.h; sourceTree = ""; }; 8DA209082F197D4EEA07EDCF022523BD /* RecordIO-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RecordIO-inl.h"; path = "folly/io/RecordIO-inl.h"; sourceTree = ""; }; - 8DA4BFF194EB97853DBDCD87D0D9573F /* react-native-simple-crypto.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-simple-crypto.debug.xcconfig"; sourceTree = ""; }; + 8DA65FEB8FD5849A062819A27B8A4586 /* Pods-defaults-ShareRocketChatRN-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-defaults-ShareRocketChatRN-umbrella.h"; sourceTree = ""; }; 8DAEA4597188EA7C15AAD0C4B323ECE1 /* vlog_is_on.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vlog_is_on.h; path = src/glog/vlog_is_on.h; sourceTree = ""; }; + 8DC86699D7FF06D9AC2D7824184FFD21 /* RCTJSScriptLoaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSScriptLoaderModule.h; sourceTree = ""; }; 8DD7506B4DC024949AB693811564957D /* muxread.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxread.c; path = src/mux/muxread.c; sourceTree = ""; }; - 8DE187ED16CAF294C0AF77385CBB0D28 /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; - 8DE2C6528E77DA83D88356DB38EE9956 /* RNScreens.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.release.xcconfig; sourceTree = ""; }; + 8DF218DEC123655935FA5B064254A0B8 /* Pods-defaults-NotificationService-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-defaults-NotificationService-acknowledgements.plist"; sourceTree = ""; }; 8DF63376066E2275FF26820B3A512A9B /* libreact-native-webview.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-webview.a"; path = "libreact-native-webview.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 8DF9154B625CDF64054C782A8A018631 /* RCTDevLoadingViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingViewProtocol.h; sourceTree = ""; }; + 8E049A2A502254569AAD1E846716AAF6 /* RNCommandsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCommandsHandler.h; path = RNNotifications/RNCommandsHandler.h; sourceTree = ""; }; 8E2014914A30DCE80206DBE67159FBDD /* ConnectionSet.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionSet.cpp; path = rsocket/internal/ConnectionSet.cpp; sourceTree = ""; }; - 8E21C2D8C67E96DD2E8970568EB72679 /* EXSessionUploadTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionUploadTaskDelegate.h; sourceTree = ""; }; + 8E39A1E9B0FE2BEAF1E900754F72BF8B /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 8E4879361D6DE644A9C5A10461131D73 /* ClockGettimeWrappers.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ClockGettimeWrappers.cpp; path = folly/ClockGettimeWrappers.cpp; sourceTree = ""; }; - 8E61AF000568669A5DFC17B3D86DFB08 /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; + 8E50D0CC014192D8FC11063BA0F86F38 /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; 8E6307960B1F6D0785F439482293F689 /* FrameTransportImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FrameTransportImpl.cpp; path = rsocket/framing/FrameTransportImpl.cpp; sourceTree = ""; }; - 8E79086D0495C334263EF5E5BA0E6674 /* RNLongPressHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNLongPressHandler.m; sourceTree = ""; }; 8E95659D462FBF4F81F91F6EBA259A81 /* UIImage+Metadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Metadata.m"; path = "SDWebImage/Core/UIImage+Metadata.m"; sourceTree = ""; }; 8E9D737AD88368ED3A2F1A00D90666BE /* SDWebImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImage.h; path = WebImage/SDWebImage.h; sourceTree = ""; }; - 8EA2A03A95AE9DA815982AB1C06B501D /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; 8EA8AD2545A0AD14865A826A89AF03BD /* DiscriminatedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DiscriminatedPtr.h; path = folly/DiscriminatedPtr.h; sourceTree = ""; }; - 8EB24A0BECEC37C36E9BC8A90082BA70 /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevSettings.h; path = React/CoreModules/RCTDevSettings.h; sourceTree = ""; }; + 8EACE304750D1CAA3FD4150AB0A736B1 /* Pbkdf2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Pbkdf2.h; sourceTree = ""; }; 8EB6966C2F4A349FF86C237F57F846FA /* TLSDefinitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TLSDefinitions.h; path = folly/io/async/ssl/TLSDefinitions.h; sourceTree = ""; }; 8EB7532A0A3B8B481335D17280B270C0 /* MicroLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroLock.h; path = folly/MicroLock.h; sourceTree = ""; }; 8EBC48E874B62E68701ECFA4FB7CA363 /* GFlags.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GFlags.h; path = folly/portability/GFlags.h; sourceTree = ""; }; + 8EC04E43DE6799F166D0E055BB69C5F7 /* RCTAes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTAes.m; path = ios/RCTCrypto/RCTAes.m; sourceTree = ""; }; 8EC1FD54A43DE7F6BA21F2B42197B5B6 /* STTimerFDTimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = STTimerFDTimeoutManager.h; path = folly/experimental/STTimerFDTimeoutManager.h; sourceTree = ""; }; 8ECE261CF9D06F4361E4A1F9279B98FE /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = SDWebImage/Core/SDWebImageDownloaderOperation.m; sourceTree = ""; }; 8EDA43460C2BF99C5B6F022209E0DA90 /* MMKV_Android.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MMKV_Android.cpp; path = Core/MMKV_Android.cpp; sourceTree = ""; }; 8EE023928DA39891828783C169ACD22E /* SSLContext.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SSLContext.cpp; path = folly/io/async/SSLContext.cpp; sourceTree = ""; }; - 8EE14648D3ABB02A2BE71F10A6166BE8 /* REATransitionAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionAnimation.m; sourceTree = ""; }; - 8EE6376C8941BDF52B1F7B783FEE0632 /* localNotifications.md */ = {isa = PBXFileReference; includeInIndex = 1; name = localNotifications.md; path = docs/localNotifications.md; sourceTree = ""; }; - 8EF30960D09834540CA7308F37BA73AB /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LongLivedObject.h; sourceTree = ""; }; + 8EF4B26C6D38B2DF9388C95BAED0C0C0 /* REAValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAValueNode.m; sourceTree = ""; }; 8F12146FE27561032F8D4B3189081660 /* Parallel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Parallel.h; path = folly/gen/Parallel.h; sourceTree = ""; }; - 8F17C1F45FF49B2A41C15ACE1427B279 /* RNCSafeAreaProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProviderManager.m; path = ios/SafeAreaView/RNCSafeAreaProviderManager.m; sourceTree = ""; }; - 8F1A2EC59B0D17DD1DA13F45E440DAA6 /* RNReanimated.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNReanimated.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8F14D03B87A58FC1FBE0393BB896B286 /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; 8F1AE93585C2CC012BB0818F5C033122 /* FLEXNetworkTransaction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkTransaction.m; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkTransaction.m; sourceTree = ""; }; 8F1DA2CEA3CE04463B0A7359D8CA5609 /* MMKVPredef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKVPredef.h; path = Core/MMKVPredef.h; sourceTree = ""; }; 8F238380E1440E17738C994469B85113 /* F14Map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Map.h; path = folly/container/F14Map.h; sourceTree = ""; }; + 8F2791169A71E8FC83E4BD3E327C47D1 /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; + 8F35897AB268E19269869EBC5812DBE8 /* React-RCTSettings.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.debug.xcconfig"; sourceTree = ""; }; + 8F3D2E2F139A91C05083EABCCFB6A079 /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; 8F3EFD758F22BA8D07980A6B2CCC00D3 /* PropagateConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PropagateConst.h; path = folly/lang/PropagateConst.h; sourceTree = ""; }; 8F490AB1187BEA7440DB7027375B3B9D /* SSLErrors.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SSLErrors.cpp; path = folly/io/async/ssl/SSLErrors.cpp; sourceTree = ""; }; 8F5190191CC94B36436BAC17951E36FC /* FirebaseCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.release.xcconfig; sourceTree = ""; }; - 8F5B310E73AF1F9C6C5E3ACCEDE8B248 /* SafeAreaSpacerViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SafeAreaSpacerViewManager.m; sourceTree = ""; }; + 8F5705395441466192BD91D1B715A784 /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; 8F65F9361F2069CF9E9D751272968DE4 /* libRNGestureHandler.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNGestureHandler.a; path = libRNGestureHandler.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8F6A790A04657521BE6AAFBD73CE25EC /* FBString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBString.h; path = folly/FBString.h; sourceTree = ""; }; 8F8E66A5F4B94E306A243192C02F093F /* Portability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Portability.h; path = folly/futures/Portability.h; sourceTree = ""; }; - 8F9798970E2AE328EE09C560C382F3A7 /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; 8FACAC187B44157FC8DE8BAD258EBE36 /* MemoryFile.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MemoryFile.cpp; path = Core/MemoryFile.cpp; sourceTree = ""; }; - 8FB32F43B205C0EAEF3DDA9EC52D88D4 /* RNReanimated.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.debug.xcconfig; sourceTree = ""; }; 8FB6953130C3692368ABA9E95DDF35CD /* AsyncSSLSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSSLSocket.h; path = folly/io/async/AsyncSSLSocket.h; sourceTree = ""; }; + 8FCFA71E7FBCE4592668FE90C1220BE6 /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobManager.mm; sourceTree = ""; }; 8FD0422E27ABD51A7F0B26BBD184FBA7 /* SysUio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysUio.h; path = folly/portability/SysUio.h; sourceTree = ""; }; - 8FE68C2B61C8E518B8525AFDFA73F37E /* SecureStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SecureStorage.h; path = ios/SecureStorage.h; sourceTree = ""; }; - 90189586E807F5E730636B5D27A4592B /* BSG_KSMach.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach.c; sourceTree = ""; }; 901A7545398A64492BA691CD54AE2FEE /* enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse2.c; path = src/dsp/enc_sse2.c; sourceTree = ""; }; 9029E13E354946400DACF29547B6439D /* RSocketException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketException.h; path = rsocket/RSocketException.h; sourceTree = ""; }; - 9035663F845980CF1FBD35429B14DE4A /* StorageGetters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StorageGetters.h; path = ios/StorageGetters.h; sourceTree = ""; }; 90358B946F0DAB2C5B52E737964E5B0B /* CString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CString.cpp; path = folly/lang/CString.cpp; sourceTree = ""; }; + 903A7619FDE7ED53437A19C410F5B823 /* RNTapHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNTapHandler.h; sourceTree = ""; }; + 90825145145C82A8F4E45D55BA6ED37E /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevMenu.h; path = React/CoreModules/RCTDevMenu.h; sourceTree = ""; }; 909324D1FAB7D91BCC27BF30156B1037 /* SanitizeThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeThread.h; path = folly/synchronization/SanitizeThread.h; sourceTree = ""; }; 90954E16691E854DD0BEA15D429D1F89 /* YogaKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YogaKit-prefix.pch"; sourceTree = ""; }; - 909811E53E8D44B7E9169FA59C7C94E2 /* UMPermissionsInterface-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMPermissionsInterface-dummy.m"; sourceTree = ""; }; 909FE8760C800877AB48CD3590A9B3E6 /* double-conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "double-conversion.cc"; path = "double-conversion/double-conversion.cc"; sourceTree = ""; }; - 90AC79A681674230B298009835678FF5 /* BSG_KSMachHeaders.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachHeaders.h; sourceTree = ""; }; + 90A795B88B61AAA21793461B45F9B037 /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = NativeToJsBridge.cpp; sourceTree = ""; }; + 90BBC45C00FF7D9C89021A4AE0CF792B /* Feather.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Feather.ttf; path = Fonts/Feather.ttf; sourceTree = ""; }; 90BCAF1AC58CAB9DA6A0307E93957A3D /* GULKeychainUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainUtils.h; path = GoogleUtilities/Environment/Private/GULKeychainUtils.h; sourceTree = ""; }; 90C1BBCC13D38BBBE0B1EF10702BDF8A /* UnboundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnboundedQueue.h; path = folly/concurrency/UnboundedQueue.h; sourceTree = ""; }; - 90C9392F71893D253F3FE57198C7DD13 /* RNSScreenStackHeaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStackHeaderConfig.m; path = ios/RNSScreenStackHeaderConfig.m; sourceTree = ""; }; - 90CC474C775301AF947C3A2488C63168 /* react-native-restart.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-restart.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 91040B04501301457F40B23C9888A8B1 /* RNSScreenStack.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStack.m; path = ios/RNSScreenStack.m; sourceTree = ""; }; - 911733C4E482E3EE66641E393F2D7B58 /* React-RCTNetwork.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTNetwork.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 91261588DD3C14ABC2E32BA0750BE0D3 /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; + 90C78CFE1BD35726BCF58E8406235BD2 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 90C7C147085C240CCCF67AB7DD43F1AD /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; + 90E0C5C1D038330241A0A2B207F13D08 /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = ""; }; + 911B3EC5FE59FFBB5939024ADE0D328B /* UMTaskManagerInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.release.xcconfig; sourceTree = ""; }; + 91275ACC299A3B0CAF165A0981B9252D /* Pods-defaults-Rocket.Chat-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-defaults-Rocket.Chat-umbrella.h"; sourceTree = ""; }; 912C4CF3278E3ADA0ED28931B9049835 /* FIRCLSBinaryImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSBinaryImage.m; path = Crashlytics/Crashlytics/Components/FIRCLSBinaryImage.m; sourceTree = ""; }; - 9136A8AC5E5A05C022A9E70195FF1DB5 /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; - 913DE05DCA14C5FAE0C1183F8A19ECEA /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; 9141094EE1ED49F64CDFCC8C60B96156 /* FIRInstallationsStoredItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredItem.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.h; sourceTree = ""; }; 9141D4AE95A883D2B8AEE11992DA5379 /* IPAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IPAddress.cpp; path = folly/IPAddress.cpp; sourceTree = ""; }; - 91480DA002B4797443D2BB99E00AF339 /* ARTSolidColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSolidColor.h; sourceTree = ""; }; - 91514FB908B2693C38C3DF034DC6F0B9 /* RCTSettingsPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSettingsPlugins.mm; sourceTree = ""; }; + 91509E398C1544A50BA682D970B0C426 /* RNCCameraRollManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCCameraRollManager.m; path = ios/RNCCameraRollManager.m; sourceTree = ""; }; 915614263E2FD7EFE2949E5B1BC80034 /* EventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventHandler.h; path = folly/io/async/EventHandler.h; sourceTree = ""; }; 915A7157FB89341848EA3CD577FD6C95 /* PackedSyncPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PackedSyncPtr.h; path = folly/PackedSyncPtr.h; sourceTree = ""; }; 9161C064CF73C4FE3FD901619FBA9101 /* CodingDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CodingDetail.h; path = folly/experimental/CodingDetail.h; sourceTree = ""; }; - 916D3FB53683467EB945DF91372A3978 /* RCTCustomKeyboardViewControllerTemp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomKeyboardViewControllerTemp.m; sourceTree = ""; }; - 916E87C269F0E0ED71FE8D913352EBB6 /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; - 91703D44BBF8ADD79C29397A227C61E1 /* ReactNativeUiLib.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeUiLib.debug.xcconfig; sourceTree = ""; }; - 917324CD6B8261910AE8FB9D5B5D85B9 /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; - 917C78FCEB2E4F1F066CA0F230EA38EB /* RCTNetworkPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkPlugins.h; path = Libraries/Network/RCTNetworkPlugins.h; sourceTree = ""; }; - 91D0007F0B44D87A9E7C67ED68997057 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; - 91D6D95996D2BB96B8997BFA6E3FCD69 /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = ""; }; - 91E991320FA938EA62EAC8C52DE57ACA /* RCTDataRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDataRequestHandler.mm; sourceTree = ""; }; + 916E3D76B71C70231A1C7B52E8287F82 /* BugsnagErrorTypes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagErrorTypes.m; sourceTree = ""; }; + 91A46B091E0CF0D8EC21498BA37BBE37 /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = ""; }; + 91B926ACABA2AE33C652F669C9BF2D8E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 91C32104C640587A2B646FD89013D4BF /* RCTScrollEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollEvent.h; sourceTree = ""; }; + 91E76A46D4AB33E0DEF355E7518F45FE /* RNCPicker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCPicker.release.xcconfig; sourceTree = ""; }; 91F251357B1B861D6BECB35B97540576 /* FirebaseInstallationsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallationsInternal.h; path = FirebaseInstallations/Source/Library/Private/FirebaseInstallationsInternal.h; sourceTree = ""; }; + 91F4CDD7DFE9FE5BC9DB09A0AF6C5080 /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = ""; }; 920403F95D8B596C5E2AFA4076FF68C6 /* SafeAssert.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SafeAssert.cpp; path = folly/lang/SafeAssert.cpp; sourceTree = ""; }; + 92043D3966AF5FC9C59E6083D1D92325 /* BSG_KSCrash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrash.m; sourceTree = ""; }; 920923E2DB170384DABDA9E8EC651393 /* GULNetworkConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkConstants.m; path = GoogleUtilities/Network/GULNetworkConstants.m; sourceTree = ""; }; + 920E913BF836AE4C356DD271D480E02C /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; 921B4C6825D843743335AA43D91F5D25 /* InlineFunctionRef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineFunctionRef.h; path = folly/synchronization/detail/InlineFunctionRef.h; sourceTree = ""; }; - 9221E41E3B641E3AFDCAE327FA325982 /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; + 9227C3987BC3C6437A9CA0B0FE0DC784 /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; 9230371FE9E5F6AED627EE5E80815F4A /* GDTCORPrioritizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORPrioritizer.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORPrioritizer.h; sourceTree = ""; }; + 923755E9F99621CC05524BE00627817C /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = ""; }; 924EC671F2BB84B649EB05BB2E750512 /* upsampling_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse2.c; path = src/dsp/upsampling_sse2.c; sourceTree = ""; }; - 9251FF0392E0D4FF9E67FFB9636A0529 /* react-native-blur.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-blur.debug.xcconfig"; sourceTree = ""; }; 92568FDF28118EA53C8947A0124C1273 /* Utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utility.h; path = folly/Utility.h; sourceTree = ""; }; - 926F89BC8EBC38421D981C9C7D4EBBE3 /* RNNativeViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNNativeViewHandler.h; sourceTree = ""; }; - 928FAACA93E55C346F969D4167D563FF /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 92A49EE85EF12F05E97E56753349B854 /* RNNotificationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationUtils.m; path = RNNotifications/RNNotificationUtils.m; sourceTree = ""; }; + 9284728F7EFB51C94FA364446012C888 /* RNPushKitEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventListener.m; path = RNNotifications/RNPushKitEventListener.m; sourceTree = ""; }; 92A5874C878DFADCA0810C116E060219 /* Flipper-Folly.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Folly.release.xcconfig"; sourceTree = ""; }; 92A76AE2B586872B9AE72F08122BB086 /* HardwareConcurrency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HardwareConcurrency.h; path = folly/system/HardwareConcurrency.h; sourceTree = ""; }; - 92C78AF2D2103A7BB04B8C6C45187F0D /* EXKeepAwake.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXKeepAwake.release.xcconfig; sourceTree = ""; }; + 92BF5CC7B1AC56ADD518B6BBE1ECE380 /* react-native-jitsi-meet.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-jitsi-meet.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 92CAD975CD7A20E93B55EF4E59090F99 /* QBAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetCell.h; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.h; sourceTree = ""; }; 92CF4CA7AA549F6D173DB1F3510DAF47 /* bufferevent_sock.c */ = {isa = PBXFileReference; includeInIndex = 1; path = bufferevent_sock.c; sourceTree = ""; }; 92D2413E4C09A3C32914CC71A085E54D /* Cursor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cursor.h; path = folly/io/Cursor.h; sourceTree = ""; }; - 92F324CB45068E03D0ED4F3EBBD493AC /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; + 92DC2AC6A377D3C7250197995BC60280 /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; + 92E81D540171FAD8E231E1AF4066DB6B /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; 92F409B54F566135765FA15FF2FD4B10 /* Enumerate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Enumerate.h; path = folly/container/Enumerate.h; sourceTree = ""; }; - 93163867AB8AD2240DD1C0CD1472D38A /* RNCSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewManager.m; path = ios/SafeAreaView/RNCSafeAreaViewManager.m; sourceTree = ""; }; + 9327F9C7E8982E0CE3C75DE507864913 /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; 932CD41FA6D89BAE46722550106F1928 /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/lang/Bits.h; sourceTree = ""; }; 932D6A4AAAE1FBAB7EE894FC1698E905 /* CppAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CppAttributes.h; path = folly/CppAttributes.h; sourceTree = ""; }; 932E20379D08F815983A1E168E8F071D /* Semaphore.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Semaphore.cpp; path = folly/portability/Semaphore.cpp; sourceTree = ""; }; - 932FEC745BF2AE9B428890FAEFD77D4A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 93346F13A155B02B6626A101E5194AC7 /* SharedPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedPromise.h; path = folly/futures/SharedPromise.h; sourceTree = ""; }; 9336B954C54F0EF7BD2CC0490E9C3813 /* RSocketServiceHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketServiceHandler.h; path = rsocket/RSocketServiceHandler.h; sourceTree = ""; }; - 933DCB7DEC624B679142B6159AD63A95 /* RNBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBridgeModule.h; path = RNNotifications/RNBridgeModule.h; sourceTree = ""; }; - 934C200D580B365763E277BADD70B777 /* RNCommandsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCommandsHandler.m; path = RNNotifications/RNCommandsHandler.m; sourceTree = ""; }; + 934CDE0CBDE9A0282A8DEC058F6C14E1 /* RCTDevSplitBundleLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevSplitBundleLoader.h; path = React/CoreModules/RCTDevSplitBundleLoader.h; sourceTree = ""; }; 9353040D7264C12287CD0206AAA0DA10 /* Indestructible.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Indestructible.h; path = folly/Indestructible.h; sourceTree = ""; }; - 935392AAAB676B4AA578BD46F0461BF9 /* RCTWebSocketExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTWebSocketExecutor.mm; sourceTree = ""; }; + 9363660B9A66C416940A5ED430891623 /* FBReactNativeSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBReactNativeSpec.h; path = FBReactNativeSpec/FBReactNativeSpec.h; sourceTree = ""; }; 937111731B8DBCD33C8B4E822A0195D2 /* SKButtonDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKButtonDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKButtonDescriptor.h; sourceTree = ""; }; 9372AC00A3DB1B500E10C1F4B72DB57E /* FIRCLSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSLogger.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSLogger.h; sourceTree = ""; }; - 937390C7D5C482A8CBDB82C6853E5501 /* RNNotificationCenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenter.h; path = RNNotifications/RNNotificationCenter.h; sourceTree = ""; }; - 93765199AE00A9873ED2776D26CD161C /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; - 9377E2FB9CED876BBFEDBB223F080BD8 /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; 9388BB3EF820E441837B5478F65B29FC /* Ordering.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Ordering.h; path = folly/lang/Ordering.h; sourceTree = ""; }; - 93A83A25A4D2C58B976438003D4060AC /* RNSScreenStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStack.h; path = ios/RNSScreenStack.h; sourceTree = ""; }; - 93B7AAFF188FC26B798B45AFEEB0B3DF /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 939CB389DABA0DEE02F6290050EF69F1 /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = ""; }; + 939D19E9FA261043EA8E6CF511D9E404 /* RNCMaskedView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCMaskedView.release.xcconfig; sourceTree = ""; }; + 93A57444DDE85F66B2D236FA286C7281 /* EXAV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAV-dummy.m"; sourceTree = ""; }; + 93BA17DDE6DD075837649508F5724300 /* React-jsi.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsi.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 93BBACFC282DB3608E7443B4F8F92F19 /* REACondNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACondNode.m; sourceTree = ""; }; + 93C39DD0F16BF1BE85C726C64342D0CA /* BugsnagAppWithState+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagAppWithState+Private.h"; sourceTree = ""; }; 93C97B60047255164EA4F8718B8EC42B /* near_lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = near_lossless_enc.c; path = src/enc/near_lossless_enc.c; sourceTree = ""; }; 93D2A241AFA45A6CEEA2FA5F519FF56E /* libwebp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "libwebp-dummy.m"; sourceTree = ""; }; - 93D62110C771F401145F6AE0AA0561CA /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; - 93DAA541CC6780D4B35C40AEE7CC080B /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; 93DF72D593084C73110B41D3BABC0BC0 /* SDImageIOAnimatedCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoder.h; path = SDWebImage/Core/SDImageIOAnimatedCoder.h; sourceTree = ""; }; - 93F2F98EDE5CA6504A7B88517DEF1728 /* RNCAsyncStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAsyncStorage.m; path = ios/RNCAsyncStorage.m; sourceTree = ""; }; 93F5D0BEA9EEDC395520623630745A92 /* FingerprintPolynomial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FingerprintPolynomial.h; path = folly/detail/FingerprintPolynomial.h; sourceTree = ""; }; 93F6814888179AE89637262451E46FA8 /* hermes.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = hermes.framework; path = destroot/Library/Frameworks/iphoneos/hermes.framework; sourceTree = ""; }; + 93FC45CC18820A048275DA3BBE31FD89 /* REAEventNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventNode.m; sourceTree = ""; }; + 940D3485BDD3CAB77D10FE84E6AEE696 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; 9411A527A4DE7B8E9CA14E97E7DDA16C /* GDTCORDataFuture.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORDataFuture.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORDataFuture.m; sourceTree = ""; }; 942912A1EA0A7436F2FDD973903DF116 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Sources/Private/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; - 942FA1F71D2B417268A86A4432668C5A /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = ""; }; - 94412BA51615AFFFFA371F963285E715 /* RCTAppState.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppState.mm; sourceTree = ""; }; 944C0D1EFE3AB1A70D936F9AB2715AC3 /* SKApplicationDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKApplicationDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKApplicationDescriptor.h; sourceTree = ""; }; - 944FA174EF87D2543731F5E05EF8AE7B /* RNFetchBlobReqBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobReqBuilder.m; path = ios/RNFetchBlobReqBuilder.m; sourceTree = ""; }; - 949B140FBE75F86A22077BDC59663BF9 /* Pods-ShareRocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ShareRocketChatRN-resources.sh"; sourceTree = ""; }; - 94B5C3F90AB88ABD239EBCA2880336B6 /* Color+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Color+Interpolation.h"; sourceTree = ""; }; + 948A4B74B6634810FD7152CB3A62A612 /* subscription.md */ = {isa = PBXFileReference; includeInIndex = 1; name = subscription.md; path = docs/subscription.md; sourceTree = ""; }; + 94A96617407F7DDFF6A60E846D25757B /* BSGEventUploadFileOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGEventUploadFileOperation.m; sourceTree = ""; }; 94B9103E88D643C46E50A2568D73798F /* DoubleConversion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DoubleConversion-prefix.pch"; sourceTree = ""; }; - 94D1D16999BD3D586617610D38C1ABE4 /* React-jsinspector.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.release.xcconfig"; sourceTree = ""; }; + 94BE9A0B11F10DD46B5AEFD4178E116F /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; + 94D9587D0AA314F54749BAC8F4AD0D86 /* BugsnagPluginClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagPluginClient.h; sourceTree = ""; }; + 94DB5F79A325AE3462321F5B421B3675 /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; + 94F84EA98D279AB2D0F27FD2F47507A5 /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; + 9505DA46341E16895E696AA8B1B082ED /* READebugNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = READebugNode.m; sourceTree = ""; }; 950A7E73159E8A8BE072290647F86D8C /* FrameFlags.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameFlags.h; path = rsocket/framing/FrameFlags.h; sourceTree = ""; }; - 9515691705DAF49B870456AFFCB1D00A /* FontAwesome.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome.ttf; path = Fonts/FontAwesome.ttf; sourceTree = ""; }; - 953C90A9AFB9B9CC191BAE4EBC118C45 /* BSG_KSDynamicLinker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSDynamicLinker.h; sourceTree = ""; }; + 952F961F3F5395DE74B427AED838B647 /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; + 95409ABF25D42C8C7A43CEB383BB217A /* REACallFuncNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACallFuncNode.h; sourceTree = ""; }; 955FF74652B28A8FB2FF9E3F715C9545 /* RValueReferenceWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RValueReferenceWrapper.h; path = folly/lang/RValueReferenceWrapper.h; sourceTree = ""; }; 9572A0E17A29F17FD5B5BA89C0AB5DE0 /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = src/glog/logging.h; sourceTree = ""; }; - 95851AA130AB2C88B78B61EDEC8AC6D3 /* BugsnagUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagUser.h; sourceTree = ""; }; + 957BDDA4643CD66E7752B7C7F1E09ECC /* react-native-jitsi-meet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-jitsi-meet-dummy.m"; sourceTree = ""; }; + 95886B2AC7494B540A28ECCD92E6914D /* BSG_KSMach_x86_32.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_32.c; sourceTree = ""; }; + 9591C5298AF54D3E53DC9613C0E2ED57 /* UMReactNativeAdapter.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.release.xcconfig; sourceTree = ""; }; + 959538869682DE8F5F8416B71AFB8690 /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = ""; }; + 95996D377A3676FC12259D965827644A /* TurboModulePerfLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TurboModulePerfLogger.h; sourceTree = ""; }; 959DD080ECCEA10F66B1BC358DD0AD32 /* upsampling_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_mips_dsp_r2.c; path = src/dsp/upsampling_mips_dsp_r2.c; sourceTree = ""; }; - 95A407F587675F50C235A231D771F147 /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; + 95A1C64F658C55F9743F8E5CECFBC7CF /* EXAppleAuthentication.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppleAuthentication.debug.xcconfig; sourceTree = ""; }; 95ADE5F1DC7D299FB47B126861411FA9 /* BasicTransportCertificate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BasicTransportCertificate.h; path = folly/io/async/ssl/BasicTransportCertificate.h; sourceTree = ""; }; - 95D00A3E66C847FBED5DC0B6073EB67F /* Pods-defaults-RocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-defaults-RocketChatRN-acknowledgements.plist"; sourceTree = ""; }; + 95C952DEB1AD9F4915CC2757BC264465 /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = ""; }; 95D457B73EC18B3EE005F27734E9C2EC /* FBLPromise+Wrap.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Wrap.m"; path = "Sources/FBLPromises/FBLPromise+Wrap.m"; sourceTree = ""; }; - 95E0C7FCF12FCDB434C7EF04710EB0E3 /* EXAVPlayerData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAVPlayerData.m; path = EXAV/EXAVPlayerData.m; sourceTree = ""; }; + 95E467C2CA3EAB1FECEF9E2AD4F9B632 /* REAParamNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAParamNode.m; sourceTree = ""; }; 960AFA97C6DCB819D930DEC1EA15BF49 /* GULUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULUserDefaults.h; path = GoogleUtilities/UserDefaults/Private/GULUserDefaults.h; sourceTree = ""; }; - 960E6CB59CE9718F259B725D0F6285C0 /* RNGestureHandlerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerManager.h; path = ios/RNGestureHandlerManager.h; sourceTree = ""; }; + 960B662DBF07CC6F9D678776B42D2D22 /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; 96137BB348C0ED1939CB13E295939E4C /* Memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Memory.h; path = folly/portability/Memory.h; sourceTree = ""; }; 961AD9B86A4FFB2F74738BAF22D70B68 /* backward_references_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backward_references_enc.h; path = src/enc/backward_references_enc.h; sourceTree = ""; }; 9621F4B0A44623E984DC190DDF0A9A4B /* libPods-defaults-RocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-defaults-RocketChatRN.a"; path = "libPods-defaults-RocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 9622CBA20F72B0317AA01CD58030645E /* ObservableConcatOperators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservableConcatOperators.h; path = yarpl/observable/ObservableConcatOperators.h; sourceTree = ""; }; - 9631C808EC1FCCDB5A6359AEBEF0CEC5 /* RNCSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSliderManager.h; path = ios/RNCSliderManager.h; sourceTree = ""; }; - 9633D58929A8EABB54152B6EE014840A /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = ios/QBImagePicker/QBImagePicker/es.lproj; sourceTree = ""; }; + 96241B9F1CFBD84D1ACCFE24CA7634CF /* RNConfigReader.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNConfigReader.debug.xcconfig; sourceTree = ""; }; 96467C509C117597F95EFD14D4F49097 /* WarmResumeManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WarmResumeManager.cpp; path = rsocket/internal/WarmResumeManager.cpp; sourceTree = ""; }; - 964D36E288EAC7EC1FB9CCA4F6426EB8 /* RNDateTimePicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDateTimePicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 964ED3AFCF1FA95EB0D582FF7DD71626 /* http-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "http-internal.h"; sourceTree = ""; }; - 96541F00E230E1C55C513E2FBEE5AE99 /* RCTCustomInputControllerTemp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomInputControllerTemp.h; sourceTree = ""; }; 9660208B0CEFAE20C259097910CE9787 /* SmallLocks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SmallLocks.h; path = folly/synchronization/SmallLocks.h; sourceTree = ""; }; 9661B1C4A2B56C984ADF56018468F19E /* Flipper.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Flipper.debug.xcconfig; sourceTree = ""; }; 9665E96A1951706C8EAE0C847E4E7288 /* SKBufferingPlugin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKBufferingPlugin.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKBufferingPlugin.mm; sourceTree = ""; }; - 9672E302D45285CA795587F44D6DB174 /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPackagerConnection.mm; sourceTree = ""; }; + 9683279A137FDD94EBCEC25771038803 /* RNCMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedView.h; path = ios/RNCMaskedView.h; sourceTree = ""; }; 96971B5D8949E96B552B0C7CFBD06F72 /* SysMman.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysMman.h; path = folly/portability/SysMman.h; sourceTree = ""; }; + 96A1B13CFB04DAA12DE0D1E20735CAC2 /* Pods-defaults-ShareRocketChatRN.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-defaults-ShareRocketChatRN.modulemap"; sourceTree = ""; }; 96A65951DF1FD441212C181B834813A3 /* FIRCLSProfiling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSProfiling.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSProfiling.h; sourceTree = ""; }; - 96BE05BCF5DED1CFEE27DE983EF021BA /* EXSessionTaskDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionTaskDispatcher.m; sourceTree = ""; }; 96BF2D34B47DCE54AA42D94CBA7CA081 /* Access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Access.h; path = folly/container/Access.h; sourceTree = ""; }; 96C961D244E629D8F1928A1FD8230EC6 /* SDAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImage.h; path = SDWebImage/Core/SDAnimatedImage.h; sourceTree = ""; }; 96CFDA90AB401FBA7E4CFF0BEF711DF7 /* GDTCORPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORPlatform.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORPlatform.m; sourceTree = ""; }; + 96E43DC63C396465E31AA7FE8FC7A14B /* Pods-defaults-ShareRocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-defaults-ShareRocketChatRN.release.xcconfig"; sourceTree = ""; }; + 96E4461D9DEA1D2C1CFFB0E9C5177F3B /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = ""; }; 96E65B84F0413A12D554FE770DB991AD /* HardwareConcurrency.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = HardwareConcurrency.cpp; path = folly/system/HardwareConcurrency.cpp; sourceTree = ""; }; - 96EC8C9375C6ADC92D478742206AAC57 /* RCTVibrationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibrationPlugins.h; path = Libraries/Vibration/RCTVibrationPlugins.h; sourceTree = ""; }; 96FF04602D313A035A686E37DB0AD9DD /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Sources/Private/FIRLogger.h; sourceTree = ""; }; 97091FD93643FE8D36CD583C5E548E92 /* IOExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOExecutor.h; path = folly/executors/IOExecutor.h; sourceTree = ""; }; + 971CD715DCCACC85D5AB2AD820C9B7A7 /* BSG_KSCrashC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashC.c; sourceTree = ""; }; 9728A1D78B6345338374226E0BB3DB05 /* ThreadLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLock.h; path = Core/ThreadLock.h; sourceTree = ""; }; - 9738B24602054161126702D51638C85D /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = ""; }; + 972A33A68333AB5F1158E2DD2B039E97 /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = ""; }; + 9730C5179AB23C55654E2F7644F4C25F /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevLoadingView.h; path = React/CoreModules/RCTDevLoadingView.h; sourceTree = ""; }; 973D4FEE9B301EE619FA03B31A4F2933 /* SysMembarrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysMembarrier.h; path = folly/portability/SysMembarrier.h; sourceTree = ""; }; 97443E49951B2C31C21D22A095CED0A6 /* GULLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULLogger.m; path = GoogleUtilities/Logger/GULLogger.m; sourceTree = ""; }; - 974A272B4732005D116BD3E0A4F87873 /* REANode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANode.m; sourceTree = ""; }; 974A52EA9574697A6D4F84ABF5566E6E /* Stdlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Stdlib.h; path = folly/portability/Stdlib.h; sourceTree = ""; }; + 975AFAA25345A61144FCBD53F33CA621 /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSBigString.cpp; sourceTree = ""; }; 9761F3CC3B223CD48DD9834FAD2DB33B /* AsymmetricMemoryBarrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsymmetricMemoryBarrier.cpp; path = folly/synchronization/AsymmetricMemoryBarrier.cpp; sourceTree = ""; }; - 9769A729D5A7D6BA48AB95C69FF68B2D /* React-RCTSettings.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.release.xcconfig"; sourceTree = ""; }; - 976CE262CF7500DF35A437CCAF94472A /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log.cpp; path = yoga/log.cpp; sourceTree = ""; }; - 9782BA2C2185A904892BA6E666886CC7 /* RCTConvert+ART.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+ART.h"; path = "ios/RCTConvert+ART.h"; sourceTree = ""; }; 978BA8A0B9691E1FD6D7C40F23C87A4E /* fixed-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fixed-dtoa.h"; path = "double-conversion/fixed-dtoa.h"; sourceTree = ""; }; - 97AC38E821A76BC80DECB5E78AC5FF76 /* react-native-simple-crypto-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-simple-crypto-umbrella.h"; sourceTree = ""; }; + 97AD5CA8E943FBEDCED81FAA61E6D950 /* RNFastImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFastImage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 97B763A074EB5BD7EAE91979A432F6AC /* RCTEventDispatcher.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTEventDispatcher.mm; sourceTree = ""; }; 97B8EA718F1DDCEEF99ACC9109F2026F /* FlipperState.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FlipperState.cpp; path = xplat/Flipper/FlipperState.cpp; sourceTree = ""; }; 97D8DC1607DCE53508DE8A2DF929757A /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = "double-conversion/strtod.h"; sourceTree = ""; }; + 97E794BA33DA6947E9A38E96DC57959A /* UMImageLoaderInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.release.xcconfig; sourceTree = ""; }; 97E927B66185AC875950011515566C7E /* Portability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Portability.h; path = folly/Portability.h; sourceTree = ""; }; + 97EEA106B8FDE670E90842205BDC5135 /* react-native-netinfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-netinfo-dummy.m"; sourceTree = ""; }; 97F0CE7DDECCEC0566F9F9C3954CF19F /* json_patch.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_patch.cpp; path = folly/json_patch.cpp; sourceTree = ""; }; - 97FC0E86A82E771EF813BED9D547B22A /* RNBootSplash-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNBootSplash-prefix.pch"; sourceTree = ""; }; + 9805FAF985C740CD5AF04BB3DC67F701 /* RNRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNRotationHandler.h; sourceTree = ""; }; 981334D1B99AA550C5C38286FB70EB92 /* GDTCOREvent_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCOREvent_Private.h; sourceTree = ""; }; 98173C30AAAEB60BB67F719BDE999FA1 /* picture_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_enc.c; path = src/enc/picture_enc.c; sourceTree = ""; }; - 981DC2860DE747E38500C6BA891401CF /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = ""; }; - 981EA095E7BCB9C0D4215303F6BB5A4D /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; 9827822A10AE401C50A145D0783F598F /* picture_csp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_csp_enc.c; path = src/enc/picture_csp_enc.c; sourceTree = ""; }; 9833E76FD72AA77BD04299DE95E2078A /* HHWheelTimer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = HHWheelTimer.cpp; path = folly/io/async/HHWheelTimer.cpp; sourceTree = ""; }; - 983CD0BB0F40B6ACB4F5C9A11C3186E1 /* BugsnagReactNative.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.release.xcconfig; sourceTree = ""; }; - 983F9DF2C050AFCA94F0CA8E2E8669DC /* RNFetchBlobNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobNetwork.m; path = ios/RNFetchBlobNetwork.m; sourceTree = ""; }; + 9846051E8163DD05F07AEFC5926019F2 /* ARTPattern.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTPattern.m; sourceTree = ""; }; 984F1BFA478C3F2BB470222B51A85C46 /* SDAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageView.m; path = SDWebImage/Core/SDAnimatedImageView.m; sourceTree = ""; }; 9881046FDD9C36E6167F04A001FF345A /* FIRErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrorCode.h; path = FirebaseCore/Sources/Private/FIRErrorCode.h; sourceTree = ""; }; - 98889911AB084255DF75BAB3DD150DE5 /* RNCAsyncStorage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCAsyncStorage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 988D1D5D5262936DBBB6D4BF4F110318 /* SysSyscall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysSyscall.h; path = folly/portability/SysSyscall.h; sourceTree = ""; }; - 98A731332702597251BBD92A7E2EE9E7 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; 98B00F71EF99AF2042883F39A85341E1 /* FIRCLSURLSessionTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionTask.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionTask.h; sourceTree = ""; }; 98B3C00ED1A48B9AFDFA6A37D768C053 /* FBLPromise+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Testing.h"; path = "Sources/FBLPromises/include/FBLPromise+Testing.h"; sourceTree = ""; }; 98C50B476070D8672516720D0DC6473F /* FKUserDefaultsSwizzleUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKUserDefaultsSwizzleUtility.h; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsSwizzleUtility.h; sourceTree = ""; }; 98C8C0BAD902465510161FDA9A574223 /* Stdio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Stdio.h; path = folly/portability/Stdio.h; sourceTree = ""; }; 98CA4C533F56EA8774B37B7E5CFD6E7A /* ScheduledRSocketResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledRSocketResponder.h; path = rsocket/internal/ScheduledRSocketResponder.h; sourceTree = ""; }; 98D20082443CB51499254D58AA1B64FD /* FIRCLSSymbolicationOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSymbolicationOperation.m; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSymbolicationOperation.m; sourceTree = ""; }; - 98D4659209D7A8E6E0AED3B955D2C667 /* RNFBVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBVersion.m; path = ios/RNFBApp/RNFBVersion.m; sourceTree = ""; }; - 98DADDEB2F514FB1D31D46C80DB26DE7 /* RNRootViewGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRootViewGestureRecognizer.h; path = ios/RNRootViewGestureRecognizer.h; sourceTree = ""; }; - 98F6399D54E8D67F9EF4BBCA4F4112BB /* EXPermissions.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.release.xcconfig; sourceTree = ""; }; - 98F920827825889ADBC528A3830BCEA9 /* FBReactNativeSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBReactNativeSpec.h; path = FBReactNativeSpec/FBReactNativeSpec.h; sourceTree = ""; }; - 9903834EFC5CC8654040685802619723 /* RNBackgroundTimer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBackgroundTimer.m; path = ios/RNBackgroundTimer.m; sourceTree = ""; }; + 98DAAEA31AF8159C03E061644FC4BB80 /* UMPermissionsInterface-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMPermissionsInterface-prefix.pch"; sourceTree = ""; }; + 98E57AADE4A8D369C30FBB97722F8FB5 /* RNJitsiMeetViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetViewManager.h; path = ios/RNJitsiMeetViewManager.h; sourceTree = ""; }; + 98F5638F8036BD901269E11FB8559946 /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 98F664E7D76100C647C47911BF525392 /* BSG_KSCrashContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashContext.h; sourceTree = ""; }; 990A00178717052F257E58B288D15A84 /* FiberIOExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FiberIOExecutor.h; path = folly/executors/FiberIOExecutor.h; sourceTree = ""; }; 9915685C01F70A36E07105E093943607 /* Request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Request.h; path = folly/io/async/Request.h; sourceTree = ""; }; + 992A830F43307EFD1D876DEB3FA56EB6 /* RNFBRCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBRCTEventEmitter.m; path = ios/RNFBApp/RNFBRCTEventEmitter.m; sourceTree = ""; }; 992BE0FF9C4E7E0A4E2106380FB6AEC1 /* FrameType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameType.h; path = rsocket/framing/FrameType.h; sourceTree = ""; }; - 995123302D746D255CA852321EFDA0FC /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTStatusBarManager.h; path = React/CoreModules/RCTStatusBarManager.h; sourceTree = ""; }; + 992D41F7A137097278CF3EDB63F141AE /* LNAnimatorTemp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNAnimatorTemp.h; sourceTree = ""; }; + 992DD574BFA6E0642113BB1C117173AB /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; + 9942BE296BDC9338E1E5B26D1CFF0853 /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; + 9950AA3B543B1E92A2B0EE75F9A5621F /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; + 995FB2978F4C016731E2A206E0EB8447 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 996F677F0C4D75E0BA8139D2D0B4FF19 /* RNCommandsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCommandsHandler.m; path = RNNotifications/RNCommandsHandler.m; sourceTree = ""; }; + 9973427BC849E103A860FA21364BE7BB /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = ""; }; 997BBF1F370A66F6EAD822AE43E3E6F0 /* RSocketTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketTransport.h; path = rsocket/transports/RSocketTransport.h; sourceTree = ""; }; 998986BB30812E936C369038CBD6799A /* SKHighlightOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKHighlightOverlay.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitHighlightOverlay/SKHighlightOverlay.h; sourceTree = ""; }; + 99A6421B152D69680B967E3A392F1F99 /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; 99AE7D08E695C2160D38F69BBEDC8E2F /* AtomicUnorderedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUnorderedMap.h; path = folly/AtomicUnorderedMap.h; sourceTree = ""; }; - 99B4E282439969483EF0BDCB2C15EC8E /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; + 99B7A76C5FDAC071619973B54DEF69DE /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; 99BC38F149A766A810843A66109219B8 /* SDWebImageDownloaderDecryptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderDecryptor.h; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.h; sourceTree = ""; }; 99BE2F500519335CDB65E84AFD50FDF5 /* FrameFlags.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FrameFlags.cpp; path = rsocket/framing/FrameFlags.cpp; sourceTree = ""; }; - 99C00ABE78361BEB9CC0C172FD927951 /* EXKeepAwake.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXKeepAwake.h; path = EXKeepAwake/EXKeepAwake.h; sourceTree = ""; }; 99CDE89A9ABDA7BAFFE28A851DB55DB9 /* FIRCoreDiagnostics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnostics.m; path = Firebase/CoreDiagnostics/FIRCDLibrary/FIRCoreDiagnostics.m; sourceTree = ""; }; - 99D43C29EC85F7083357AEA61945D755 /* EXAV.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAV.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 99D5CD245388DC76AAEF6E1E351A90ED /* libFlipper-Folly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-Folly.a"; path = "libFlipper-Folly.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 99D63D6DE4959BB4E1B63AC9F0799982 /* FIRCLSThreadState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSThreadState.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSThreadState.h; sourceTree = ""; }; - 99D7200E4ABF689DF78C94B4A6B70A6C /* BugsnagHandledState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagHandledState.m; sourceTree = ""; }; - 99FC832F344DC4E3F711C390B32F2F0D /* ARTLinearGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTLinearGradient.h; sourceTree = ""; }; + 99E3822B579F39D825E4D810F4C4351F /* RCTConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConstants.m; sourceTree = ""; }; 9A04AB43580B7A96DD95CED1945FA3D0 /* UICollectionView+SKInvalidation.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "UICollectionView+SKInvalidation.mm"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UICollectionView+SKInvalidation.mm"; sourceTree = ""; }; 9A0DB699138E7ADD7B50FBB90AF68DDE /* FIRCLSHost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSHost.h; path = Crashlytics/Crashlytics/Components/FIRCLSHost.h; sourceTree = ""; }; + 9A28152C927DBE33FC159F237838CA4F /* BSGFileLocations.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGFileLocations.m; sourceTree = ""; }; 9A418F3C1CC849FB2AF5C76D1273ABA1 /* color_cache_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = color_cache_utils.h; path = src/utils/color_cache_utils.h; sourceTree = ""; }; + 9A50EA4CF7F6CC29ED52C30E2B562A6A /* UMAppLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMAppLoader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9A52031D01DDD2FCD2A068151409B973 /* SafeAreaSpacerViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SafeAreaSpacerViewManager.h; sourceTree = ""; }; + 9A61FEF3F9A3004BC803F9B58AF3184B /* RCTImageURLLoaderWithAttribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoaderWithAttribution.h; path = Libraries/Image/RCTImageURLLoaderWithAttribution.h; sourceTree = ""; }; 9A633EE03144C9F1454429E6F8B2C160 /* OpenSSLVersionFinder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLVersionFinder.h; path = folly/ssl/OpenSSLVersionFinder.h; sourceTree = ""; }; + 9A7DC932EBFEA8EAD11B91E04EC2CE30 /* REABezierNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABezierNode.h; sourceTree = ""; }; 9A8C62FBCBEE317E39083D803E58E73E /* SKTouch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKTouch.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTouch.h; sourceTree = ""; }; - 9AA97DEE8DA56377574E6FF78AB113D6 /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; - 9ACD9FC40D3DCAD6A8D1F238D62B668F /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSourceCode.h; path = React/CoreModules/RCTSourceCode.h; sourceTree = ""; }; - 9AD51F3BD4B05027FEAB1550BB1E9136 /* REAEventNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventNode.m; sourceTree = ""; }; 9AE40EC74114F2FFBD6CF82143D0C4A4 /* IOThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IOThreadPoolExecutor.cpp; path = folly/executors/IOThreadPoolExecutor.cpp; sourceTree = ""; }; - 9AFBFF50E2E566604FDF32D5D2F1CD7B /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = ""; }; - 9AFEA62D8AC734CEDFAB8C2360CA6080 /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = ""; }; - 9B0409D58538128F1D6632234387E1AB /* RNCSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSlider.h; path = ios/RNCSlider.h; sourceTree = ""; }; - 9B1A183613CBA0C90C910C9D98A739A2 /* RuntimeAdapter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = RuntimeAdapter.cpp; sourceTree = ""; }; - 9B2EACCC7B9C09E722346AD67F4A8713 /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; + 9AE69C4075F10FB677FDB33EC3800CD5 /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = ""; }; + 9AEB5D60F61E5CFCED85D70717DD27A5 /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = ios/QBImagePicker/QBImagePicker/es.lproj; sourceTree = ""; }; 9B408B54017E7CCE97492E0497ADAAD3 /* DynamicConverter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicConverter.h; path = folly/DynamicConverter.h; sourceTree = ""; }; 9B421A26D9964D79519F4A35E88647A2 /* KeepaliveTimer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = KeepaliveTimer.cpp; path = rsocket/internal/KeepaliveTimer.cpp; sourceTree = ""; }; + 9B45635ECCFEB9E3F7E1FB505F12D162 /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; + 9B49A76A77062C6D3136B4DCCE6D2A60 /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = ""; }; + 9B4E35C0E3E457D89A4DF2403BB432CA /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; + 9B513B2654AB7DD415E90B2561132369 /* BugsnagEndpointConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagEndpointConfiguration.h; sourceTree = ""; }; 9B5CC4A2C693BCADBAABAD140462B77B /* RSocketStateMachine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketStateMachine.h; path = rsocket/statemachine/RSocketStateMachine.h; sourceTree = ""; }; - 9B622BBDDE413F5F8AE95CA69669A227 /* RNBridgeModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBridgeModule.m; path = RNNotifications/RNBridgeModule.m; sourceTree = ""; }; + 9B679B86B635682E764C49E591251FBD /* RNGestureHandlerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerManager.h; path = ios/RNGestureHandlerManager.h; sourceTree = ""; }; 9B691F81785E6B2010292AA5926E20DD /* ThreadLocalDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLocalDetail.h; path = folly/detail/ThreadLocalDetail.h; sourceTree = ""; }; 9B7ACB1294CE1C97BF683629EF603AB7 /* ExecutorWithPriority-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ExecutorWithPriority-inl.h"; path = "folly/executors/ExecutorWithPriority-inl.h"; sourceTree = ""; }; - 9B827111813C069F8F6955AFD74F4A1F /* EXAV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAV.m; path = EXAV/EXAV.m; sourceTree = ""; }; - 9B92B07A63CA3319D23692AA38449C1A /* ReactNativeART.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeART.release.xcconfig; sourceTree = ""; }; - 9B997DCAF1F85412031CF6D4A3BD25D8 /* REACallFuncNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACallFuncNode.m; sourceTree = ""; }; + 9BA3DE51E17B480EAFB1A0B28D2E7932 /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; 9BBA1BDA6B1594B64653392F0F7A2436 /* ThreadedRepeatingFunctionRunner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadedRepeatingFunctionRunner.h; path = folly/experimental/ThreadedRepeatingFunctionRunner.h; sourceTree = ""; }; 9BBE384FEBA7D7ECA92B70B0FA235097 /* FIRCLSUnwind.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSUnwind.c; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind.c; sourceTree = ""; }; 9BC77CD967B59458E50857129DF0EB80 /* ScheduledSingleSubscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScheduledSingleSubscription.cpp; path = rsocket/internal/ScheduledSingleSubscription.cpp; sourceTree = ""; }; - 9BD07A336F409A29BE9C79ABFEAFC38E /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; 9BD3EAC8DAC65366C406E05DB227732B /* File.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = File.h; path = folly/gen/File.h; sourceTree = ""; }; - 9BD62FD1EAF86D42FBFFBD61036B233D /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; + 9BEC1860957320D1CF2C90CF1F9595DB /* RNBootSplash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBootSplash.m; path = ios/RNBootSplash.m; sourceTree = ""; }; 9BF2FD70B586966F632DE0F4C3452BC4 /* SysUio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysUio.h; path = folly/portability/SysUio.h; sourceTree = ""; }; - 9C119EBF81B58952DC798DC09A775C6E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 9BF3A3327FE1B27155736ADEAAC66603 /* Shared.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Shared.m; sourceTree = ""; }; + 9BFF8F1D045AC3CDC40AF33C85E5F676 /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; + 9C0A981168E1E4D33DE99B228E8298F7 /* BSG_KSSignalInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSignalInfo.h; sourceTree = ""; }; + 9C139F30664C2AC9E917F2E99A29FE32 /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; 9C1ADDEEF0CD70CEAF9F4B1C55F0E0D4 /* SDAnimatedImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "SDAnimatedImageView+WebCache.m"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.m"; sourceTree = ""; }; - 9C1BE94B78666F93E3483BC08C0CD380 /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; - 9C53428765AA8389817A98573FBD13E8 /* REAUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAUtils.h; path = ios/REAUtils.h; sourceTree = ""; }; + 9C2FF72F433B5B816D4642C6E2EEAB91 /* RCTRsa.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTRsa.m; path = ios/RCTCrypto/RCTRsa.m; sourceTree = ""; }; + 9C470A77658DF10376C0D0C59415D547 /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; 9C5FEF15984208664BD1D21E2627057A /* UIImage+MemoryCacheCost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MemoryCacheCost.h"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.h"; sourceTree = ""; }; 9C8354DC313E0CA6CCE6E30B455DCCB4 /* TimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimeoutManager.h; path = folly/io/async/TimeoutManager.h; sourceTree = ""; }; - 9C88E2F9B45323A6B5B3E908D52B8633 /* UMPermissionsInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.debug.xcconfig; sourceTree = ""; }; - 9C8B2C19E22DA707C9AB8B69169B49CF /* RNCSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewLocalData.h; path = ios/SafeAreaView/RNCSafeAreaViewLocalData.h; sourceTree = ""; }; + 9C9D12209F331BCF7D802934F1175076 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 9CA4C13C6B5E00891719B5CBCDD2123D /* Event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Event.h; path = folly/portability/Event.h; sourceTree = ""; }; - 9CCEAF19D75CA0E17BFF341735F75F95 /* RNPushKitEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventListener.m; path = RNNotifications/RNPushKitEventListener.m; sourceTree = ""; }; - 9CD0551584386CDA882ED878BB3E7441 /* RNJitsiMeetView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetView.m; path = ios/RNJitsiMeetView.m; sourceTree = ""; }; - 9CE85127C8E2DED72D8DC220F45D2B15 /* RNCAsyncStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorage.h; path = ios/RNCAsyncStorage.h; sourceTree = ""; }; - 9D043E27E48AB8652E91B80E8D2524AB /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 9D0EA0C2FB3CE4658DD0BEA5791E77A9 /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = apple/RNCWKProcessPoolManager.h; sourceTree = ""; }; + 9CA6E8C4E777904A2FD84541C7D45F8D /* RCTTurboModuleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModuleManager.h; sourceTree = ""; }; + 9CA76A689A2C2A3731103D8254D9FCA7 /* BlurViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BlurViewManager.m; path = ios/BlurViewManager.m; sourceTree = ""; }; + 9CB068C3C1090FBC4AC6414F186E9BE8 /* RCTDevLoadingViewSetEnabled.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingViewSetEnabled.m; sourceTree = ""; }; + 9CF7B065AE2F454C92B112DA7734C782 /* UMBarCodeScannerInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.debug.xcconfig; sourceTree = ""; }; + 9CFA170F05C3C601903D7C2A7A727F25 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; + 9D14E9A01BCC594A2A85D381466E888B /* experiments-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "experiments-inl.h"; sourceTree = ""; }; 9D175055633CCF57160228809C16FCB1 /* EventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBase.cpp; path = folly/io/async/EventBase.cpp; sourceTree = ""; }; - 9D38E4F9E92A99FEA2A7CC00574A1EC5 /* BSG_KSCrashState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashState.m; sourceTree = ""; }; + 9D3481C77D8830B0B3647B64636CAFB1 /* EnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EnvironmentUtil.m; path = ios/RNDeviceInfo/EnvironmentUtil.m; sourceTree = ""; }; 9D45DA6845E2F96A779737D9DF9A488F /* DynamicBoundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicBoundedQueue.h; path = folly/concurrency/DynamicBoundedQueue.h; sourceTree = ""; }; - 9D72F917A32A856BCD1A9D7D7B7A9BD2 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 9D49C2015EC82F52D2FDB558E03A1801 /* UMTaskManagerInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.debug.xcconfig; sourceTree = ""; }; + 9D638D4F4487C7E2904849EB50E2914D /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9D9709598D5DB757633AC6B35AA28861 /* RNCSafeAreaViewMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewMode.m; path = ios/SafeAreaView/RNCSafeAreaViewMode.m; sourceTree = ""; }; 9D9E57DF4A08C75F2004E8D4518455E9 /* MallctlHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MallctlHelper.h; path = folly/memory/MallctlHelper.h; sourceTree = ""; }; 9D9E65506D61DF8C18A834C7563C7C8D /* muxedit.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxedit.c; path = src/mux/muxedit.c; sourceTree = ""; }; 9DAB026597DCEA620D82C5772AAF6B91 /* cost_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cost_enc.h; path = src/enc/cost_enc.h; sourceTree = ""; }; 9DAEC44B30FD86D9A2F84B6E93CE9B64 /* FIRErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrorCode.h; path = FirebaseCore/Sources/Private/FIRErrorCode.h; sourceTree = ""; }; 9DB1D8FE765BE7361DB47698214C8827 /* FIRInstallationsVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsVersion.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallationsVersion.h; sourceTree = ""; }; - 9DB403108DBE8FA66185EC6C5AE3BFFF /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 9DBAA4DD27E3D6EE3785EA1C9057163A /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; - 9DE9D6492CC1075438ADFD931ADCDE47 /* RNVectorIcons.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNVectorIcons.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9DBBB127A1D2B1415678647D1AF3E00C /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; 9DEA55A51F57363C0F0C23EFCDD595E1 /* Firebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Firebase.h; path = CoreOnly/Sources/Firebase.h; sourceTree = ""; }; - 9E02BF9172C3F2F8D7FCDD59FEEEE3C4 /* react-native-orientation-locker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.release.xcconfig"; sourceTree = ""; }; + 9DFE6F4142248275D50E279C9D26E398 /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; 9E04DE717E041E0009FD97ED613179E4 /* UniqueInstance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UniqueInstance.h; path = folly/detail/UniqueInstance.h; sourceTree = ""; }; - 9E232D398BC12A4C673E6250BA15D587 /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; + 9E2713CA157638DEAFAC794B8097287C /* React-RCTLinking.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.release.xcconfig"; sourceTree = ""; }; + 9E28708E421A551C02DCD2DDE407CF2A /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; 9E3873CDFC6CC882995CB4188C6285B5 /* ReentrantAllocator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ReentrantAllocator.cpp; path = folly/memory/ReentrantAllocator.cpp; sourceTree = ""; }; - 9E4CBFB32FB416C48B81BD39DED125B8 /* RNCPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCPicker.h; path = ios/RNCPicker.h; sourceTree = ""; }; - 9E51D64676B8178E5ADC730DD7B1BED0 /* RCTBlobPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobPlugins.mm; sourceTree = ""; }; 9E5AD003D0351443AD6EA78593F25440 /* MPMCPipelineDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCPipelineDetail.h; path = folly/detail/MPMCPipelineDetail.h; sourceTree = ""; }; 9E6BB66DD78A86120B879D7FAFC4D31C /* AtomicIntrusiveLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicIntrusiveLinkedList.h; path = folly/AtomicIntrusiveLinkedList.h; sourceTree = ""; }; 9E6C0F837C54854E825A6330E8F6E8F3 /* picture_psnr_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_psnr_enc.c; path = src/enc/picture_psnr_enc.c; sourceTree = ""; }; - 9E86909CA16AF80D052FF852C0CF0F7A /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = ""; }; - 9EA98E83D04A3AE21D0C2F7A639C494E /* RNConfigReader.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNConfigReader.release.xcconfig; sourceTree = ""; }; - 9EC6DF4E4E06CC30499AEF1C0C2E3882 /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = ""; }; - 9ED48661942DB09890F24EBDC0B7755F /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; + 9E74F12D027EC60353BA18DC9C8F057C /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; + 9E8370F57B4CD8FC9815CC109C7CF48C /* Yoga-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-umbrella.h"; sourceTree = ""; }; + 9EBBFD227451F1DC3B489BF474AD54A2 /* Zocial.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Zocial.ttf; path = Fonts/Zocial.ttf; sourceTree = ""; }; + 9ED419A662981D7AE5D0F29FA5445E7C /* EXAudioSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioSessionManager.h; path = EXAV/EXAudioSessionManager.h; sourceTree = ""; }; + 9EDAFE445CC359519665AD447C4AF68D /* EXAVObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVObject.h; path = EXAV/EXAVObject.h; sourceTree = ""; }; 9EEEEE02F2EDE8821AF6967B644451D7 /* ThreadWheelTimekeeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadWheelTimekeeper.h; path = folly/futures/ThreadWheelTimekeeper.h; sourceTree = ""; }; + 9EF4F1EDCD4553A3703C9FCDACB61264 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; 9EF736721F771CE99651D129AB365263 /* HazptrDomain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrDomain.h; path = folly/synchronization/HazptrDomain.h; sourceTree = ""; }; - 9F121E95B254082EF187287D6D3ED984 /* FBLazyVector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBLazyVector.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 9F182976F3BEC6E024C92F3C8859144B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 9F18F0F2473E96006C112AADE8B5DFD5 /* Hmac.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Hmac.m; sourceTree = ""; }; + 9F198B4D94F74E5EB473430661ECBF52 /* react-native-restart-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-restart-dummy.m"; sourceTree = ""; }; + 9F2555743479256A7A6B651E39603366 /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = event.cpp; sourceTree = ""; }; 9F2ABF8C2BEA2939B53F3C2267EF8A0A /* ApplyTuple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ApplyTuple.h; path = folly/functional/ApplyTuple.h; sourceTree = ""; }; - 9F2C29336FD7CFB5BE40D48AF410701A /* RCTAlertController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAlertController.m; sourceTree = ""; }; 9F2E5E567F2A3E3F8FACC128F1C8B145 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Sources/Private/FIRComponentContainer.h; sourceTree = ""; }; - 9F39D8CBB1DEC2AE31AB7508F1DB8CAF /* React-cxxreact.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.release.xcconfig"; sourceTree = ""; }; + 9F3324150D838B5A79EFFA3B7990E404 /* BSG_KSMachApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachApple.h; sourceTree = ""; }; + 9F347E42EA64B7AFE343CE9A4E497834 /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; 9F3B0002B8624CBE05928C53384482F2 /* FBLPromise+Then.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Then.m"; path = "Sources/FBLPromises/FBLPromise+Then.m"; sourceTree = ""; }; - 9F404DC7C83384B3C730716C42F2FF4D /* BugsnagCollections.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCollections.h; sourceTree = ""; }; - 9F4507DC98B551726ECCA52B6828D8CE /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; - 9F5C23727738AD16DEAFEE50EF7F3466 /* BSG_KSSysCtl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSysCtl.h; sourceTree = ""; }; + 9F42DFDA6F22835E42110275C6D45AD4 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 9F53199A8BA2FDC86956E4B0A37BDC5C /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; 9F78E8173F3AD7E6C2E45CB1615BC1F9 /* MPMCPipeline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCPipeline.h; path = folly/MPMCPipeline.h; sourceTree = ""; }; - 9F79BCB088CE8C23E9EAA6B478812AFB /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 9F7A5AF71B7686A61CEB3242ED1C0219 /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspector.mm; sourceTree = ""; }; - 9F7C807E552CD7F0ED57B38326EDB5C7 /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; + 9F7C36C1C750664D152408323FD6AE48 /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; + 9F857244E538483C660C5D21E4A4E1C4 /* UMSensorsInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.debug.xcconfig; sourceTree = ""; }; 9F9676C4A5E6C9AE62620BAF6A929F33 /* stl_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_logging.h; path = src/glog/stl_logging.h; sourceTree = ""; }; - 9FC2B930AF9C2ACB6BEDEFC3B6733F62 /* RNRandomBytes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRandomBytes.m; path = ios/RCTCrypto/RNRandomBytes.m; sourceTree = ""; }; + 9F9C7917EDBBA65B57AA90AF42B42EFA /* React-RCTImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.release.xcconfig"; sourceTree = ""; }; + 9FA635843704EF8F520FAF3EEA7C13FB /* SafeAreaSpacerViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SafeAreaSpacerViewManager.m; sourceTree = ""; }; 9FC7A652DA51D9F0183EA2D12E37F94B /* SKViewControllerDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKViewControllerDescriptor.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewControllerDescriptor.m; sourceTree = ""; }; - 9FF15DDF56C721A3A36BEBEC97A731D5 /* Pods-defaults-Rocket.Chat-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-defaults-Rocket.Chat-umbrella.h"; sourceTree = ""; }; - A0140941DF8E775B9B3C0F9C781BCDBA /* React.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.debug.xcconfig; sourceTree = ""; }; - A024CC3B6B45680CB9404A3D412D21C7 /* REABlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABlockNode.m; sourceTree = ""; }; - A035F886999DBA8AD347365BAD212FB3 /* ARTRenderableManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRenderableManager.m; sourceTree = ""; }; + 9FD8D72D506FB7BB9779A6A4738FD3A3 /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = ""; }; + A00C340A4B1A226F54946F261788FB14 /* RCTConvert+FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FIROptions.h"; path = "ios/RNFBApp/RCTConvert+FIROptions.h"; sourceTree = ""; }; + A013671F5CF9AF26EE93AA8DB5192186 /* RNGestureHandler.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.release.xcconfig; sourceTree = ""; }; + A01526E3DCC0E11B78DB0E7B3B6F7FB2 /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = ""; }; + A01A966EA9B80F740CA05FDAE563EFD8 /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; + A0239A64DC167652EC09D68A2ADCAF84 /* EvilIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = EvilIcons.ttf; path = Fonts/EvilIcons.ttf; sourceTree = ""; }; A045463B429A15AE4E7D8C9C7D3D25CC /* diy-fp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "diy-fp.cc"; path = "double-conversion/diy-fp.cc"; sourceTree = ""; }; - A04A93F8CDEA87F765B1BFC853A4AA40 /* BitUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitUtils.h; path = yoga/BitUtils.h; sourceTree = ""; }; - A0551E48E92BD6576A199ED5EB441D53 /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; - A05C8730DB538D2EC8A18C6FC9AA4F71 /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; + A05F3C56018FFF610BB63324E31E4CD3 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; A09076E9363084BD2F32C9CFAB0F4542 /* TimekeeperScheduledExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimekeeperScheduledExecutor.h; path = folly/executors/TimekeeperScheduledExecutor.h; sourceTree = ""; }; A09AB235098FCF4BFA9D0D5B5E22A857 /* SocketOptionMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketOptionMap.h; path = folly/io/SocketOptionMap.h; sourceTree = ""; }; A0A9FF330B926B4379D094F6AE01C7C2 /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = src/demangle.cc; sourceTree = ""; }; + A0B884808F87BC14E17E0C76EDF5FFA4 /* RNGestureHandlerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerState.h; path = ios/RNGestureHandlerState.h; sourceTree = ""; }; A0E317BA0618B3CF6CE687522449B03C /* HazptrUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrUtils.h; path = folly/synchronization/detail/HazptrUtils.h; sourceTree = ""; }; A0E7DE312BB0A7E371784C7A0DDCFEEA /* Hardware.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hardware.h; path = folly/synchronization/detail/Hardware.h; sourceTree = ""; }; A0E9033941C3AB907B1B7A92CE61D944 /* RSocketStateMachine.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketStateMachine.cpp; path = rsocket/statemachine/RSocketStateMachine.cpp; sourceTree = ""; }; - A0EDFC87339AAA537A163C297EC360DB /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + A0F186D93E942FD055EA978A99397B35 /* TurboModuleBinding.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = TurboModuleBinding.cpp; sourceTree = ""; }; A1017F5C6F53C539BC0122C7CDA019A9 /* FIRVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVersion.m; path = FirebaseCore/Sources/FIRVersion.m; sourceTree = ""; }; - A1044899B60620CB2144EF54C230E323 /* BSG_KSBacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace.h; sourceTree = ""; }; - A12F2DE1DDBC9445537ED768FBF095C9 /* BSG_KSJSONCodec.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSJSONCodec.c; sourceTree = ""; }; - A15F026963BAE73C359F1DFA620736CA /* RNFBUtilsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBUtilsModule.m; path = ios/RNFBApp/RNFBUtilsModule.m; sourceTree = ""; }; + A154FC57002D4A7C3A176A9677A855C0 /* LongLivedObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = LongLivedObject.cpp; sourceTree = ""; }; + A157D526C4A9B116FFA877831071C982 /* RNSScreenStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStack.h; path = ios/RNSScreenStack.h; sourceTree = ""; }; A1676AAC61EFA3771E2E5B301AC959E0 /* SDImageCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoder.m; path = SDWebImage/Core/SDImageCoder.m; sourceTree = ""; }; A16956E0F13387473A1FADDE58ECD237 /* http.c */ = {isa = PBXFileReference; includeInIndex = 1; path = http.c; sourceTree = ""; }; - A170A8E7C8F80324CE523D47AD3BAE7D /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = ""; }; + A1761F12273ABDA4063CBDC302557BC3 /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = ""; }; A180CF8E7D7BE31D09455978DA60DC12 /* ErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ErrorCode.h; path = rsocket/framing/ErrorCode.h; sourceTree = ""; }; A18608C4217F3EFA8C0D2A878CF092C2 /* EventBaseManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBaseManager.cpp; path = folly/io/async/EventBaseManager.cpp; sourceTree = ""; }; A1877D4F4969CD370E0D2105E0DBF43E /* SDImageGraphics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGraphics.m; path = SDWebImage/Core/SDImageGraphics.m; sourceTree = ""; }; + A193D813D8C5A0B8CF41715AD34A8F01 /* react-native-simple-crypto.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-simple-crypto.debug.xcconfig"; sourceTree = ""; }; A19A4B820CD795CEC835A155BEA73DCA /* IPAddressException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressException.h; path = folly/IPAddressException.h; sourceTree = ""; }; A19D959C2D30B646978CC853404DA1BA /* Singleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Singleton.h; path = folly/Singleton.h; sourceTree = ""; }; + A1A2C8C7FD4B43B1CCE15E34F066D5BD /* RCTWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWeakProxy.m; sourceTree = ""; }; A1A5738D7D8CEF7C7CE36B9B805C5EA8 /* SDImageCachesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManager.m; path = SDWebImage/Core/SDImageCachesManager.m; sourceTree = ""; }; A1B24C17B642E8896288A691DB8F105C /* Format-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Format-inl.h"; path = "folly/Format-inl.h"; sourceTree = ""; }; A1BF68D59DC67100D469927A60889975 /* GULSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSwizzler.h; path = GoogleUtilities/MethodSwizzler/Private/GULSwizzler.h; sourceTree = ""; }; - A1CB03637D36B3CD105FD6F5A272ACBC /* BSG_KSCrashReport.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashReport.c; sourceTree = ""; }; A1CDB664089BF1448C4BA69FBA03D6CE /* IPAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IPAddress.cpp; path = folly/detail/IPAddress.cpp; sourceTree = ""; }; - A1D33A9846E78AC1B1014AF47FAD2532 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + A1CE18A3F321A875155302101DDA52BE /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = ""; }; A1EB5F02162EBF607D4F46A727A08B51 /* HazptrObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrObj.h; path = folly/synchronization/HazptrObj.h; sourceTree = ""; }; A1F1A4CF23D301F5E48F1A6FF632D891 /* GDTCORFlatFileStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORFlatFileStorage.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORFlatFileStorage.m; sourceTree = ""; }; A20B8C264F43DCE74DED1C6902DCD7F2 /* JitsiMeetSDK.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JitsiMeetSDK.debug.xcconfig; sourceTree = ""; }; - A21929D45B308E23541B02E8F73E60CF /* React-RCTBlob.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTBlob.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - A229442A403928C44178EF3336326E06 /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXAV/EXAudioRecordingPermissionRequester.m; sourceTree = ""; }; + A2284343BA5188575777B171B3DF19A5 /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; A239EAE2E123539A743F11FE6B18B97B /* SDDiskCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDiskCache.h; path = SDWebImage/Core/SDDiskCache.h; sourceTree = ""; }; A241079C26BA7316518080B63897BAF8 /* Random-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Random-inl.h"; path = "folly/Random-inl.h"; sourceTree = ""; }; - A25771F859E185EF5ED5967A5BD7EB83 /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; + A25214D7DAAEF582BA04DF499825DF44 /* RNNotificationCenterMulticast.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterMulticast.m; path = RNNotifications/RNNotificationCenterMulticast.m; sourceTree = ""; }; + A260E94609877FF65B233EE6D71362FB /* react-native-cookies.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-cookies.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A27423CFA6F234FE0C8C47A25AA11A1E /* SanitizeThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SanitizeThread.cpp; path = folly/synchronization/SanitizeThread.cpp; sourceTree = ""; }; A278CD47BA9CBE42767AD48876A27A33 /* FlipperConnectionManagerImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnectionManagerImpl.h; path = xplat/Flipper/FlipperConnectionManagerImpl.h; sourceTree = ""; }; - A28745EB8CAE1EF817E27C30CA1ACC01 /* EXAV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAV-dummy.m"; sourceTree = ""; }; + A296FCCEBB73CBA5F8831A307C3B5D91 /* RCTLocalAssetImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLocalAssetImageLoader.mm; sourceTree = ""; }; A2C445EAF42760A0FA5EB239EA31565B /* SKTapListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKTapListener.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTapListener.h; sourceTree = ""; }; A2DD810F8278E0F12D995044E5BF7A15 /* FBLPromiseError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromiseError.h; path = Sources/FBLPromises/include/FBLPromiseError.h; sourceTree = ""; }; + A2E6B5FB00130B2A74065468823F5126 /* MessageTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageTypes.h; sourceTree = ""; }; A2F0117A83EC190EDCF3EEEA2CB09250 /* SKNamed.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKNamed.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNamed.h; sourceTree = ""; }; - A2F936255FEB6E23D6C4AC199858E081 /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; A2FB913EDB37F8913760401CA81068BD /* SpookyHashV2.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SpookyHashV2.cpp; path = folly/hash/SpookyHashV2.cpp; sourceTree = ""; }; A2FEB54F65AC6BA164AB7601C6A11F0B /* Subprocess.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Subprocess.cpp; path = folly/Subprocess.cpp; sourceTree = ""; }; + A3040695AF0032C688FAA0D4587AAB2E /* react-native-mmkv-storage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-mmkv-storage.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A30625DAC877C1D1E7E335916E73632A /* ColdResumeHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ColdResumeHandler.h; path = rsocket/ColdResumeHandler.h; sourceTree = ""; }; - A30A02D443B833D2EC48E665E2C96AC8 /* Color+Interpolation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Color+Interpolation.m"; sourceTree = ""; }; - A30A3330B6D0B35676D27CB9F769141E /* Yoga.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Yoga.modulemap; sourceTree = ""; }; A328A991453EF3EA707048259AEBC009 /* lossless_enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse2.c; path = src/dsp/lossless_enc_sse2.c; sourceTree = ""; }; - A344BD42BC4A0A7A1F5EC360C82007A9 /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; - A35EB1DD452451C041B64AFF1F004DAE /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; + A353F7E086D2B4C0BCD3F3CF28DF872F /* UMPermissionsMethodsDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMPermissionsMethodsDelegate.m; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.m; sourceTree = ""; }; + A35A7DE406B8FAE3EB7579B1AD3ACF49 /* RCTImageLoaderLoggable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderLoggable.h; path = Libraries/Image/RCTImageLoaderLoggable.h; sourceTree = ""; }; A3667F9A5A9B50046346F725B90E6303 /* quant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant.h; path = src/dsp/quant.h; sourceTree = ""; }; A3803A14867971EE2F7147E185238DC3 /* FIRCLSInternalReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSInternalReport.m; path = Crashlytics/Crashlytics/Models/FIRCLSInternalReport.m; sourceTree = ""; }; - A398171E79904AF49DBDE4FE4BFC44C2 /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; - A3DFA055C4DE8C8CBD4C28E5EE5EFCBE /* React-callinvoker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-callinvoker.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A3C338F47E0F3CD612CD2E4833E1BD3F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + A3C360852FD0472C6619B4C887EB5796 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; A3E40312392D7D79909DD9D28107B2D5 /* Hazptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hazptr.h; path = folly/synchronization/Hazptr.h; sourceTree = ""; }; - A3EF24ACC5671A90547261D983A69777 /* UMFontInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.debug.xcconfig; sourceTree = ""; }; + A3ED697F0E0E24C8E2A51F3891D132DB /* ResourceBundle-AccessibilityResources-React-Core-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-AccessibilityResources-React-Core-Info.plist"; sourceTree = ""; }; A3F2CA03CD6CE2779AC3B2571F1888FD /* EnableSharedFromThis.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EnableSharedFromThis.h; path = folly/memory/EnableSharedFromThis.h; sourceTree = ""; }; + A3F2E83BB04FE8AD5C6B2DB7479DAE08 /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = ""; }; + A40D35B3E223EE3A59C70211AF70DD57 /* REAJSCallNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAJSCallNode.h; sourceTree = ""; }; + A4193D9F18881BC00CADFFE156D0A4E8 /* EXLocalAuthentication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocalAuthentication.h; path = EXLocalAuthentication/EXLocalAuthentication.h; sourceTree = ""; }; A421F2EFDBAA96C876AB25BD44230474 /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/String.h; sourceTree = ""; }; + A439185E722B36F1A8B1BEE7BDC71514 /* EXVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoManager.h; sourceTree = ""; }; + A442BB7FDC24744FFABDB77D2DC980A9 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; A45B86740B69AAA5C0F05B0A58EDE5CF /* SDFileAttributeHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDFileAttributeHelper.m; path = SDWebImage/Private/SDFileAttributeHelper.m; sourceTree = ""; }; - A45D5B7698A7B7C901DDD3AE54564605 /* FFFastImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageViewManager.h; path = ios/FastImage/FFFastImageViewManager.h; sourceTree = ""; }; A462BE5BC8918B04994A88A4585974A6 /* FIRCLSDataCollectionArbiter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDataCollectionArbiter.h; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionArbiter.h; sourceTree = ""; }; + A49F25B700EE4A6775B874F4E8AD3D62 /* RootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RootView.m; path = ios/RootView.m; sourceTree = ""; }; A4A32A4AC472CF79969A87EDAEC04E29 /* IOExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOExecutor.h; path = folly/executors/IOExecutor.h; sourceTree = ""; }; + A4A5845B88A33EFDB6AAE2D6706453D8 /* RNCSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSlider.h; path = ios/RNCSlider.h; sourceTree = ""; }; A4AC4A18649390E71529D211141C6CF9 /* ProducerConsumerQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProducerConsumerQueue.h; path = folly/ProducerConsumerQueue.h; sourceTree = ""; }; A4B11545965ABE6C7AB237B1765A88BC /* Builtins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Builtins.h; path = folly/portability/Builtins.h; sourceTree = ""; }; - A536E114B563FA7AE1B7C5A311F93CF7 /* Octicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Octicons.ttf; path = Fonts/Octicons.ttf; sourceTree = ""; }; - A54C4F20AF0FD4B6E11728B86884E8C2 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - A552EA0DAD600DBEB49BE6B472DB0684 /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; + A4B57CE6698F52AC38D62EEC7933FC7E /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworking.mm; sourceTree = ""; }; + A4E286F0D5D5A1C67FF8F09F07A85C09 /* RCTDevSplitBundleLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSplitBundleLoader.mm; sourceTree = ""; }; + A4E5D8024113C04A308B589034455548 /* RNCSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSlider.m; path = ios/RNCSlider.m; sourceTree = ""; }; + A5105BEB6D09F367043F57348917EBD3 /* RNCMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedViewManager.m; path = ios/RNCMaskedViewManager.m; sourceTree = ""; }; + A55820A233D2D3FA9344258E8AF8EED8 /* BugsnagReactNative-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagReactNative-prefix.pch"; sourceTree = ""; }; A568645E3EC4F41A6B8E54985BE21DD0 /* Dirent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Dirent.h; path = folly/portability/Dirent.h; sourceTree = ""; }; - A56CBA5C6CDAF60FAE82D2E1A30B6864 /* RNCSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSliderManager.m; path = ios/RNCSliderManager.m; sourceTree = ""; }; A56FDAA3345D4565EECAADA887F4A7EE /* StringKeyedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedMap.h; path = folly/experimental/StringKeyedMap.h; sourceTree = ""; }; - A57643844AA82C3661CA9B030947D122 /* BridgeNativeModulePerfLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BridgeNativeModulePerfLogger.h; path = reactperflogger/BridgeNativeModulePerfLogger.h; sourceTree = ""; }; - A57A73E6AB00DCA8C0ABA980BE56D3BB /* BSGConnectivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGConnectivity.m; sourceTree = ""; }; - A584F7813425F5322B28A4010DBD2014 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - A59D9474242C3F2ABC121ED2DE64E161 /* EXFileSystem.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.release.xcconfig; sourceTree = ""; }; - A5B6E53B1EA4C12F117C1B8B85AEE214 /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; - A5BBF22C984C128BAC4D55B49D9D106E /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = React/AccessibilityResources/en.lproj; sourceTree = ""; }; + A5A8A6223D3018087503ED099D20C803 /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; + A5B397701238EF3AAAEE7E5D6211B1DF /* React-CoreModules.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-CoreModules.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A5C656C37A50DDE3A50DF9C5554CE5FF /* ClientResumeStatusCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ClientResumeStatusCallback.h; path = rsocket/internal/ClientResumeStatusCallback.h; sourceTree = ""; }; A5C6E23D40EB9A3E072F8F115094E957 /* ProducerConsumerQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProducerConsumerQueue.h; path = folly/ProducerConsumerQueue.h; sourceTree = ""; }; A5D16A061AC19EBE3F2A997C614F5904 /* IOThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IOThreadPoolExecutor.cpp; path = folly/executors/IOThreadPoolExecutor.cpp; sourceTree = ""; }; - A5DCFDB86CD8D180B15DDB0B01F95122 /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; - A5E733117F32B2D1EF037F065EED83AC /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; - A6137257B711159FD4012D79C20BD1F9 /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; + A60901098A81B5D3F5D589CC582F5A4F /* VibrancyViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = VibrancyViewManager.m; path = ios/VibrancyViewManager.m; sourceTree = ""; }; A6168E0E97D94D09DC85AA49AC1CF4B7 /* ConstexprMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConstexprMath.h; path = folly/ConstexprMath.h; sourceTree = ""; }; A61F1D11A4487E7EB38BE9486F5B775B /* ssim.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim.c; path = src/dsp/ssim.c; sourceTree = ""; }; - A632408A7DCE249D6B5C0E255E8DC86B /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; - A633E0CA8CB3074AE2B42AE8864C4D0F /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; - A63C3F723B6B51537AEFDFE55BC57EBA /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; - A640452425C086E201C212DEE283E8A4 /* react-native-webview.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.release.xcconfig"; sourceTree = ""; }; A651A21FE23C668C852E87BDECE35979 /* FIRCLSCompactUnwind_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCompactUnwind_Private.h; path = Crashlytics/Crashlytics/Unwind/Compact/FIRCLSCompactUnwind_Private.h; sourceTree = ""; }; - A66034CEDA26EB780569383C19FF8702 /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - A6610CA1473962CD73207E1614B86652 /* EXSessionDownloadTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionDownloadTaskDelegate.h; sourceTree = ""; }; A6665D8FC0F6D068B435FA4B02F47F71 /* evrpc.c */ = {isa = PBXFileReference; includeInIndex = 1; path = evrpc.c; sourceTree = ""; }; A6697BFBED15299BCC3A039345ADA674 /* AsymmetricMemoryBarrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsymmetricMemoryBarrier.cpp; path = folly/synchronization/AsymmetricMemoryBarrier.cpp; sourceTree = ""; }; A669D8965DD5F59135852201EAA4B1C7 /* SKNetworkReporter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKNetworkReporter.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKNetworkReporter.h; sourceTree = ""; }; A67B831BF4C65D29F2045462D7945319 /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/portability/Malloc.h; sourceTree = ""; }; + A6804E4CEF7BB32A0140E82063002DC0 /* Pods-defaults-RocketChatRN.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-defaults-RocketChatRN.modulemap"; sourceTree = ""; }; A68E5A9B69A3BA0FD52CAF7A354EC93B /* libReact-RCTNetwork.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTNetwork.a"; path = "libReact-RCTNetwork.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - A6A07BB108AC83F356427FD2959D93BB /* react-native-simple-crypto.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-simple-crypto.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A6B2FA02FE906EFA9535232DB0BAF5D0 /* FIRCLSThreadArrayOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSThreadArrayOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSThreadArrayOperation.h; sourceTree = ""; }; + A6B53E018BB1410AE17A0898B3DB1F13 /* RNCSafeAreaViewEdges.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewEdges.m; path = ios/SafeAreaView/RNCSafeAreaViewEdges.m; sourceTree = ""; }; A6C61E6BE7733E96C385CEEB85A1E332 /* RuntimeConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RuntimeConfig.h; path = destroot/include/hermes/Public/RuntimeConfig.h; sourceTree = ""; }; + A6D61B128EC0F6DFF20B04348BA44CDF /* BugsnagError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagError.h; sourceTree = ""; }; A6DEDACF54C93C17C745DAFA77E4CCB4 /* CertificateUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CertificateUtils.h; path = xplat/Flipper/CertificateUtils.h; sourceTree = ""; }; - A6EB796E6E9E63CB8E30B650EF1BB98B /* Pods-NotificationService.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-NotificationService.release.xcconfig"; sourceTree = ""; }; A6EFB7B6FFED346EE8755ECD26CD7F23 /* Overload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Overload.h; path = folly/Overload.h; sourceTree = ""; }; - A6F24723A44CF8363D5E898D085C6FAA /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspectorDevServerHelper.mm; sourceTree = ""; }; - A71376A1FA8BD623D85C2D4F5199E0EB /* CallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallInvoker.h; path = ReactCommon/CallInvoker.h; sourceTree = ""; }; - A72ADD9D7D965C65BD9FB04D70677BD0 /* React-perflogger-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-perflogger-prefix.pch"; sourceTree = ""; }; + A6F768252ED54153A55922B20E00C66D /* rn-fetch-blob.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.debug.xcconfig"; sourceTree = ""; }; + A711B6DDF5746588A5FFCD5E330DBF3D /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = ReactMarker.cpp; sourceTree = ""; }; A72E28AEF6DF1265BDD71B5670AF408C /* pb_decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_decode.h; sourceTree = ""; }; - A75B404D794A583413EFBCE86EB06644 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + A72F4F01C82EB2FEF9C866D788AA26ED /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = experiments.h; sourceTree = ""; }; A760025F9DCA8E281E648E58C5F5CFD8 /* MiniPBCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MiniPBCoder.h; path = Core/MiniPBCoder.h; sourceTree = ""; }; - A76277B4CF7E93604C6ED6C4F1780682 /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; A76299CA52706D2EDE496A287FA92AA8 /* FIRCLSUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUtility.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSUtility.m; sourceTree = ""; }; + A762AC50A28DDAF26213B122E713022B /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; A767B1B3873B1AF05F2881B4DAC3C7F2 /* AtomicLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicLinkedList.h; path = folly/AtomicLinkedList.h; sourceTree = ""; }; - A78ED850FD9D3360266D85CFFB779D70 /* RCTDevSplitBundleLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSplitBundleLoader.mm; sourceTree = ""; }; + A77AADE54BAD99ECC1C2D6DFE43F452A /* RNSScreenStack.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStack.m; path = ios/RNSScreenStack.m; sourceTree = ""; }; + A77C5D2282D9A9D640536AD0C814D836 /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = ""; }; A78FF933AD4698C6020BBB8A63C66E0A /* Lazy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lazy.h; path = folly/Lazy.h; sourceTree = ""; }; - A79690253C217899156BDB7F1AAAF81A /* RNDateTimePicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDateTimePicker-prefix.pch"; sourceTree = ""; }; - A79AC20226EF07587CB7DBA9DBE433D2 /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = React/CoreModules/RCTActionSheetManager.h; sourceTree = ""; }; - A79C9668BB0052F80C33C8775C800F7C /* RNGestureHandlerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerEvents.h; path = ios/RNGestureHandlerEvents.h; sourceTree = ""; }; A79DEA6FB66798FDB09A6F59CFE1E257 /* lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc.c; path = src/dsp/lossless_enc.c; sourceTree = ""; }; + A79E6B0FA53228F0C22FDAE97E39A414 /* react-native-notifications-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-notifications-dummy.m"; sourceTree = ""; }; A7A0905593F2528C6B73F62C34691F05 /* MasterPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MasterPtr.h; path = folly/experimental/MasterPtr.h; sourceTree = ""; }; - A7A9522E1E7B0B0C275E740A2408C915 /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; A7AE6578BD7F7F96E800B58A62BFCE2D /* stop_watch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stop_watch.h; path = folly/stop_watch.h; sourceTree = ""; }; + A7BE38DF3D2C4B8BFB184F5F4F3B0276 /* FFFastImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageView.h; path = ios/FastImage/FFFastImageView.h; sourceTree = ""; }; A7D5D462C841F0799D424EE3599BFBD4 /* FlipperConnectionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnectionManager.h; path = xplat/Flipper/FlipperConnectionManager.h; sourceTree = ""; }; - A7DA6B66535191FCC9E4277512AFBC6A /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; A7E4D3C5DD7542CA12F52F8F049EA1A4 /* ProxyLockable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProxyLockable.h; path = folly/synchronization/detail/ProxyLockable.h; sourceTree = ""; }; - A7F3511723A12A9CDC899D1E9BB1BECE /* Foundation.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Foundation.ttf; path = Fonts/Foundation.ttf; sourceTree = ""; }; + A7EEF6408FDB5FF81ACAD6D54CBF7D1D /* React-runtimeexecutor.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-runtimeexecutor.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A7F3286AAEC755CDF16E674143494868 /* BSG_KSObjCApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjCApple.h; sourceTree = ""; }; A7F777A235BC6BD096853867E94D2332 /* GULOriginalIMPConvenienceMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULOriginalIMPConvenienceMacros.h; path = GoogleUtilities/MethodSwizzler/Private/GULOriginalIMPConvenienceMacros.h; sourceTree = ""; }; + A800C3F16DC464A4511CDAE609AFBA34 /* ARTNodeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTNodeManager.m; sourceTree = ""; }; A81308D786A9569FA6C94767535A684F /* FIRCLSUnwind_arch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUnwind_arch.h; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_arch.h; sourceTree = ""; }; - A8235E32E6D0D30643155F9C2C6E2183 /* EXVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; - A827520F2A7F6932E809F8409B1DF5F4 /* BSG_KSCrashSentry_Signal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Signal.h; sourceTree = ""; }; + A81B190C680DAF19D634822AB23DBCAD /* BSG_KSCrashState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashState.m; sourceTree = ""; }; + A81CB8F7CCCAFF5C081E6D88856ABE8C /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; A82E8AA0A350E86E661EF7349E03E7EE /* SDImageAPNGCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAPNGCoder.h; path = SDWebImage/Core/SDImageAPNGCoder.h; sourceTree = ""; }; A83265905D820ED86E7A6C8F2B1722CE /* LifoSemMPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LifoSemMPMCQueue.h; path = folly/executors/task_queue/LifoSemMPMCQueue.h; sourceTree = ""; }; - A83BD1F97D7CD373957C3D179FB9308D /* ARTText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTText.h; path = ios/ARTText.h; sourceTree = ""; }; + A8328F6F268BE9F930BB69676027BA42 /* BugsnagEventDeserializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagEventDeserializer.h; sourceTree = ""; }; A8452C7C5F850E613A7F3ACCEB22A96A /* Latch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Latch.h; path = rsocket/benchmarks/Latch.h; sourceTree = ""; }; A84C7960CEE6FB114D2D907465B2C77D /* FarmHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FarmHash.h; path = folly/hash/FarmHash.h; sourceTree = ""; }; + A84D4EF51DA254BE4994B6F594A91701 /* LNInterpolable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolable.h; sourceTree = ""; }; A86457AA05C659AA93937FFB3628D5CC /* FIRCLSProfiling.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSProfiling.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSProfiling.c; sourceTree = ""; }; - A866DE2F2B6102A2E8A9F3FB16CC6A2B /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = ""; }; A86994FD156A22B3C21CE4E425A6D6B9 /* iterator_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = iterator_enc.c; path = src/enc/iterator_enc.c; sourceTree = ""; }; + A87434E572253A7172B76006412A08CB /* RNScreens.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.debug.xcconfig; sourceTree = ""; }; + A87D058A90DAB0C942B4AAC56C56B15C /* BugsnagSession+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagSession+Private.h"; sourceTree = ""; }; A890CCB8BF008676AE761ACA4F9AA0B0 /* zh-Hant.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hant.lproj"; path = "Objective-C/TOCropViewController/Resources/zh-Hant.lproj"; sourceTree = ""; }; - A89986F4AE4413B663478EA0594E4921 /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = Libraries/Image/RCTImageEditingManager.h; sourceTree = ""; }; A8A50CF4DE81C41A118A56BE7BDB341C /* SlowFingerprint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SlowFingerprint.h; path = folly/detail/SlowFingerprint.h; sourceTree = ""; }; + A8B24971382BB080E93170E98E414535 /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; A8B3E5DAFD46EE56452724AED9AC92DC /* StampedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StampedPtr.h; path = folly/experimental/StampedPtr.h; sourceTree = ""; }; A8BE121CC2AC61A2582FB032C7E7D75D /* Align.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Align.h; path = folly/lang/Align.h; sourceTree = ""; }; A8C055FC19F0A2F755E33523A31825D8 /* Format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Format.h; path = folly/Format.h; sourceTree = ""; }; - A8C60F36133D0EA0F6FBAAE0EC945804 /* KeyboardTrackingViewTempManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = KeyboardTrackingViewTempManager.h; sourceTree = ""; }; + A8C11BD5F904EC7DB1CB1B99D289E15A /* RCTLogBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLogBox.h; path = React/CoreModules/RCTLogBox.h; sourceTree = ""; }; + A8CFEE93B9F8FEA5EF794D45484A1B61 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialCommunityIcons.ttf; path = Fonts/MaterialCommunityIcons.ttf; sourceTree = ""; }; + A8D091FBDDF484E5548B37CF0E4988D8 /* EXSessionUploadTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionUploadTaskDelegate.m; sourceTree = ""; }; + A8D24D469956C8F6DAEE7C47B001D415 /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; + A8DC685D979E2B8BDE1E93424E8F30FA /* REANodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REANodesManager.h; path = ios/REANodesManager.h; sourceTree = ""; }; A8E323CFE2D9B1962135FED636658650 /* OpenSSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSL.h; path = folly/portability/OpenSSL.h; sourceTree = ""; }; - A8F8A85DA0CDC78394F66E502910DCB2 /* RCTSettingsPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsPlugins.h; path = Libraries/Settings/RCTSettingsPlugins.h; sourceTree = ""; }; - A90B20A96D407BEC18685F2FFCDDE434 /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = jsi.cpp; sourceTree = ""; }; + A8F437656C3AF0F0D47F9C9E340C3D0B /* IDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IDStore.h; path = ios/IDStore.h; sourceTree = ""; }; + A8FE5B5DF100160357515A6D5DE374A9 /* RNCSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewLocalData.m; path = ios/SafeAreaView/RNCSafeAreaViewLocalData.m; sourceTree = ""; }; + A9082B2BD3226DFFA225E5FFFB855224 /* ARTBrush.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTBrush.h; sourceTree = ""; }; A90DA217769C6CAEDBADCEFC36C37E03 /* GDTCORUploadCoordinator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadCoordinator.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadCoordinator.m; sourceTree = ""; }; A922CE6E628589CA169E46B45E4FEA3D /* InterProcessLock.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InterProcessLock.cpp; path = Core/InterProcessLock.cpp; sourceTree = ""; }; A92471AA2B82BDB11D3DB2938A92C154 /* FIRInstallationsAPIService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAPIService.m; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.m; sourceTree = ""; }; + A930981C438F317DEF84316287E3A808 /* FFFastImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageViewManager.m; path = ios/FastImage/FFFastImageViewManager.m; sourceTree = ""; }; + A9341F7BF84C0221A1AD1B597F136AD2 /* BSG_Jailbreak.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_Jailbreak.h; sourceTree = ""; }; + A9357393A4888576CA047A140A767760 /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; A93E8BB7D84136FC86255E9EA99F0019 /* RSocketConnectionEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketConnectionEvents.h; path = rsocket/RSocketConnectionEvents.h; sourceTree = ""; }; A94A8FADCF705A06FA759CBDCA969EB6 /* ProxyLockable-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ProxyLockable-inl.h"; path = "folly/synchronization/detail/ProxyLockable-inl.h"; sourceTree = ""; }; + A94FCD9AAF25D7B2B66A4B98CD68586B /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; A95381923A4483CA559F35A6430C2197 /* GDTCORFlatFileStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORFlatFileStorage.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORFlatFileStorage.h; sourceTree = ""; }; A954D4E2C3B902244793F2C11C9ED0B0 /* Random.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Random.h; path = folly/Random.h; sourceTree = ""; }; - A9551C6D40C0505505A9E0FB78DC88F1 /* react-native-cameraroll.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.release.xcconfig"; sourceTree = ""; }; + A95ACD68CF68B792E1500C4081DB693C /* RNFBCrashlytics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBCrashlytics-dummy.m"; sourceTree = ""; }; A95B6FF5792E56C7262B028418ECB65D /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = String.cpp; path = folly/portability/String.cpp; sourceTree = ""; }; A95BDCA70C13B92DD2B92AAFC48B3CA2 /* SKEnvironmentVariables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKEnvironmentVariables.h; path = iOS/FlipperKit/SKEnvironmentVariables.h; sourceTree = ""; }; + A968324B0784C8F950C8F9ED1FEECC6C /* RCTUtilsUIOverride.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtilsUIOverride.m; sourceTree = ""; }; A96FC450C08890803E2BAB0375AA0B02 /* StaticTracepoint-ELFx86.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "StaticTracepoint-ELFx86.h"; path = "folly/tracing/StaticTracepoint-ELFx86.h"; sourceTree = ""; }; A976071786DC29EB8FCFEB8885F34F6C /* AsyncTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTrace.h; path = folly/detail/AsyncTrace.h; sourceTree = ""; }; - A9805BB28DE03E79698B2F89C119243E /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; - A99B272D4985EFCFCB0042D360D383E4 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; A99D740C046DC693B8C279E9906F5ED3 /* FIRCLSApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSApplication.h; path = Crashlytics/Crashlytics/Components/FIRCLSApplication.h; sourceTree = ""; }; A9A235A975FFA925CF1A128115C1D9A2 /* glog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "glog-dummy.m"; sourceTree = ""; }; - A9A5A0D8DDA97F77EA157407049E77E3 /* RNFBApp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBApp-dummy.m"; sourceTree = ""; }; A9AC8519E29D55ED91FE0970464B8F9D /* Singleton.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Singleton.cpp; path = folly/Singleton.cpp; sourceTree = ""; }; A9AE808ED601364F3208A8ECB8B3C571 /* GDTCORTransport_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransport_Private.h; sourceTree = ""; }; A9B044D3E141763E51736E7D14D52B9F /* HHWheelTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HHWheelTimer.h; path = folly/io/async/HHWheelTimer.h; sourceTree = ""; }; A9DD47F0BB4836BFA4ED9A1E2DEDC457 /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "jsi-inl.h"; path = "destroot/include/jsi/jsi-inl.h"; sourceTree = ""; }; - A9E45A7511D934BF04595250F5659161 /* RNCSafeAreaViewEdges.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewEdges.h; path = ios/SafeAreaView/RNCSafeAreaViewEdges.h; sourceTree = ""; }; - A9F2337CB63FC02E8DE531E2B8A60111 /* ReactNativeART-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeART-prefix.pch"; sourceTree = ""; }; - A9F757B6793A26C55B14899A3F8208BF /* QBAlbumsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.m; sourceTree = ""; }; A9F8ACCF50BC8F3E29983A656D96F585 /* Combine-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Combine-inl.h"; path = "folly/gen/Combine-inl.h"; sourceTree = ""; }; AA074CE31B00318F430EE520E2BB8096 /* FileUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtil.h; path = folly/FileUtil.h; sourceTree = ""; }; - AA109362559D1809F0DEFF014204370E /* KeyCommands-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeyCommands-dummy.m"; sourceTree = ""; }; - AA1707EEE5CB263C6AD99EAFBC420648 /* RCTTypeSafety-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-prefix.pch"; sourceTree = ""; }; - AA1CE850DABF13336CBFD5E65D11A5E8 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; + AA115C6C6F3591F70233C194A5D280DA /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXAV/EXAudioRecordingPermissionRequester.h; sourceTree = ""; }; + AA2A808F6CF64F7216D304333B12D1EA /* React-RCTText.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTText.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + AA33C72486C653056728F07308087B0D /* RCTSettingsPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsPlugins.h; path = Libraries/Settings/RCTSettingsPlugins.h; sourceTree = ""; }; AA3C8BBE1A936D7951F79A44B7FD02E2 /* FireAndForgetBasedFlipperResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FireAndForgetBasedFlipperResponder.h; path = xplat/Flipper/FireAndForgetBasedFlipperResponder.h; sourceTree = ""; }; - AA46474D1E4058849E8D0F7D8E199CC2 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; - AA629192EDB38E1CDE92A5C8C618EFCF /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = apple/RNCWKProcessPoolManager.m; sourceTree = ""; }; - AA7554F551F94D652833E1DD7ED1DDF0 /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; - AA8958BB286E0C29D2F0EA92528B5BEC /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; + AA7FC102D46DBA597743B98D535FAB2F /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; + AA817559181B1223AA1F194FBE06B705 /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = ""; }; AA8DA18CA91D26D11E1BAE2D71DFBFF6 /* Preprocessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Preprocessor.h; path = folly/Preprocessor.h; sourceTree = ""; }; AA94BB85E6121A9830C7A5CCF2A3185F /* GDTCORReachability_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORReachability_Private.h; sourceTree = ""; }; - AA98D1F2E70C5F4BC293DFD94CF99BEC /* AsyncPauseState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AsyncPauseState.h; sourceTree = ""; }; AAA30A7DDBAFFF09EFBED557C00B0D64 /* FIRCLSFCRAnalytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFCRAnalytics.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSFCRAnalytics.h; sourceTree = ""; }; - AAACB7805F83ACF416453DB8B5686EE4 /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; - AAAF0A755C7FE38117F06CF845AB381C /* RCTRsa.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTRsa.m; path = ios/RCTCrypto/RCTRsa.m; sourceTree = ""; }; + AAAD5A87BBE65DD6BFF0976C7031A52C /* BugsnagReactNative.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.release.xcconfig; sourceTree = ""; }; AAB6149E896399EC0424B0B9EE28140D /* FIRCLSURLBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLBuilder.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSURLBuilder.m; sourceTree = ""; }; - AAC39A35C4F61ABBF1F785F94861DC58 /* UMConstantsInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.debug.xcconfig; sourceTree = ""; }; + AADBF22EE399BD2B3827742C13A250C0 /* react-native-background-timer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-background-timer-prefix.pch"; sourceTree = ""; }; AAE7C3A7CFA89498E2F31CD466E8BD1F /* alpha_processing_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse2.c; path = src/dsp/alpha_processing_sse2.c; sourceTree = ""; }; AAEA2C6C59C3DCDBD6EC36A6FF34CCDB /* UIImage+WebP.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+WebP.h"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.h"; sourceTree = ""; }; - AB01AD6CC991F23763B2693860D43D06 /* react-native-blur.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-blur.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + AAEB5F0A5261B6D7B056ED1D75CC3CCF /* react-native-netinfo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-netinfo.release.xcconfig"; sourceTree = ""; }; + AB0B72218F11A875FF74D719EE5216C6 /* REAAllTransitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAllTransitions.h; sourceTree = ""; }; AB112A4A6AAFBE00566605E8813D47AF /* lossless.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless.h; path = src/dsp/lossless.h; sourceTree = ""; }; + AB12C6E2A0D5BC8A894FCE32AE68E684 /* Sha.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Sha.m; sourceTree = ""; }; AB22F01A08BB12BFA3F69194EBE722CF /* Config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Config.h; path = folly/portability/Config.h; sourceTree = ""; }; + AB2B5D58205F45FDC1B97AF9658D4492 /* BSGEventUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGEventUploader.h; sourceTree = ""; }; AB2EBB07BB6780F2CFD6D21C26BE1E35 /* FIRCLSAsyncOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSAsyncOperation.h; path = Crashlytics/Crashlytics/Operations/FIRCLSAsyncOperation.h; sourceTree = ""; }; + AB332063C3B127E3C0129F7EC7B091A0 /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = ""; }; + AB338D3DE7775EC9A3A7A5C6C8EF8871 /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; + AB37EFF737ECCA2E5C39C1BB53DB1638 /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; AB3C3EBE83825F847588B9C5EFE94821 /* FIRCLSURLSessionDownloadTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLSessionDownloadTask.m; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionDownloadTask.m; sourceTree = ""; }; AB45991526D712A35DE228423BC25B30 /* UIImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "SDWebImage/Core/UIImageView+WebCache.h"; sourceTree = ""; }; - AB5655D27E440FB2B7DF81BF20113BD6 /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFPSGraph.h; path = React/CoreModules/RCTFPSGraph.h; sourceTree = ""; }; + AB67EAA6F30A859AE4F167D603F2160B /* RCTDevLoadingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevLoadingView.mm; sourceTree = ""; }; + AB69548D24BE673DDA52B188807B39E6 /* BSG_KSMachHeaders.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMachHeaders.c; sourceTree = ""; }; AB72D0C7A9094E258164E9D11158FC88 /* FBLPromise+Race.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Race.m"; path = "Sources/FBLPromises/FBLPromise+Race.m"; sourceTree = ""; }; AB92F07C8F16DC3AB790670FF753DD93 /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/memory/Malloc.h; sourceTree = ""; }; - ABCA9F4CD6EE0D4686EBA505F526A436 /* libPods-ShareRocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-ShareRocketChatRN.a"; path = "libPods-ShareRocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + ABC0FE0AC4418ABB1EABFD7ED37E3D6F /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; + ABD11CDC541F63D4559316516DA9F8BE /* BSG_KSBacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace.h; sourceTree = ""; }; + ABD3A2C3ABA0E1DFC3CA633DDDDE1135 /* react-native-safe-area-context.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-safe-area-context.debug.xcconfig"; sourceTree = ""; }; ABD3AC8515A557FDAD3B1D32F8F37F03 /* SDWebImageWebPCoder.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImageWebPCoder.release.xcconfig; sourceTree = ""; }; - ABD9E0611B56F1E52924F8694462C036 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; ABF1B552E10C4896CB1C682734BDDECF /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize.cc; path = src/symbolize.cc; sourceTree = ""; }; - ABFDEB55169EC2A30F591E0107886DF4 /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = ""; }; ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFBReactNativeSpec.a; path = libFBReactNativeSpec.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AC0EC7A14831413DE4E84DCDE1E6F507 /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; AC12C7E29555A7CFDDEF1EDB5BC2F3DA /* libFlipper-DoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-DoubleConversion.a"; path = "libFlipper-DoubleConversion.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + AC285F19833FF6C501FF2EFFBEE5F876 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; AC2EEB1C5D2349E639546215C18B912F /* NetworkSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetworkSocket.h; path = folly/net/NetworkSocket.h; sourceTree = ""; }; AC33911EFC3CBBE0C2DBB62F33FEE78B /* Fingerprint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Fingerprint.cpp; path = folly/Fingerprint.cpp; sourceTree = ""; }; AC3B6E2A54F07D4CA19C1041C8695202 /* SysUio.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysUio.cpp; path = folly/portability/SysUio.cpp; sourceTree = ""; }; - AC3C3D8DBAF302326DE669BA3ABAE32E /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = ""; }; + AC415482470B49FA58A52B81A346C781 /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; AC4A668B78FF89E6A3E4160725FD7B7F /* Combine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Combine.h; path = folly/gen/Combine.h; sourceTree = ""; }; AC65BF4B9DD13A49749589F7DAC592CE /* DistributedMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = DistributedMutex.cpp; path = folly/synchronization/DistributedMutex.cpp; sourceTree = ""; }; AC6ACF007CE014EF66FDD4CA87758D24 /* FIRCLSURLSession_PrivateMethods.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSession_PrivateMethods.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/FIRCLSURLSession_PrivateMethods.h; sourceTree = ""; }; - AC718217CFB0201506260E25809F4040 /* ARTRadialGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRadialGradient.m; sourceTree = ""; }; AC806598F97772C30B60BE5001B27B85 /* ThreadLock.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadLock.cpp; path = Core/ThreadLock.cpp; sourceTree = ""; }; + AC997D5A6CE46D81B2A9839825070905 /* RCTCrypto-Bridging-Header.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTCrypto-Bridging-Header.h"; path = "ios/RCTCrypto/RCTCrypto-Bridging-Header.h"; sourceTree = ""; }; AC9BB0D68164184A242BC72EFA1AC562 /* FlipperCppBridgingResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCppBridgingResponder.h; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingResponder.h; sourceTree = ""; }; + ACA61489DCBF21D8BF85939ECCD147C3 /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TurboModuleUtils.h; sourceTree = ""; }; ACBB7F62B267CC7C9BBBAE41DE94743B /* libFlipper-PeerTalk.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-PeerTalk.a"; path = "libFlipper-PeerTalk.a"; sourceTree = BUILT_PRODUCTS_DIR; }; ACC0F4349D58D335B27F1282C6714108 /* CocoaAsyncSocket.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaAsyncSocket.debug.xcconfig; sourceTree = ""; }; ACCA7A6E3C142EF4A0ACFF27DA8855EE /* ConcurrentHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentHashMap.h; path = folly/concurrency/ConcurrentHashMap.h; sourceTree = ""; }; + ACDBFAED8F715B67451411AA0A54F83B /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; ACDE026E7E3436E45FCF245D8CB49C47 /* TOCroppedImageAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCroppedImageAttributes.h; path = "Objective-C/TOCropViewController/Models/TOCroppedImageAttributes.h"; sourceTree = ""; }; ACF202B61D194289B0E43EA1932CB5ED /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = SDWebImage/Core/SDWebImagePrefetcher.h; sourceTree = ""; }; - ACF4D2F029752CBF4A1A59669F8AAEBA /* HermesExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = HermesExecutorFactory.h; sourceTree = ""; }; ACF5B261D4C1ED5A6B4EA7D551B4517C /* Varint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Varint.h; path = folly/Varint.h; sourceTree = ""; }; - ACF973B189198F2CB15242EDF1E8A725 /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = ""; }; ACFA40E85AC8F98E11C92BEEF692E7D1 /* Firebase.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Firebase.release.xcconfig; sourceTree = ""; }; ACFCB59D5CFCD7486AF23ECB8B8B0703 /* libevent-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "libevent-prefix.pch"; sourceTree = ""; }; - AD0F4EAC69CF470383D7C418BBB97AA0 /* RNFetchBlobRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobRequest.h; path = ios/RNFetchBlobRequest.h; sourceTree = ""; }; - AD1D738F3D061DB73D092B289BF79AB4 /* UMImageLoaderInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.release.xcconfig; sourceTree = ""; }; - AD1EBFFDFF2879BE4D70BA38E77046B3 /* REANodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REANodesManager.h; path = ios/REANodesManager.h; sourceTree = ""; }; + AD0D3A362D811F5EAEB5C140E2BDCCEF /* CoreModulesPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreModulesPlugins.h; path = React/CoreModules/CoreModulesPlugins.h; sourceTree = ""; }; AD234ACED22A090F331A623760C1DA2E /* VirtualEventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VirtualEventBase.h; path = folly/io/async/VirtualEventBase.h; sourceTree = ""; }; - AD2F63C80AA09A93F724FC566068DE6C /* react-native-mmkv-storage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-mmkv-storage.release.xcconfig"; sourceTree = ""; }; + AD2FF0BAAA560F5B8DBBE1906D7FD106 /* RNCAsyncStorage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCAsyncStorage-prefix.pch"; sourceTree = ""; }; AD40A94AE1ADFA1CDF9602BA3B04C90E /* libEXAV.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAV.a; path = libEXAV.a; sourceTree = BUILT_PRODUCTS_DIR; }; AD42BC2ED1D7BE159095952915525A01 /* Cursor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cursor.h; path = folly/io/Cursor.h; sourceTree = ""; }; - AD500CA9047F7D164BB55E65F0DF3A04 /* react-native-netinfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-netinfo-dummy.m"; sourceTree = ""; }; + AD585F5C53DCFDAFFB4294C34CF88D09 /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; AD590E4013E1628FF06BDECB4388B4EA /* NotificationQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NotificationQueue.h; path = folly/io/async/NotificationQueue.h; sourceTree = ""; }; + AD664037CDFA6CCEDAAA356ABF4A0B56 /* RNFBCrashlyticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBCrashlyticsModule.m; path = ios/RNFBCrashlytics/RNFBCrashlyticsModule.m; sourceTree = ""; }; AD6A0F2BBD4B6CB65337D865E0A1505F /* FIRCoreDiagnosticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsInterop.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h; sourceTree = ""; }; AD85699B31E40102C07F98DDD2FD6527 /* Partial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Partial.h; path = folly/functional/Partial.h; sourceTree = ""; }; AD8969F8B8FA962CAE381726C768953E /* ExecutorWithPriority.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ExecutorWithPriority.cpp; path = folly/executors/ExecutorWithPriority.cpp; sourceTree = ""; }; ADA91F9364E85FD662C943D0540B2363 /* GroupVarint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = GroupVarint.cpp; path = folly/GroupVarint.cpp; sourceTree = ""; }; ADB42F84974E7CE03E7F919814FB22A4 /* RSocketClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketClient.h; path = rsocket/RSocketClient.h; sourceTree = ""; }; - ADC8C6139ED601CD7DDF5D227EC03D8C /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = ""; }; + ADC19C5F25BC45B39BBB809E36798BF8 /* RCTConvert+RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+RNNotifications.m"; path = "RNNotifications/RCTConvert+RNNotifications.m"; sourceTree = ""; }; + ADC303935FF231B0CA9192400CD9661F /* BugsnagCollections.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCollections.m; sourceTree = ""; }; + ADD183449DEFDDF51E3C7BBCAB364AE6 /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = ""; }; ADDEF0085804B78FFCF10A662AA36569 /* Assume-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Assume-inl.h"; path = "folly/lang/Assume-inl.h"; sourceTree = ""; }; - ADE027B1B380A6AEF629544CB54C2721 /* RNFastImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFastImage-dummy.m"; sourceTree = ""; }; ADE3B99706E1995C0DCAAE8F4B722ECF /* RCT-Folly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCT-Folly-dummy.m"; sourceTree = ""; }; + ADEFD5B66F064F5EDDCD15BA9C6B49FC /* RCTRedBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTRedBox.mm; sourceTree = ""; }; + ADF844E92090E13A94B7FFED33503E01 /* RNForceTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNForceTouchHandler.m; sourceTree = ""; }; AE1F66FF6A4EA4EFE43EADA7E95E849A /* GULKeychainStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainStorage.h; path = GoogleUtilities/Environment/Private/GULKeychainStorage.h; sourceTree = ""; }; - AE40E991B5D04B318639EBE8C223A0C8 /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = ""; }; - AE637C50AF3036DAB1F1A4E16FE0CA9D /* BSGSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGSerialization.h; sourceTree = ""; }; + AE60EBEF10EB410D6454E9435714035A /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; AE6427E508F8E6A55971C77A7E65FEB1 /* rescaler_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_sse2.c; path = src/dsp/rescaler_sse2.c; sourceTree = ""; }; + AE6C0F640CBDB125D6165A9FE5277811 /* ARTSolidColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSolidColor.m; sourceTree = ""; }; + AE7EB057D8B7F41692CE68C832C174E7 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + AE81EB40D8855381204EDA2A1E90003E /* UMAppLoader.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMAppLoader.release.xcconfig; sourceTree = ""; }; AE886A948A2579DB6EF611D087C1C182 /* GULNSData+zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULNSData+zlib.h"; path = "GoogleUtilities/NSData+zlib/Public/GULNSData+zlib.h"; sourceTree = ""; }; - AE8AA051572EF613B4252ED5DFE2FA95 /* EXHaptics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.release.xcconfig; sourceTree = ""; }; + AE894CCD5487DD70504F6EFA69532ADF /* BSGConfigurationBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGConfigurationBuilder.h; sourceTree = ""; }; + AE8AC1829EFA92E41449AE5D122C171F /* ReactNativeUiLib-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeUiLib-dummy.m"; sourceTree = ""; }; AE8CA691F749AEA3C9AE791BCF1E2D3B /* SKNodeDescriptor.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKNodeDescriptor.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNodeDescriptor.mm; sourceTree = ""; }; AE90C8B5FF1EB890795F8EFBBE3B16F2 /* Observables.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Observables.cpp; path = yarpl/observable/Observables.cpp; sourceTree = ""; }; AEA69030E785D72A0C0CC8E9C51F1A44 /* GDTCCTCompressionHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTCompressionHelper.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTCompressionHelper.h; sourceTree = ""; }; - AED24E7E15A398FD2C86ADF7B3966EF0 /* RNFastImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.debug.xcconfig; sourceTree = ""; }; - AEDD290D0FF52975B1C82C19D809F8AA /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = ios/QBImagePicker/QBImagePicker/ja.lproj; sourceTree = ""; }; + AEB135E8942546DB1AF42D3CF1B59508 /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxMethod.mm; sourceTree = ""; }; AEE92C474B44CBA057719274639B2098 /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/String.h; sourceTree = ""; }; AEEFB0BA442774E323DD9CC6CD76ECA4 /* GDTCCTUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTUploader.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTUploader.h; sourceTree = ""; }; - AEF7F78F7DABD39ED7057DBA624CADAC /* RsaFormatter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RsaFormatter.m; sourceTree = ""; }; - AF0A3520A89842B19B581DAFD17D99B5 /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = ""; }; + AF1052A3AA28D97DA92D09B41486C8AE /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; AF137C52FE6DED8BCA627862CACD77AE /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = jsi.h; path = destroot/include/jsi/jsi.h; sourceTree = ""; }; + AF14A4D82AF1821431DB8664A697F559 /* FFFastImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageView.m; path = ios/FastImage/FFFastImageView.m; sourceTree = ""; }; AF153272AA59E892E9EAFBABC890E928 /* Benchmarks.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Benchmarks.cpp; path = rsocket/benchmarks/Benchmarks.cpp; sourceTree = ""; }; AF1AA0233F4B030FCA8C522FDDCED681 /* EDFThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EDFThreadPoolExecutor.h; path = folly/executors/EDFThreadPoolExecutor.h; sourceTree = ""; }; - AF1C1CB0C0D24F40BE887B236FE0EF0D /* BugsnagSessionTrackingApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingApiClient.h; sourceTree = ""; }; AF21403E28C34FCEB1EB5AD97C2AAF24 /* vp8_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8_dec.h; path = src/dec/vp8_dec.h; sourceTree = ""; }; - AF27FB11110981F488457F0EE5BADBCB /* EXSessionTaskDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionTaskDispatcher.h; sourceTree = ""; }; - AF414C89E5926FFEC87E1AA4BC09DA62 /* UIResponder+FirstResponderTemp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIResponder+FirstResponderTemp.h"; sourceTree = ""; }; + AF33CE15513792246634152E3DCA3C2B /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = CoreModulesPlugins.mm; sourceTree = ""; }; + AF492A2FAAF74AC6ADAD5E79DCE6A08A /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; AF5285E913D9C8AD1A6810470E198466 /* yuv_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse41.c; path = src/dsp/yuv_sse41.c; sourceTree = ""; }; - AF6EC2F17768F6FE1167C1A6CBCE23AC /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; - AF6FA799535FC9D7416AB0DAB4B8D253 /* REASetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASetNode.h; sourceTree = ""; }; AF72FD600DE7E2D330BA50F877993E05 /* libUMCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMCore.a; path = libUMCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; + AF88246064A0F24D2BEA1AAA4535D82C /* RNPushKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKit.m; path = RNNotifications/RNPushKit.m; sourceTree = ""; }; AF92831C225D2F0E3C8CE8446FF6B84F /* MiniPBCoder_OSX.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MiniPBCoder_OSX.cpp; path = Core/MiniPBCoder_OSX.cpp; sourceTree = ""; }; + AFA925ABF9B55E902B2FC9DB241E3192 /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; AFAAC35F1D7EBA12FAE2CE82168A8B09 /* AtomicHashMap-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicHashMap-inl.h"; path = "folly/AtomicHashMap-inl.h"; sourceTree = ""; }; AFBA0DC87250CE5452721227940656DE /* UIImage+ExtendedCacheData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ExtendedCacheData.m"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.m"; sourceTree = ""; }; AFDEB7B9A74282D9812379970531FCAB /* FIRCLSFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFile.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSFile.h; sourceTree = ""; }; + AFE9F1D8D32C245F4D11F96848D588CB /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; AFFA37E0D240F51E9319F97795876607 /* yuv.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv.c; path = src/dsp/yuv.c; sourceTree = ""; }; + AFFEB724A1817711BD36B10EF0CDD742 /* BSGJSONSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGJSONSerialization.h; sourceTree = ""; }; B001EE8C196C9E10035286FE7EE84032 /* FIRCLSInternalLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSInternalLogging.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSInternalLogging.h; sourceTree = ""; }; B00A3D811FE95BAA79458C70701C7D1E /* json.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json.h; path = folly/json.h; sourceTree = ""; }; B00F17CD86E0960793ED999778327FA0 /* FIRAEvent+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRAEvent+Internal.h"; path = "Crashlytics/Crashlytics/Helpers/FIRAEvent+Internal.h"; sourceTree = ""; }; + B0165A96BF4E5166DAC954DD7CC76CC1 /* React-RCTBlob.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.debug.xcconfig"; sourceTree = ""; }; B017EE09913730740C6957C49A600CCC /* ThreadLocalDetail.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadLocalDetail.cpp; path = folly/detail/ThreadLocalDetail.cpp; sourceTree = ""; }; B024CE0A8658C173B1A92EAEF273CA05 /* AtomicHashArray-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicHashArray-inl.h"; path = "folly/AtomicHashArray-inl.h"; sourceTree = ""; }; + B02D8D43A8E6786CF62BCF30E24A36D9 /* QBAlbumCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumCell.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.m; sourceTree = ""; }; B042F5A5AB0621F4132E429D09681A9B /* SDWebImageOptionsProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOptionsProcessor.h; path = SDWebImage/Core/SDWebImageOptionsProcessor.h; sourceTree = ""; }; B0465C015983248F32D4F2E83D69D8D1 /* Benchmark.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Benchmark.h; path = folly/Benchmark.h; sourceTree = ""; }; - B08EDAFE30DCC1ACD8476AF6BAA6AA4A /* EXResumablesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXResumablesManager.m; sourceTree = ""; }; + B04A0DBA2F42C8B8861D99EDCA183129 /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; B09923908C0ED67A7B5131B7BB580CEE /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = "Objective-C/TOCropViewController/Resources/de.lproj"; sourceTree = ""; }; + B0B15E0495BCA939F82E3999573D2DFB /* BugsnagLastRunInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagLastRunInfo.h; sourceTree = ""; }; B0B214D775196BA7CA8E17E53048A493 /* libSDWebImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImage.a; path = libSDWebImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; - B0B6A4BEA5647EC19E7091D1E7024A4F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - B0DFF74EA344E7E6E1B9A7FA9EDF17D8 /* BugsnagSessionTrackingPayload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingPayload.h; sourceTree = ""; }; + B0B5D9B71A83EC9F23FB5432F6A776D9 /* EXVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoPlayerViewController.m; sourceTree = ""; }; + B0D5A182C42291DAF7F26A11BD8C8483 /* BSGEventUploadObjectOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGEventUploadObjectOperation.h; sourceTree = ""; }; B0F4A1B84ED63749F8044921E15E45F5 /* FBLPromise+Do.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Do.m"; path = "Sources/FBLPromises/FBLPromise+Do.m"; sourceTree = ""; }; B0FCCFB255C5A631079CFB219A9AB261 /* RSocketErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketErrors.h; path = rsocket/RSocketErrors.h; sourceTree = ""; }; - B0FEACC0CB1FB92340BA8E160A2C2E6A /* ReactNativeVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactNativeVersion.h; sourceTree = ""; }; + B126233D13D7E7E44723CA60B4D89984 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; B12663CABBD318E5F233935D392A54B0 /* EventBaseManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBaseManager.cpp; path = folly/io/async/EventBaseManager.cpp; sourceTree = ""; }; - B12861CBED9CCA065F175446A2800D98 /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; - B1365A8800228D7EE62CD060F5699BFA /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = ""; }; - B140572A6A5316649AE4678D57A91B08 /* EXImageLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXImageLoader-dummy.m"; sourceTree = ""; }; B145BBC0D222D042C25563A552C7B1F1 /* ShutdownSocketSet.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ShutdownSocketSet.cpp; path = folly/io/ShutdownSocketSet.cpp; sourceTree = ""; }; B15175F2164C98A39C87EB95FFC28E02 /* BlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlockingQueue.h; path = folly/executors/task_queue/BlockingQueue.h; sourceTree = ""; }; B156798CE872930251DCFF8958AA59D3 /* FlipperKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FlipperKit.release.xcconfig; sourceTree = ""; }; B167633F9DF72ADB205A2AECBB9C05A5 /* FBLPromise+Timeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Timeout.h"; path = "Sources/FBLPromises/include/FBLPromise+Timeout.h"; sourceTree = ""; }; - B17255A8E21167D60FD904F91AE80CFB /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "ios/QBImagePicker/QBImagePicker/zh-Hans.lproj"; sourceTree = ""; }; B173169CAFCA51717A0990FA0F85CAF4 /* StreamsWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamsWriter.h; path = rsocket/statemachine/StreamsWriter.h; sourceTree = ""; }; - B1752A0E44965AE4FF13FEF2603B4F52 /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; B180A30621C18D083C4C04ABBBD78726 /* libwebp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libwebp.release.xcconfig; sourceTree = ""; }; - B19642D11F390E64F58DB4EEA85AE42A /* EXAV.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.debug.xcconfig; sourceTree = ""; }; - B1C2E4CD8A04D7C5D42B3B687D150469 /* RCTUIImageViewAnimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTUIImageViewAnimated.h; path = Libraries/Image/RCTUIImageViewAnimated.h; sourceTree = ""; }; - B1C879FE4E1A1929C45117417AD8A8E7 /* EXVideoThumbnails.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXVideoThumbnails.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B199080EDD3C366AAB586045837DF903 /* react-native-blur.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-blur.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B1B5F8F61C6845AF170F2EED2DAE8326 /* VibrancyViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VibrancyViewManager.h; path = ios/VibrancyViewManager.h; sourceTree = ""; }; + B1BC2E3C86586718127703C3E68A9E23 /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; B1CC5F300C379D9AFF7A7F9E68C4BC16 /* TcpConnectionFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpConnectionFactory.cpp; path = rsocket/transports/tcp/TcpConnectionFactory.cpp; sourceTree = ""; }; B1E2BB6BFC8F3CCCB19085DD174E8AC0 /* ThreadWheelTimekeeper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadWheelTimekeeper.cpp; path = folly/futures/ThreadWheelTimekeeper.cpp; sourceTree = ""; }; + B1E53AC7BC87F814F9DFAFF685664566 /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = ""; }; + B1E561BB53064F378156F22F2A0939AC /* LNAnimatorTemp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNAnimatorTemp.m; sourceTree = ""; }; B1F5D075BFE910A7152B6F26241607C1 /* Optional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Optional.h; path = folly/Optional.h; sourceTree = ""; }; + B1F760470CBA775E2C937B689C311319 /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = ""; }; B1FF6B2CA1B1140675F34754AA1FAC9C /* SDImageIOCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOCoder.m; path = SDWebImage/Core/SDImageIOCoder.m; sourceTree = ""; }; + B21A11DD91D2D39B41DAC66618429CFE /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; B21C9729FD9EC0FB30E16883878AF772 /* AsyncTimeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTimeout.h; path = folly/io/async/AsyncTimeout.h; sourceTree = ""; }; - B2211BB8A0759B63037E2BEA6B0D7BD2 /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = ""; }; - B2253C90BA1A0E6FCFF5C7668D984D3E /* EXSessionTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionTaskDelegate.h; sourceTree = ""; }; + B2239967123C25EBE50C9AE997EBA3B2 /* rn-fetch-blob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-fetch-blob-dummy.m"; sourceTree = ""; }; + B227BFF053D18A02145168DAB7EF0D3D /* KeyCommands.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = KeyCommands.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; B23643BC6130F9372FAFC59EED9BF7DA /* F14IntrinsicsAvailability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14IntrinsicsAvailability.h; path = folly/container/detail/F14IntrinsicsAvailability.h; sourceTree = ""; }; B2479DB2FE66EE76609DF15B3AB5F1F9 /* FIRCLSFCRAnalytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFCRAnalytics.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSFCRAnalytics.m; sourceTree = ""; }; + B248EA8DEF3C40A83D0E1F7246D05B6D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; B29C1B4AEAB65007F1EE031667FAF0FC /* NSButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSButton+WebCache.m"; path = "SDWebImage/Core/NSButton+WebCache.m"; sourceTree = ""; }; + B2A940E26A5A7DA164A5F39A2B057952 /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; B2ACB7C42F1DE37F79D071DC63437F91 /* SSLContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLContext.h; path = folly/io/async/SSLContext.h; sourceTree = ""; }; + B2AD51EBD6D9EED1E920D3576E9CD20B /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; + B2B0C2B2DA9D3780174162903F4E336E /* RCTVibrationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibrationPlugins.h; path = Libraries/Vibration/RCTVibrationPlugins.h; sourceTree = ""; }; + B2B1577097A380C5EFC177FF78557FF4 /* RNCSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewLocalData.h; path = ios/SafeAreaView/RNCSafeAreaViewLocalData.h; sourceTree = ""; }; B2B8C59FD073EE3821727E5FF2FE7236 /* json_pointer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_pointer.cpp; path = folly/json_pointer.cpp; sourceTree = ""; }; - B2FB3ADC39B1FC7A94AB0109021D6960 /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; - B300AD2B985ED1DF826E56296D2EF806 /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; - B30C952062B51376C8A15B9E4FF935CF /* RCTConvert+REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+REATransition.h"; sourceTree = ""; }; + B2E0119137ABBA5AA5D171159172945D /* React-RCTSettings.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTSettings.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B2ECBA9C7F58B36347D49D2C42DC9E92 /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = ""; }; + B301AAB908F0277D9B59DFA5796189EB /* ARTCGFloatArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTCGFloatArray.h; path = ios/ARTCGFloatArray.h; sourceTree = ""; }; + B30D6FE2E629D083BE994DC651DCB6DC /* react-native-safe-area-context-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-safe-area-context-prefix.pch"; sourceTree = ""; }; + B315AC002517DB5B0E4BB7730C693375 /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; + B319FBAEAC3E1E7C2A80BB51E7C7F421 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; B32D5C22FD2CA2DB5B184D29AD6792C8 /* MMKVCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MMKVCore-dummy.m"; sourceTree = ""; }; B32DD95FEA09DF1C9AAFDCB797ACD40D /* Flipper-Glog.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Glog.release.xcconfig"; sourceTree = ""; }; B334C8C9484417B4553E4A2ADA7991EA /* Unistd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unistd.h; path = folly/portability/Unistd.h; sourceTree = ""; }; B335892566A9D0203E6E06C4932EBC6B /* Flipper-Glog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-Glog-dummy.m"; sourceTree = ""; }; - B34D7AD717D6773326F1B507DC17B4FE /* Pods-NotificationService-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-NotificationService-acknowledgements.markdown"; sourceTree = ""; }; B3513E19B47BF3451C5B25B0E2ED515B /* FIRBundleUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRBundleUtil.m; path = FirebaseCore/Sources/FIRBundleUtil.m; sourceTree = ""; }; + B35A3F11DC99091C6A796255001C7507 /* BSGEventUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGEventUploader.m; sourceTree = ""; }; + B36D2A2E934218455F4CFB5C60922B9A /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; B373A07D6A1D7A65054827E179FE0B52 /* FLEXNetworkObserver.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FLEXNetworkObserver.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkObserver.mm; sourceTree = ""; }; + B374D73EA1612B85750D61AE6F16271F /* BugsnagEndpointConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagEndpointConfiguration.m; sourceTree = ""; }; B37603DEF7D9FC146306428CF41DA217 /* ThriftStreamShim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThriftStreamShim.h; path = yarpl/flowable/ThriftStreamShim.h; sourceTree = ""; }; - B378EC06F0CDD0BA76B2B7730AB5EB9F /* React-runtimeexecutor.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-runtimeexecutor.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - B37A5E9ECD5A7DA22C3BE71712F77862 /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; B37CF269BCAE8B7D2A9F579D77ED442F /* Synchronized.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Synchronized.h; path = folly/Synchronized.h; sourceTree = ""; }; - B37E56A6518D4FD9F770434400B57F30 /* Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Private.h; sourceTree = ""; }; B38BE1DD0BFD5C7BECE27605B2D9D362 /* UTF8String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UTF8String.h; path = folly/UTF8String.h; sourceTree = ""; }; - B39BBB56791DB7A6202AF7BD7CFDF4A1 /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = ""; }; + B38EFFCE50312E2914CA7E5325427451 /* EXAppleAuthentication.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAppleAuthentication.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B397F83E5364B2FB27FC44746EC7445B /* BugsnagKVStoreObjC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagKVStoreObjC.m; sourceTree = ""; }; B39FA304FAD2133BE2076EF1F90A524A /* FIRInteropParameterNames.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInteropParameterNames.h; path = Interop/Analytics/Public/FIRInteropParameterNames.h; sourceTree = ""; }; - B3AC2B7D4446EC25EA93B3247821553F /* RNLocalize.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.debug.xcconfig; sourceTree = ""; }; B3C6BFB580171BD8CB2AC2C4D3FDE006 /* NamedThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NamedThreadFactory.h; path = folly/executors/thread_factory/NamedThreadFactory.h; sourceTree = ""; }; + B3D315E54667C3E03E9D6864813B0E38 /* React-RCTLinking.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.debug.xcconfig"; sourceTree = ""; }; B3D9CC080476DE1289297FCA471067E9 /* Tearable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Tearable.h; path = folly/synchronization/Tearable.h; sourceTree = ""; }; B3DC606F8383444756BD0A8665311ACC /* DestructorCheck.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DestructorCheck.h; path = folly/io/async/DestructorCheck.h; sourceTree = ""; }; + B3DCE9A7714DB904FBF656639EC14D50 /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; + B3DDF3E68ACB1EB42C9B28FEFE55CD1A /* BugsnagConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagConfiguration.m; sourceTree = ""; }; B3EA108D86B0FF481C6D662FACD8A709 /* FIRCLSURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSession.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/FIRCLSURLSession.h; sourceTree = ""; }; - B40F1F64B26A5BC6C96BF54AB2B955BA /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; - B410AD520404835C8EBA3DA78F004D54 /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; - B4221AD9C3E75B4020D52ED2775A4F71 /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; + B3F477DAC2CCDDEF7E1FA593B313DA60 /* UMAppLoader.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMAppLoader.debug.xcconfig; sourceTree = ""; }; + B4085A0F7918181A1D30B9BC6816F89B /* React-RCTLinking.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTLinking.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B40DF7C2CDE03744D98968D0D2ACF035 /* RCTView+SafeAreaCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTView+SafeAreaCompat.h"; path = "ios/SafeAreaView/RCTView+SafeAreaCompat.h"; sourceTree = ""; }; + B41E122A072DAC1D36112A10BA073686 /* BSGAppHangDetector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGAppHangDetector.h; sourceTree = ""; }; B42749E166A6F32EB791289DDD896CB2 /* SDMemoryCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDMemoryCache.m; path = SDWebImage/Core/SDMemoryCache.m; sourceTree = ""; }; B427BF719A851FABFC69FC83BC0A0D4F /* FirebaseCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCore-dummy.m"; sourceTree = ""; }; - B430AED966FDB4631652A1DD9247A3FC /* UMPermissionsMethodsDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsMethodsDelegate.h; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.h; sourceTree = ""; }; B43874C6CBB50E7134FBEC24BABFE14F /* libGoogleUtilities.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleUtilities.a; path = libGoogleUtilities.a; sourceTree = BUILT_PRODUCTS_DIR; }; - B4390896020B6A75E90AB1D8E8F668D9 /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = ""; }; - B4408FD92C5D3CB1DC878DEA92A18057 /* React-RCTBlob.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.debug.xcconfig"; sourceTree = ""; }; B44CE495171BBFB5DACBAF704180480D /* GDTCCTCompressionHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTCompressionHelper.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTCompressionHelper.m; sourceTree = ""; }; + B44FE944CBD14BC532A9DD4246A36A3B /* react-native-netinfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-netinfo.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B4507C7DFD6A67ED8484D249AA895C20 /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; B45474904DD6995F174BFA84F6F23090 /* vlog_is_on.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vlog_is_on.h; path = src/glog/vlog_is_on.h; sourceTree = ""; }; - B460A23CFB410A25BB9C4EE0C0B25E08 /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = ""; }; B46883F207ACBB452D6EE32DEAF039EE /* QueuedImmediateExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QueuedImmediateExecutor.h; path = folly/executors/QueuedImmediateExecutor.h; sourceTree = ""; }; - B46B8EA0BB5ABD4DBE239D45E020E1A2 /* EXVideoThumbnails-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXVideoThumbnails-prefix.pch"; sourceTree = ""; }; B46B99D18C68C5C66A1CED7FA48ADB82 /* IPAddressSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressSource.h; path = folly/detail/IPAddressSource.h; sourceTree = ""; }; + B46F85E40519FA5AB0A27F10596B9823 /* SafeAreaManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SafeAreaManager.m; sourceTree = ""; }; B46F8DE0AECDD9DFDBD2A2738BE7B127 /* dec_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_neon.c; path = src/dsp/dec_neon.c; sourceTree = ""; }; - B4702434A0A335EFD4EA389FF6AD9DE9 /* RNRootView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNRootView-prefix.pch"; sourceTree = ""; }; - B471D9F4E3A99D0C4ECD0EAC118A4C34 /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; + B4732D765306D8AD1EEA3CE1FB3C3263 /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B47797D3D59C968EF82764FEA01FCDB7 /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspector.mm; sourceTree = ""; }; + B4874D1CB2474417B8C726895842F734 /* ObservingInputAccessoryViewTemp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ObservingInputAccessoryViewTemp.h; sourceTree = ""; }; B48D3B93369EBB01AFF2CD25B126C52E /* FIRCLSGlobals.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSGlobals.h; path = Crashlytics/Crashlytics/Components/FIRCLSGlobals.h; sourceTree = ""; }; B490FDB36545F4DD07EA59B9D2ABF055 /* ConcurrentHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentHashMap.h; path = folly/concurrency/ConcurrentHashMap.h; sourceTree = ""; }; B4A669AEE4E790FB79D3AFC1B3EF5C78 /* Memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Memory.h; path = folly/portability/Memory.h; sourceTree = ""; }; B4A78ECF85E46B193729EC71AE037CAC /* Subscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subscription.h; path = yarpl/flowable/Subscription.h; sourceTree = ""; }; + B4B0CDEF0F319F78ECA60005B35D15D0 /* RCTConvert+FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FIRApp.h"; path = "ios/RNFBApp/RCTConvert+FIRApp.h"; sourceTree = ""; }; B4BA5D239213ECF054E3BA8966E4EC22 /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "SDWebImage/Core/UIView+WebCacheOperation.h"; sourceTree = ""; }; B4E063DE07DC46F94A32EAAEA472888D /* Flipper-DoubleConversion.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-DoubleConversion.release.xcconfig"; sourceTree = ""; }; + B4EE1F2A065F2CF26B2C1EB0F8CFB0F7 /* HighlighterView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = HighlighterView.h; sourceTree = ""; }; B4F4D024338D6DCA927F3774F1084E88 /* openssl_opensslconf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = openssl_opensslconf.h; path = Core/aes/openssl/openssl_opensslconf.h; sourceTree = ""; }; B4FBBE4BE1E75B75A567276F3B442B94 /* MicroLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroLock.h; path = folly/MicroLock.h; sourceTree = ""; }; + B50DE8C8F2A19864483D8FC8DD07475B /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; B50E06C043C66E717739CED2E150DC3A /* FIRExceptionModel_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRExceptionModel_Private.h; path = Crashlytics/Crashlytics/Private/FIRExceptionModel_Private.h; sourceTree = ""; }; - B51EEE12985C53348E194EBB46753C59 /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = ""; }; - B522D15381A52DFEA720761C7E15BB22 /* BSGSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGSerialization.m; sourceTree = ""; }; + B50E418173626EB95A687FAA9F1361ED /* BugsnagUser+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagUser+Private.h"; sourceTree = ""; }; B533344AF098D6D3E0A567188723B749 /* QueuedImmediateExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QueuedImmediateExecutor.h; path = folly/executors/QueuedImmediateExecutor.h; sourceTree = ""; }; B5354F53863FEF868B169393D964F0FA /* ShutdownSocketSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ShutdownSocketSet.h; path = folly/io/ShutdownSocketSet.h; sourceTree = ""; }; - B5358846B097AB6CC5F7C835FA2E06EB /* ReactCommon.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.debug.xcconfig; sourceTree = ""; }; - B53D379AC1EAAE80F7B75CCFA8E19102 /* RNCPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCPickerManager.h; path = ios/RNCPickerManager.h; sourceTree = ""; }; - B53E7F80E8EA3C88D4B762C16A7A1285 /* BugsnagReactNative.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BugsnagReactNative.h; path = cocoa/BugsnagReactNative.h; sourceTree = ""; }; - B5407FE99A4E13F6574E3DAE8499B6CB /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + B54848B8630496BE379E72B317F1C472 /* Octicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Octicons.ttf; path = Fonts/Octicons.ttf; sourceTree = ""; }; + B558A1DF0DF86EF02FB44FA2DBAE46B7 /* MMKVStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKVStorage.h; path = ios/MMKVStorage.h; sourceTree = ""; }; + B55B72929A8B06D0ABA87CB5C61D4A15 /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; B55ED6D43E31453B520A2C98A7BF77CC /* SDImageGraphics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGraphics.h; path = SDWebImage/Core/SDImageGraphics.h; sourceTree = ""; }; B56F12B746CB0F16C8001E746A25E3D0 /* ThreadedExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadedExecutor.h; path = folly/executors/ThreadedExecutor.h; sourceTree = ""; }; - B57234370441A1188CC4B57867664254 /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; + B575DF54154C3EFCDB5A1FF18BDE48A3 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; + B57D2A87F8D209EC3EE1910BF101A458 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; B5841F5B83CE4B881DD2006D46B09497 /* ThreadName.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadName.cpp; path = folly/system/ThreadName.cpp; sourceTree = ""; }; B58D427C9F4C3FA81D777B5ACD90965F /* Init.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Init.cpp; path = folly/ssl/Init.cpp; sourceTree = ""; }; - B593F833F9150F17305B0586F57644BF /* UMReactNativeAdapter.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.debug.xcconfig; sourceTree = ""; }; - B59D9C50BCA9A3F5BD94DA9FA5CBBDC0 /* RCTBlobCollector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBlobCollector.h; sourceTree = ""; }; - B5A4BA67B1548EB00B151EBEDCB2EDD8 /* BugsnagCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashSentry.h; sourceTree = ""; }; - B5D9F322EAC1576F0B62D4E517EC9CD5 /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; - B5E74BA3CFD1C2D81B0AB6793956639D /* React-jsi.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.debug.xcconfig"; sourceTree = ""; }; - B5EB34D7CFAE513CC4DC0CB1BF38A8F4 /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; - B5F5D314E31E7F95E9256E46FC96B037 /* EXAudioSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioSessionManager.m; path = EXAV/EXAudioSessionManager.m; sourceTree = ""; }; + B59BA6E9E92F0A289F145CF2CEF05F1D /* RCTCustomKeyboardViewControllerTemp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomKeyboardViewControllerTemp.m; sourceTree = ""; }; + B5DC539B8635A83E5170C5A413DDBF15 /* MessageTypesInlines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageTypesInlines.h; sourceTree = ""; }; + B5FC7F17ABCDE32FBB838064E95987E3 /* React-jsiexecutor.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.debug.xcconfig"; sourceTree = ""; }; B601C6E328718F723F5CE385782660DD /* SysStat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysStat.h; path = folly/portability/SysStat.h; sourceTree = ""; }; B6170D91BAB843A4CF639875AD18E134 /* CancellationToken.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CancellationToken.cpp; path = folly/CancellationToken.cpp; sourceTree = ""; }; - B61FD505D133FEF2FA10674B51D14C7F /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; + B622CF7B7190C737864DAF48DBAD79FD /* react-native-slider.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-slider.debug.xcconfig"; sourceTree = ""; }; B6256683A3DCE9CB6912C1017947136B /* VirtualExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VirtualExecutor.h; path = folly/VirtualExecutor.h; sourceTree = ""; }; - B639B2586982125945AC60AB08159B6D /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = Libraries/Image/RCTImageStoreManager.h; sourceTree = ""; }; - B668CB219669071E5D6FA7BD68FB01E0 /* BSG_KSCrashContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashContext.h; sourceTree = ""; }; + B63229FD73062316E617CD530F989313 /* RNVectorIcons.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.debug.xcconfig; sourceTree = ""; }; + B651F536139C25C10C31A34A85FEFB3B /* RNGestureHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandler.m; path = ios/RNGestureHandler.m; sourceTree = ""; }; B66CDF20D4E34DD68D5EEBC0BAE954FD /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Sources/Private/FIROptionsInternal.h; sourceTree = ""; }; - B66F8C2463B69255E12FF8E84CF5148E /* BugsnagSink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSink.h; sourceTree = ""; }; - B6743FEDDF72DFBF09FBCB4FA3768AA3 /* QBVideoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.h; sourceTree = ""; }; B69368CC35C431BE1843055E90E0E6C7 /* Enumerate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Enumerate.h; path = folly/container/Enumerate.h; sourceTree = ""; }; B6951FFCEC3C2314DC3AF5B2C5BE38D1 /* FIRCLSSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSettings.h; path = Crashlytics/Crashlytics/Models/FIRCLSSettings.h; sourceTree = ""; }; - B6A6BA3A53C99B66F5A5DC13B9AA5AFB /* BSG_KSCrashSentry_CPPException.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_CPPException.mm; sourceTree = ""; }; + B69F271A5C44B69E65EC9A06D5CF0CA2 /* RCTImageViewManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageViewManager.mm; sourceTree = ""; }; B6AC1192986FF4E613E462BDDD84A013 /* FBCxxFollyDynamicConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FBCxxFollyDynamicConvert.mm; path = iOS/FlipperKit/FBCxxFollyDynamicConvert/FBCxxFollyDynamicConvert.mm; sourceTree = ""; }; + B6BB9D8F6BE1944E983E7AA3816B439C /* AntDesign.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = AntDesign.ttf; path = Fonts/AntDesign.ttf; sourceTree = ""; }; B6D2E1D1CAC874F5DD7600D748D64C55 /* Traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Traits.h; path = folly/Traits.h; sourceTree = ""; }; - B6FEF709B89E01E699A824F43EAC7A48 /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = ""; }; - B7198677D9634621B1E589E131CAEE47 /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; - B741D44A1AF957ABBBDBDB5B8B746C0F /* React-RCTImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.debug.xcconfig"; sourceTree = ""; }; - B748CB872ABC5F7BE457CDBB34AFAA97 /* RNCookieManagerIOS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCookieManagerIOS.m; path = ios/RNCookieManagerIOS/RNCookieManagerIOS.m; sourceTree = ""; }; + B6D4F2FE824E43B1277BA6B136BEC7B6 /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; + B7358C94276CCEC1B4AE7E9A1A8E374F /* Bugsnag.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Bugsnag.m; sourceTree = ""; }; B7554BFC029B0AB8A8E3D5C447DEA119 /* MacAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MacAddress.h; path = folly/MacAddress.h; sourceTree = ""; }; - B757F33E547FB3C2806852E7790225A8 /* ARTSolidColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSolidColor.m; sourceTree = ""; }; B75A261FE3CE62D5A559B997074E70FC /* libreact-native-background-timer.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-background-timer.a"; path = "libreact-native-background-timer.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - B75D8EA9B4C056AF9CB67C12DB2B04E4 /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; - B779A2E0BA8CD2969170D30344306604 /* RCTConvert+ART.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+ART.m"; path = "ios/RCTConvert+ART.m"; sourceTree = ""; }; - B78438139966D602FB55C96C0171935E /* RNBootSplash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBootSplash.m; path = ios/RNBootSplash.m; sourceTree = ""; }; - B78B318FBBAB55DEB6EA709E9B47506A /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; + B775B43D0D55C6186D1F81AACAC574A6 /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; + B7789F4DD5CB94A03DCE8958303BAB32 /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; + B7882807A6DD96AEF4AE5270F95E61EE /* RNFBCrashlyticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBCrashlyticsModule.h; path = ios/RNFBCrashlytics/RNFBCrashlyticsModule.h; sourceTree = ""; }; B798703660D7BD3CEAD6BD9B086379AA /* UniqueInstance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UniqueInstance.h; path = folly/detail/UniqueInstance.h; sourceTree = ""; }; + B79E44E27992535930335B6EE61DC447 /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; + B7BAE7EC72A94B862129150291E3A12E /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; + B7BBE31EBE16FD2D7953E7902D4D8227 /* react-native-notifications.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.debug.xcconfig"; sourceTree = ""; }; + B7BC91B67A80E1AB170A8F6E59819C61 /* HighlighterViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = HighlighterViewManager.h; sourceTree = ""; }; + B7CB201A324A5C467DCAB13465BE0F9F /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = ""; }; B7D3AEE78A9732BA1D67DD3282B58E05 /* Flipper-Folly.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Folly.debug.xcconfig"; sourceTree = ""; }; + B7DDC6B95ED221B17E79CCE904953D67 /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; B7EC11A8C0A5E64EF001007C760450B6 /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = SDWebImage/Core/SDWebImageManager.m; sourceTree = ""; }; - B8179EF985F6BF8C7BC3EF81ED1DED35 /* EXAVObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVObject.h; path = EXAV/EXAVObject.h; sourceTree = ""; }; - B82467061550F63C530C4605A63703DF /* react-native-slider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-slider-dummy.m"; sourceTree = ""; }; + B83C0C0C4E720AD644EF057182F53228 /* RNCAsyncStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorage.h; path = ios/RNCAsyncStorage.h; sourceTree = ""; }; + B8596D6EBD7AD819A94AE4D14F360601 /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; B868B6CA52D88A582EACBA25D7B6A530 /* dynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic.h; path = folly/dynamic.h; sourceTree = ""; }; - B8692BF77F3FFBB13B94239A4E5ED9E8 /* RCTNetworkPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworkPlugins.mm; sourceTree = ""; }; B876C23C439C3C7CCABB78AE23C0A80D /* SDWebImageDownloaderRequestModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderRequestModifier.h; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.h; sourceTree = ""; }; B8861BD54155CF886F44EE104B6E00F2 /* Conv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Conv.h; path = folly/Conv.h; sourceTree = ""; }; B88A54159B245E727A6D16DEFE105A09 /* libMMKV.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libMMKV.a; path = libMMKV.a; sourceTree = BUILT_PRODUCTS_DIR; }; B88B9FC40F2A4122608EDB5E15FAF6AE /* SingletonThreadLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonThreadLocal.h; path = folly/SingletonThreadLocal.h; sourceTree = ""; }; - B8968D530ABEFF71757BB9BE16BF12EA /* BugsnagReactNative-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BugsnagReactNative-dummy.m"; sourceTree = ""; }; B89880C34A22F7D671DEC637659A0068 /* SDDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDisplayLink.m; path = SDWebImage/Private/SDDisplayLink.m; sourceTree = ""; }; + B8B04429ED933128C921E875024E3240 /* BugsnagApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagApp.h; sourceTree = ""; }; B8BFDD279AF1CA07792F3710FF5DC905 /* TOCropScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropScrollView.m; path = "Objective-C/TOCropViewController/Views/TOCropScrollView.m"; sourceTree = ""; }; B8CD4B9B578CE9FA38114B638C9CAA78 /* libRNCMaskedView.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNCMaskedView.a; path = libRNCMaskedView.a; sourceTree = BUILT_PRODUCTS_DIR; }; - B8D6E693B6AD7698CFE7993822DB075B /* RCTScrollEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollEvent.h; sourceTree = ""; }; - B8EBB3E361DD9CBCB8E24FD693F40C77 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - B8FB3CA62BC13185F8B7FB56E71D1507 /* ARTTextManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTTextManager.h; sourceTree = ""; }; - B8FBDA93C17934D9703B0468BB9788D8 /* READebugNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = READebugNode.h; sourceTree = ""; }; - B8FF33E3248604EAAD1185ED8CEDA331 /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; + B8D8BFEBC605F5B2FC3A82710426E43C /* REAConcatNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAConcatNode.h; sourceTree = ""; }; + B8F219340A061E4C9BCAE205A836076D /* RNCCameraRollManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCCameraRollManager.h; path = ios/RNCCameraRollManager.h; sourceTree = ""; }; + B8F9958D28A43B51CE55A9E673B47073 /* React-Core.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.debug.xcconfig"; sourceTree = ""; }; B90E21FA5E3F701B8D278B2E7060FECA /* Format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Format.h; path = folly/Format.h; sourceTree = ""; }; B910507E6F3163603403C8E93367A32B /* BitIteratorDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitIteratorDetail.h; path = folly/container/detail/BitIteratorDetail.h; sourceTree = ""; }; B9168CE688658C39AAA643B653709B19 /* cost_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips_dsp_r2.c; path = src/dsp/cost_mips_dsp_r2.c; sourceTree = ""; }; B919A05E9213379A4D71D1D3ADF05F89 /* Format.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Format.cpp; path = folly/Format.cpp; sourceTree = ""; }; - B922D41D5EAD166A8799BCC66E6727ED /* RCTKeyboardObserver.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTKeyboardObserver.mm; sourceTree = ""; }; - B92B3F644EAB1A79D114D75C3AF3683D /* UMAppLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMAppLoader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; B93E72F5981D76CB887E4C865D7B3A1E /* FIRCLSReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSReport.m; path = Crashlytics/Crashlytics/Models/FIRCLSReport.m; sourceTree = ""; }; B93F6DD0458524D09451B650252973D4 /* types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = types.h; path = src/webp/types.h; sourceTree = ""; }; - B95A8F2F1A23013012F91BB8BA2C9D71 /* Yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B952CB53081748F46C04F821010B3D86 /* EXAppleAuthentication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthentication.m; path = EXAppleAuthentication/EXAppleAuthentication.m; sourceTree = ""; }; B95EEB8F6BF6053F409241818BF479A4 /* webp_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_dec.c; path = src/dec/webp_dec.c; sourceTree = ""; }; - B962981C6291A1A9A0EFB1010A7847D4 /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = ""; }; B9703E1EC5B12F2D715115AC6A7FBB93 /* demux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = demux.h; path = src/webp/demux.h; sourceTree = ""; }; B97145061E4F7F28CDE503B069456A48 /* FIRCLSCompactUnwind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCompactUnwind.h; path = Crashlytics/Crashlytics/Unwind/Compact/FIRCLSCompactUnwind.h; sourceTree = ""; }; B97940D26FBBECAD4EB08C0B41320551 /* MMKV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MMKV-prefix.pch"; sourceTree = ""; }; B98616A239AE9A3B63B404892883D35F /* RSocketServer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketServer.cpp; path = rsocket/RSocketServer.cpp; sourceTree = ""; }; - B9AB7A09CC19EEA7400B31ABAF7C2220 /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B98CDF7AE9D73022D3C6DAAA3A63DBE7 /* RNFBAppModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBAppModule.m; path = ios/RNFBApp/RNFBAppModule.m; sourceTree = ""; }; + B9ADA132BEE432456C1FEB59C840BF3D /* React-jsinspector.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.release.xcconfig"; sourceTree = ""; }; B9B3872121E4529E8679F086AD34150F /* Hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hash.h; path = folly/Hash.h; sourceTree = ""; }; B9BE633D011E108B8B50930D8EE40B41 /* SharedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedMutex.h; path = folly/SharedMutex.h; sourceTree = ""; }; B9E52071A61994BF47D9A3698EB8E196 /* StringKeyedCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedCommon.h; path = folly/experimental/StringKeyedCommon.h; sourceTree = ""; }; - B9E7C0F46BA86AB4C5BB3DE295013623 /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; - B9F268B576CA5D1D929CE9A592F8E017 /* BSG_KSCrashReportFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilter.h; sourceTree = ""; }; BA00BA8DBEC8789DE446298CE67B3864 /* SDWebImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-prefix.pch"; sourceTree = ""; }; BA128D60C396E9F6F2E87021A86DF3E9 /* String-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "String-inl.h"; path = "folly/gen/String-inl.h"; sourceTree = ""; }; BA1A677DC8F9D0351B40C2A6CE7308C9 /* TokenBucket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TokenBucket.h; path = folly/TokenBucket.h; sourceTree = ""; }; BA1EB84932C3877DF0FC3BAC3427CC29 /* UIImage+CropRotate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+CropRotate.m"; path = "Objective-C/TOCropViewController/Categories/UIImage+CropRotate.m"; sourceTree = ""; }; BA200C7606484DA619B8C99C0D67660B /* InlineFunctionRef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineFunctionRef.h; path = folly/synchronization/detail/InlineFunctionRef.h; sourceTree = ""; }; BA30F381505351432375646265A3BE63 /* Memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Memory.h; path = folly/Memory.h; sourceTree = ""; }; - BA39ED03ED9990D0E5CA13D415FB2A34 /* RCTJSIExecutorRuntimeInstaller.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJSIExecutorRuntimeInstaller.mm; sourceTree = ""; }; + BA3C1544B3D3A1541D6FC1E84475A9C8 /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; + BA4B0E81EF9BF74DB565EB8D5A64184A /* react-native-appearance.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-appearance.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + BA6458BF22C37B2D7D59E6DEA84BBD75 /* RNFBUtilsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBUtilsModule.h; path = ios/RNFBApp/RNFBUtilsModule.h; sourceTree = ""; }; BA68EB70167AC162F9C6BF90C3190740 /* FIRCLSURLSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLSession.m; path = Crashlytics/Crashlytics/FIRCLSURLSession/FIRCLSURLSession.m; sourceTree = ""; }; BA6C0D4B6015D75E5E7148299643A578 /* SKBufferingPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKBufferingPlugin.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKBufferingPlugin.h; sourceTree = ""; }; BA7064702BBDD1BA702AF42B10B58528 /* Common.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Common.cpp; path = rsocket/internal/Common.cpp; sourceTree = ""; }; - BA865FA56CDB16D28CB593E4E0ABC765 /* BSG_KSCrashCallCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashCallCompletion.h; sourceTree = ""; }; + BA82B896587B196F261A9B1D9428EEB3 /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPlatform.h; path = React/CoreModules/RCTPlatform.h; sourceTree = ""; }; + BA844493E0367735F02B3DC1ABEC6311 /* react-native-notifications.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-notifications.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; BAABEC84C45BD5093160DF0FDE106A1C /* format_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format_constants.h; path = src/webp/format_constants.h; sourceTree = ""; }; + BAB84396E1439CFE9B9D46D2E892FB4F /* RNCAsyncStorage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCAsyncStorage.debug.xcconfig; sourceTree = ""; }; BAB895311E1541DB93B0995E28ABA13F /* WaitOptions.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WaitOptions.cpp; path = folly/synchronization/WaitOptions.cpp; sourceTree = ""; }; - BAEA026388D09D7DC06E490023BDF73B /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - BAED0E96BF78EC7982D6B38B4D6D658C /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSBigString.cpp; sourceTree = ""; }; - BAED847E8A22919EDDB894F3B4C38BFF /* Pods-ShareRocketChatRN-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ShareRocketChatRN-umbrella.h"; sourceTree = ""; }; - BB11E12080EF34974D669D1BB3054263 /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; - BB178A15DE3440AD1634E267C07D5F21 /* REATransitionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionManager.m; sourceTree = ""; }; + BACA1141597E10199EE9225185C0479F /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; + BACE883A39343A35E0D7C43689B9A13E /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; BB1B2F8D8B7929C7DD01DEADCFB8FD3F /* Function.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Function.h; path = folly/Function.h; sourceTree = ""; }; BB390DCFA35B0EAECFFD2DE810925E64 /* SysFile.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysFile.cpp; path = folly/portability/SysFile.cpp; sourceTree = ""; }; - BB562EA826EF46ABEE485DB5A157CCFF /* react-native-appearance.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-appearance.debug.xcconfig"; sourceTree = ""; }; - BB8DEF007D6F3DFB76354786468882AC /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTiming.h; path = React/CoreModules/RCTTiming.h; sourceTree = ""; }; + BB425AA1BAB6D0A9A235C609336095DA /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; + BB43EAEC8B9375884DB2ADF6A88233BE /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = React/CoreModules/RCTActionSheetManager.h; sourceTree = ""; }; + BB7A5AF8671A1E7E75DC19F1F6616F9F /* BugsnagAppWithState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagAppWithState.h; sourceTree = ""; }; + BB8773C73020DE6FA186648CE2DA3F3A /* Pods-defaults-ShareRocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-defaults-ShareRocketChatRN-acknowledgements.plist"; sourceTree = ""; }; + BB8D81B8EB25444591F57C018D815DEE /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; + BB924E2348F50D4641552CACC27C7A2F /* EXKeepAwake.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXKeepAwake.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; BB96B5172CA1FDCD97A37E07C1F50BC1 /* ManualExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ManualExecutor.h; path = folly/executors/ManualExecutor.h; sourceTree = ""; }; + BB9CC1354ABBC880F7DDB6106CBDE2D0 /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; BBC73BC2EAC1CDAC3847AABE5647B8D4 /* Unit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unit.h; path = folly/Unit.h; sourceTree = ""; }; BBC9D9225EE71E347821C2095E8B0833 /* SDImageCodersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCodersManager.m; path = SDWebImage/Core/SDImageCodersManager.m; sourceTree = ""; }; BBD00687D106C7D010206329B7785BEC /* HHWheelTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HHWheelTimer.h; path = folly/io/async/HHWheelTimer.h; sourceTree = ""; }; - BBDC96F1040C276F298801BF4C8B68DF /* UMReactNativeAdapter.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.release.xcconfig; sourceTree = ""; }; + BBDEB7A5A1D274B0349AF930BC82FA55 /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; + BBE9C3596335651D37543687ED4457F1 /* BSG_KSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSLogger.m; sourceTree = ""; }; BBFF18BC3711F0D248974C74C2D2F962 /* DeferObservable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeferObservable.h; path = yarpl/observable/DeferObservable.h; sourceTree = ""; }; + BC00DF5048BAF76589CBE6DDC1D7F994 /* react-native-slider.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-slider.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; BC06AD0CDFCDE2EBDF8C53D6CA3E097A /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Sources/Private/FIRComponentType.h; sourceTree = ""; }; BC10A03BA6895C6F997D6FD59A9DBCB7 /* SDWebImageOptionsProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOptionsProcessor.m; path = SDWebImage/Core/SDWebImageOptionsProcessor.m; sourceTree = ""; }; BC1B59FA7B55DBD9453B1CDEE536A836 /* GULLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLogger.h; path = GoogleUtilities/Logger/Private/GULLogger.h; sourceTree = ""; }; - BC34112B5BA3EDD7D3665A91663E64DF /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; + BC1DFE2FED2A0B13126963E15601113B /* REABezierNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABezierNode.m; sourceTree = ""; }; + BC1E496EFDBEBAD5DF0D5A4E7A903EC3 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + BC2640F7778BB7204E46524DA5B3D0EF /* JSITracing.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSITracing.cpp; sourceTree = ""; }; BC41F4BEFC115303267857B135A144AE /* libUMPermissionsInterface.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMPermissionsInterface.a; path = libUMPermissionsInterface.a; sourceTree = BUILT_PRODUCTS_DIR; }; - BC55492F67F7B349D7F6491C001E6415 /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = ""; }; - BC5C7D47ADB7665AD15EB38241F8559A /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; + BC4E6281F75612E2835E8AAAFBCF5CEB /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = ""; }; BC5FD72C5B1D80E461FC33D412719E91 /* GDTCORStorageProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorageProtocol.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORStorageProtocol.h; sourceTree = ""; }; - BC6BEFA45EDA3A3659513A430B566461 /* READebugNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = READebugNode.m; sourceTree = ""; }; - BC6FFA3EB74673D139D1282043B812D9 /* FBReactNativeSpec-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBReactNativeSpec-dummy.m"; sourceTree = ""; }; BC86EC8B18C511C23A361D514C240D1B /* Log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Log.cpp; path = xplat/Flipper/Log.cpp; sourceTree = ""; }; - BC8B87DEC1D51EACDD0B4492796C767E /* EXVideoThumbnails-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXVideoThumbnails-dummy.m"; sourceTree = ""; }; BC914DD1DC14DB1242681F2556E73482 /* GroupVarintDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GroupVarintDetail.h; path = folly/detail/GroupVarintDetail.h; sourceTree = ""; }; + BCA751A5356A57DB945A6CA6FEC74027 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; BCA937F2B436CFAF9FF094281DB97064 /* TimedDrivableExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TimedDrivableExecutor.cpp; path = folly/executors/TimedDrivableExecutor.cpp; sourceTree = ""; }; - BCBD15405D042D8A8F4FFB0D2457382D /* RNFBAppModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBAppModule.h; path = ios/RNFBApp/RNFBAppModule.h; sourceTree = ""; }; + BCABB017733DA167CDCE49C71D027269 /* RCTDevLoadingViewSetEnabled.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingViewSetEnabled.h; sourceTree = ""; }; + BCB188AF9D06035BEC1720D50031039E /* EXFileSystem.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.debug.xcconfig; sourceTree = ""; }; BCC1146DC641696C5D12F3D1EA347D6C /* Future.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Future.h; path = folly/futures/Future.h; sourceTree = ""; }; BCE3200B783F0F1D598AC56BA7FD6A23 /* Barrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Barrier.cpp; path = folly/futures/Barrier.cpp; sourceTree = ""; }; BCE8B2C58C7A5FFE918225BF23BF842E /* openssl_aesv8-armx.S */ = {isa = PBXFileReference; includeInIndex = 1; name = "openssl_aesv8-armx.S"; path = "Core/aes/openssl/openssl_aesv8-armx.S"; sourceTree = ""; }; BCFA9E7DF0704A04BDB7768D0ACCCCF0 /* SDImageIOAnimatedCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoderInternal.h; path = SDWebImage/Private/SDImageIOAnimatedCoderInternal.h; sourceTree = ""; }; BCFB13C2659CB7FE3E33BC3301B57589 /* IOBufQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IOBufQueue.cpp; path = folly/io/IOBufQueue.cpp; sourceTree = ""; }; BD083BEA419C7DF1EB778B933C9AEA62 /* Promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Promise.h; path = folly/futures/Promise.h; sourceTree = ""; }; - BD0A4AF6EDEDB7A9D18E65FAFF8247B9 /* FBReactNativeSpec.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.release.xcconfig; sourceTree = ""; }; - BD0D868FB4241719B88CB96551A60F2C /* React-jsiexecutor.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.release.xcconfig"; sourceTree = ""; }; BD1B5313E3DFB75390C1A4251F51B5DE /* SparseByteSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SparseByteSet.h; path = folly/container/SparseByteSet.h; sourceTree = ""; }; BD3ECCBE605E838A98E04315AF90943A /* SDImageCachesManagerOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManagerOperation.h; path = SDWebImage/Private/SDImageCachesManagerOperation.h; sourceTree = ""; }; - BD4206D792237C115AC614FEC3BBC11D /* RNFastImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFastImage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; BD53164FA67EF8F1844D6FCCE10D3DC3 /* SDAnimatedImageRep.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageRep.m; path = SDWebImage/Core/SDAnimatedImageRep.m; sourceTree = ""; }; + BD56632D10B1E370B66E12A3E178C53C /* BSG_RFC3339DateTool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_RFC3339DateTool.h; sourceTree = ""; }; BD569C16ACD867CA9120A03F34357CB6 /* GULUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULUserDefaults.m; path = GoogleUtilities/UserDefaults/GULUserDefaults.m; sourceTree = ""; }; + BD56CEF8B6BCD247C23E4101C7DD84AC /* RNFBRCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBRCTEventEmitter.h; path = ios/RNFBApp/RNFBRCTEventEmitter.h; sourceTree = ""; }; BD5CC643B7659D611CA418FB5BC4A3C4 /* AtomicNotification.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AtomicNotification.cpp; path = folly/synchronization/AtomicNotification.cpp; sourceTree = ""; }; - BD673995F60C9E61AAC2C639D5BC3CC5 /* BSG_KSCrashSentry_User.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_User.c; sourceTree = ""; }; + BD6E8DBC6B22B90257F40CEF70FDC667 /* RCTPerfMonitor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPerfMonitor.mm; sourceTree = ""; }; BD6FB50291DEB555A1866C9D465DAE39 /* EventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBase.cpp; path = folly/io/async/EventBase.cpp; sourceTree = ""; }; BD71E2539823621820F84384064C253A /* libReact-Core.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-Core.a"; path = "libReact-Core.a"; sourceTree = BUILT_PRODUCTS_DIR; }; BD73AA891D62385187260FC9FAF1E975 /* FIRDependency.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDependency.m; path = FirebaseCore/Sources/FIRDependency.m; sourceTree = ""; }; + BD74D03C3EB4CC221C70AE0F7F2DB24E /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = ""; }; BD8642644F3A2804EB341CF7DF6465E8 /* BitIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitIterator.h; path = folly/container/BitIterator.h; sourceTree = ""; }; + BD92A024E058A1F1ACA50D8C9EA59838 /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; BD96F42BE96BED51567382ECD48D9017 /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = SDWebImage/Core/SDWebImagePrefetcher.m; sourceTree = ""; }; BD98F0005A10B45C2B6F183D42D31D3C /* FLEXUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXUtility.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXUtility.h; sourceTree = ""; }; BDA2A69E14FB628DD6843A24D005F18D /* double-conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "double-conversion.h"; path = "double-conversion/double-conversion.h"; sourceTree = ""; }; BDA60B5F2263D814E171E633B919C049 /* GULSceneDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler_Private.h; path = GoogleUtilities/SceneDelegateSwizzler/Internal/GULSceneDelegateSwizzler_Private.h; sourceTree = ""; }; - BDBA3BD1B7B585D8C94BF4344142716A /* api.md */ = {isa = PBXFileReference; includeInIndex = 1; name = api.md; path = docs/api.md; sourceTree = ""; }; - BE0AAD6D3B91A89C70E627CE69C9836B /* TurboModuleBinding.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = TurboModuleBinding.cpp; sourceTree = ""; }; + BDCD4150CA90CA54D93291168F2D3975 /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; + BDE5F0AC59BC5BAB36BA4C7B8245D641 /* rn-extensions-share.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.debug.xcconfig"; sourceTree = ""; }; + BE088D34B31ACFBDBA428DB61D2FC8FE /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = ""; }; BE25E45DF047A25091D66D41617ACFD5 /* RSocketParameters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketParameters.h; path = rsocket/RSocketParameters.h; sourceTree = ""; }; - BE44CBCE6C75B26E95A4555F9D976298 /* Pods-defaults-RocketChatRN-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-defaults-RocketChatRN-umbrella.h"; sourceTree = ""; }; BE4B2EC9E780573AB23F987993FB301D /* CString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CString.h; path = folly/lang/CString.h; sourceTree = ""; }; BE506F4325CA171F9BC83739E72F4075 /* DoubleConversion.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DoubleConversion.release.xcconfig; sourceTree = ""; }; - BE75A7226F3962DC3F1ABEF524466230 /* RNCPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCPicker-dummy.m"; sourceTree = ""; }; + BE6BA2C9AB3AF5A8930FB3A8745D4505 /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFollyConvert.mm; sourceTree = ""; }; + BE8085DDE5007490C571E6E464198B33 /* react-native-document-picker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-document-picker-dummy.m"; sourceTree = ""; }; BE8EE1CD0FADA9E37185A53DE4260E02 /* nanopb-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-prefix.pch"; sourceTree = ""; }; BE8FE5ABD07B445E6E17FBDE8B6AF829 /* SDAnimatedImagePlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImagePlayer.h; path = SDWebImage/Core/SDAnimatedImagePlayer.h; sourceTree = ""; }; BE976562678AD794F1D9F2F35E89CA6D /* CodedInputData.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CodedInputData.cpp; path = Core/CodedInputData.cpp; sourceTree = ""; }; BE9AC67A44540CE72419BBE469231EA5 /* ScheduledFrameProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledFrameProcessor.h; path = rsocket/framing/ScheduledFrameProcessor.h; sourceTree = ""; }; BEC8E3B1DECB8985FD462B8ED229F93D /* dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec.c; path = src/dsp/dec.c; sourceTree = ""; }; + BECE1E300CED3753A0542E5F1E4AF11E /* NSValue+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSValue+Interpolation.h"; sourceTree = ""; }; BED0871489A485AE4BFE22FE7FBC108E /* SKDispatchQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKDispatchQueue.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKDispatchQueue.h; sourceTree = ""; }; - BED30E21CA69BC6D89B34B95AD3C0F0D /* EXImageLoader.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXImageLoader.release.xcconfig; sourceTree = ""; }; - BEF046C7A436920433923355E43D95C5 /* BSG_KSDynamicLinker.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSDynamicLinker.c; sourceTree = ""; }; - BEFFFADF15BA7819F73DAE200677F3F0 /* QBImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBImagePickerController.h; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.h; sourceTree = ""; }; - BF0D57DEFC9F3C893CD0AED0670CB410 /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; + BED4D545EAB9F7C4A9B42407D30E8441 /* BugsnagReactNativePlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagReactNativePlugin.m; sourceTree = ""; }; + BED751D1A47742D040BC09C13B8E004A /* RCTEventDispatcherProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcherProtocol.h; sourceTree = ""; }; + BF1A76C52BB358B20970029ABBCE6EB5 /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; + BF1E0BB7752D56C6845E112D9F00FF21 /* react-native-simple-crypto.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "react-native-simple-crypto.modulemap"; sourceTree = ""; }; BF1F456334C248BD77BE65C60F42FF67 /* libreact-native-simple-crypto.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-simple-crypto.a"; path = "libreact-native-simple-crypto.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - BF600930B1FCF2ADD7567BD0972A6258 /* RCTLogBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLogBox.mm; sourceTree = ""; }; + BF3037CDFDFCB0CB5E66960695EEF907 /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = ""; }; + BF5415DDB9E4FE5CFE25F782B29B7048 /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = ""; }; + BF55835DEC39E3DA93EFFAB8A7E93815 /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = ""; }; BF67BBDCA673E1FB5C1DD2309AF4CB54 /* FIRCLSRecordBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordBase.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordBase.h; sourceTree = ""; }; - BF68758B0CF6317CD7D06E18FF131A04 /* react-native-background-timer.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-background-timer.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + BF6A49E6A21E30BB62BAC2885B08D2F2 /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; BF6EEDE5D31E9583322CA71355AE74EB /* FIRCLSUserLogging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUserLogging.m; path = Crashlytics/Crashlytics/Components/FIRCLSUserLogging.m; sourceTree = ""; }; + BF72C69834CD282DFCE8ACCEEB7995E4 /* RCTKeyCommandConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandConstants.h; path = ios/KeyCommands/RCTKeyCommandConstants.h; sourceTree = ""; }; BF872E3366FF64D781D6F38C56729C8B /* Flipper-Folly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-Folly-dummy.m"; sourceTree = ""; }; BF88558A95843F4AD6A7248E71B60DEF /* SocketAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SocketAddress.cpp; path = folly/SocketAddress.cpp; sourceTree = ""; }; + BF8EAF9B12CBD7900A74B8D532A0C961 /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; + BF926A855355608FCE60EEDBF74D78E2 /* react-native-restart-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-restart-prefix.pch"; sourceTree = ""; }; BFA4879CBA92A53717B01D68F383A73F /* DecoratedAsyncTransportWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DecoratedAsyncTransportWrapper.h; path = folly/io/async/DecoratedAsyncTransportWrapper.h; sourceTree = ""; }; - BFC43567E2E1578407BD24350C578FAE /* QBAlbumCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumCell.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.h; sourceTree = ""; }; - BFEEAEAD0C293AFF05B72E3F5B826452 /* ReactNativeShareExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeShareExtension.m; path = ios/ReactNativeShareExtension.m; sourceTree = ""; }; + BFB833A212D11C1F41AC5557EFFF34D4 /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; + BFB871EFCC026E0E1B2229CA8B6C8679 /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; + BFEFAFEBF84E9FBD4F8AD032AB419A71 /* QBSlomoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBSlomoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.h; sourceTree = ""; }; + BFF2B93582DD82BCA452AC0DBA5D0647 /* RCTDataRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDataRequestHandler.mm; sourceTree = ""; }; BFF4279A327AF0457A60C98234BFA95B /* lossless_enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_mips32.c; path = src/dsp/lossless_enc_mips32.c; sourceTree = ""; }; - BFFA86C7ADE2F4F757BC7347135B59B4 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - BFFCB8FC0F61C671EA2AC11DC9AA6E1C /* ARTLinearGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTLinearGradient.m; sourceTree = ""; }; - C0007036D74FF1A32EA14AFEAA31CDFD /* RCTWebSocketModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTWebSocketModule.mm; sourceTree = ""; }; + BFF9EC62AB53882036DC920F1DC18E0E /* BugsnagKVStore.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BugsnagKVStore.c; sourceTree = ""; }; + C00C64F14C3A18BFFF5DCDBD56C60169 /* ReactNativeART-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeART-dummy.m"; sourceTree = ""; }; C00EDB550A0E30C35EF12C0F95474382 /* Poly.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Poly.h; path = folly/Poly.h; sourceTree = ""; }; - C01B27188AFF10B82D920091FF802AB1 /* RNVectorIconsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNVectorIconsManager.h; path = RNVectorIconsManager/RNVectorIconsManager.h; sourceTree = ""; }; - C021805E21A690949A5BF3326BD26343 /* ErrorUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ErrorUtils.h; sourceTree = ""; }; - C03E3ABE77F72388E1A5BC90DD96108C /* BSG_KSMach_Arm64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm64.c; sourceTree = ""; }; - C04103D32BA694191D9D739DCC7149D9 /* RNFBVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBVersion.h; path = ios/RNFBApp/RNFBVersion.h; sourceTree = ""; }; + C0180E0DAAFCDC1180358204BBF1D0EE /* RNCAsyncStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAsyncStorage.m; path = ios/RNCAsyncStorage.m; sourceTree = ""; }; C041368CA726A7C4BA1CF1337AC041DB /* StreamResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamResponder.cpp; path = rsocket/statemachine/StreamResponder.cpp; sourceTree = ""; }; - C04327EB36D86E879F8C07676C4A3C0A /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; - C04C5E73467787F3BD45611703B4287A /* BSG_RFC3339DateTool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_RFC3339DateTool.h; sourceTree = ""; }; - C0507891ECDC071089BFC383DFB3C384 /* installation.md */ = {isa = PBXFileReference; includeInIndex = 1; name = installation.md; path = docs/installation.md; sourceTree = ""; }; - C050DE5FA7D253CC9759E6DDFDC51DAF /* TurboModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = TurboModule.cpp; sourceTree = ""; }; - C05C2D3F63CDA77628DCA3FBE92D33BC /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = ""; }; - C0708A1487C3ADC35CCAD20713FAD496 /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; + C06B1CFDE7B4DF08E03F2CC199843255 /* React-RCTText.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.debug.xcconfig"; sourceTree = ""; }; C08376657BF0FFD85723248EA8D3C3D1 /* FIRCLSFABAsyncOperation_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABAsyncOperation_Private.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSFABAsyncOperation_Private.h; sourceTree = ""; }; - C0AB65C664ED1814B7A1E5B08C291225 /* Entypo.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Entypo.ttf; path = Fonts/Entypo.ttf; sourceTree = ""; }; - C0D17A6C422A3B65014A26C8033DC6F7 /* IDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IDStore.m; path = ios/IDStore.m; sourceTree = ""; }; + C09EA5E56B1A86D17A324942FE907F38 /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; + C0F3BA7F568A29FDD4CE4A27DD46EF52 /* RNGestureHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandler.h; path = ios/RNGestureHandler.h; sourceTree = ""; }; + C0F4D931F564B9208DE178D639DE0CC1 /* react-native-blur-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-blur-prefix.pch"; sourceTree = ""; }; C10A6CED735847F162A4E0FA40C2F42D /* GlobalThreadPoolList.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = GlobalThreadPoolList.cpp; path = folly/executors/GlobalThreadPoolList.cpp; sourceTree = ""; }; C10EF9F124CA4DE97790AECBE28BBB56 /* Fixture.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Fixture.cpp; path = rsocket/benchmarks/Fixture.cpp; sourceTree = ""; }; C12603CA84D0C123860475E5587EF16D /* SDAnimatedImagePlayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImagePlayer.m; path = SDWebImage/Core/SDAnimatedImagePlayer.m; sourceTree = ""; }; - C153E83D4524A1906529FBE5394FE0E0 /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; - C15EB7B14B020BFB9E8B9685DF0137AB /* EXSessionDownloadTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionDownloadTaskDelegate.m; sourceTree = ""; }; + C15118AF7B06E7AA8617780010187407 /* EXKeepAwake-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXKeepAwake-dummy.m"; sourceTree = ""; }; C16AEF8FC19B26B9C212A7F9183DDF93 /* FIRCLSURLSessionTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLSessionTask.m; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionTask.m; sourceTree = ""; }; C16EB91026B1EF04C1DC87BB87155F18 /* FIRCLSUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUtility.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSUtility.h; sourceTree = ""; }; + C184B7335460D0CE1CA51D5B2D27A070 /* project.pbxproj */ = {isa = PBXFileReference; includeInIndex = 1; path = project.pbxproj; sourceTree = ""; }; + C191067ED21FA9A8C57AE29B73488327 /* RCTCustomInputControllerTemp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomInputControllerTemp.h; sourceTree = ""; }; + C19F8470C15F18F4285BAA5A9A8A8BF5 /* SafeAreaSpacerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SafeAreaSpacerView.m; sourceTree = ""; }; + C19F872B607A5D258F69243BA87A938D /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = ""; }; C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTVibration.a"; path = "libReact-RCTVibration.a"; sourceTree = BUILT_PRODUCTS_DIR; }; C1A92D7C500C0C8CEF6AC4E77BC0643D /* Hazptr-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Hazptr-fwd.h"; path = "folly/synchronization/Hazptr-fwd.h"; sourceTree = ""; }; C1AF891DE00053BEBECE069FAE7BD92E /* CheckedMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CheckedMath.h; path = folly/lang/CheckedMath.h; sourceTree = ""; }; - C1B03222D4A28884A627F8CC29DADD17 /* RNFBCrashlyticsInitProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBCrashlyticsInitProvider.m; path = ios/RNFBCrashlytics/RNFBCrashlyticsInitProvider.m; sourceTree = ""; }; C1B96F85E728B20381F51A90D5688A0B /* SDWebImageDownloaderRequestModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderRequestModifier.m; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.m; sourceTree = ""; }; C1CAC101D574B1469EE2EDF35A0FB67B /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "SDWebImage/Core/UIImage+MultiFormat.m"; sourceTree = ""; }; - C1DDB3050D2F365F1F117DBF6A959E0A /* react-native-webview.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-webview.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - C1EF21453BB3EE1B930F1DE3D18CEDA7 /* BSG_KSMachApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachApple.h; sourceTree = ""; }; + C1D2B47E1C5431346888E77888673620 /* AutoAttachUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = AutoAttachUtils.cpp; sourceTree = ""; }; + C1E1432BBE969A04A27A1692A1197129 /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; C20492402F9EA7E3B8AD53A1D41FC5D2 /* FIRInstallationsItem+RegisterInstallationAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstallationsItem+RegisterInstallationAPI.h"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.h"; sourceTree = ""; }; C21363F67760B2C4D800FA5E6E6B6A07 /* FIRCLSReportUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSReportUploader.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportUploader.m; sourceTree = ""; }; C231A474BA8817ABE62D624B50C23C9E /* SKScrollViewDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKScrollViewDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKScrollViewDescriptor.h; sourceTree = ""; }; - C237AB20768CC69CD759CAAD92D7AB9E /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; - C251FAFE2013DD0DF9A5B6B62E3B2C30 /* RNBootSplash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBootSplash.h; path = ios/RNBootSplash.h; sourceTree = ""; }; + C23E608D6ECDE8DAF3600B13F5FD8ABC /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; C25265491BA05D7DA07E73525B2E5ADE /* EDFThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EDFThreadPoolExecutor.cpp; path = folly/executors/EDFThreadPoolExecutor.cpp; sourceTree = ""; }; + C25717694583716545F087E9F69CADB0 /* IOS7Polyfill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOS7Polyfill.h; path = ios/IOS7Polyfill.h; sourceTree = ""; }; C259D520D409213364BF1A2188CC03BC /* TestObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestObserver.h; path = yarpl/observable/TestObserver.h; sourceTree = ""; }; C2661B362B6625627DF372579E7AEF04 /* SKInvalidation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKInvalidation.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKInvalidation.m; sourceTree = ""; }; C2716E1FCC4CC046E067D51DA07E0760 /* libevent.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libevent.debug.xcconfig; sourceTree = ""; }; - C27A27CBF104DBA4F618D595E00CDEB1 /* REANode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANode.h; sourceTree = ""; }; + C272F0D9672149E05A955551304CD02F /* EXLocalAuthentication-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXLocalAuthentication-prefix.pch"; sourceTree = ""; }; + C27817BEBD0764AAA5531522DE8E09A3 /* RNBootSplash-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNBootSplash-dummy.m"; sourceTree = ""; }; + C27CA06AF20B21BE9B9CF6351CF39A10 /* contents.xcworkspacedata */ = {isa = PBXFileReference; includeInIndex = 1; path = contents.xcworkspacedata; sourceTree = ""; }; C27DC7AE4DE697B574D21F7A3A57FB75 /* LockTraits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LockTraits.h; path = folly/LockTraits.h; sourceTree = ""; }; C297EEB29D530D2065D16CD01752FEB2 /* cost_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_neon.c; path = src/dsp/cost_neon.c; sourceTree = ""; }; C2A38FCFC0C7CBF5FB62C446C28158CD /* FIRInstallationsStoredAuthToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredAuthToken.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.m; sourceTree = ""; }; C2C0E90FEA77DD0E5EFF604B618FDA96 /* FIRInstallationsAPIService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAPIService.h; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.h; sourceTree = ""; }; + C2CC138F3EBFE8E6414F78D511270704 /* EXAppleAuthentication-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAppleAuthentication-dummy.m"; sourceTree = ""; }; + C2D9F45693D8E29A6B33D948513BB8DE /* React-RCTVibration.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.release.xcconfig"; sourceTree = ""; }; C2DA9F23FE8526DB70B1265FB9EDB63B /* Function.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Function.h; path = folly/Function.h; sourceTree = ""; }; - C2FAA18C7812E76A1D3B307E87E9A280 /* RNNotificationCenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenter.m; path = RNNotifications/RNNotificationCenter.m; sourceTree = ""; }; + C32367A944FF6A86BFA89489019B2D6B /* ReactNativeVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactNativeVersion.h; sourceTree = ""; }; + C32591EEDE3377EF9F2D1BAFD2185D97 /* RCTAppearance.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppearance.mm; sourceTree = ""; }; C3266B4D8442BC0F9230B842A2B712B9 /* FIRCLSUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUserDefaults.m; path = Crashlytics/Crashlytics/FIRCLSUserDefaults/FIRCLSUserDefaults.m; sourceTree = ""; }; C335481D064FA5535D3CC9FB9822A2BF /* FIRInstallationsIIDTokenStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDTokenStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.m; sourceTree = ""; }; C335D0C23B2DA8C1FF4D4D1B65B1F207 /* FIRCLSPackageReportOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSPackageReportOperation.h; path = Crashlytics/Crashlytics/Operations/Reports/FIRCLSPackageReportOperation.h; sourceTree = ""; }; C336B4D8990B6662D77B53EDCBDC9C6D /* PriorityUnboundedBlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityUnboundedBlockingQueue.h; path = folly/executors/task_queue/PriorityUnboundedBlockingQueue.h; sourceTree = ""; }; - C34A18A174B7C9DF73B8613D868C3FCD /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSIDynamic.cpp; sourceTree = ""; }; + C33C6F61CDBFDA394DA7D50D55E37F81 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = React/AccessibilityResources/en.lproj; sourceTree = ""; }; + C34BB7C9B5B6543C0E09A57C1B4F97EC /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; + C36FF5D1A5B1A0456D961B26047AFBF3 /* StorageSetters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StorageSetters.h; path = ios/StorageSetters.h; sourceTree = ""; }; C37A75FDB49EFCEE4A1211875E3F47BA /* AtomicUnorderedMapUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUnorderedMapUtils.h; path = folly/detail/AtomicUnorderedMapUtils.h; sourceTree = ""; }; C37B23A8A1B5BEEEB622D8D6A3A35F81 /* FutureExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureExecutor.h; path = folly/executors/FutureExecutor.h; sourceTree = ""; }; C384BD5C849992AA306DD4C7B352C41A /* AsyncUDPServerSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncUDPServerSocket.h; path = folly/io/async/AsyncUDPServerSocket.h; sourceTree = ""; }; - C39E6B4BF38C0A9660CF41FF7D46B15C /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; - C3C116F44A9480C6CF6F9E8D85818ADF /* EXConstants.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.release.xcconfig; sourceTree = ""; }; - C3D5796E9FD6BC56A11C3C5D7232A58D /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; + C38A463A289BDC39E11BEFD5870CA52C /* RCTConvert+FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FIRApp.m"; path = "ios/RNFBApp/RCTConvert+FIRApp.m"; sourceTree = ""; }; + C3ACADAB2B34DCE52AC92C162C411639 /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = ""; }; C3DE00015B04BC59D5769982E8B2F861 /* InterProcessLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InterProcessLock.h; path = Core/InterProcessLock.h; sourceTree = ""; }; C3F26F9B4FA2A351DDE03859A88225A7 /* FBLPromise+Any.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Any.h"; path = "Sources/FBLPromises/include/FBLPromise+Any.h"; sourceTree = ""; }; - C409ECF3326345D59B43852F76F6CB08 /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; - C419D7878BB410D952937F7491383336 /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; + C4152E0A282E1646120955713F62D908 /* ARTContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTContainer.h; path = ios/ARTContainer.h; sourceTree = ""; }; C41C8A2FA397BDDA73801BC5E52EAD9D /* glog-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "glog-prefix.pch"; sourceTree = ""; }; C420F3C2B52E600E348B204665C68FD2 /* Spin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Spin.h; path = folly/synchronization/detail/Spin.h; sourceTree = ""; }; - C4329517D355417C1B7429C1C4228B33 /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; C447F5E1A3B40FDA187DD4B2BB4E3656 /* Stdio.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Stdio.cpp; path = folly/portability/Stdio.cpp; sourceTree = ""; }; - C45E5EA84CC055C1FF0BA19EF79B73F8 /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; C482D8D7D2504F96998F7712D5357600 /* openssl_md5_dgst.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = openssl_md5_dgst.cpp; path = Core/aes/openssl/openssl_md5_dgst.cpp; sourceTree = ""; }; - C490134B6DF9A068D75DD687B061463C /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = ReactMarker.cpp; sourceTree = ""; }; - C498AD8970FB8D1E7CC3D03686FD4E34 /* RCTDevLoadingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevLoadingView.mm; sourceTree = ""; }; C4AFB3459812979FCF112335B1814369 /* SysResource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysResource.h; path = folly/portability/SysResource.h; sourceTree = ""; }; - C4BE8D653EE12AA7F06AD08C458C07DC /* BSG_KSJSONCodecObjC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSJSONCodecObjC.m; sourceTree = ""; }; + C4BF2CCBBF5CE374288FBFF0D54C7ADF /* UMModuleRegistryHolderReactModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryHolderReactModule.h; sourceTree = ""; }; C4C3CFCA8CF7497E1AF0C2007F1378E0 /* HazptrThrLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrThrLocal.h; path = folly/synchronization/HazptrThrLocal.h; sourceTree = ""; }; C4D0A9D298494CD59E36A2F6D0BA0F3A /* log-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "log-internal.h"; sourceTree = ""; }; - C4DF262E1B11E411DD1D59F123573EE9 /* ObservingInputAccessoryViewTemp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ObservingInputAccessoryViewTemp.h; sourceTree = ""; }; C4EC293F2FD023668E6B3531C1E85E2D /* FIRCLSApplicationIdentifierModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSApplicationIdentifierModel.m; path = Crashlytics/Crashlytics/Settings/Models/FIRCLSApplicationIdentifierModel.m; sourceTree = ""; }; - C4F0251CC441D77332657E2CF0267616 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = ""; }; - C5187DBFEB74E69B1C8D013C3DAC8884 /* RNFBCrashlytics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBCrashlytics-dummy.m"; sourceTree = ""; }; + C50601436C1024EC64C217FF43FAB96F /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "ios/QBImagePicker/QBImagePicker/zh-Hans.lproj"; sourceTree = ""; }; C52CF47231E5F2DD0870D298922E99E8 /* CPUThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CPUThreadPoolExecutor.h; path = folly/executors/CPUThreadPoolExecutor.h; sourceTree = ""; }; C52D5EEE205E1F7DD0555001CB7F2C05 /* TLRefCount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TLRefCount.h; path = folly/experimental/TLRefCount.h; sourceTree = ""; }; + C5348F32CD8BDAB800034CB7AC0423B7 /* Pods-defaults-RocketChatRN-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-defaults-RocketChatRN-umbrella.h"; sourceTree = ""; }; + C546EB9A217A4633A47E8498CCE72DC9 /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; C5536BC129A4DDE4A2E9C777B33C13C1 /* FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptions.h; path = FirebaseCore/Sources/Public/FIROptions.h; sourceTree = ""; }; C56282F270075C6B28A3525902415FFD /* FirebaseInstallations-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseInstallations-dummy.m"; sourceTree = ""; }; C56532EC0EFA749A87186D083FF75C66 /* Benchmark.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Benchmark.h; path = folly/Benchmark.h; sourceTree = ""; }; C567B7482E7DA9EA3E8295E3F0050D90 /* FIRCLSConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSConstants.m; path = Crashlytics/Shared/FIRCLSConstants.m; sourceTree = ""; }; + C572FF6900F516C43191EAD1DD36F938 /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; C58BA3EBB523D3E170AA5B68803E20C3 /* SKViewDescriptor.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKViewDescriptor.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewDescriptor.mm; sourceTree = ""; }; + C590CA6D07CAF60A863741EFE53EDA7A /* EXAppleAuthenticationRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationRequest.h; path = EXAppleAuthentication/EXAppleAuthenticationRequest.h; sourceTree = ""; }; C594E33B7F2DC2B31F6CDCF045C05323 /* ThreadId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadId.h; path = folly/system/ThreadId.h; sourceTree = ""; }; - C5995A8934DE61F8EE86F1E3BA547F57 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; C5AE0C796CB2CF1C33E96DBE07AC523A /* UnboundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnboundedQueue.h; path = folly/concurrency/UnboundedQueue.h; sourceTree = ""; }; - C5C049906CCD97A7AFF4F522471EB6F7 /* React-runtimeexecutor.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-runtimeexecutor.debug.xcconfig"; sourceTree = ""; }; + C5BA21FE6230E9775ACB8D055FFFB703 /* ReactCommon-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-prefix.pch"; sourceTree = ""; }; + C5BAF70E5AB8A74B2B59C84C0A57DF1A /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; + C5F18678F590CDEA4A6F29AF36D8C5DC /* UIImage+Extension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Extension.h"; path = "ios/src/UIImage+Extension.h"; sourceTree = ""; }; C5FBB4CF298ADFEDE3E0D4083594D093 /* fixed-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fixed-dtoa.cc"; path = "double-conversion/fixed-dtoa.cc"; sourceTree = ""; }; - C61E6249027BB6A7E43EA2CDFD96D560 /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - C63BCDFA62544D31E8348317DA78A2ED /* RNNotificationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationsStore.h; path = RNNotifications/RNNotificationsStore.h; sourceTree = ""; }; - C63E9486192BD56B2F5ECE77BA6B22D7 /* BugsnagReactNative-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagReactNative-prefix.pch"; sourceTree = ""; }; - C64512ECEB03ED85EBE66A4997DFDE03 /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; + C5FD43B9AFE049BA54629F93A34D0BF1 /* BugsnagReactNative.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagReactNative.h; sourceTree = ""; }; + C6047C5622988513A77CF76E8BE0CD9F /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; + C60C273209D11C25647302AA4EE459C7 /* REACondNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACondNode.h; sourceTree = ""; }; + C60F0BD5F22F65B8ECCCB31C20A6C5E1 /* BugsnagBreadcrumbs.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagBreadcrumbs.m; sourceTree = ""; }; + C63764A8CAAA45692EA96FB71D6BA9E0 /* EXAppleAuthenticationButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationButton.h; path = EXAppleAuthentication/EXAppleAuthenticationButton.h; sourceTree = ""; }; + C637D5D18B465F42A4FE037A2B898D4C /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; + C63DD0A29BA912799F564DF84CD28550 /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModuleManager.mm; sourceTree = ""; }; C6485B3A9CFDBF4692BD579F07E4A983 /* FIRCLSFile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFile.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSFile.m; sourceTree = ""; }; - C66C86240AE70B8C050EC9A5A6B1807F /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; - C68AE5A211322F449FB9B9AD3849EED0 /* EXVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoManager.m; sourceTree = ""; }; C68F5547801F990A641A430EE0156A96 /* SSLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLSession.h; path = folly/ssl/SSLSession.h; sourceTree = ""; }; C699DCC52925CA7072A737F15E0BA4DF /* SpookyHashV2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpookyHashV2.h; path = folly/hash/SpookyHashV2.h; sourceTree = ""; }; - C6A4CEBFBF059C3F0881EFE0BE74C9C7 /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; C6AF3E49B2DBFEA9ACFC6345FDDDB37F /* pb_common.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_common.c; sourceTree = ""; }; - C6C40EC25C3A800F0125B8E785DFA33D /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; + C6BCD75A89838F565A9A4B789D2A4598 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + C6BD62929306BF4418698C2A220A1675 /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; + C6CFB06B15368338718A38E06350FC81 /* ARTRenderable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTRenderable.h; path = ios/ARTRenderable.h; sourceTree = ""; }; C6E1B1212C5D216DCE70D3FACC3B83DB /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = ""; }; C6E690072E939AEE09A66F89F821D423 /* HazptrRec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrRec.h; path = folly/synchronization/HazptrRec.h; sourceTree = ""; }; C6F45D5F31EF86F02D6CEF8DC22D0725 /* StreamResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamResponder.h; path = rsocket/statemachine/StreamResponder.h; sourceTree = ""; }; C6F73EEAFB5B026BF8C70AC11A3B4748 /* Unicode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unicode.h; path = folly/Unicode.h; sourceTree = ""; }; + C6FC6468868664B70D3E281882C24504 /* BlurView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlurView.h; path = ios/BlurView.h; sourceTree = ""; }; C702EBD3C9260919ACAA7E0A82E95960 /* NetOps.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetOps.h; path = folly/net/NetOps.h; sourceTree = ""; }; - C70C9ACEBC3EA12096674B798398337E /* React-Core.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "React-Core.modulemap"; sourceTree = ""; }; - C71D16A15E61A8A791682BBDE639A660 /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; - C7524F40571A7CAC0F17081D78CA171B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - C75319AD83E624146F210858A8598AA9 /* RNFetchBlobReqBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobReqBuilder.h; path = ios/RNFetchBlobReqBuilder.h; sourceTree = ""; }; + C70B44F70601F2E891612366843D044B /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = ""; }; + C70CAFDE76103EF6F4BE78422776CD56 /* RCTRsaUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTRsaUtils.m; path = ios/RCTCrypto/RCTRsaUtils.m; sourceTree = ""; }; C75C6B8A5C0B8A7BE9CF9D1D54519831 /* hermes-engine.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "hermes-engine.release.xcconfig"; sourceTree = ""; }; + C761D7AE50CD6FB34E193946254D6163 /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; C777CF2FB1E39A45CBBDB54E8693F471 /* libRNReanimated.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNReanimated.a; path = libRNReanimated.a; sourceTree = BUILT_PRODUCTS_DIR; }; - C7829CE358722270F5AF0F77A6F2DBCC /* EXHaptics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.debug.xcconfig; sourceTree = ""; }; C79056AE4E814424756A05CE2F5F997D /* FBString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBString.h; path = folly/FBString.h; sourceTree = ""; }; + C79C9B6348AE626037636647482DFC5E /* Sha.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Sha.h; sourceTree = ""; }; + C7A634C0809C6C8B3F48DAA06217C421 /* BugsnagStackframe+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagStackframe+Private.h"; sourceTree = ""; }; + C7A950D965978616E154B786E20C04CE /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; C7AB557274CF57A02EC21EC9FDC67657 /* FIRCLSByteUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSByteUtility.h; path = Crashlytics/Shared/FIRCLSByteUtility.h; sourceTree = ""; }; - C7B025FD007B78D44180E76CEE1D3173 /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; C7B7B89B9C2CBFE2FA20597CAE914577 /* Baton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Baton.h; path = folly/synchronization/Baton.h; sourceTree = ""; }; + C7C2268BCC9BE5C1853C9EEE1432E4DB /* EXAVPlayerData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAVPlayerData.m; path = EXAV/EXAVPlayerData.m; sourceTree = ""; }; C7C93169AF188C480F80B2DB487D1E57 /* AsyncSignalHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncSignalHandler.cpp; path = folly/io/async/AsyncSignalHandler.cpp; sourceTree = ""; }; C7CA2A8556A16B3C49FF1B41CC0AE811 /* GoogleDataTransportCCTSupport.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransportCCTSupport.release.xcconfig; sourceTree = ""; }; - C7DF67FEF46BB35E5B5C9A562C70691C /* RNCAppearanceProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProvider.h; path = ios/Appearance/RNCAppearanceProvider.h; sourceTree = ""; }; - C7F2764B48E0183C8C819DDC549640E1 /* FBReactNativeSpec-generated.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "FBReactNativeSpec-generated.mm"; path = "FBReactNativeSpec/FBReactNativeSpec-generated.mm"; sourceTree = ""; }; - C7F5ED3DFB3B1834F83E316FB57014E3 /* RNConfigReader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNConfigReader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - C801F07D5D9D36FECABCC66165F6AB63 /* RNGestureHandlerRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerRegistry.m; path = ios/RNGestureHandlerRegistry.m; sourceTree = ""; }; + C7CC87F7EED5A5012C03710749B33402 /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = ""; }; + C7D2C8A889B69DBFF16BE95AB81BB04C /* BugsnagPluginClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagPluginClient.m; sourceTree = ""; }; C8029B6FA3BDC64E572449C131DB4F9A /* GULKeychainStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainStorage.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainStorage.m; sourceTree = ""; }; + C81BC27172EA0CE5C80194C0D70A45D3 /* RCTRequired.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.release.xcconfig; sourceTree = ""; }; C81C1CDD0B6CEA783E7B2FED5B4A6A4D /* Math.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Math.h; path = folly/Math.h; sourceTree = ""; }; - C81CA3387A07325C1264D2294AA18213 /* UMAppLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMAppLoader-dummy.m"; sourceTree = ""; }; - C82538BEE14D28F610D55B44664CE4A7 /* ARTShape.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTShape.m; path = ios/ARTShape.m; sourceTree = ""; }; - C82F2291C0E1C10A94D728781D45E2F7 /* LNInterpolable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNInterpolable.m; sourceTree = ""; }; + C8644BEA899187C9860C8C5A4BCE9404 /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; C86BB786B3B58004A16C9CAF9B645A88 /* UIView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCache.m"; path = "SDWebImage/Core/UIView+WebCache.m"; sourceTree = ""; }; C86DF7EF0D2DB8F15D67CAB2D5C16B89 /* Assume.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Assume.h; path = folly/lang/Assume.h; sourceTree = ""; }; C8755BAEBC83C22B03BD7DB43383D48B /* SoftRealTimeExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SoftRealTimeExecutor.h; path = folly/executors/SoftRealTimeExecutor.h; sourceTree = ""; }; - C883504AA5CD6F532DEBF8F06A2A2C51 /* RNCSafeAreaViewMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewMode.m; path = ios/SafeAreaView/RNCSafeAreaViewMode.m; sourceTree = ""; }; - C88B75A182B9FF27AEEAC3DF6B2B28DF /* RCTImageView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageView.mm; sourceTree = ""; }; - C895DF4AFB14DB637758149F9B3E8709 /* React-RCTLinking.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.release.xcconfig"; sourceTree = ""; }; - C8A5CB9496F5C78AB8DC3CDF14BDEE04 /* BSG_KSObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjC.h; sourceTree = ""; }; + C89060B13A5EAABE289966B9B7599BED /* BugsnagSessionTrackingApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingApiClient.h; sourceTree = ""; }; + C8A62565FF0C008C8CCCA2F926455E43 /* EXAppleAuthentication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthentication.h; path = EXAppleAuthentication/EXAppleAuthentication.h; sourceTree = ""; }; C8A8E750D6EB315BBAD13D52C36D1C35 /* TypeInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypeInfo.h; path = folly/lang/TypeInfo.h; sourceTree = ""; }; C8AF838B4B48FCC4915595140A0E4514 /* ScopeGuard.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScopeGuard.cpp; path = folly/ScopeGuard.cpp; sourceTree = ""; }; + C8BDECB59759E467E4BA207CDA35DA99 /* KeyboardTrackingViewTempManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = KeyboardTrackingViewTempManager.m; sourceTree = ""; }; C8BF84940347B813510E1C68D77E276D /* Flipper-DoubleConversion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-DoubleConversion-prefix.pch"; sourceTree = ""; }; - C8C8AA3D6ACB6ED86523B0A123FEACC3 /* BlurEffectWithAmount.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BlurEffectWithAmount.m; path = ios/BlurEffectWithAmount.m; sourceTree = ""; }; C8C92828DAAD3DF19095AB319D64147F /* FBLPromise+Validate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Validate.m"; path = "Sources/FBLPromises/FBLPromise+Validate.m"; sourceTree = ""; }; + C8D74669E35EE408A4DE3CEE1FEF52A8 /* RNGestureHandler.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.debug.xcconfig; sourceTree = ""; }; C8F7A0909CE76DB246CB41A3FF611281 /* evdns.c */ = {isa = PBXFileReference; includeInIndex = 1; path = evdns.c; sourceTree = ""; }; - C904BDF6A065A29A89B8C4A13014D7EC /* EXImageLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXImageLoader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + C90799EA218551C7B83AA144EDE89E53 /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; C9106D8860AE51771CD2A85A8D20BB16 /* CString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CString.cpp; path = folly/lang/CString.cpp; sourceTree = ""; }; C9147CB539C346522CDE0A26BEEAD07A /* cost_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_sse2.c; path = src/dsp/cost_sse2.c; sourceTree = ""; }; C91950A7DFC8996A18ADDFAB2C6DD073 /* SSLOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLOptions.h; path = folly/io/async/SSLOptions.h; sourceTree = ""; }; C92973A386C0B253E39A7584ED55CFFC /* MallctlHelper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MallctlHelper.cpp; path = folly/memory/MallctlHelper.cpp; sourceTree = ""; }; - C94085E6B6A7A13D6CD5F15E0F6AE388 /* React-RCTActionSheet.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.release.xcconfig"; sourceTree = ""; }; C94A27A28BC851B411267E9F4705266D /* FIRCLSCodeMapping.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSCodeMapping.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSCodeMapping.m; sourceTree = ""; }; C94CA6CA326F12DDC913D558730C0BFA /* Poly-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Poly-inl.h"; path = "folly/Poly-inl.h"; sourceTree = ""; }; + C9513ADBC8F5FD588932B568C8D26DDB /* REABlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABlockNode.h; sourceTree = ""; }; C95ECC7C9717D97B9AC7FD144C98ADF2 /* FIRCLSThreadState.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSThreadState.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSThreadState.c; sourceTree = ""; }; C9609E96411BE8E2F628880FC339B53F /* CallstackHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallstackHelper.h; path = xplat/Flipper/utils/CallstackHelper.h; sourceTree = ""; }; - C96E5440EBAA0152AF3EC9344D405D96 /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; C9754419D7609BFF0E75CE875DCC4656 /* quant_levels_dec_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant_levels_dec_utils.h; path = src/utils/quant_levels_dec_utils.h; sourceTree = ""; }; C97FBA18067CC52B4EC4531841DDA970 /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = String.cpp; path = folly/String.cpp; sourceTree = ""; }; - C98435D232181CB59D9437BB281085D8 /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModule.mm; sourceTree = ""; }; + C9825762599913C6EB8217C8F9C4D952 /* BSG_RFC3339DateTool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_RFC3339DateTool.m; sourceTree = ""; }; C98E349E86046891AFC5FF8A087E9764 /* Cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cast.h; path = folly/lang/Cast.h; sourceTree = ""; }; C996B89FC9E4665A6ADF3EF655EC8278 /* ThreadCachedArena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedArena.h; path = folly/memory/ThreadCachedArena.h; sourceTree = ""; }; - C99BEAAE170C7F5ADA4D4DBDE7A9D96A /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; + C9A67E3773B8A1005ED03BE3434F1EC5 /* QBCheckmarkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBCheckmarkView.h; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.h; sourceTree = ""; }; + C9A7663B51899E9286FE8EFD38D72255 /* ARTShapeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTShapeManager.m; sourceTree = ""; }; C9AD1B7ACF67B011EFE62F0C72771D6D /* SynthTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SynthTrace.h; path = destroot/include/hermes/SynthTrace.h; sourceTree = ""; }; - C9C5E6185D9BEB593FDAEE8D9C695E37 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; + C9AEE440B62716E7DC763567258B5DB4 /* RNDateTimePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePicker.m; path = ios/RNDateTimePicker.m; sourceTree = ""; }; + C9B967E1CE6B4A87E51F75B5187C594A /* REAAlwaysNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAlwaysNode.m; sourceTree = ""; }; + C9BD5139DF22D21BF4CB4F97E6819226 /* BugsnagSystemState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSystemState.h; sourceTree = ""; }; + C9BE03A9ED4C0B01D14B481322AEEF98 /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.h; sourceTree = ""; }; + C9C9A2BE6194882D45341E0D8CEE3C18 /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = ""; }; C9DAB19BAE0886CC6E1FC7AEE195FB70 /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = src/webp/encode.h; sourceTree = ""; }; C9DF09F69040AFECB8B414130D0B901C /* time-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "time-internal.h"; sourceTree = ""; }; - C9F18BDD06EF321764D8EFE3830C7EFF /* ReactNativeShareExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeShareExtension.h; path = ios/ReactNativeShareExtension.h; sourceTree = ""; }; + C9F3D0F0276B02303042AD8CEDE218BF /* RNDocumentPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDocumentPicker.h; path = ios/RNDocumentPicker/RNDocumentPicker.h; sourceTree = ""; }; + C9F7D7AF91C7C14AE0306582CCBDCC34 /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; C9FA6C28A33D0F7D55E824B7E43BB184 /* JemallocNodumpAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JemallocNodumpAllocator.h; path = folly/experimental/JemallocNodumpAllocator.h; sourceTree = ""; }; - CA114D494B77EA5D42F892A8B5959AD6 /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; - CA189323956E570F83670B48623CCB15 /* REAConcatNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAConcatNode.m; sourceTree = ""; }; - CA1FFE0C05DE24B176E4502BD057F66A /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = ios/QBImagePicker/QBImagePicker/en.lproj; sourceTree = ""; }; - CA245AF31F2F671A9F300EE5ABE66DAC /* BSG_KSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSLogger.m; sourceTree = ""; }; + CA04D0CCECD5149348E432A7532FD6F2 /* Fontisto.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Fontisto.ttf; path = Fonts/Fontisto.ttf; sourceTree = ""; }; + CA138AF36FD6DF96FF7BC56831E4DBF0 /* BugsnagDeviceWithState+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagDeviceWithState+Private.h"; sourceTree = ""; }; + CA241484EAD056CDDD9937901FD9EFBA /* REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransition.h; sourceTree = ""; }; CA53479D1F7EC6FB3472EFF20F157B6C /* FIRInstallationsStoredItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredItem.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.m; sourceTree = ""; }; - CA69FA11B7E7B4330F772D39D3B16DA7 /* RCTAppearance.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppearance.mm; sourceTree = ""; }; + CA557537137B6A0D183A619E100A10F7 /* RNFBMeta.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBMeta.h; path = ios/RNFBApp/RNFBMeta.h; sourceTree = ""; }; + CA5710B5600A232F2F638BD59F307CCC /* BSGSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGSerialization.m; sourceTree = ""; }; + CA5B2F76C7122E579D86F19EDCFF9E89 /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; CA751CAFBA7E102722EC9DE334A0204A /* FlipperStateUpdateListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperStateUpdateListener.h; path = iOS/FlipperKit/FlipperStateUpdateListener.h; sourceTree = ""; }; CA7D82AD20F59E7EA3AB0E410CD00BD2 /* UnboundedBlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnboundedBlockingQueue.h; path = folly/executors/task_queue/UnboundedBlockingQueue.h; sourceTree = ""; }; - CA7DA89021CABC1A3CCE8AD5AEBD8BDA /* ARTShape.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShape.h; path = ios/ARTShape.h; sourceTree = ""; }; - CA7F68136B513B090A4BF7978E9810E3 /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = ""; }; CA9DB25258DD17465318AC4999B7F0F0 /* enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse41.c; path = src/dsp/enc_sse41.c; sourceTree = ""; }; CAAEF98599CE9874378A568A022A2BC7 /* SDWebImageDownloaderResponseModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderResponseModifier.m; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.m; sourceTree = ""; }; - CAB163CC453CB671E735393A50963940 /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; CAB2A0986BCA709B4AF09D1754932213 /* FormatArg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FormatArg.h; path = folly/FormatArg.h; sourceTree = ""; }; CABA488DABFBFA90F5E1369C3D813996 /* SKDescriptorMapper.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKDescriptorMapper.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKDescriptorMapper.mm; sourceTree = ""; }; - CB181C4A3E95186CA8DD5CAADB017AC8 /* react-native-cookies.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-cookies.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - CB4581065F9F852C0D03187495A16A5D /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; - CB49EE5918865679957300780193C31A /* react-native-notifications-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-notifications-dummy.m"; sourceTree = ""; }; - CB5C2C7110BF9500BE037B1992946906 /* RCTLinkingPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingPlugins.h; path = Libraries/LinkingIOS/RCTLinkingPlugins.h; sourceTree = ""; }; - CB623EA6491F7CAF7CDD9F052245936C /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; - CB651E6E4E2D6D503984BD221C592A8E /* rn-fetch-blob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-fetch-blob-dummy.m"; sourceTree = ""; }; + CADCD6AC0A44BC12DF3E31CFFCB2A47D /* BSG_KSMachHeaders.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachHeaders.h; sourceTree = ""; }; + CAF267891123E2841781DC5673196785 /* react-native-webview.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.release.xcconfig"; sourceTree = ""; }; + CAF651E25771DF3B08038A53419DD063 /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; + CAFCAA2659951C5F2840A793D96B938F /* FBReactNativeSpec-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBReactNativeSpec-dummy.m"; sourceTree = ""; }; + CB2403880F88F5DA093CE37CD971C654 /* RNFBCrashlytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBCrashlytics.debug.xcconfig; sourceTree = ""; }; + CB338AADDEBFFCE1DAE9153E8BD54079 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = Libraries/Image/RCTImageLoader.h; sourceTree = ""; }; + CB4CB6D66748FA47C30357F2544B39B2 /* BugsnagMetadata+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagMetadata+Private.h"; sourceTree = ""; }; + CB67C93D6401F212FFF1E5EE7D0106B9 /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; CB780F18AF9E3DAFA1FD46D41E5ACBC1 /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.h"; sourceTree = ""; }; - CB7B4B236EDBF83CAE1318D657ADDD3C /* Inspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Inspector.h; sourceTree = ""; }; - CB8AFFD93FA677A9A84FBDFA269DA871 /* BlurView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlurView.h; path = ios/BlurView.h; sourceTree = ""; }; CB8D1B05F7691BAED8591CFF2B187C65 /* FIRInstallationsItem+RegisterInstallationAPI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstallationsItem+RegisterInstallationAPI.m"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.m"; sourceTree = ""; }; - CBA413151A287EB64FFA9830FAED7C5E /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - CBB9B682CFDAA7BAEC67AE27B7B52B46 /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; + CB9ED71E24B8573D5A3F1BDF00522916 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; CBB9ED84AB9A1E593EF7C4C7413E06F0 /* FrameType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FrameType.cpp; path = rsocket/framing/FrameType.cpp; sourceTree = ""; }; + CBC7720687E8A53CEA1A579059D11CFD /* SerialExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SerialExecutor.h; sourceTree = ""; }; + CBCA6480660BBE935E0D88687BB059A0 /* RCTConvert+RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+RNNotifications.h"; path = "RNNotifications/RCTConvert+RNNotifications.h"; sourceTree = ""; }; CBD2370D02EB3B8FBD40A033B277308D /* FIRCLSMultipartMimeStreamEncoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMultipartMimeStreamEncoder.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSMultipartMimeStreamEncoder.m; sourceTree = ""; }; CBD7F32DD3F52D110764E7A7679E3C64 /* Flipper-DoubleConversion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-DoubleConversion-dummy.m"; sourceTree = ""; }; - CBEC3F4089ADD5AB6DA330FFDE57B3D9 /* RCTImageLoaderLoggable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderLoggable.h; path = Libraries/Image/RCTImageLoaderLoggable.h; sourceTree = ""; }; - CC0A7AB220D618527B2C89D825C275EB /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppState.h; path = React/CoreModules/RCTAppState.h; sourceTree = ""; }; + CBE1616AF656630B81600BEF0C1320C4 /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; + CC024E46040AD05842D1554339DB9DFF /* EXSessionTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionTaskDelegate.m; sourceTree = ""; }; CC10DEE2E7D3DEC467AC54EDE7E1CDED /* VirtualExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VirtualExecutor.h; path = folly/VirtualExecutor.h; sourceTree = ""; }; + CC132ACF573618FC05434FE77430522E /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = Instance.cpp; sourceTree = ""; }; CC14741F8FDEC687198BDBA374E6780E /* HHWheelTimer-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "HHWheelTimer-fwd.h"; path = "folly/io/async/HHWheelTimer-fwd.h"; sourceTree = ""; }; - CC2792273F68555D6B5495E4A1F950DB /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = ""; }; - CC2E2316D9B46A4AFE64A3079C8523B7 /* REAStyleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAStyleNode.h; sourceTree = ""; }; CC30D68C227093DD75664F5A4F39836F /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = YogaKit/Source/YGLayout.h; sourceTree = ""; }; - CC4F11947211DFCAFF2C712A29E3F797 /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; - CC57885782F72E113CAA4D456A2B3028 /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; + CC46805A90E29C92F294FA16CC350C72 /* ReactNativeART-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeART-prefix.pch"; sourceTree = ""; }; CC6D4C630EB514AF39E21E6867D5917F /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Demangle.cpp; path = folly/Demangle.cpp; sourceTree = ""; }; CC6DC74B878F52C4264D8737E8D26F2B /* Flipper-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-prefix.pch"; sourceTree = ""; }; CC72D21238CDBFB46D8CFCC77CCABD69 /* TOCropViewController.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TOCropViewController.debug.xcconfig; sourceTree = ""; }; - CC96A4E83DA3ACB87D0FC09C180D57FA /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; + CC799336E05389500EC88E957FB42160 /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = ""; }; + CC8FAA1C912262D8FB04EABEE005863E /* BugsnagApp+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagApp+Private.h"; sourceTree = ""; }; CC9EC9A93BF2708C130F9C64C754CAA6 /* enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips32.c; path = src/dsp/enc_mips32.c; sourceTree = ""; }; - CCB20B3F49C91DB8C396C1117E4975C4 /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; CCB7250174E85BADCF71CD4CF0B6F9A1 /* Payload.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Payload.cpp; path = rsocket/Payload.cpp; sourceTree = ""; }; + CCB97095D881D3E0D5625AFC68D06EA2 /* BSGNotificationBreadcrumbs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGNotificationBreadcrumbs.h; sourceTree = ""; }; CCBA08FC978D2D5552E2C77919C442BC /* VirtualEventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = VirtualEventBase.cpp; path = folly/io/async/VirtualEventBase.cpp; sourceTree = ""; }; - CCDB30CF5A656CC69458A78528C52015 /* RCTConvert+RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+RNNotifications.m"; path = "RNNotifications/RCTConvert+RNNotifications.m"; sourceTree = ""; }; - CCE701E8AA94F97CE576865A1C5D204C /* ReactCommon-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-prefix.pch"; sourceTree = ""; }; - CCEEA28921CC882E7F2C4CD6B212EA3A /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; - CCF7C18A0DF37BFD395D66412992153B /* RCTRedBoxSetEnabled.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxSetEnabled.h; sourceTree = ""; }; + CCE6F0D85D54A00E182C45B6F5C344B2 /* Inspector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = Inspector.cpp; sourceTree = ""; }; CCFEC6EEED220D1BD667FF0839451C3E /* Config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Config.h; path = folly/portability/Config.h; sourceTree = ""; }; CD0A3443C6A7213D97CFC3BE33030908 /* FIRInstallationsStoredAuthToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredAuthToken.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.h; sourceTree = ""; }; + CD173BD5FA0D4297EBFCFC4693B7BEEA /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; CD2F3B487E3BAE150BE5331123974954 /* SDMemoryCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDMemoryCache.h; path = SDWebImage/Core/SDMemoryCache.h; sourceTree = ""; }; CD30F9D9684EBC52D35FC0E36B792B13 /* CodedInputData_OSX.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CodedInputData_OSX.cpp; path = Core/CodedInputData_OSX.cpp; sourceTree = ""; }; - CD542ADD828F6AEDC04180B6A7B34DF2 /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; + CD3AC61CFAD2B9EF698313B94B268FF3 /* RuntimeExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RuntimeExecutor.h; path = ReactCommon/RuntimeExecutor.h; sourceTree = ""; }; CD5D732B125633DF2A14954BE4893DD4 /* SDGraphicsImageRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDGraphicsImageRenderer.m; path = SDWebImage/Core/SDGraphicsImageRenderer.m; sourceTree = ""; }; - CD632382C1D553D44B7141BA22CF18CC /* BugsnagKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKeys.h; sourceTree = ""; }; CD6D627770512A04521700EC63B07BE2 /* MemoryIdler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryIdler.h; path = folly/detail/MemoryIdler.h; sourceTree = ""; }; CD6D9EE4F9E1E2024338F163648B0426 /* SDWebImageCacheSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheSerializer.m; path = SDWebImage/Core/SDWebImageCacheSerializer.m; sourceTree = ""; }; CD72FF4935D9AD07EEF34CDEC0AFC91F /* FIRInstallationsIIDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.m; sourceTree = ""; }; - CD819DA2C982130E0BE946480A248D3C /* RNFBAnalytics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBAnalytics-prefix.pch"; sourceTree = ""; }; - CD8D77D9D33820ECDB7C6A012B062E79 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; - CD9430423AFF44F6C793267B68DD5C2B /* RNGestureHandlerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerModule.h; path = ios/RNGestureHandlerModule.h; sourceTree = ""; }; + CD8B8724B348C3772D9565D61F8A3846 /* react-native-webview.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.debug.xcconfig"; sourceTree = ""; }; CD9E7EF418A1E7DC076C5815A0AC9131 /* SKStateUpdateCPPWrapper.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKStateUpdateCPPWrapper.mm; path = iOS/FlipperKit/SKStateUpdateCPPWrapper.mm; sourceTree = ""; }; - CD9F3D9947D8925A9C81F1B9A1B7E759 /* RNCWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebViewManager.h; path = apple/RNCWebViewManager.h; sourceTree = ""; }; - CDB68DA9D1F31B64C7C1A12485F15A94 /* react-native-appearance.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-appearance.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - CDCA6A0235B5F65867C4FA3B8F76C5C1 /* BugsnagConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagConfiguration.h; sourceTree = ""; }; - CDE6BAF237DD904B663DEC444E60D228 /* NSError+BSG_SimpleConstructor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSError+BSG_SimpleConstructor.m"; sourceTree = ""; }; + CDD860D6ECAD3BA713BD4D1F7DC63507 /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; CDE9A556EC556FFEFABB9A9F7E9DD557 /* EventBaseBackendBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseBackendBase.h; path = folly/io/async/EventBaseBackendBase.h; sourceTree = ""; }; + CDF16ECD50D0280EC60B6417A2282ABA /* BSG_KSCrashSentry_Signal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Signal.h; sourceTree = ""; }; CE0AECC804B24895157FC7CA0CBEC546 /* FlipperKitNetworkPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitNetworkPlugin.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin.h; sourceTree = ""; }; - CE0C4A8B6C2D128A86C2AADF7D4B3E40 /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; - CE111B675538B7F9D052CCC0722E9AC9 /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; CE1A3BE870187D9779BD588E99A4BA1E /* StreamRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamRequester.cpp; path = rsocket/statemachine/StreamRequester.cpp; sourceTree = ""; }; - CE27789B9B6612735667ACD0E55F8916 /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = ""; }; CE30F05F7BDE8ECCE8129CA563DFC777 /* FIRCLSDwarfExpressionMachine.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSDwarfExpressionMachine.c; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfExpressionMachine.c; sourceTree = ""; }; CE52DDDD28C1BCF00DA998C465092169 /* FIRCLSFABHost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFABHost.m; path = Crashlytics/Shared/FIRCLSFABHost.m; sourceTree = ""; }; - CE5C65A58387E1F691616A8258878D65 /* react-native-safe-area-context-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-safe-area-context-prefix.pch"; sourceTree = ""; }; - CE5D9BDFD0262F6E868A3D07FAE897D9 /* react-native-document-picker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.debug.xcconfig"; sourceTree = ""; }; + CE58441B97197A9C77EC5B3FA60736DD /* RNFastImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFastImage-dummy.m"; sourceTree = ""; }; + CE6D47E068EE3C3F710FDCC6A5571833 /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; CE6DA0E0588B8854385C4C0A03DAB96E /* TimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimeoutManager.h; path = folly/io/async/TimeoutManager.h; sourceTree = ""; }; CE71E32B1F316D819469B576AFFD0199 /* PThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PThread.cpp; path = folly/portability/PThread.cpp; sourceTree = ""; }; + CE720B80740482075792A51EC72C64FF /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; + CE75A73372A46C20D81FFA32E2B7FF33 /* React-jsi.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.release.xcconfig"; sourceTree = ""; }; CE804605C2C458698224684169342575 /* GoogleDataTransportCCTSupport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransportCCTSupport-dummy.m"; sourceTree = ""; }; CE8225378D28D5807F1B16BB9BAE9DC8 /* ConsumerBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConsumerBase.cpp; path = rsocket/statemachine/ConsumerBase.cpp; sourceTree = ""; }; - CE82711FB9B6F57CED5C24549CED4969 /* RNFetchBlobFS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobFS.m; path = ios/RNFetchBlobFS.m; sourceTree = ""; }; - CE9C1CAF322174BAF8E557DC26BBDD20 /* QBSlomoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBSlomoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.m; sourceTree = ""; }; - CEAF8556BFBA1D1E6EE7C1F298275E9F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + CEA3B35EB09CCF2BD8C1C215046FBDBC /* BugsnagError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagError.m; sourceTree = ""; }; CEC466FD202E23F29881E8BEB39E7530 /* NamedThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NamedThreadFactory.h; path = folly/executors/thread_factory/NamedThreadFactory.h; sourceTree = ""; }; - CECDCF1B2C742A0707D868B5952BB5FA /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = CoreModulesPlugins.mm; sourceTree = ""; }; CEE0941739C9D8C648BEE31B28E6BAB0 /* LockFreeRingBuffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LockFreeRingBuffer.h; path = folly/experimental/LockFreeRingBuffer.h; sourceTree = ""; }; - CEE182B391F292975C9C32DFC07250FE /* RNBootSplash-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNBootSplash-dummy.m"; sourceTree = ""; }; + CEEE463F217CBE6145E587648B5C4980 /* EXKeepAwake.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXKeepAwake.h; path = EXKeepAwake/EXKeepAwake.h; sourceTree = ""; }; CF052B7BAEBD12FB552E6AAA12CE3E99 /* SKSearchResultNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKSearchResultNode.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKSearchResultNode.m; sourceTree = ""; }; - CF0830A49581DC5BE12B0270EEB2CD2A /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = ""; }; CF0C1E54F3BF3139BD54F1B42B3175A4 /* evmap-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "evmap-internal.h"; sourceTree = ""; }; CF20904EF4194014012A59328286CE8D /* SharedMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SharedMutex.cpp; path = folly/SharedMutex.cpp; sourceTree = ""; }; CF23CC817A95D2D6EC9B51B5E14343C7 /* cct.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cct.nanopb.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.h; sourceTree = ""; }; CF4BDEC955538583A9CAA48843409B0D /* alpha_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_dec.c; path = src/dec/alpha_dec.c; sourceTree = ""; }; CF5736726F34C338E30E0C2E192BFCEC /* picture_tools_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_tools_enc.c; path = src/enc/picture_tools_enc.c; sourceTree = ""; }; - CF5DBBC056AE612B13B56FA8EE6EB845 /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; - CF6347AF1735ED878746DADA13233FA0 /* RNGestureHandlerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerState.h; path = ios/RNGestureHandlerState.h; sourceTree = ""; }; CF6F2DB2D18A812C3A854361966399FB /* filters_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_neon.c; path = src/dsp/filters_neon.c; sourceTree = ""; }; CF77D25B62CE45B31D07F75CB0D5E5D5 /* ChecksumDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChecksumDetail.h; path = folly/hash/detail/ChecksumDetail.h; sourceTree = ""; }; - CF785611FFEAC5B926BCBEB77DC2215A /* Bugsnag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Bugsnag.h; sourceTree = ""; }; CF84CF3255A89822E1EF8A2A7F263EE8 /* TestUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestUtil.h; path = folly/experimental/TestUtil.h; sourceTree = ""; }; CF8644F271E44401C198A359C279E6A2 /* FIRCLSNetworkClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSNetworkClient.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSNetworkClient.m; sourceTree = ""; }; CF92CB2DC5E901A2117D9D01EE01BBBE /* MemoryResource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryResource.h; path = folly/memory/MemoryResource.h; sourceTree = ""; }; CFADAE6600C315D4EFB5CC5D47467A27 /* SDWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWeakProxy.m; path = SDWebImage/Private/SDWeakProxy.m; sourceTree = ""; }; - CFB0120437DBF02A9931E932317AF9F7 /* BugsnagCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashReport.h; sourceTree = ""; }; CFB354F515813222413E2132DB870EBF /* cost.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost.c; path = src/dsp/cost.c; sourceTree = ""; }; - D007CFEE4AD7FD19ABF8EE56737FC685 /* RCTRsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRsa.h; path = ios/RCTCrypto/RCTRsa.h; sourceTree = ""; }; + CFBC2C9D2EE19A36E1AAE876E3BF5D26 /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = ""; }; + CFDAAEEE30F471C4329F59C88696B0DA /* RNFBAnalytics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFBAnalytics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + CFE777E168A9AFBF074D469F9EFF7C47 /* RNCNetInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCNetInfo.m; path = ios/RNCNetInfo.m; sourceTree = ""; }; + CFEEC4B26238A97760C661FC6EBEEDE7 /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = ModuleRegistry.cpp; sourceTree = ""; }; + D004E755154C0609093CBA5A993FFB05 /* RNFBCrashlyticsInitProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBCrashlyticsInitProvider.h; path = ios/RNFBCrashlytics/RNFBCrashlyticsInitProvider.h; sourceTree = ""; }; D00CE9B3086FA1A05219E162F854B74F /* webp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_enc.c; path = src/enc/webp_enc.c; sourceTree = ""; }; + D025A744BC6CB86BDC6E7478D67C5018 /* RNCPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCPicker-prefix.pch"; sourceTree = ""; }; D03E0BDAF9B99DCFE7142FA24C3753B9 /* AtFork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtFork.h; path = folly/detail/AtFork.h; sourceTree = ""; }; - D04D2B4497FF26DC6A3E500C1A921B86 /* BugsnagCollections.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCollections.m; sourceTree = ""; }; - D065B9C577E4DC606496BB1350D1FCB6 /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; + D03FB8816A2AB881FD70B5B6B25F9651 /* BugsnagKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKeys.h; sourceTree = ""; }; + D05C1CEC62104465904E3A67032B0338 /* BSGConnectivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGConnectivity.m; sourceTree = ""; }; D073692990B9BF66DA53ABBA5F0547E2 /* CtorConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CtorConfig.h; path = destroot/include/hermes/Public/CtorConfig.h; sourceTree = ""; }; - D0845F85A8A1373A6FB9BE2889058A48 /* RCTNativeAnimatedTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeAnimatedTurboModule.mm; sourceTree = ""; }; D086FD2DC70AB96A859578DC6120A23B /* PackedSyncPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PackedSyncPtr.h; path = folly/PackedSyncPtr.h; sourceTree = ""; }; D09D3FE7CC7C7E27C81BB8B8916180FB /* ResourceBundle-TOCropViewControllerBundle-TOCropViewController-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-TOCropViewControllerBundle-TOCropViewController-Info.plist"; sourceTree = ""; }; - D0A27415CB009E5CDA722E846BFE067A /* RNGestureHandler.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNGestureHandler.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - D0AAC020FDC78E6B79317B21E523F9D4 /* EXVideoThumbnails.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXVideoThumbnails.release.xcconfig; sourceTree = ""; }; - D0C2DD91A9EBD4168DC911AF0073DF62 /* QBSlomoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBSlomoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.h; sourceTree = ""; }; + D0ACA1571BAA3C0B215051D0BB3BC857 /* REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransition.m; sourceTree = ""; }; + D0B9B3241560309851012EDF6E8A3626 /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = ""; }; + D0BFF27AF933BF8DFC29BAD4589847E5 /* REAModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAModule.h; path = ios/REAModule.h; sourceTree = ""; }; + D0D88DE9238F87B08F5FA4F0049515F4 /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; D0E13984E0A2C4736083DC35869FC7C2 /* Hardware.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hardware.h; path = folly/chrono/Hardware.h; sourceTree = ""; }; D0F7ABFB07A02E065BC573837BB2AFFB /* QueuedImmediateExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = QueuedImmediateExecutor.cpp; path = folly/executors/QueuedImmediateExecutor.cpp; sourceTree = ""; }; D10E2669C8848E54D113A42302BB19D4 /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = instrumentation.h; path = destroot/include/jsi/instrumentation.h; sourceTree = ""; }; D10F12D128550E3DC072FBFC7CAF85D8 /* PolyDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PolyDetail.h; path = folly/detail/PolyDetail.h; sourceTree = ""; }; - D11EE89D4DD215758F2381A96E377092 /* RCTWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWeakProxy.m; sourceTree = ""; }; - D1214846299FF4548EC7F5C4E9AB3EE8 /* UMConstantsInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.release.xcconfig; sourceTree = ""; }; - D12AFA51E54C3C52B68464BCA5B84CF0 /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; + D1261855BFFA8311D0C7C5B1019EBC88 /* Bugsnag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Bugsnag.h; sourceTree = ""; }; + D138E7168D289E33D969E784634487E8 /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; D138EEBF36D8E69C1BB1C575F483FB4B /* ar.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ar.lproj; path = "Objective-C/TOCropViewController/Resources/ar.lproj"; sourceTree = ""; }; - D16286F2EFC59A263D366B2375D99AE9 /* RNFBAnalytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBAnalytics.debug.xcconfig; sourceTree = ""; }; D188BCD922AC3C4939F431D7B60837B9 /* WebRTC.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebRTC.framework; path = Frameworks/WebRTC.framework; sourceTree = ""; }; + D18A2940596CFCC7B0DD063E40A88D66 /* UMPermissionsInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.release.xcconfig; sourceTree = ""; }; D18D8EE86A6247AEC17789C49CB93D6D /* FlipperCertificateProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCertificateProvider.h; path = xplat/Flipper/FlipperCertificateProvider.h; sourceTree = ""; }; - D196AE1B55787F646D039E8E580BDCA5 /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; D19A4CA590DD20503C9910C053E7E6EC /* SKTapListenerImpl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKTapListenerImpl.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTapListenerImpl.m; sourceTree = ""; }; - D1B55BC8607F3986709C701664C14828 /* RNRootViewGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRootViewGestureRecognizer.m; path = ios/RNRootViewGestureRecognizer.m; sourceTree = ""; }; - D1B601D8A0CABC2B2BB07898742E7709 /* RCTClipboard.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTClipboard.mm; sourceTree = ""; }; - D1B825B8C351A9CC5F57DBA490C5F7D3 /* BSG_KSCrashSentry_Signal.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_Signal.c; sourceTree = ""; }; D1C3457EB97C2E145F1E6A47676EB365 /* FIRCLSURLSessionUploadTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLSessionUploadTask.m; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionUploadTask.m; sourceTree = ""; }; - D1CD08E515A799E10916C90CF8CE577B /* RNGestureHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandler.m; path = ios/RNGestureHandler.m; sourceTree = ""; }; - D1D37F5BF753E9A21626896FBF19BE86 /* SerialExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SerialExecutor.h; sourceTree = ""; }; - D1F2F609776F4D3A97E600DC6C591A70 /* RNCMaskedView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCMaskedView-prefix.pch"; sourceTree = ""; }; - D1F307EB2FDDF4F6254BBE363533761D /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = ""; }; D1F9BC25A5F9A6EBE79C5FC99E1ACCCB /* FlipperRSocketResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperRSocketResponder.h; path = xplat/Flipper/FlipperRSocketResponder.h; sourceTree = ""; }; - D21615D5B7787BF89AC75BFFE8280EDF /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; - D217320973674B8E59AECC75D4D826C3 /* BSG_KSBacktrace.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSBacktrace.c; sourceTree = ""; }; + D20343DBF407D8021B5FCD3EC802C4E2 /* BSG_KSCrashType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashType.h; sourceTree = ""; }; + D209C4FA27308DF998A5A82B02E763F2 /* RNFastImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.release.xcconfig; sourceTree = ""; }; + D20C1F69C8D64CF80267E0043A39E62E /* QBImagePicker.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = QBImagePicker.storyboard; path = ios/QBImagePicker/QBImagePicker/QBImagePicker.storyboard; sourceTree = ""; }; D218CD7A1D139E9F1C38C68C1D1BC373 /* TypeList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypeList.h; path = folly/detail/TypeList.h; sourceTree = ""; }; - D2230E534485C9E75F15FFB2F67318D3 /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; - D225EAEE3F5D4BC3CD7C9EC2973E1856 /* Sha.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Sha.m; sourceTree = ""; }; D2322A3A37A78CF82ABE28C37D8CACA5 /* SonarKitNetworkPlugin+CPPInitialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SonarKitNetworkPlugin+CPPInitialization.h"; path = "iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SonarKitNetworkPlugin+CPPInitialization.h"; sourceTree = ""; }; D232B35AB8CB2A662E1C23302D9213F2 /* FIRCLSHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSHandler.m; path = Crashlytics/Crashlytics/Handlers/FIRCLSHandler.m; sourceTree = ""; }; - D24933DDC5F3B81257C2F4F169E9F5E6 /* RCTKeyCommandsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandsManager.m; path = ios/KeyCommands/RCTKeyCommandsManager.m; sourceTree = ""; }; D24C2A558A4C2CF8CAD1BE5E4935C980 /* alpha_processing_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_mips_dsp_r2.c; path = src/dsp/alpha_processing_mips_dsp_r2.c; sourceTree = ""; }; D25CC58E2E6BE4726CC342479689DE85 /* Demangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Demangle.h; path = folly/detail/Demangle.h; sourceTree = ""; }; + D25EC3A6EE178FA0BB33279376E6666B /* RNNotificationCenterListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterListener.m; path = RNNotifications/RNNotificationCenterListener.m; sourceTree = ""; }; D26852D1F256C76D2220095D278152DF /* DuplexConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DuplexConnection.h; path = rsocket/DuplexConnection.h; sourceTree = ""; }; D275BB6BB5DDB9ADBCA034837339D4E6 /* DefaultKeepAliveExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DefaultKeepAliveExecutor.h; path = folly/DefaultKeepAliveExecutor.h; sourceTree = ""; }; D283895F4E266C2F034DEA9F975C4B52 /* GoogleAppMeasurement.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleAppMeasurement.framework; path = Frameworks/GoogleAppMeasurement.framework; sourceTree = ""; }; - D28BA3B3ABEEAC24F49B7E8E6A246ED5 /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; - D2BC8C740454D8A8ADCB21F3446A7B1C /* FBLazyVector.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.release.xcconfig; sourceTree = ""; }; + D2943406FA1878F07097E101AE75878A /* React-CoreModules.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.debug.xcconfig"; sourceTree = ""; }; + D2BAFB5712B5C8FFFE439BE7B8832975 /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = ""; }; D2C5FC90D2479A209F796DDE8961A2CA /* nanopb.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.debug.xcconfig; sourceTree = ""; }; D2CB543418A0278B8EA4AF0B5E8165B1 /* GULApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULApplication.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULApplication.h; sourceTree = ""; }; D2D9FC5046BFD665D655F0ECFA346B84 /* ThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadPoolExecutor.cpp; path = folly/executors/ThreadPoolExecutor.cpp; sourceTree = ""; }; D2F655E41C63BAB63A290AB9417740CC /* AsyncTimeout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncTimeout.cpp; path = folly/io/async/AsyncTimeout.cpp; sourceTree = ""; }; - D308492D39E0D7290B25F9D7770673D3 /* RNForceTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNForceTouchHandler.m; sourceTree = ""; }; + D30DBF5B6FCBC3771FC82D8F61B0DDE1 /* BugsnagClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagClient.m; sourceTree = ""; }; + D31F5C04F4B11BAF9893FCEEBF4FCAF5 /* FBLazyVector.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.release.xcconfig; sourceTree = ""; }; D328775106F074AD45878F03B4247CCD /* SysTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysTypes.h; path = folly/portability/SysTypes.h; sourceTree = ""; }; - D3289860078493081E88901C691B4FB0 /* EXAppleAuthenticationRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationRequest.h; path = EXAppleAuthentication/EXAppleAuthenticationRequest.h; sourceTree = ""; }; D32F6732FAD1516979A5B9333CC2ED3F /* Math.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Math.h; path = folly/portability/Math.h; sourceTree = ""; }; - D332CF4DEC01E04D3E9E6C36C3935A62 /* rn-extensions-share-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-extensions-share-prefix.pch"; sourceTree = ""; }; D341FB6C784B8F24292A0C10871CB739 /* ProgramOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProgramOptions.h; path = folly/experimental/ProgramOptions.h; sourceTree = ""; }; + D34F0718894EB8BF26A6311E5213A124 /* RCTConvert+FFFastImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FFFastImage.h"; path = "ios/FastImage/RCTConvert+FFFastImage.h"; sourceTree = ""; }; D36ACE68BB8264C4141B635EA0BD695D /* small_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = small_vector.h; path = folly/small_vector.h; sourceTree = ""; }; D3747BB10FAC0DDEE8A101726C4278CA /* FlipperKitCertificateProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitCertificateProvider.h; path = iOS/FlipperKit/FlipperKitCertificateProvider.h; sourceTree = ""; }; D375D0FFEF2CAE4C446E135EF0E4CEC6 /* token_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = token_enc.c; path = src/enc/token_enc.c; sourceTree = ""; }; - D387B13DD65247029584B19ABB2D3BC8 /* RNCAssetsLibraryRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAssetsLibraryRequestHandler.h; path = ios/RNCAssetsLibraryRequestHandler.h; sourceTree = ""; }; + D37B65DEDF478FA183504D83B5AFE43C /* RNCMaskedView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCMaskedView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; D387CEB2E8DFB44CA15F0A1870D36947 /* Futex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Futex.h; path = folly/detail/Futex.h; sourceTree = ""; }; - D3990797EC36854380E8D38CF61276B7 /* ARTGroupManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTGroupManager.h; sourceTree = ""; }; + D39EE2ECB1DCDBE29E86E36789934FD5 /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = ""; }; D3AA599DC936541F96C2A0FDEDADF1A2 /* SysTime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysTime.h; path = folly/portability/SysTime.h; sourceTree = ""; }; - D3AF329653C99705EC49BCA6F87701BA /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; - D3CE76F3A02E877482F1A9980ECEC0FC /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = ""; }; - D3CEECCB786CE3C1919068637D39DB99 /* React-jsiexecutor.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsiexecutor.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - D3D7448B3740B1272A823C4768266D7F /* BugsnagLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagLogger.h; sourceTree = ""; }; - D3DFC42A3D2AE88A61355DBCD6819619 /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; + D3B33FD155FD295BAA0410C2986FCA37 /* BlurView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BlurView.m; path = ios/BlurView.m; sourceTree = ""; }; + D3CA87F3981BA1FAD1B5A90A2FB91D9D /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = jsi.cpp; sourceTree = ""; }; + D3CB59A60FE13ECB21FE7841B42C6FF9 /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = ""; }; + D3DE53BFB30AD316FAD57081454D1606 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + D3F24519187C0062D2335EF4A06B631F /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; D406C3172FD33987CC90D98C292F301B /* FIRCLSSettingsOnboardingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSettingsOnboardingManager.m; path = Crashlytics/Crashlytics/Settings/FIRCLSSettingsOnboardingManager.m; sourceTree = ""; }; + D40C3533BF228493CCEDE27D1FB64084 /* BSGStorageMigratorV0V1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGStorageMigratorV0V1.h; sourceTree = ""; }; + D42007B4C16C152C107FFE5553789732 /* BSGGlobals.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGGlobals.m; sourceTree = ""; }; D4228F768266D79383C00EDA869BA843 /* EnableSharedFromThis.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EnableSharedFromThis.h; path = folly/memory/EnableSharedFromThis.h; sourceTree = ""; }; - D44C3D070F917B2053F649C0103F83C7 /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; D4565DF68C06D16A9AA04709FCD92143 /* YogaKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YogaKit-umbrella.h"; sourceTree = ""; }; - D484B3C4171FE47BACEDE24FE6B0B41C /* React-callinvoker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-callinvoker.release.xcconfig"; sourceTree = ""; }; + D459214CFD30F80EBC830BD08EBBA7B9 /* RNCAsyncStorage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCAsyncStorage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D48E7AE778250FC2EF3E2A77AB216EB9 /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; D492EF8863AEA098B6A3F3255B3F8CB9 /* FIRInstallationsAuthTokenResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResult.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallationsAuthTokenResult.h; sourceTree = ""; }; + D4962E415A146278EC19A739E2A05AA7 /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; D4A2BE8CFED384AE4AC4EC33BB298903 /* FIRInstallationsVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsVersion.m; path = FirebaseInstallations/Source/Library/FIRInstallationsVersion.m; sourceTree = ""; }; D4BCB0CAAD65FBB0F6AE920BC1F835D6 /* F14Defaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Defaults.h; path = folly/container/detail/F14Defaults.h; sourceTree = ""; }; - D4CEDE5C0FE1EFEDF54BD7AF098B1595 /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = ""; }; + D4C7960CE956C5F384C6FCFE3EF90FF5 /* RNPanHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPanHandler.h; sourceTree = ""; }; D4E5EA08053591079B41F2327DF440C6 /* dsp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dsp.h; path = src/dsp/dsp.h; sourceTree = ""; }; D4E8533611C40EE3FCB6EF0597A4181F /* SDImageLoadersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoadersManager.h; path = SDWebImage/Core/SDImageLoadersManager.h; sourceTree = ""; }; D4F1C532F9BEF20239D3696E29DB5A39 /* FIRBundleUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRBundleUtil.h; path = FirebaseCore/Sources/FIRBundleUtil.h; sourceTree = ""; }; - D4F8BA2A79E951302AFE29C342C85D9F /* RCTNativeAnimatedTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedTurboModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedTurboModule.h; sourceTree = ""; }; - D5202EC64D1C8D82630E04392F548113 /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = ""; }; - D52739B653AAA586594BE4673FB03B8B /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; + D5076B2B02335290CFEE9635052C0FE6 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + D50DC825479EC74D8D93ED11C4676228 /* BugsnagMetadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagMetadata.m; sourceTree = ""; }; + D53862AF54CF2656B4120C75EA8B3C4B /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; + D548161C546809C36062E8F56DB53607 /* RNNotificationEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationEventHandler.h; path = RNNotifications/RNNotificationEventHandler.h; sourceTree = ""; }; D55EECDF82319E1B43BAC813BD004C14 /* OpenSSLHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLHash.h; path = folly/ssl/OpenSSLHash.h; sourceTree = ""; }; + D560D51D8AE4A5857AA12820C4EE5243 /* REASetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASetNode.m; sourceTree = ""; }; D567A3C8BCF2DBFD5392F80573BD4FB4 /* evbuffer-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "evbuffer-internal.h"; sourceTree = ""; }; - D56F7FAAC8A53E1BC6F58AB6E97B23F9 /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = ""; }; + D570269BE6A7372A8F825DF7468EFFD9 /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; D57829D18EEE1D92E43BA2B93BFD087E /* SafeAssert.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SafeAssert.cpp; path = folly/lang/SafeAssert.cpp; sourceTree = ""; }; D5840566E7BBCE62361B020239DE8975 /* Uri-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Uri-inl.h"; path = "folly/Uri-inl.h"; sourceTree = ""; }; D5871C9F2D5BC90B1A9AB94AC972717E /* Builtins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Builtins.h; path = folly/portability/Builtins.h; sourceTree = ""; }; - D58D963BC135A918E6889B448E86F66F /* RNLongPressHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNLongPressHandler.h; sourceTree = ""; }; D5931E02E7529784C22BB8BEB80A6E2D /* SKObject.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKObject.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKObject.mm; sourceTree = ""; }; + D59570E752E35C2A399AE364FF6C7326 /* BugsnagEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagEvent.h; sourceTree = ""; }; D59DB87E3210D516D896651D27738B12 /* PTChannel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PTChannel.m; path = peertalk/PTChannel.m; sourceTree = ""; }; - D5B2355CC35954E9C49262D1C805126D /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; - D5BF1399CE5EA4703577CE6C49545B73 /* ARTTextManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTTextManager.m; sourceTree = ""; }; + D5AB44E082B868273CCA855943AA3210 /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = "jsilib-posix.cpp"; sourceTree = ""; }; D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactCommon.a; path = libReactCommon.a; sourceTree = BUILT_PRODUCTS_DIR; }; + D5C9EB3DD6251F36240159CAB9F95695 /* RNNotificationCenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenter.m; path = RNNotifications/RNNotificationCenter.m; sourceTree = ""; }; D5CAFDCB85306D5AFD07084BA1737101 /* SDWebImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageWebPCoder.h; path = SDWebImageWebPCoder/Module/SDWebImageWebPCoder.h; sourceTree = ""; }; - D5D9EFA04212FDA9A0D98241B6A3BBA5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - D5DE52F7D4DD68D70A1E463D13E2AC5E /* RNCMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedView.h; path = ios/RNCMaskedView.h; sourceTree = ""; }; + D5D99E68D42DB1FFA29F7AD244CD2F3C /* REAOperatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAOperatorNode.h; sourceTree = ""; }; + D5E55A4EAD292CC5AB8F7832A3894AAB /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; D5E8E5688B76AA91CD7061A0CF7F37A9 /* NSImage+Compatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSImage+Compatibility.m"; path = "SDWebImage/Core/NSImage+Compatibility.m"; sourceTree = ""; }; + D6140EAA04937CCDC62246EB577E04F8 /* React.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.debug.xcconfig; sourceTree = ""; }; + D61D7C469D560268F734071F40F27401 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; D6367FCCF442159AB5CD62FC726DC2DA /* FIRCLSFABHost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABHost.h; path = Crashlytics/Shared/FIRCLSFABHost.h; sourceTree = ""; }; D64E5F3C5FEBB3D23A3B391A2C24C43A /* SpookyHashV1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpookyHashV1.h; path = folly/hash/SpookyHashV1.h; sourceTree = ""; }; - D67A8477403D4FF04D10186E20CBF92B /* Pods-defaults-Rocket.Chat.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-defaults-Rocket.Chat.modulemap"; sourceTree = ""; }; + D64EC9825D8C6C4D2EE46C9A5061CA48 /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; D688BD0666F5655DF0C68C2D97CA9956 /* AtomicStruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicStruct.h; path = folly/synchronization/AtomicStruct.h; sourceTree = ""; }; D698A54C40003FD1EE0618F5FCF5A4ED /* Access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Access.h; path = folly/container/Access.h; sourceTree = ""; }; - D69931D9F869BC3B1C7FAAD424D500CD /* RNCPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCPicker-prefix.pch"; sourceTree = ""; }; + D6B54A82E94BF7B2CFD4B0174A07DE6C /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; + D6BB074FFB236F462289D831184046B2 /* rn-fetch-blob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-fetch-blob-prefix.pch"; sourceTree = ""; }; + D6BB52881A2A5900E7C1260BC6523D0A /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; D6C5BB22211A7F56D8953B1A2AE24CEC /* FIRConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfiguration.h; path = FirebaseCore/Sources/Public/FIRConfiguration.h; sourceTree = ""; }; + D6CA99BC0704966CBE320E4264148590 /* UMFileSystemInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.release.xcconfig; sourceTree = ""; }; D6CB014D6F64A3F8BA9B0124907F5578 /* alpha_processing_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse41.c; path = src/dsp/alpha_processing_sse41.c; sourceTree = ""; }; D6DA5D70F73C5260C38572CAB82003DB /* EventUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventUtil.h; path = folly/io/async/EventUtil.h; sourceTree = ""; }; D6E2DBCF4B67D998B4EB021A9E07EAC8 /* GULReachabilityChecker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityChecker.h; path = GoogleUtilities/Reachability/Private/GULReachabilityChecker.h; sourceTree = ""; }; + D6FA4F6C91F2A4BED4534715D40E0D1F /* BugsnagCollections.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCollections.h; sourceTree = ""; }; + D700921BD027F1AA96650E3B71E9DC89 /* REANodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REANodesManager.m; path = ios/REANodesManager.m; sourceTree = ""; }; D701A1CF1CB4D49D5A42D1C4A0CC106E /* UnboundedBlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnboundedBlockingQueue.h; path = folly/executors/task_queue/UnboundedBlockingQueue.h; sourceTree = ""; }; + D7158FAE9DF446090D9C9B2C3C24BD46 /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = ""; }; + D725CF596A4AFE33281DA292DE582717 /* FBLazyVector.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.debug.xcconfig; sourceTree = ""; }; D72BB39F5E1E5882B7FBD679B664534B /* ConcurrentSkipList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentSkipList.h; path = folly/ConcurrentSkipList.h; sourceTree = ""; }; D72FD378C4B1FCB1EF395201B2FA0620 /* filters_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_mips_dsp_r2.c; path = src/dsp/filters_mips_dsp_r2.c; sourceTree = ""; }; D73071E48F25255F5B10C19EEF913046 /* FLEXNetworkRecorder.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FLEXNetworkRecorder.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkRecorder.mm; sourceTree = ""; }; - D7349198E27959B9FF48EA1F610E901F /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; + D73244402DD95F9ACCC241FA741963AD /* RNFetchBlobRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobRequest.h; path = ios/RNFetchBlobRequest.h; sourceTree = ""; }; D7356C5A625D90CA214661C8C6D6F794 /* SDAnimatedImageRep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageRep.h; path = SDWebImage/Core/SDAnimatedImageRep.h; sourceTree = ""; }; + D746FBE13B9C27EC693E1F439D3AB800 /* HermesExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = HermesExecutorFactory.h; sourceTree = ""; }; D74ABFF01BBF287ECFE62FA3E7B8555B /* Sched.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sched.h; path = folly/portability/Sched.h; sourceTree = ""; }; - D750816AE5A882794EDAB55CEE923C47 /* RNCConnectionState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCConnectionState.h; path = ios/RNCConnectionState.h; sourceTree = ""; }; D75A2CFEEF6B8B25305A84FB7831CDD0 /* GDTCORReachability.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORReachability.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORReachability.m; sourceTree = ""; }; D76E8495FF3C4F45E05A1D077E2B3DF0 /* bit_writer_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_writer_utils.c; path = src/utils/bit_writer_utils.c; sourceTree = ""; }; D77046677C44FB3A05A464AB21EAB128 /* GDTCORConsoleLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORConsoleLogger.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORConsoleLogger.m; sourceTree = ""; }; - D78EA4DA9FA869EDDF789405925CED85 /* BSG_KSCrashDoctor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashDoctor.h; sourceTree = ""; }; + D78EEF985308C79B8FBBEB68CCDDFABD /* RCTDisplayWeakRefreshable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDisplayWeakRefreshable.h; path = Libraries/Image/RCTDisplayWeakRefreshable.h; sourceTree = ""; }; D796A028626A993301936F75D47B1E5F /* lossless_enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_msa.c; path = src/dsp/lossless_enc_msa.c; sourceTree = ""; }; + D79ECBAD9D023B23590DA3F9860C4878 /* BSG_KSJSONCodec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodec.h; sourceTree = ""; }; D7BEB610C4B614A30006C73B615D4BD0 /* Libgen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Libgen.h; path = folly/portability/Libgen.h; sourceTree = ""; }; - D7C0752E2281543637AD3FF993453899 /* RNCSafeAreaProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProvider.m; path = ios/SafeAreaView/RNCSafeAreaProvider.m; sourceTree = ""; }; D7D9D01F1D4E888BD17D69E7D442D3DF /* WTCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WTCallback.h; path = folly/futures/WTCallback.h; sourceTree = ""; }; D7E5EC94D71759DD5DA4BF40DACD91FA /* FIRCLSRecordApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordApplication.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordApplication.h; sourceTree = ""; }; - D804ECB383E4EC6DD4B4382CB05E6D1F /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; D80FDE7E34FA2982674064A6D85232B8 /* vp8l_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_enc.c; path = src/enc/vp8l_enc.c; sourceTree = ""; }; D811B83316C917BE0F602B3C2A560270 /* filter_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filter_enc.c; path = src/enc/filter_enc.c; sourceTree = ""; }; D844116E0E005795AB0B48CDE2A3E004 /* neon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = neon.h; path = src/dsp/neon.h; sourceTree = ""; }; + D84AD1D3232B0FAF8CBACB1950484819 /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSourceCode.h; path = React/CoreModules/RCTSourceCode.h; sourceTree = ""; }; + D85BA8C9AB92AE4535FB92658398E81D /* React-callinvoker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-callinvoker.debug.xcconfig"; sourceTree = ""; }; + D86615BEDC991166E3F53C91B920E5FC /* RNFBPreferences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBPreferences.h; path = ios/RNFBApp/RNFBPreferences.h; sourceTree = ""; }; D86896FB5858820428D3DDDC6CD96A55 /* SDImageAssetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAssetManager.m; path = SDWebImage/Private/SDImageAssetManager.m; sourceTree = ""; }; D8698ACE66F07F626C2B700C0BA8D62B /* FiberIOExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FiberIOExecutor.h; path = folly/executors/FiberIOExecutor.h; sourceTree = ""; }; - D87FBE06E359D8DF84E696F78CA6F1DA /* RNNotificationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationsStore.m; path = RNNotifications/RNNotificationsStore.m; sourceTree = ""; }; - D8889511B0D210574C8248000184E1E0 /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; - D898729243217BAEFDBE528BE2FD1605 /* REAParamNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAParamNode.h; sourceTree = ""; }; D8A89591EFBF3724820EDA6841A165CE /* SaturatingSemaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SaturatingSemaphore.h; path = folly/synchronization/SaturatingSemaphore.h; sourceTree = ""; }; + D8B03F145549407E02F672A812CBA01E /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; + D8D01FDBB13E714AD1DA9DEFE7609ACE /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; D8DC5D16E9213B3F499E8791592C12EC /* FIRCLSSymbolResolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSymbolResolver.h; path = Crashlytics/Crashlytics/Models/FIRCLSSymbolResolver.h; sourceTree = ""; }; - D8DF7AFABBA68397F89064647D969B79 /* RNPushKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKit.h; path = RNNotifications/RNPushKit.h; sourceTree = ""; }; - D8F8CE55B45C71210D96A98BA5DD6881 /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; - D8FE9A68195B8B6221AB0447095456E5 /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = ""; }; + D8E85493FCB78658F657C88B19877EB1 /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; + D900AC4A16FB055481C7D4BB42394972 /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; D900E79A9D933E573EB8C221244030C1 /* SKTouch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKTouch.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTouch.m; sourceTree = ""; }; D90A516468223E4268E626853F28BA1E /* ScheduledSingleObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSingleObserver.h; path = rsocket/internal/ScheduledSingleObserver.h; sourceTree = ""; }; D9104C131E539E312ABC6D17CDBFF06A /* TimekeeperScheduledExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TimekeeperScheduledExecutor.cpp; path = folly/executors/TimekeeperScheduledExecutor.cpp; sourceTree = ""; }; D9162D718DE8040C51ADEB85D83D40F4 /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = SDWebImage/Core/SDWebImageCompat.h; sourceTree = ""; }; - D93972543FAD83E00B61839C320B2369 /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; + D928F49253BF59C0396D955092552CE1 /* BSG_KSCrashAdvanced.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashAdvanced.h; sourceTree = ""; }; D93CBCD48E40E7740CBB907E63A0A0DD /* SDImageAssetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAssetManager.h; path = SDWebImage/Private/SDImageAssetManager.h; sourceTree = ""; }; - D93D19030EFC176E09F964D68B313EC1 /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; - D9590654F13406E98FECBCBDC8FAEBB3 /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = ""; }; D967740974DAB66D1FEA4D0A3D483511 /* RSocketRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketRequester.cpp; path = rsocket/RSocketRequester.cpp; sourceTree = ""; }; D967B64E4416C42C87B408BA762B2AB4 /* WaitOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WaitOptions.h; path = folly/synchronization/WaitOptions.h; sourceTree = ""; }; D96F714DCDDAD43778C9DE25AB46587B /* AsyncSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncSocket.cpp; path = folly/io/async/AsyncSocket.cpp; sourceTree = ""; }; D980C0A62EE8742795B8DE601B15EB93 /* SingletonThreadLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonThreadLocal.h; path = folly/SingletonThreadLocal.h; sourceTree = ""; }; - D981C25D0B939172A278AF9B153C380B /* React-cxxreact.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.debug.xcconfig"; sourceTree = ""; }; D9891CE4FDE6F86E8136EB0A7555C8DD /* GDTCCTNanopbHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTNanopbHelpers.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTNanopbHelpers.h; sourceTree = ""; }; - D9A71EB31966DA877E7047FB95DC2E9D /* REAParamNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAParamNode.m; sourceTree = ""; }; + D9B8B92F24A47BEF9C95B210D292BA64 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; D9BD28134A368C0AFA8B5E2C29BC4702 /* FIRInstallationsIIDTokenStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDTokenStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.h; sourceTree = ""; }; - D9ED408ADC7E5147E2CC70F2D4D5B351 /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; + D9D89707F1744A3D93B48B799E2D5D7C /* RNFBVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBVersion.h; path = ios/RNFBApp/RNFBVersion.h; sourceTree = ""; }; D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsi.a"; path = "libReact-jsi.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + D9F75E7DAE922168FF40B90D585476A7 /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; + DA0734961EB066403A23D40DD5CB7F39 /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = apple/RNCWKProcessPoolManager.h; sourceTree = ""; }; + DA0A31425FD62D5681ABB35C58430178 /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = ""; }; DA0C110A12A0BD5E9A1907F4493D4C96 /* AsymmetricMemoryBarrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsymmetricMemoryBarrier.h; path = folly/synchronization/AsymmetricMemoryBarrier.h; sourceTree = ""; }; + DA0EB8F4CBDE9D79FB27DC6176E546B1 /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = ""; }; DA1A7C7065BBB16BAB98F0BA2DBDF640 /* GDTCOREventTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCOREventTransformer.h; sourceTree = ""; }; - DA1B62512085290D3CE646FE4EC056A2 /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; DA347E30919A7E6027316853F9B08054 /* OpenSSL.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSL.xcframework; path = Frameworks/OpenSSL.xcframework; sourceTree = ""; }; DA377E3CB010F7FAD6550A7731DC2069 /* StreamThroughputMemory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamThroughputMemory.cpp; path = rsocket/benchmarks/StreamThroughputMemory.cpp; sourceTree = ""; }; DA3D9803A70D7FC57E9B8275A62D4EEB /* crashlytics.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = crashlytics.nanopb.c; path = Crashlytics/Protogen/nanopb/crashlytics.nanopb.c; sourceTree = ""; }; - DA4B7547743BC6FDE8E00424A6906467 /* Pods-defaults-RocketChatRN.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-defaults-RocketChatRN.modulemap"; sourceTree = ""; }; + DA6569714811CB81F5058D796EF7AD4A /* AutoAttachUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AutoAttachUtils.h; sourceTree = ""; }; DA6C6CDB3F61B53988510109BBA0ABDB /* FBLPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromise.m; path = Sources/FBLPromises/FBLPromise.m; sourceTree = ""; }; DA6EA58A70A87346A369EECF66BD4BC8 /* cost_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips32.c; path = src/dsp/cost_mips32.c; sourceTree = ""; }; - DA7889AD98BC21BD8A16B23E5BB55798 /* Pbkdf2.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Pbkdf2.m; sourceTree = ""; }; - DAAC06851A21BA628D7E9B9FA8D2E1B1 /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; + DA75C4879252CC32645B3BD2E5E3AFD2 /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; + DA75C6D163FC79F2CB585CA01FA60FE5 /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; + DA78EECCA50E297CC158E7C7315675C1 /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = ""; }; + DA81A58DABB5895D1ECF1FDA42B13D66 /* BSGInternalErrorReporter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGInternalErrorReporter.h; sourceTree = ""; }; + DA9882DBA3E80B8310FB0D89D0130D4B /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; + DAA93BB561277F589EFD5B03D3A98A18 /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; DAACBB6E0B5F70EA6D859B825E7C77C7 /* PolyException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PolyException.h; path = folly/PolyException.h; sourceTree = ""; }; - DABB3CFAC09E1EBF9B45CD371D8F0411 /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTHTTPRequestHandler.mm; sourceTree = ""; }; - DABD16F95775B6969E8DD730710F54B9 /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; - DAEFAA8FF94AA1D020B7B85B9691AE0B /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; - DAF5C3428E135893FDC0417576139FCF /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; + DACBA26AE500A3366C8A944D81FB5518 /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; + DAD7E54D8867A225CF32D8C459853200 /* EXSessionDownloadTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionDownloadTaskDelegate.m; sourceTree = ""; }; + DAFAD979CBC200B5DB75C39E4AE29EED /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; + DB014116AB6D8DA1BB2E892E70011113 /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = ""; }; DB04AFD2052A8B45AA419361620B12A1 /* buffer_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = buffer_dec.c; path = src/dec/buffer_dec.c; sourceTree = ""; }; DB1694FAC251DD37A22E57B2BDFFEB94 /* Asm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Asm.h; path = folly/portability/Asm.h; sourceTree = ""; }; + DB35E3D5D47D77CD1915590828BCC4E7 /* Pods-defaults-NotificationService.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-defaults-NotificationService.debug.xcconfig"; sourceTree = ""; }; + DB504C02660FF2C2B4C187F3EAA7E482 /* RNFBCrashlytics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFBCrashlytics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; DB5270A4484D1B65DE6FE5335163CC17 /* HazptrHolder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrHolder.h; path = folly/synchronization/HazptrHolder.h; sourceTree = ""; }; DB583B583C1BD1062181AF46E3326085 /* vp8li_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_dec.h; path = src/dec/vp8li_dec.h; sourceTree = ""; }; DB5DD268804BED7D139485C26E2CEB48 /* ScheduledSubscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSubscription.h; path = rsocket/internal/ScheduledSubscription.h; sourceTree = ""; }; - DB69D1D9A4730E68494B03AD7056A429 /* RNEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNEventEmitter.m; path = RNNotifications/RNEventEmitter.m; sourceTree = ""; }; - DB752E1CC8DE8EC89038D7FE07F16736 /* EXAppleAuthentication.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppleAuthentication.debug.xcconfig; sourceTree = ""; }; - DB81BE1173E2D71B6736D3F7935F1593 /* React-RCTSettings.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.debug.xcconfig"; sourceTree = ""; }; - DB913D5A0F6724EBE0C9FB020E595E3F /* RCTDevLoadingViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingViewProtocol.h; sourceTree = ""; }; + DB84C45CEDAAB1F8403BCE7ACC59018C /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = MethodCall.cpp; sourceTree = ""; }; + DB991B88FA1191D58DA60D46AA320720 /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; DB9FFA6AFE6BDC6D8DC0FE90FDB23935 /* SKRequestInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKRequestInfo.m; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKRequestInfo.m; sourceTree = ""; }; - DBA234A66D021937FA2C77B8FF57C61F /* ARTShapeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTShapeManager.h; sourceTree = ""; }; - DBA6DCF004C50AF1D1150EC91E6ECBE9 /* React-RCTAnimation.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.debug.xcconfig"; sourceTree = ""; }; DBB54F45B678B6B1A2F5299F690252AB /* signalhandler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = signalhandler.cc; path = src/signalhandler.cc; sourceTree = ""; }; DBBEB9B5D2777C75E5E5B2DAE9212D52 /* FIRCLSReportManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSReportManager.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportManager.m; sourceTree = ""; }; DBC3D997AF120FFB33BFD96167D936A0 /* FirebaseCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.debug.xcconfig; sourceTree = ""; }; + DBC5AB500EC382238A41629F473B0C66 /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; DBD5CDF8A3997C9089262005FF386AE1 /* FIRCLSDataCollectionArbiter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSDataCollectionArbiter.m; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionArbiter.m; sourceTree = ""; }; DBEFB7984A9AC1B43EEEAD4ACC05B2E0 /* CPUThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CPUThreadPoolExecutor.cpp; path = folly/executors/CPUThreadPoolExecutor.cpp; sourceTree = ""; }; - DBFBB09224F974EEE440100A5E1DDAAF /* UMCameraInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.debug.xcconfig; sourceTree = ""; }; DC04B7B67B78CB967E161CCB71C613AE /* dynamic-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "dynamic-inl.h"; path = "folly/dynamic-inl.h"; sourceTree = ""; }; - DC1B78775E27A1FEAF951E8B70B046A7 /* EnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EnvironmentUtil.h; path = ios/RNDeviceInfo/EnvironmentUtil.h; sourceTree = ""; }; - DC1FEA73469B51E60B03E4932515AA33 /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; + DC257BCEEAB24E409CAE1A8E70D2C27C /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; DC2814881692783265682204F533FCA5 /* GULNSDataInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNSDataInternal.h; path = "GoogleUtilities/NSData+zlib/Private/GULNSDataInternal.h"; sourceTree = ""; }; + DC2B8A3D13C3025E4C71AC6D6C299FD7 /* RNReanimated.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.release.xcconfig; sourceTree = ""; }; + DC304B4145DD0AFD8E5888E0F029F416 /* ARTRadialGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRadialGradient.m; sourceTree = ""; }; + DC3AB289AEEAE80022BC8C183E917049 /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; DC49F5F953C7FE75F85B0FE2D307C478 /* OpenSSLCertUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLCertUtils.h; path = folly/ssl/OpenSSLCertUtils.h; sourceTree = ""; }; - DC517F752B3D8A0C90C674D080ED0265 /* UMTaskManagerInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.debug.xcconfig; sourceTree = ""; }; - DC6A8B952BF6086ACD4F792F0EDB4958 /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; + DC4BE8CF568ED744029CDF35B870724F /* react-native-netinfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-netinfo-prefix.pch"; sourceTree = ""; }; + DC66BC4DB4CD3441B632CC2F80B5ADB5 /* REAParamNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAParamNode.h; sourceTree = ""; }; DC80956E306D104D9DA8EE53BC5F76CE /* PromisesObjC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PromisesObjC-dummy.m"; sourceTree = ""; }; DC98663CBAC5D49967881800F0B876E9 /* CpuId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CpuId.h; path = folly/CpuId.h; sourceTree = ""; }; DCA962ED9AF42D56D730366FF8D1B34F /* lossless_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_msa.c; path = src/dsp/lossless_msa.c; sourceTree = ""; }; + DCE53D3A2A477839449B9C6C35566704 /* BridgeNativeModulePerfLogger.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = BridgeNativeModulePerfLogger.cpp; path = reactperflogger/BridgeNativeModulePerfLogger.cpp; sourceTree = ""; }; + DCEA8F941CDD15EB2069935B316A55BB /* KeyCommands-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeyCommands-dummy.m"; sourceTree = ""; }; + DCF019AC633D3837A65275E1E41BEBD5 /* StorageGetters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StorageGetters.h; path = ios/StorageGetters.h; sourceTree = ""; }; DD0660AC75549E78737B5FC624874D50 /* RangeSse42.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RangeSse42.h; path = folly/detail/RangeSse42.h; sourceTree = ""; }; - DD0B6D994E8F1124DF536E2BB125E4FA /* RNCAsyncStorage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCAsyncStorage-prefix.pch"; sourceTree = ""; }; DD0E1AD5E554C9C1E9D21507A4CEB48F /* ConcurrentBitSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentBitSet.h; path = folly/ConcurrentBitSet.h; sourceTree = ""; }; - DD1F298CEA554A71CA833260EC9F5307 /* RNCSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewManager.h; path = ios/SafeAreaView/RNCSafeAreaViewManager.h; sourceTree = ""; }; - DD3E08C7595DAB127F78E8014DF858C0 /* BSG_KSCrashReportVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportVersion.h; sourceTree = ""; }; + DD4D85719B708A4778BF1B148B6F1152 /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = ""; }; DD55A550A260F6C74B624318596B279D /* MallocImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MallocImpl.cpp; path = folly/memory/detail/MallocImpl.cpp; sourceTree = ""; }; + DD57B527F7CD29DAD0193178373998AA /* REAEventNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventNode.h; sourceTree = ""; }; + DD639A12C46710EA1B2D9A2641AF3122 /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = ""; }; + DD6B376F981D957E30F8608A3BD3C449 /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = ""; }; DD6E84E7343B2D60B6A59A0E7D041EEA /* FIRCLSFeatures.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFeatures.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSFeatures.h; sourceTree = ""; }; DD7A1D12AC47F0A2F9DB230C5B19CCA8 /* FIRCLSHost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSHost.m; path = Crashlytics/Crashlytics/Components/FIRCLSHost.m; sourceTree = ""; }; DD94706F88D0811C813652FD44EAA9F1 /* SKObjectHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKObjectHash.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKObjectHash.h; sourceTree = ""; }; DD97A2E781B1133BD6C71C1544A56098 /* alpha_processing.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing.c; path = src/dsp/alpha_processing.c; sourceTree = ""; }; DD9F427E6ADEB4967A1DDC5A41D08DB5 /* ThreadLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLocal.h; path = folly/ThreadLocal.h; sourceTree = ""; }; DDA7ABA5C0D80550BED808644A658551 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Sources/Private/FIROptionsInternal.h; sourceTree = ""; }; + DDA8E082D0DF3E4233CC86CFC94A7648 /* Rsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Rsa.h; sourceTree = ""; }; DDAF0C9DBFFF10B30338CC4C086D1271 /* FileUtilDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtilDetail.h; path = folly/detail/FileUtilDetail.h; sourceTree = ""; }; + DDB24E02EA6FB47F447446D284BE71FF /* BSGJSONSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGJSONSerialization.m; sourceTree = ""; }; DDB2BB56871CCE78DA7807E3C85737B7 /* Fcntl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fcntl.h; path = folly/portability/Fcntl.h; sourceTree = ""; }; - DDBCFAA5E98675C9AD5056516FBA1DCE /* EXVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoView.m; sourceTree = ""; }; DDC9FC6CAA3FE7456CC806F378220131 /* FramedDuplexConnection.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FramedDuplexConnection.cpp; path = rsocket/framing/FramedDuplexConnection.cpp; sourceTree = ""; }; DDCF0E1C73520263E3B6793D999FC73E /* Checksum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Checksum.h; path = folly/hash/Checksum.h; sourceTree = ""; }; - DDD88E60312C8EAF026BB69E518FE5C7 /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; - DE098FD7CE3243CEA8853D0002C7F3B5 /* QBVideoIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIndicatorView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.m; sourceTree = ""; }; + DE10C5B336D195F78AE3691779E4C990 /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; DE10C6C8FDDFDEA4542FC71322F6D75A /* enc_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips_dsp_r2.c; path = src/dsp/enc_mips_dsp_r2.c; sourceTree = ""; }; DE1BFDAFC28F339CABA7846F7BD52752 /* ms.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ms.lproj; path = "Objective-C/TOCropViewController/Resources/ms.lproj"; sourceTree = ""; }; - DE2532D8E1BF64E23FC5BBACE14E87F8 /* ARTContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTContainer.h; path = ios/ARTContainer.h; sourceTree = ""; }; - DE271832108177A46D669E1BEC4D684B /* SafeAreaSpacerViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SafeAreaSpacerViewLocalData.m; sourceTree = ""; }; - DE5F7D2AF7F9C46CCC468E54E7E60FC9 /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = event.cpp; sourceTree = ""; }; - DE605FB23EF5FEE7EA5E9E0A543B199C /* RNCAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearance.h; path = ios/Appearance/RNCAppearance.h; sourceTree = ""; }; + DE478CEF7E6BBAC84708D5A369135801 /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = ""; }; + DE5A7C8C6EAD47E655B33CFF04F6CCFE /* RCTTypeSafety.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.release.xcconfig; sourceTree = ""; }; + DE76F127E42557B9BD2B3676495F1E2F /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; + DEA2D806E5C15B459D214AD5626635F9 /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; DEAFDDB7B183EBCD227325CE5F4B9AE5 /* quant_levels_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_utils.c; path = src/utils/quant_levels_utils.c; sourceTree = ""; }; DEB90D2F0F706C27B95CF613DC87C589 /* LifoSem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LifoSem.h; path = folly/synchronization/LifoSem.h; sourceTree = ""; }; - DEC7BD859FF11D42838748D649E7EEEA /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = ""; }; - DEC90F3138BE411B0E1CF8C2770700AD /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; + DEBBF54F56A219AE3EAD4D0D55B46B95 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + DECCCE09E7F014EABBD87DC1B1B5C2B0 /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; + DECD7F61EE2634B152C7B32EF629DCEB /* react-native-notifications.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.release.xcconfig"; sourceTree = ""; }; + DED15C1208E208890C8166DEFA7CCCF0 /* React-RCTActionSheet.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.release.xcconfig"; sourceTree = ""; }; DEDF0041639EE57E1B34CD0EB872879D /* ProtocolVersion.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ProtocolVersion.cpp; path = rsocket/framing/ProtocolVersion.cpp; sourceTree = ""; }; DEDFCDEDEC54C491C5F3C67AFD4F3CB5 /* AtomicHashArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashArray.h; path = folly/AtomicHashArray.h; sourceTree = ""; }; DEE3203D0A7AFEFAD6E8D45299F7C77B /* MMKV.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MMKV.debug.xcconfig; sourceTree = ""; }; DF0B15772E0E0B0756F827B79AD46102 /* WaitOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WaitOptions.h; path = folly/synchronization/WaitOptions.h; sourceTree = ""; }; DF0CCC4ED5EA093604440EBDE947BC63 /* GoogleAppMeasurement.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.release.xcconfig; sourceTree = ""; }; - DF2AE06C9AD52B3571F157A14F38BB28 /* react-native-mmkv-storage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-mmkv-storage.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + DF281B7C5E8720EB7DC9F94FAA8F7B42 /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; + DF2C8B2FED7F52A516FB7033B9AA4253 /* FBReactNativeSpec-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBReactNativeSpec-prefix.pch"; sourceTree = ""; }; + DF395A5AE875959199CDB011ADB83A79 /* RNFetchBlobReqBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobReqBuilder.m; path = ios/RNFetchBlobReqBuilder.m; sourceTree = ""; }; + DF5DAB21386A74C921BAC62E663D7583 /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; sourceTree = ""; }; + DF5E666704223D49885200E7A2BC8F94 /* UMCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.release.xcconfig; sourceTree = ""; }; + DF6110689FAD371694B43752C553C769 /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; + DF6E83B328726602E52506BBD87E3626 /* BSGEventUploadFileOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGEventUploadFileOperation.h; sourceTree = ""; }; DF6F68824D610DAD329C4F8A043CE87E /* CPortability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CPortability.h; path = folly/CPortability.h; sourceTree = ""; }; - DF983FE232C29D3473CCB5405CB82922 /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = ""; }; - DF984F794DEDB3AB7BBC5DBDACC59718 /* ResourceBundle-AccessibilityResources-React-Core-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-AccessibilityResources-React-Core-Info.plist"; sourceTree = ""; }; - DFA270BB02695B4346A971BC4359CD23 /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; - DFC955866A61B9DFFF9F32837718B5DD /* RCTTypeSafety-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTTypeSafety-dummy.m"; sourceTree = ""; }; + DF89921367DDB419FD2E008843163C09 /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; + DF924119346381ACE894F12EB6E0AF5E /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; + DFBC3A559DA99D3C1938A7085FF679F6 /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; + DFCBE7E816E8C610AEBD170C5BEB2938 /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAlertManager.h; path = React/CoreModules/RCTAlertManager.h; sourceTree = ""; }; DFD4B2798F450F184E7C446D967B164E /* SDWebImageWebPCoder.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImageWebPCoder.debug.xcconfig; sourceTree = ""; }; + DFE622CE288FAC9F6429A57296A9C7DA /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTHTTPRequestHandler.mm; sourceTree = ""; }; + DFF170F26E49AF34B2AED8CAC632BA14 /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; + DFFB7BE862EB42E833249ED655B2CAC7 /* RNCSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaView.m; path = ios/SafeAreaView/RNCSafeAreaView.m; sourceTree = ""; }; + E0017F1443C3D35518E942C0337D1FDD /* UMFileSystemInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.debug.xcconfig; sourceTree = ""; }; E00BE2A3146698E81A8F9D00E8F93A6C /* libFlipper-Glog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-Glog.a"; path = "libFlipper-Glog.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + E02E32A237431173E06EC82446A1EB12 /* REAClockNodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAClockNodes.m; sourceTree = ""; }; E0363F552304962F69D4227E89A03FD4 /* Flowable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Flowable.h; path = yarpl/flowable/Flowable.h; sourceTree = ""; }; - E04BE28D2027980BC4DC353A469EBC47 /* Fontisto.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Fontisto.ttf; path = Fonts/Fontisto.ttf; sourceTree = ""; }; - E0577486E915045CDD02736A660C2F7F /* ARTRenderable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTRenderable.m; path = ios/ARTRenderable.m; sourceTree = ""; }; + E05EC65CB6F61CB2A94A6FA66F5CBEBC /* BugsnagStackframe.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagStackframe.m; sourceTree = ""; }; E081C312DD756143481ED6E7E4B81ACD /* ScheduledSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSubscriber.h; path = rsocket/internal/ScheduledSubscriber.h; sourceTree = ""; }; - E0832E339DA9B9BD8D53C61E368C8471 /* RNFBUtilsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBUtilsModule.h; path = ios/RNFBApp/RNFBUtilsModule.h; sourceTree = ""; }; - E08E31C62C6E60E41E4F672168A2A72F /* RCTStatusBarManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTStatusBarManager.mm; sourceTree = ""; }; E0ACDEC4D4AAA9175FD58CD68F056807 /* ThreadName.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadName.h; path = folly/system/ThreadName.h; sourceTree = ""; }; E0B603F54009DAEF6C3BAAE621E5F180 /* libMMKVCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libMMKVCore.a; path = libMMKVCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E0B9C3A64724A88E20523B3711864E4E /* BugsnagKSCrashSysInfoParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagKSCrashSysInfoParser.m; sourceTree = ""; }; - E0BE94408271627FF9673CFDA53CF690 /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; E0C4E152DE6AB8C0C9C6931C1350B01B /* FIRCLSDemangleOperation.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSDemangleOperation.mm; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSDemangleOperation.mm; sourceTree = ""; }; - E0D016825E2950654D7D8820F83BF0F5 /* RNFlingHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFlingHandler.m; sourceTree = ""; }; E0D470BF6CA037D3474A1794EE56F3EC /* Singleton.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Singleton.cpp; path = folly/Singleton.cpp; sourceTree = ""; }; E0E6313449FF04D37ED86F79B8A8A3E2 /* OpenSSLCertUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OpenSSLCertUtils.cpp; path = folly/ssl/OpenSSLCertUtils.cpp; sourceTree = ""; }; - E0E737DE13C88379906F0FF92FC3DFF6 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; E0E7621907959CFCC82A5725717C078F /* FIRCLSUserDefaults_private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUserDefaults_private.h; path = Crashlytics/Crashlytics/FIRCLSUserDefaults/FIRCLSUserDefaults_private.h; sourceTree = ""; }; E0F792E72F8179297D7FA3C6EDE6C734 /* Singleton-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Singleton-inl.h"; path = "folly/Singleton-inl.h"; sourceTree = ""; }; - E0FBE26D631B71D807952689A5AE797C /* RNCConnectionState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCConnectionState.m; path = ios/RNCConnectionState.m; sourceTree = ""; }; E0FE6533198104C97DB047DD5CD8AC67 /* libRNDeviceInfo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDeviceInfo.a; path = libRNDeviceInfo.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E11A4E97542ECCDBC6C25CC521C143F3 /* react-native-netinfo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-netinfo.release.xcconfig"; sourceTree = ""; }; - E14CE3C5F1E2CF97CC1653F3B44FF621 /* react-native-blur.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-blur.release.xcconfig"; sourceTree = ""; }; + E1122B8B9816D5222710898DE93C3090 /* BugsnagDevice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagDevice.h; sourceTree = ""; }; + E118F6858BCEB19DF7DC045DC499869C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + E1483CD8DB8D1F9F325FC40E006F8437 /* EXImageLoader.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXImageLoader.debug.xcconfig; sourceTree = ""; }; E15545D395D44A2CB1B9694E05BA0A65 /* GDTCOREvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCOREvent.m; path = GoogleDataTransport/GDTCORLibrary/GDTCOREvent.m; sourceTree = ""; }; - E15ED9B4B26F5AD7F6B571B7245EBE4E /* ConnectionDemux.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = ConnectionDemux.cpp; sourceTree = ""; }; - E16016F95B6491DB66C0EAF47372B708 /* RNFBRCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBRCTEventEmitter.m; path = ios/RNFBApp/RNFBRCTEventEmitter.m; sourceTree = ""; }; E16681AEC54C6821A4E5D9301BB830F5 /* SDAssociatedObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAssociatedObject.m; path = SDWebImage/Private/SDAssociatedObject.m; sourceTree = ""; }; - E1710A20C2C59F20C511135C1A95C503 /* REAOperatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAOperatorNode.m; sourceTree = ""; }; - E17FD458C86F4EF0292E673908AEDEAE /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; - E1D098F88C42967C0D38044EBC4FFD5D /* RNCSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaView.h; path = ios/SafeAreaView/RNCSafeAreaView.h; sourceTree = ""; }; - E1E25A8A3B994036C24CE93E17563EF3 /* BugsnagBreadcrumb.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagBreadcrumb.m; sourceTree = ""; }; - E1E6921B5EAEF59ADC52E24F87AEF537 /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = ""; }; + E1BED444528B620E58346B09FA9CED47 /* BugsnagStacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagStacktrace.h; sourceTree = ""; }; + E1E10551E1BA25B796460E47DC1ED197 /* REAJSCallNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAJSCallNode.m; sourceTree = ""; }; + E1F1FF326CB1EAE4FF47CAA50C53DD6E /* RNBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBridgeModule.h; path = RNNotifications/RNBridgeModule.h; sourceTree = ""; }; E1F7A0D97DA95FFB171D971F6CDBA8A3 /* FlowableDoOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableDoOperator.h; path = yarpl/flowable/FlowableDoOperator.h; sourceTree = ""; }; - E20599F626D412CD0CD01BC127220DF0 /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = "jsilib-windows.cpp"; sourceTree = ""; }; - E20EED0B1AAB0CFFCBB04D7C9B2BE920 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; + E201E516C29C03E985F33F4B984DC851 /* EXAV.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.release.xcconfig; sourceTree = ""; }; + E213DA801612E3BBF9E1C0B2821BD9CA /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; E21871B529EE14E91E52A27A8D1D1F13 /* Throughput.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Throughput.h; path = rsocket/benchmarks/Throughput.h; sourceTree = ""; }; E2196A5273FA07E66750CC0BAF09C27D /* AESCrypt.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AESCrypt.cpp; path = Core/aes/AESCrypt.cpp; sourceTree = ""; }; - E2232A7ED9E7A87AAC256EF00377BE25 /* RNTapHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNTapHandler.h; sourceTree = ""; }; E22B4113FC51C7241A0EF4BA6B002A14 /* NSData+ImageContentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+ImageContentType.m"; path = "SDWebImage/Core/NSData+ImageContentType.m"; sourceTree = ""; }; E2352E5FBE76E56B7B7BA6EF4F362CA4 /* FIRCLSUserLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUserLogging.h; path = Crashlytics/Crashlytics/Components/FIRCLSUserLogging.h; sourceTree = ""; }; - E23CF948153595DC8E7526D7942981E4 /* Restart.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Restart.m; path = ios/Restart.m; sourceTree = ""; }; E240658062D7BD715785CFECCEAF544C /* FIRInstallationsLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsLogger.h; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.h; sourceTree = ""; }; + E2631F974453177DD607E7B3C7AFD9A2 /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; E267A724BD8FE80839D12EA727B73AA5 /* F14Set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Set.h; path = folly/container/F14Set.h; sourceTree = ""; }; E26ADF16295C527BD74FD846E1F63094 /* FormatTraits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FormatTraits.h; path = folly/FormatTraits.h; sourceTree = ""; }; E2775552BE0BE024476C10F95F7A12A2 /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = ""; }; E2800914624977D069D1D05693D208F8 /* Flipper-PeerTalk-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-PeerTalk-dummy.m"; sourceTree = ""; }; E288C521FCC2E603C406F068150CCF85 /* FutureSplitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureSplitter.h; path = folly/futures/FutureSplitter.h; sourceTree = ""; }; + E28A2805C79CA4D8B140FB3487A2714D /* RNFBAnalytics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBAnalytics-dummy.m"; sourceTree = ""; }; + E2B5FC28C6329188208C5332F782776C /* BSG_KSObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjC.h; sourceTree = ""; }; E2B63D462DB7F827C4B11FD51E4F8E2D /* libFirebaseCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCore.a; path = libFirebaseCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; E2BB7A4727306FDE5D3F4BFAFD898726 /* IOBufQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IOBufQueue.cpp; path = folly/io/IOBufQueue.cpp; sourceTree = ""; }; + E2C20142D7302B9F6BD186560877B9BF /* UMErrorCodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMErrorCodes.m; path = UMCore/UMErrorCodes.m; sourceTree = ""; }; + E2C4F5D506247FD844878A1AA9B5B87E /* ARTGroupManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTGroupManager.m; sourceTree = ""; }; E2C60A3260F71E892868D6AD6AEAF785 /* HazptrThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = HazptrThreadPoolExecutor.cpp; path = folly/synchronization/HazptrThreadPoolExecutor.cpp; sourceTree = ""; }; - E2D2901D1AB6215DA4418CA69AF31D13 /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; - E2D8CE6AEEA3131D64AB5477E450F70B /* contents.xcworkspacedata */ = {isa = PBXFileReference; includeInIndex = 1; path = contents.xcworkspacedata; sourceTree = ""; }; + E2E3E7B7F4020EE3A3F8B639ACC00310 /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; E2E51B08C8241F5CB9E1911832BB6E5C /* FireAndForgetResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FireAndForgetResponder.h; path = rsocket/statemachine/FireAndForgetResponder.h; sourceTree = ""; }; - E2EE57E00C6D206E412459F942BDD88F /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; + E2FEA075AAC34B17ECD9903D379DE845 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; E31156F425D164A2ED4E39B2E9028DD3 /* MMKV_IO.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MMKV_IO.cpp; path = Core/MMKV_IO.cpp; sourceTree = ""; }; - E312468311B6B57960E7B3846761FBD3 /* RNDocumentPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDocumentPicker.h; path = ios/RNDocumentPicker/RNDocumentPicker.h; sourceTree = ""; }; + E311AF75C55D8D925493BFE2F1C09138 /* EXImageLoader.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXImageLoader.release.xcconfig; sourceTree = ""; }; + E311CA96855FCF8855795BD4CE0AED45 /* rn-extensions-share-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-extensions-share-dummy.m"; sourceTree = ""; }; E315D7B79159981A3EBB25FF9ED5CAE2 /* SaturatingSemaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SaturatingSemaphore.h; path = folly/synchronization/SaturatingSemaphore.h; sourceTree = ""; }; - E3165A86725B1DA8D972E6E700065F37 /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; - E320F6E782E85A5746E92CB80EA924E6 /* react-native-netinfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-netinfo-prefix.pch"; sourceTree = ""; }; - E32F1187F93F4D6338F8FFA8801461D2 /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; + E32F0ADDAD67DE6FFAEA3592A5620057 /* UIResponder+FirstResponderTemp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIResponder+FirstResponderTemp.m"; sourceTree = ""; }; E34AB18BAA4A47BB7C41BBCFCB2261F2 /* GoogleUtilities.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.release.xcconfig; sourceTree = ""; }; + E361178BFF0F0A5AC12C76B6300B8268 /* RCTAes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAes.h; path = ios/RCTCrypto/RCTAes.h; sourceTree = ""; }; E36301726B1651C9836AC75A92EAE3EC /* AtomicHashUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashUtils.h; path = folly/detail/AtomicHashUtils.h; sourceTree = ""; }; - E37AD28B47DFE4FBECFB65FFD94DE155 /* EXAV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAV.h; path = EXAV/EXAV.h; sourceTree = ""; }; + E366B66C03DB791740DF2536692620C1 /* REATransformNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransformNode.m; sourceTree = ""; }; + E36DAA2644DEBB87D9DAF5D9B3E3637D /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; + E384D9EEFFAFC41DAC815088C09F4FA1 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + E38C1AE8DEA5B9BE757563C6DE252B33 /* React-RCTImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.debug.xcconfig"; sourceTree = ""; }; E3A107D1CA871E2270BFC3B29210E99B /* GCDAsyncSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDAsyncSocket.h; path = Source/GCD/GCDAsyncSocket.h; sourceTree = ""; }; + E3A23A2CAFD9B49866258805E564EE65 /* EXKeepAwake.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXKeepAwake.debug.xcconfig; sourceTree = ""; }; + E3B827B8FE180C2C5A5139B362493C4C /* Connection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Connection.h; sourceTree = ""; }; + E3BBE7A4CE823D2C68A59F6AA015FA1C /* BSG_KSCrashSentry_CPPException.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_CPPException.mm; sourceTree = ""; }; + E3BC7A6739A79A73F4091DEBB379CD0A /* BSGGlobals.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGGlobals.h; sourceTree = ""; }; + E3BEF7877F768148E3E79A624A08A9FF /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; E3D5FF0ED8DC8C460ACAF715A3DACD19 /* DoubleConversion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DoubleConversion-dummy.m"; sourceTree = ""; }; - E3E671D3E3C942C616A47A8AE0504FF5 /* React-RCTVibration.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.release.xcconfig"; sourceTree = ""; }; E3E88B0CE350E5F46AB94F51A3084A92 /* predictor_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = predictor_enc.c; path = src/enc/predictor_enc.c; sourceTree = ""; }; - E40709C60964E9F1D6F6F7134AB81DC9 /* react-native-slider.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-slider.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E3FBC406B7914F6D0D0800690D849E54 /* RCTImagePlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImagePlugins.mm; sourceTree = ""; }; + E4111FAF4E1B43ADB06B9376F8FA80E8 /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; E411C8BA0F4807158FF937325ED18B84 /* SDWebImageCacheKeyFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheKeyFilter.h; path = SDWebImage/Core/SDWebImageCacheKeyFilter.h; sourceTree = ""; }; E41EB8C393836F73849E4A9EC52E1A37 /* F14Set-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "F14Set-fwd.h"; path = "folly/container/F14Set-fwd.h"; sourceTree = ""; }; E41FB7DBD8033F45915F4E81DBA50E0F /* CoreCachedSharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreCachedSharedPtr.h; path = folly/concurrency/CoreCachedSharedPtr.h; sourceTree = ""; }; E43323A34806A9BD3B6B4CB4A2FB27BD /* InlineExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InlineExecutor.cpp; path = folly/executors/InlineExecutor.cpp; sourceTree = ""; }; E43D0C392A379945AB4092E47E7E0531 /* SerialExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SerialExecutor.h; path = folly/executors/SerialExecutor.h; sourceTree = ""; }; - E45A84E2934A0E8130F1A88D011DE4E1 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; E46D73F190A6730B576634310DE76E76 /* FKTextSearchable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKTextSearchable.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutTextSearchable/FKTextSearchable.h; sourceTree = ""; }; - E4812FF48A336ACD6F87BD77BBE8FE4F /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = ""; }; + E46F50A7B06925F63C961B555F8D2501 /* Yoga.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.release.xcconfig; sourceTree = ""; }; + E476010170478AC9D7AA25B09F7DCF62 /* RNFetchBlob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFetchBlob.m; sourceTree = ""; }; E4840827025F06AA40F6ECA03F460647 /* Portability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Portability.h; path = folly/Portability.h; sourceTree = ""; }; E49150825E7B7233D0DF10044CFF560C /* AsyncTransportCertificate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTransportCertificate.h; path = folly/io/async/AsyncTransportCertificate.h; sourceTree = ""; }; + E495647157E078E4359FE6D76B770AB8 /* RNReanimated-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNReanimated-dummy.m"; sourceTree = ""; }; E496A53A92B4E464B5C30DC5B1E4E257 /* libRNRootView.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNRootView.a; path = libRNRootView.a; sourceTree = BUILT_PRODUCTS_DIR; }; E49BA4E0B5A65C4D0C289A3CE128B70B /* Future-pre.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Future-pre.h"; path = "folly/futures/Future-pre.h"; sourceTree = ""; }; E4A5AC96B92CF782E2E8B80ED46C299D /* Init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Init.h; path = folly/init/Init.h; sourceTree = ""; }; - E4A6DCCB88C533D35743285ED879ED94 /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; + E4A6BA210B4EFD203AABF20E4E4B840D /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; + E4AC6DA50FDB54B47545655896A80D4E /* RCTLinkingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLinkingManager.mm; sourceTree = ""; }; E4B12CEC68F65F6CC49C9E3844577875 /* StreamsWriter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamsWriter.cpp; path = rsocket/statemachine/StreamsWriter.cpp; sourceTree = ""; }; - E4BE2ADD23760C1229060FC4383D9BFE /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = ""; }; - E4C2AB318AA3CCF501BBB492DC62B5BD /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; + E4B494359C9B23346165C652A401B302 /* BSG_KSCrashSentry_MachException.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_MachException.c; sourceTree = ""; }; + E4B78EBBF959C2EAF87A2DCF877BD136 /* JSITracing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSITracing.h; sourceTree = ""; }; E4FC8715E1EB40E6DA91B572FD796DA9 /* Try.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Try.h; path = folly/Try.h; sourceTree = ""; }; E503A206DA16C1284D11C3DA57A0F135 /* RequestResponseResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RequestResponseResponder.cpp; path = rsocket/statemachine/RequestResponseResponder.cpp; sourceTree = ""; }; - E5086FD8F34F835110BAE0FFD4189325 /* StorageIndexer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = StorageIndexer.m; path = ios/StorageIndexer.m; sourceTree = ""; }; E509FD956BD9317B6C7E872F35A42704 /* CachelinePadded.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CachelinePadded.h; path = folly/CachelinePadded.h; sourceTree = ""; }; E50E37E179D4BCED1B314EEEDDEF6C2E /* ChannelRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChannelRequester.h; path = rsocket/statemachine/ChannelRequester.h; sourceTree = ""; }; E5110EEC4FB7CF35A200C38520B5D6C3 /* TimedDrivableExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimedDrivableExecutor.h; path = folly/executors/TimedDrivableExecutor.h; sourceTree = ""; }; E5164A0041888D02D9F6B0521C7C8880 /* FirebaseAnalytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.release.xcconfig; sourceTree = ""; }; E51825EED7240CC4E05BE009AC454015 /* TimekeeperScheduledExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimekeeperScheduledExecutor.h; path = folly/executors/TimekeeperScheduledExecutor.h; sourceTree = ""; }; E51E3D93489327FBA7B49801806BF032 /* json_patch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_patch.h; path = folly/json_patch.h; sourceTree = ""; }; - E52898767AEDB031A12CA583EDBCF540 /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; E531E7D2B3ED3E5A8881EEFD0CC0A77B /* GULReachabilityChecker+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULReachabilityChecker+Internal.h"; path = "GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h"; sourceTree = ""; }; E5337603B78A222B6B5B57618DB6080B /* SynchronizedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SynchronizedPtr.h; path = folly/SynchronizedPtr.h; sourceTree = ""; }; - E54E06E04C498E5F5E737A263756BCF3 /* react-native-jitsi-meet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-jitsi-meet-dummy.m"; sourceTree = ""; }; E54E206E6640A82C57D50C0627552E5F /* openssl_arm_arch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = openssl_arm_arch.h; path = Core/aes/openssl/openssl_arm_arch.h; sourceTree = ""; }; E551AF1B96A249735565C79072A99930 /* event_tagging.c */ = {isa = PBXFileReference; includeInIndex = 1; path = event_tagging.c; sourceTree = ""; }; + E5539CD4B01605A209EAE449CD37F855 /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; E553F01BE30FCC53EB6EE5B3FA54B6B5 /* StaticSingletonManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticSingletonManager.h; path = folly/detail/StaticSingletonManager.h; sourceTree = ""; }; E55B796088A5C84D7AFE45AE1D13C2DC /* AsyncSignalHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSignalHandler.h; path = folly/io/async/AsyncSignalHandler.h; sourceTree = ""; }; + E55D28053CED82024BBF5606B125B4AD /* RNCMaskedView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCMaskedView-dummy.m"; sourceTree = ""; }; E55E4E782BC0B7CC36EAD9507597C474 /* Format.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Format.cpp; path = folly/Format.cpp; sourceTree = ""; }; E55EA3C6F285F6FA8067C5C8A428FA64 /* libRNFastImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFastImage.a; path = libRNFastImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; E56CEBB5E690CE30375C80AABF6B4CE1 /* Cursor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Cursor.cpp; path = folly/io/Cursor.cpp; sourceTree = ""; }; E59C76EA0B2F7BDD8545DE03BE13E951 /* DebuggerTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DebuggerTypes.h; path = destroot/include/hermes/Public/DebuggerTypes.h; sourceTree = ""; }; + E5A50A19568EFE63722FB4084BE8F624 /* react-native-orientation-locker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-orientation-locker.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E5B537ACAE05A9107F8CA4D4676B8F34 /* RCTKeyboardObserver.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTKeyboardObserver.mm; sourceTree = ""; }; + E5D28F0A61F7D7F137B1FB7DCFDA4210 /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; + E5D4170E4147969786CE3297B8D288DF /* BugsnagKVStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKVStore.h; sourceTree = ""; }; E5DBA3610AA54AC09C951A55CEA789D4 /* FKPortForwardingServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKPortForwardingServer.m; path = iOS/FlipperKit/FKPortForwarding/FKPortForwardingServer.m; sourceTree = ""; }; E5DD2E4A3E1B76BAD034115D0188B153 /* UIImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "SDWebImage/Core/UIImageView+WebCache.m"; sourceTree = ""; }; - E5E9BF5E99B5E51AD55B2218BC2695F4 /* UIImage+Extension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Extension.h"; path = "ios/src/UIImage+Extension.h"; sourceTree = ""; }; - E5EB482843E177EE3F24ABB05A060587 /* react-native-cameraroll-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-cameraroll-dummy.m"; sourceTree = ""; }; + E5E64F267161CCD740E6E399862D33D0 /* react-native-cameraroll-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-cameraroll-dummy.m"; sourceTree = ""; }; E5F7C4CFBBA3148E9239CEC7A806D43C /* Assume.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Assume.cpp; path = folly/lang/Assume.cpp; sourceTree = ""; }; E5FBFF562348BFED4DA0A752A2AEC5F5 /* GULNetworkLoggerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkLoggerProtocol.h; path = GoogleUtilities/Network/Private/GULNetworkLoggerProtocol.h; sourceTree = ""; }; E5FE7116DCC620D7CF0E83B589FADB2C /* SDImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoder.h; path = SDWebImage/Core/SDImageCoder.h; sourceTree = ""; }; E6047876F69097A9838EEBDAF3540193 /* InlineExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineExecutor.h; path = folly/executors/InlineExecutor.h; sourceTree = ""; }; - E635A2CE00D16501AC3FA4A98D680951 /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; - E64EF16A5E4BE731DCFD0AA7BD8C0599 /* react-native-jitsi-meet.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.release.xcconfig"; sourceTree = ""; }; - E64F288F7706CDB32BFF386459BACA40 /* BSG_KSCrashIdentifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashIdentifier.h; sourceTree = ""; }; + E60B63962F0015EBE01DA39997A2EC56 /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; + E612D2832D116E527EFCC79329C6BEC5 /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = ""; }; + E61AF1CB17B0CA8E7D4A8158361F4DF4 /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = ""; }; + E623D939ADE2AE10BEAA3C1B7D16981B /* RCTJSIExecutorRuntimeInstaller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSIExecutorRuntimeInstaller.h; sourceTree = ""; }; + E6247092A3A7D4453BA51D4C8EB6FA36 /* RNConfigReader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNConfigReader-prefix.pch"; sourceTree = ""; }; + E62636EB54EBAC8FFAAD4C44CF3B71D7 /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; + E62A1F105A07C4476D9363A56E5BBAA8 /* RCTVibrationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTVibrationPlugins.mm; sourceTree = ""; }; + E649690720DE207C55AEC9762403EB41 /* RNBridgeModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBridgeModule.m; path = RNNotifications/RNBridgeModule.m; sourceTree = ""; }; + E64D6F2518426A503477914FC7324C80 /* RNNativeViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNNativeViewHandler.m; sourceTree = ""; }; E654F3DD214C3891F78D738C606F77F9 /* FIRErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrors.h; path = FirebaseCore/Sources/Private/FIRErrors.h; sourceTree = ""; }; E658D0B87F376A26ECCE7D29B51CB804 /* ThreadCachedArena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedArena.h; path = folly/memory/ThreadCachedArena.h; sourceTree = ""; }; - E688698D52FC27F6B99524FE91C229BD /* QBAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetCell.m; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.m; sourceTree = ""; }; + E65DF580CDF8C63ECECC8CD73F27ABBF /* RCTNativeAnimatedTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeAnimatedTurboModule.mm; sourceTree = ""; }; + E65F59936EEA71AA441C0A9D942FFAEA /* VibrancyView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VibrancyView.h; path = ios/VibrancyView.h; sourceTree = ""; }; + E690CF7FDCEF70E0454A91E9EB1E11EA /* EXAppleAuthenticationButtonViewManagers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationButtonViewManagers.m; path = EXAppleAuthentication/EXAppleAuthenticationButtonViewManagers.m; sourceTree = ""; }; E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTText.a"; path = "libReact-RCTText.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - E6A21A31FE37E9BAAC23ECB027320313 /* react-native-document-picker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-document-picker-dummy.m"; sourceTree = ""; }; E6A7AB775F20AF1DAAFE10B7A75707F6 /* OpenSSLPtrTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLPtrTypes.h; path = folly/ssl/OpenSSLPtrTypes.h; sourceTree = ""; }; - E6BEB6A913EA1B4BB2719C94086407B4 /* RNFBAnalyticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBAnalyticsModule.h; path = ios/RNFBAnalytics/RNFBAnalyticsModule.h; sourceTree = ""; }; - E6D4001EC6E1539E580DDA8B4856CBCB /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; + E6B31D47FEA12DF3F7029345AFBA4B35 /* RNFBCrashlytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBCrashlytics.release.xcconfig; sourceTree = ""; }; + E6BB15D5AAC1A14C30DCEFA63C6121DC /* react-native-document-picker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.debug.xcconfig"; sourceTree = ""; }; + E6C7448F6E74F1B3741E80C1407DB9AA /* RCTImageLoaderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderProtocol.h; path = Libraries/Image/RCTImageLoaderProtocol.h; sourceTree = ""; }; + E6E79FE021EE1FF1B04B701B1D757EEB /* RCTAlertController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAlertController.m; sourceTree = ""; }; E6E9C7C5B109498EC681F09D923E5C93 /* EnvUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EnvUtil.h; path = folly/experimental/EnvUtil.h; sourceTree = ""; }; - E6F3E7FE43A6DF8ADCB754B4D81851E6 /* ReactNativeART.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeART.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E6F8E4122200E27EF9E2B713BD332D98 /* react-native-simple-crypto-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-simple-crypto-umbrella.h"; sourceTree = ""; }; E70FB33CFF014F38A4E95193A259BC24 /* FlipperState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperState.h; path = xplat/Flipper/FlipperState.h; sourceTree = ""; }; E72C685352DEFE901EBBF6470E4C2F4E /* FarmHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FarmHash.h; path = folly/hash/FarmHash.h; sourceTree = ""; }; E72D1BAC77A444AB18BD08E79FF60128 /* PublisherBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PublisherBase.cpp; path = rsocket/statemachine/PublisherBase.cpp; sourceTree = ""; }; E72DF4E8DF7E1FAE2347EB412774F23C /* SysMman.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysMman.cpp; path = folly/portability/SysMman.cpp; sourceTree = ""; }; + E73576E4DD271746E8BF6040262BEDEA /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = ""; }; E737CD50AB9187B1427A4BE435D43ED7 /* SDImageWebPCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageWebPCoder.m; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.m; sourceTree = ""; }; - E738E13503F37112DFBF1804F7416C8F /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = ""; }; - E73C2E53DDD78298D1E7F95EBFF2A4BA /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; - E7981AA33A978B0FAAF656BAABE1D59A /* ARTShadow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShadow.h; path = ios/ARTShadow.h; sourceTree = ""; }; + E739090C6C03C989B43BF82B69633336 /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = RAMBundleRegistry.cpp; sourceTree = ""; }; + E759369F67438720C9E32980E6886097 /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; + E75DC717CE866A378A65C768DBF983EE /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; E79C2D119F2D803A10DD36C7E1C7AC04 /* ParkingLot.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ParkingLot.cpp; path = folly/synchronization/ParkingLot.cpp; sourceTree = ""; }; - E7B1ED010F5FB8F7BF57C832EE1BD779 /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAsyncLocalStorage.h; path = React/CoreModules/RCTAsyncLocalStorage.h; sourceTree = ""; }; - E7BC5D722F2B2E81A4AEB2E20E18DCC0 /* RCTConvert+FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FIROptions.m"; path = "ios/RNFBApp/RCTConvert+FIROptions.m"; sourceTree = ""; }; + E7ADF92BC8D60C28A629D61B66BEC765 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; E7D0233C155796C1E13046A0A2621FFB /* select.c */ = {isa = PBXFileReference; includeInIndex = 1; path = select.c; sourceTree = ""; }; E7D542686358449C4464EF32763BE4A2 /* upsampling_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse41.c; path = src/dsp/upsampling_sse41.c; sourceTree = ""; }; E7D565D7D6C306053C2BDFCF2E18FB85 /* GULKeychainStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainStorage.h; path = GoogleUtilities/Environment/Private/GULKeychainStorage.h; sourceTree = ""; }; E7FA9A7A65259B3BD7831B47502FF765 /* ThreadedExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadedExecutor.h; path = folly/executors/ThreadedExecutor.h; sourceTree = ""; }; E7FEFE9C75C4B0D2872A9B3DB2E10D6B /* DynamicParser-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DynamicParser-inl.h"; path = "folly/experimental/DynamicParser-inl.h"; sourceTree = ""; }; - E805D63EBA71446C6BECDF52461B8C20 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Regular.ttf; path = Fonts/FontAwesome5_Regular.ttf; sourceTree = ""; }; E80635EC34953AA8AD4B2B9D96B1F1D6 /* Unicode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Unicode.cpp; path = folly/Unicode.cpp; sourceTree = ""; }; - E80A0ED35C68DBE90A4BF5CBF22639D9 /* NSError+BSG_SimpleConstructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSError+BSG_SimpleConstructor.h"; sourceTree = ""; }; + E80DD25952CCAFAE57F3977CEC976B49 /* BugsnagError+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagError+Private.h"; sourceTree = ""; }; E815744FFA2710E1B7D0A4B6EED45E59 /* GULHeartbeatDateStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULHeartbeatDateStorage.m; path = GoogleUtilities/Environment/GULHeartbeatDateStorage.m; sourceTree = ""; }; - E829F714475EF6F063CF6C938929BFEE /* Pbkdf2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Pbkdf2.h; sourceTree = ""; }; + E82511315009324355D2E12F76D4A1CD /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; E82BBCC6FC3B357369DB911A9DDB8310 /* Stdlib.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Stdlib.cpp; path = folly/portability/Stdlib.cpp; sourceTree = ""; }; + E8407F7D051C127800BA923758D2BCDF /* RNBootSplash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBootSplash.h; path = ios/RNBootSplash.h; sourceTree = ""; }; E84B304A0A3E5E63A9395D43DACFBEC1 /* FIRStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStackFrame.h; path = Crashlytics/Crashlytics/Public/FIRStackFrame.h; sourceTree = ""; }; + E84CBA71F965032851FABF0DCEB5989E /* TurboCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TurboCxxModule.h; sourceTree = ""; }; + E854F6CC4EF3F49C1842C5F714E0A458 /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTiming.h; path = React/CoreModules/RCTTiming.h; sourceTree = ""; }; + E86E5936B7E74BEB90393903C90CB8F1 /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = ""; }; E87529B1BAFDF45BD486509718772E8E /* Types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Types.h; path = folly/futures/detail/Types.h; sourceTree = ""; }; - E8795D7BD23A87E54DB07D464B15FA0D /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; - E88349E97E6DBAF0F9E56B0BC24364B4 /* BugsnagReactNative.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BugsnagReactNative.m; path = cocoa/BugsnagReactNative.m; sourceTree = ""; }; - E8973559ADDA453DCED6FA2EADBE53D1 /* RCTRequired.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.debug.xcconfig; sourceTree = ""; }; - E8988CEE467F80B83CD7E67E6837241C /* REAAllTransitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAllTransitions.h; sourceTree = ""; }; + E884679A003053FDD31145859496BA59 /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = ""; }; + E8A17AD3EF22B3EDE7BC6C2E0715F83F /* RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotifications.h; path = RNNotifications/RNNotifications.h; sourceTree = ""; }; E8A76263AAF9CD26313B2E6488D9987E /* TurnSequencer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurnSequencer.h; path = folly/detail/TurnSequencer.h; sourceTree = ""; }; + E8BF05003B6E1A74DEB132D265F033A8 /* BugsnagReactNative.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = BugsnagReactNative.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; E8BFDC44834812D83E93BA1CF7F08FA1 /* GLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GLog.h; path = folly/GLog.h; sourceTree = ""; }; - E8E51EA70AC46B491EC6BDCD4B9EB270 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - E8FD1047B03F68AD7CBB1D024F14919A /* react-native-cookies.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cookies.release.xcconfig"; sourceTree = ""; }; - E8FF1F99E46ADCCA66C1EA96CA8EC1C2 /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; E92ABFDAB203180947FBEDCB9BC3B942 /* GDTCORUploadPackage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadPackage.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORUploadPackage.h; sourceTree = ""; }; - E92B17745BEDC6F2E61FC46B5A44A20A /* ARTNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTNode.m; path = ios/ARTNode.m; sourceTree = ""; }; - E92B82D2277D7E8D2DB51024E471642F /* RNCAssetsLibraryRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAssetsLibraryRequestHandler.m; path = ios/RNCAssetsLibraryRequestHandler.m; sourceTree = ""; }; - E9354A4991668C5A990FD4E1360339E5 /* EXAppleAuthentication.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAppleAuthentication.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E930EFE217233CB3748BF3259CC7C4C4 /* StorageIndexer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = StorageIndexer.m; path = ios/StorageIndexer.m; sourceTree = ""; }; E9379D71B955ED8CE023DC49B56E9AD4 /* RSocketServiceHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketServiceHandler.cpp; path = rsocket/RSocketServiceHandler.cpp; sourceTree = ""; }; - E93A9795F830EA2582E4EBE8BC877F60 /* RNDeviceInfo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.release.xcconfig; sourceTree = ""; }; + E93BF2785F1FCD510171B2995196D697 /* RCTImageEditingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageEditingManager.mm; sourceTree = ""; }; E93F701CA8EB196D77AE99E094D873E4 /* libFlipper.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFlipper.a; path = libFlipper.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E94541184FBC811C9D5D5AD893DADF82 /* QBAlbumCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumCell.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.m; sourceTree = ""; }; E9521D4F883C544DE47CDF5C2FDF5C87 /* libwebp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libwebp.debug.xcconfig; sourceTree = ""; }; E96622D92C07CF69EA6BEF2AA363F0A1 /* ScopeGuard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopeGuard.h; path = folly/ScopeGuard.h; sourceTree = ""; }; + E9727559286383AEBBDE40C6EC18F9F5 /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pl.lproj; path = ios/QBImagePicker/QBImagePicker/pl.lproj; sourceTree = ""; }; E99B73487DA7D10636D3E972B48C58CC /* Singleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Singleton.h; path = folly/detail/Singleton.h; sourceTree = ""; }; + E99CEF4EEC42A2629D3B68DA23D0046B /* RNCPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCPicker.h; path = ios/RNCPicker.h; sourceTree = ""; }; + E99D032CA45AE795463E8CCFCA3FBE80 /* BugsnagFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagFileStore.m; sourceTree = ""; }; + E9A7FD5F85D4E9397A1DFCA59AA21099 /* RNGestureHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNGestureHandler-dummy.m"; sourceTree = ""; }; E9AB1651105F9583CE5F40B209236A82 /* SpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpinLock.h; path = folly/SpinLock.h; sourceTree = ""; }; - E9AF2BFDF7B235CB61C74A7EE7A4C82A /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = ""; }; E9C8ED646C0773D3BB14C7CEA285BB54 /* UninitializedMemoryHacks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UninitializedMemoryHacks.h; path = folly/memory/UninitializedMemoryHacks.h; sourceTree = ""; }; - E9D57147F19420CEA94900C5A71CDE73 /* RCTDevSplitBundleLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevSplitBundleLoader.h; path = React/CoreModules/RCTDevSplitBundleLoader.h; sourceTree = ""; }; + E9C9B3A573476303618E7B4B8707A48D /* BSG_KSJSONCodecObjC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSJSONCodecObjC.m; sourceTree = ""; }; E9DAA69C91C5D71F71C166021395D3BE /* TOCropViewController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "TOCropViewController-dummy.m"; sourceTree = ""; }; E9E08C14A6995E6EB264EB5847FC74CC /* SDDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDisplayLink.h; path = SDWebImage/Private/SDDisplayLink.h; sourceTree = ""; }; E9EB53456EF9DFAB70B1BF7C11D270BC /* mips_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mips_macro.h; path = src/dsp/mips_macro.h; sourceTree = ""; }; E9F2CFBAAFD22F8C32D71F9E71BC5619 /* cct.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cct.nanopb.c; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.c; sourceTree = ""; }; E9F3A729CD9D33AD75FD8C1B0BBC0ECD /* FIRCLSDemangleOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDemangleOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSDemangleOperation.h; sourceTree = ""; }; + E9F8ED4171EE1BF4C32DAD3F2AC794BF /* react-native-cameraroll.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.debug.xcconfig"; sourceTree = ""; }; EA05B65AECBCE03C6DC5D919C42395DF /* Flipper-RSocket-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-RSocket-prefix.pch"; sourceTree = ""; }; EA0EF4A0499795DDFB3E11E94D6A68F2 /* Array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Array.h; path = folly/container/Array.h; sourceTree = ""; }; EA12FAEFE8EE553CC6DEF4727ED0D5FD /* ieee.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ieee.h; path = "double-conversion/ieee.h"; sourceTree = ""; }; - EA165F94CE279A9A67907B1CAF2847A0 /* REAJSCallNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAJSCallNode.m; sourceTree = ""; }; - EA2B97AB9AFF644576D626D5157A989B /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = ""; }; + EA26F49E2AADEDB96790941D0189B8D0 /* BSG_KSCrashDoctor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashDoctor.m; sourceTree = ""; }; EA3D4260045DA638F2FF39E754353EC0 /* FlipperClient.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperClient.mm; path = iOS/FlipperKit/FlipperClient.mm; sourceTree = ""; }; - EA648D6458C99285810BE94E0A081CC1 /* RNFBSharedUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBSharedUtils.h; path = ios/RNFBApp/RNFBSharedUtils.h; sourceTree = ""; }; + EA44814345FD3334AE3676B7C6390179 /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; + EA449C581CDD206DD064779B64A3A908 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; + EA4C93D56FE5D85A1A138AC0E69C8862 /* RNEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNEventEmitter.m; path = RNNotifications/RNEventEmitter.m; sourceTree = ""; }; + EA4C94D30D9F5FC1CCCEB7C2FFEA5CEF /* BSG_KSCrashSentry_NSException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashSentry_NSException.m; sourceTree = ""; }; + EA6CA669DB11D03491E655AF46257689 /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; EA73FDEB663FBC04237C1E36C9FAB412 /* ParkingLot.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ParkingLot.cpp; path = folly/synchronization/ParkingLot.cpp; sourceTree = ""; }; EA80C6CC551744CB4EE5BF2A056CF5B1 /* glog.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = glog.release.xcconfig; sourceTree = ""; }; EA81D63A714DF53A54E422BCA8FA65DE /* GCDAsyncSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDAsyncSocket.m; path = Source/GCD/GCDAsyncSocket.m; sourceTree = ""; }; + EA880D94604F3BDF76B355942BB36599 /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModule.mm; sourceTree = ""; }; + EA885519C9B954A79F80E54872CB9A51 /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; + EA8A071B5F6B8CB45234079D7A7C9042 /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.h; sourceTree = ""; }; + EA8AF9736E107436330E00907D1BA6BC /* BugsnagSystemState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSystemState.m; sourceTree = ""; }; EA8C4045E05D9C71E7B35F1F39E7D037 /* TypeList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypeList.h; path = folly/detail/TypeList.h; sourceTree = ""; }; - EA9F3A781591A98C0215C292BCED8C5C /* RNFBSharedUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBSharedUtils.m; path = ios/RNFBApp/RNFBSharedUtils.m; sourceTree = ""; }; - EAB3FDB2FE2D5A5728226A4C79578087 /* RNCookieManagerIOS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCookieManagerIOS.h; path = ios/RNCookieManagerIOS/RNCookieManagerIOS.h; sourceTree = ""; }; - EAC07065EF0C6C5085A9AD7AF661DE8D /* RNConfigReader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNConfigReader-prefix.pch"; sourceTree = ""; }; - EAC652CBC6C84962FC79437C929D4AD2 /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = ""; }; EAD20D2095CADB729BA7A29DFD8EFFDF /* SKYogaKitHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKYogaKitHelper.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKYogaKitHelper.h; sourceTree = ""; }; EAD4FACB9D0471C931F15BC3D70024B9 /* SingleWriterFixedHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingleWriterFixedHashMap.h; path = folly/experimental/SingleWriterFixedHashMap.h; sourceTree = ""; }; - EAE2B81DBA120D7E747A5AD6AA066AFE /* RootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RootView.h; path = ios/RootView.h; sourceTree = ""; }; - EAED6E802D293C12664DDC6A69AF18D7 /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; EAF20ABA35CE7DAC773C403F7BD7C4F4 /* F14Policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Policy.h; path = folly/container/detail/F14Policy.h; sourceTree = ""; }; EAF8ACC31CCAED2FF89273D035C7A486 /* Traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Traits.h; path = folly/Traits.h; sourceTree = ""; }; EB11D8980233FB28B3EB591690D4B933 /* boost-for-react-native.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "boost-for-react-native.debug.xcconfig"; sourceTree = ""; }; + EB1889F513B963203313D59B84A4D47D /* UMAppLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMAppLoader-dummy.m"; sourceTree = ""; }; EB34A2FB4CEB74806B9886BC1034D7F6 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Demangle.cpp; path = folly/detail/Demangle.cpp; sourceTree = ""; }; EB418C913486EA3E3381B3FE24AA0955 /* ConnectionAcceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionAcceptor.h; path = rsocket/ConnectionAcceptor.h; sourceTree = ""; }; - EB52B3B698412DAD086667FF340E0B6B /* BSG_KSFileUtils.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSFileUtils.c; sourceTree = ""; }; + EB549B703A202BC1F8F18BA6CA72C26B /* EXPermissions.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.release.xcconfig; sourceTree = ""; }; + EB5AE6725DBDBA72012A0E3EDB522345 /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; EB5BB0A2EBE0C8E9B64B96F6CE49737A /* FIRCLSDataCollectionToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDataCollectionToken.h; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionToken.h; sourceTree = ""; }; EB719189CCE4314E49807A63718D917B /* FIRCLSDwarfUnwindRegisters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDwarfUnwindRegisters.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfUnwindRegisters.h; sourceTree = ""; }; - EB722064956A2C065476D34F14303583 /* project.pbxproj */ = {isa = PBXFileReference; includeInIndex = 1; path = project.pbxproj; sourceTree = ""; }; EB7484EC228A3F3928B29F2172BFC923 /* Cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cast.h; path = folly/lang/Cast.h; sourceTree = ""; }; - EB7BACB70711FEE33C63C4B99A0D7C6E /* react-native-background-timer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-background-timer-dummy.m"; sourceTree = ""; }; EB7F915F146B38A65846A157B7FB3EC6 /* IPAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddress.h; path = folly/detail/IPAddress.h; sourceTree = ""; }; - EB92F93CABB8184449DC444F506BAADD /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = ""; }; + EB8DD2A0419BC72BF274073FC1A56A06 /* EnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EnvironmentUtil.h; path = ios/RNDeviceInfo/EnvironmentUtil.h; sourceTree = ""; }; + EB917A79529EC54B6B6890E1CC8DAB5D /* BSGNotificationBreadcrumbs.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGNotificationBreadcrumbs.m; sourceTree = ""; }; EB9F25DCA076A959BA3546C7479973C1 /* FBVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBVector.h; path = folly/FBVector.h; sourceTree = ""; }; + EBA6F0DD4A3B953CD39A34A3970D8304 /* RNFBPreferences.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBPreferences.m; path = ios/RNFBApp/RNFBPreferences.m; sourceTree = ""; }; EBB2C777B8701067235AF173874B4438 /* IOBuf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOBuf.h; path = folly/io/IOBuf.h; sourceTree = ""; }; + EBB7562BD808A9A1D1BC43A8E0459F7E /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; EBB8FDCD812D4599E46C88E2E592A7FB /* msa_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msa_macro.h; path = src/dsp/msa_macro.h; sourceTree = ""; }; EBC93F84D6D9CE3D89CABD497B79A55E /* CacheLocality.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CacheLocality.cpp; path = folly/concurrency/CacheLocality.cpp; sourceTree = ""; }; EBDAEB955E4ABF88F7711DF389E903E3 /* UIView+Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+Yoga.h"; path = "YogaKit/Source/UIView+Yoga.h"; sourceTree = ""; }; + EBDC1ACBB829C220D69159D036999F34 /* React-jsiexecutor.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsiexecutor.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + EBDFCF84A98A224047685A16A587A47E /* ARTGroupManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTGroupManager.h; sourceTree = ""; }; EBEF24FFE00373397C3BD58477679B7D /* Launder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Launder.h; path = folly/lang/Launder.h; sourceTree = ""; }; - EC1B6DCFFEA7A4FBF89EB283030251E8 /* REABezierNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABezierNode.h; sourceTree = ""; }; + EBFF5BC3C4AEDDCB346F620E28EF4774 /* RCTRequired.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.debug.xcconfig; sourceTree = ""; }; EC1DE8EA926E548E11AF410E548B8716 /* BlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlockingQueue.h; path = folly/executors/task_queue/BlockingQueue.h; sourceTree = ""; }; EC226F2BAC9F1180223CF366941ED6C2 /* ExecutionObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutionObserver.h; path = folly/experimental/ExecutionObserver.h; sourceTree = ""; }; EC23D8DB996B1FE92A084940B1F28352 /* SDWebImageDownloaderDecryptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderDecryptor.m; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.m; sourceTree = ""; }; EC33EB81EAFE738D028161A843133FDA /* FBLPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromise.h; path = Sources/FBLPromises/include/FBLPromise.h; sourceTree = ""; }; EC406A8E1DF9CEE11C8A055B76618D94 /* yuv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = yuv.h; path = src/dsp/yuv.h; sourceTree = ""; }; - EC4AE357CC4E7284F37A440FA1D22CF9 /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; - EC5913ADB7DF01BE0265EFDD87FB0281 /* RNCConnectionStateWatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCConnectionStateWatcher.h; path = ios/RNCConnectionStateWatcher.h; sourceTree = ""; }; + EC51DD54CD0EED9344522EB545B298B3 /* ARTShadow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShadow.h; path = ios/ARTShadow.h; sourceTree = ""; }; EC68D88BEDF536EA7336B88F76A1E0F8 /* SysTime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysTime.h; path = folly/portability/SysTime.h; sourceTree = ""; }; EC6B215909BFDC7A355DECAD3E931417 /* FIRCLSProcessReportOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSProcessReportOperation.h; path = Crashlytics/Crashlytics/Operations/Reports/FIRCLSProcessReportOperation.h; sourceTree = ""; }; - EC76FCFA4A08F84C5A18F32710F20B7A /* react-native-restart.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-restart.debug.xcconfig"; sourceTree = ""; }; - EC800AB4F913D98C62850585DA4CDB3B /* RCTCrypto-Bridging-Header.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTCrypto-Bridging-Header.h"; path = "ios/RCTCrypto/RCTCrypto-Bridging-Header.h"; sourceTree = ""; }; EC8909AA3E1DF660755798850979DAAF /* IOVec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOVec.h; path = folly/portability/IOVec.h; sourceTree = ""; }; EC939FB768D3C5B9EEC1D46DB5A0FC4D /* HardwareConcurrency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HardwareConcurrency.h; path = folly/system/HardwareConcurrency.h; sourceTree = ""; }; - ECAFF29EC840527BAAD771DA7AF5C8E4 /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = ""; }; - ECBF3EFF9976882C405D5E9CC56ABD52 /* TurboModulePerfLogger.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = TurboModulePerfLogger.cpp; sourceTree = ""; }; - ECCC4D99A7D1426CB985B465695A7BEC /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; ECDC3BE6EAC7A6FAD7234E57E15E0496 /* StringKeyedUnorderedSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedUnorderedSet.h; path = folly/experimental/StringKeyedUnorderedSet.h; sourceTree = ""; }; - ECF6274B422B5070584B23CD75BDF7EA /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; + ECF30685940A43B4A6F919BCADA28019 /* EXVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoView.m; sourceTree = ""; }; + ED035C750CEB17C74F2277A208C6E663 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; ED04B609E205529A34A85339041DF566 /* quant_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_dec.c; path = src/dec/quant_dec.c; sourceTree = ""; }; ED12C7802BB41CE6B9622FA5B3D33026 /* MallocImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MallocImpl.h; path = folly/memory/detail/MallocImpl.h; sourceTree = ""; }; ED1E3FC0DC90F4A787472917BFB6B235 /* libEXFileSystem.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXFileSystem.a; path = libEXFileSystem.a; sourceTree = BUILT_PRODUCTS_DIR; }; ED213EAFD7F2C5486CCED6F2A9B5A25F /* MicroSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroSpinLock.h; path = folly/synchronization/MicroSpinLock.h; sourceTree = ""; }; + ED30428981B0CC60BB4328E0F7C7F14A /* RCTWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWeakProxy.h; sourceTree = ""; }; ED305439FEC86D5CE3B0292A6FA4B6DB /* Padded.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Padded.h; path = folly/Padded.h; sourceTree = ""; }; + ED45D171CC848818FB692BD38CF0737E /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; ED47FD185B8AA82F02D6F845DC61469F /* AtomicSharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicSharedPtr.h; path = folly/concurrency/AtomicSharedPtr.h; sourceTree = ""; }; + ED50B52E1E0AF213DCD66EE91D277AA9 /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; + ED57072DCCF9248D12FAA58064DA33AC /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = ""; }; ED59A322A00B63535E5F9FE1CC01764D /* GDTCORConsoleLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORConsoleLogger.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORConsoleLogger.h; sourceTree = ""; }; ED61FC0FD69FCF27EEEA00BC72707CD9 /* Iterators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Iterators.h; path = folly/detail/Iterators.h; sourceTree = ""; }; + ED625D5A21C9F1B61CFF7642D677FE07 /* REAAlwaysNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAlwaysNode.h; sourceTree = ""; }; + ED64319A152E60F820924678CC660D67 /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + ED66C4774C8544D1E55121F478A0810D /* RNCSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewManager.h; path = ios/SafeAreaView/RNCSafeAreaViewManager.h; sourceTree = ""; }; + ED66E2553655F4848CEB00B46D764060 /* RCTAlertController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAlertController.h; path = React/CoreModules/RCTAlertController.h; sourceTree = ""; }; ED6C9E7E40237984988F15B2078AE5EE /* FIRCLSDwarfUnwind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDwarfUnwind.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfUnwind.h; sourceTree = ""; }; - ED700072584D4DDE449046BA87A0290B /* EXAV.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.release.xcconfig; sourceTree = ""; }; ED716E78774947E880E7508529601934 /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "SDWebImage/Core/UIImage+MultiFormat.h"; sourceTree = ""; }; - ED7A1F17BCAA8D766D00DBE4D833C822 /* BSG_KSCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReport.h; sourceTree = ""; }; + ED75D8954D22516560576D647EF26B78 /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = ""; }; ED81A5EB12FE3E918B3DCFFEBF9AE754 /* FBLPromise+Do.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Do.h"; path = "Sources/FBLPromises/include/FBLPromise+Do.h"; sourceTree = ""; }; ED865F1DE44468A0B0B652D71ED61413 /* FIRCLSFABNetworkClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFABNetworkClient.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSFABNetworkClient.m; sourceTree = ""; }; ED9DA0CE1A4AFD77FC0FFB024D143F70 /* ResumeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ResumeManager.h; path = rsocket/ResumeManager.h; sourceTree = ""; }; EDAC98E95F85540E8E1A36A7C48A79E6 /* CPUThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CPUThreadPoolExecutor.cpp; path = folly/executors/CPUThreadPoolExecutor.cpp; sourceTree = ""; }; + EDB333FCF70BA300550BD5E01174F9BC /* Pods-defaults-RocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-defaults-RocketChatRN.debug.xcconfig"; sourceTree = ""; }; EDBCFDE5CEA3ACBEA4B2452C2223DD05 /* TestSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestSubscriber.h; path = yarpl/flowable/TestSubscriber.h; sourceTree = ""; }; - EDC0539D681B2479FB44D1FA00F8F511 /* KeyCommands.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = KeyCommands.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - EDDB0ED7D13BFC094D2760B57240116E /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = ""; }; - EE010C8DEC106260AA454468C450A6DF /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; sourceTree = ""; }; + EDCAAAC9AAC0652F4DBF8DA542199E4B /* FontAwesome.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome.ttf; path = Fonts/FontAwesome.ttf; sourceTree = ""; }; + EDCEE072649FFB5B0DD762223223B843 /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = apple/RNCWKProcessPoolManager.m; sourceTree = ""; }; + EE003B14F3BDD73E4063997EC4E2607F /* ARTPattern.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTPattern.h; sourceTree = ""; }; + EE0C19A707DD76A72F53CE519B41D6C0 /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTExceptionsManager.h; path = React/CoreModules/RCTExceptionsManager.h; sourceTree = ""; }; EE109F48562DC7EEFB22086F85702B57 /* SDAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageView.h; path = SDWebImage/Core/SDAnimatedImageView.h; sourceTree = ""; }; + EE1629DBC0F2312E94B2E5DA2A46C3D9 /* RCTView+SafeAreaCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTView+SafeAreaCompat.m"; path = "ios/SafeAreaView/RCTView+SafeAreaCompat.m"; sourceTree = ""; }; EE1A20F80817C3502570E241C4933149 /* ReadMostlySharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReadMostlySharedPtr.h; path = folly/experimental/ReadMostlySharedPtr.h; sourceTree = ""; }; EE1C228CC76D024E333510EC9F96FACE /* yuv_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse2.c; path = src/dsp/yuv_sse2.c; sourceTree = ""; }; - EE24F85C6CA8CC94F70EA6BD9EC8A95A /* REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransition.h; sourceTree = ""; }; + EE211749CD18ADB36400BEAD047FD706 /* Connection.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = Connection.cpp; sourceTree = ""; }; EE4AEFEACE275DDCFB42B9400BF6B218 /* libRNFBCrashlytics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFBCrashlytics.a; path = libRNFBCrashlytics.a; sourceTree = BUILT_PRODUCTS_DIR; }; + EE70FC63C3A4A9EC29E4C29EEEF55D45 /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; EE722C6B5031C8949D777F1EFEFB3201 /* FlipperClient+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FlipperClient+Testing.h"; path = "iOS/FlipperKit/FlipperClient+Testing.h"; sourceTree = ""; }; + EE7B1FD6B52A6B8F1A82A3DAA4B1FBA0 /* RNCSafeAreaViewEdges.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewEdges.h; path = ios/SafeAreaView/RNCSafeAreaViewEdges.h; sourceTree = ""; }; EE7E08EF7B1252B45B70331226DB8144 /* FramedDuplexConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FramedDuplexConnection.h; path = rsocket/framing/FramedDuplexConnection.h; sourceTree = ""; }; EE8277FB56719177EFE2FAC4CDBCA097 /* syntax_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = syntax_enc.c; path = src/enc/syntax_enc.c; sourceTree = ""; }; - EEA4CC9B97D8B1DF863F7448D02747DE /* Pods-ShareRocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.debug.xcconfig"; sourceTree = ""; }; EEAAAEE3BEC255C0C7A96639641B3098 /* lossless_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless_common.h; path = src/dsp/lossless_common.h; sourceTree = ""; }; EEC53FB638BA80024B5BEB0C515A1750 /* FrameSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameSerializer.h; path = rsocket/framing/FrameSerializer.h; sourceTree = ""; }; EEC665DD4753ABE611DF1D3DB2DE8782 /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseAnalytics.framework; path = Frameworks/FirebaseAnalytics.framework; sourceTree = ""; }; EECEF8976E9A1DE282356790E4A04086 /* FrameTransportImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameTransportImpl.h; path = rsocket/framing/FrameTransportImpl.h; sourceTree = ""; }; - EED42A95AAF354958AB6CC0252CFCBDB /* react-native-document-picker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.release.xcconfig"; sourceTree = ""; }; EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTImage.a"; path = "libReact-RCTImage.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - EF055E5FCB222583430BE1F56A5645BB /* React-runtimeexecutor.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-runtimeexecutor.release.xcconfig"; sourceTree = ""; }; - EF0A57993059CD6B449626FCAAD7CB58 /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; + EEDEF25F4BD51250B333F8487ADCABD1 /* RNFastImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.debug.xcconfig; sourceTree = ""; }; + EEEF5FAAE4B42250CBF1B3FF63D486E3 /* BSG_KSCrashC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashC.h; sourceTree = ""; }; EF0C759B7ECF1822BCBF5D46FEDB41A8 /* CallOnce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallOnce.h; path = folly/synchronization/CallOnce.h; sourceTree = ""; }; + EF592042EFCC79A50F2FD7710BCF2557 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + EF66E1865FB77B1C24A04F48399DC43D /* UMConstantsInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.release.xcconfig; sourceTree = ""; }; EF66ECB1C963FF6FB3F5A9F987CF61D3 /* MPMCPipeline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCPipeline.h; path = folly/MPMCPipeline.h; sourceTree = ""; }; - EF68A95B2BB34793D30DC18E1A29109A /* Pods-NotificationService.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-NotificationService.modulemap"; sourceTree = ""; }; - EF68EF03EB2FA1B4700C17BB2CF59E25 /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; EF77B45DE1171993B31D40830A5CB5B4 /* ScheduledRSocketResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScheduledRSocketResponder.cpp; path = rsocket/internal/ScheduledRSocketResponder.cpp; sourceTree = ""; }; + EF976FDB7A999CA6E88171129823FFF7 /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; + EF987966C8243A6D7B2997CCB6DEBF19 /* CallbackOStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CallbackOStream.h; sourceTree = ""; }; EF9EDC6CDBDDC9EA7F72BB6CE3AF8C23 /* util-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "util-internal.h"; sourceTree = ""; }; - EFAAF47B4801CDE958D673372A01BBF3 /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSExecutor.cpp; sourceTree = ""; }; EFAF65A558262424D56BC320489FDC28 /* MacAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MacAddress.h; path = folly/MacAddress.h; sourceTree = ""; }; + EFBF0F66DD05093A50745A956B265F83 /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; EFC449A78C30152FAB91048DC5A53E0E /* HazptrObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrObj.h; path = folly/synchronization/HazptrObj.h; sourceTree = ""; }; EFC7499F43B3972E69F26C8E148364C0 /* SingletonStackTrace.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SingletonStackTrace.cpp; path = folly/detail/SingletonStackTrace.cpp; sourceTree = ""; }; + EFD07F0983ABE92891B7D4414B44854B /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; + EFD4EBBD38CDFD28C3A24C71E03FB0D2 /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = ""; }; EFDCFE3582FA69D9B77B4B503E169BE2 /* FBLPromise+Always.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Always.m"; path = "Sources/FBLPromises/FBLPromise+Always.m"; sourceTree = ""; }; + EFE8405103A0E74725C59DC5C99FDB57 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + EFF316F1C4228437B26E8ADBDF40A0F0 /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; EFFA369D0A99F61C59AC66A7809A1D45 /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = "Objective-C/TOCropViewController/Resources/ja.lproj"; sourceTree = ""; }; - F00899E66E34485DE0A2299A6085CADF /* React-jsinspector.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.debug.xcconfig"; sourceTree = ""; }; F00FBEAB647FF5D3E69DF36C8F70061B /* SDImageFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFrame.m; path = SDWebImage/Core/SDImageFrame.m; sourceTree = ""; }; + F028259E27D1417958999A7A7A1310D2 /* REAConcatNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAConcatNode.m; sourceTree = ""; }; F02EE84B34FF166699B9607FA173C25A /* DistributedMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = DistributedMutex.cpp; path = folly/synchronization/DistributedMutex.cpp; sourceTree = ""; }; - F042F3EDA3FB4BFF0AEE5C505E44B2A7 /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; F043E4504C069306DD6A6870ABB75F40 /* FlipperStep.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FlipperStep.cpp; path = xplat/Flipper/FlipperStep.cpp; sourceTree = ""; }; F068A4842CE3553A27782E11612DDC0C /* evsignal-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "evsignal-internal.h"; sourceTree = ""; }; - F06D98D4A530C5BD768F9D2B5E839142 /* CoreModulesPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreModulesPlugins.h; path = React/CoreModules/CoreModulesPlugins.h; sourceTree = ""; }; F07D2F18E27AAD4431AA0C119A2B18A2 /* fixed-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fixed-dtoa.cc"; path = "double-conversion/fixed-dtoa.cc"; sourceTree = ""; }; + F081E4DF5CFA79D41D16C87B19AD63DB /* RNCAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearance.h; path = ios/Appearance/RNCAppearance.h; sourceTree = ""; }; + F090F061AC5C4B0E1DC3E845757F1542 /* QBAlbumsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.h; sourceTree = ""; }; F091B10FC5021AF0D2DC79A4895E6728 /* Pretty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Pretty.h; path = folly/lang/Pretty.h; sourceTree = ""; }; - F09808FC292CB23AD7C070784D52E2BC /* Ionicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Ionicons.ttf; path = Fonts/Ionicons.ttf; sourceTree = ""; }; F09857F1319ADC4E8AA076419B8A0A33 /* PublishProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PublishProcessor.h; path = yarpl/flowable/PublishProcessor.h; sourceTree = ""; }; + F09E3CE4EFFEADA4D5525E7AC223798F /* REANode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANode.h; sourceTree = ""; }; F0A4024A7743D4E8FC58B80F1A7A3CA9 /* SDmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDmetamacros.h; path = SDWebImage/Private/SDmetamacros.h; sourceTree = ""; }; + F0A55BFC31DE0F8623420BCCFBAA7569 /* REATransitionValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionValues.h; sourceTree = ""; }; F0AAE5E8D832ABA019BCFEACD02E56C8 /* FIRCLSMachOSlice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachOSlice.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOSlice.h; sourceTree = ""; }; F0B9BDE093A1DAEEACF5BFC7242457E0 /* Range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Range.h; path = folly/Range.h; sourceTree = ""; }; F0CB1544ADBADE695E5E2247DDC9EFF7 /* SynchronizedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SynchronizedPtr.h; path = folly/SynchronizedPtr.h; sourceTree = ""; }; F0DBC971FD93CC9B2793DC0B11B8E605 /* dynamic-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "dynamic-inl.h"; path = "folly/dynamic-inl.h"; sourceTree = ""; }; F0DD32790BF0B2290C451608FE612652 /* ApplyTuple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ApplyTuple.h; path = folly/functional/ApplyTuple.h; sourceTree = ""; }; F0E13337EC10017E2AFDE5434B762C18 /* FlipperKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FlipperKit-umbrella.h"; sourceTree = ""; }; - F0EECECDE308A45C7EDB48B47585FC99 /* TurboModulePerfLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TurboModulePerfLogger.h; sourceTree = ""; }; - F138F0A62BD7A37837818CF8A8B3F102 /* BSG_KSCrashReportFields.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFields.h; sourceTree = ""; }; + F0E2A3B05B70177D3701F3E365014AB2 /* ObservingInputAccessoryViewTemp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ObservingInputAccessoryViewTemp.m; sourceTree = ""; }; + F0F1A127EAB2FFE1F6FA20CA11630AA4 /* BugsnagNotifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagNotifier.m; sourceTree = ""; }; + F12F35269850391E9FAF0153A7CE2C48 /* RNCSafeAreaProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProviderManager.m; path = ios/SafeAreaView/RNCSafeAreaProviderManager.m; sourceTree = ""; }; + F136C717FB0B4F7B7A23AF3EFAA2FF44 /* BugsnagReactNativeEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagReactNativeEmitter.m; sourceTree = ""; }; + F14F1528780DEA27C1649BEE79620E7E /* BugsnagClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagClient.h; sourceTree = ""; }; F150D58501413FC437A7A472E236321E /* enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_neon.c; path = src/dsp/enc_neon.c; sourceTree = ""; }; + F15808387AB6C7A111FF6C455A1A6FE9 /* SecureStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SecureStorage.h; path = ios/SecureStorage.h; sourceTree = ""; }; F16029932C4F596513746C170634EF45 /* WarmResumeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WarmResumeManager.h; path = rsocket/internal/WarmResumeManager.h; sourceTree = ""; }; - F163C1A8578037F53699769179CE37AE /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; + F162080DEB1F229CAD72B7EF91B26785 /* BugsnagKVStoreObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKVStoreObjC.h; sourceTree = ""; }; + F16498BF973941A83EFADF8207428D45 /* REAAllTransitions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAllTransitions.m; sourceTree = ""; }; F16E8A00A68196A9CE422DD73DF4B061 /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "SDWebImage/Core/UIButton+WebCache.h"; sourceTree = ""; }; - F181D4BA617A1BB0C2A7B3A8BED80E77 /* react-native-restart.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-restart.release.xcconfig"; sourceTree = ""; }; F1863201D0BA8344F02D2910F23AADA4 /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Sources/Private/FIRHeartbeatInfo.h; sourceTree = ""; }; F19F759098215F99E10C42499F69820B /* NetworkSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetworkSocket.h; path = folly/net/NetworkSocket.h; sourceTree = ""; }; + F19FBB1C6850FD0D010A5CE4BEA22D3D /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; + F1A2D374367175141CF15B034A500836 /* RNFetchBlobFS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobFS.m; path = ios/RNFetchBlobFS.m; sourceTree = ""; }; F1A969915DD37E525AB5C521D62D6480 /* CertificateUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CertificateUtils.cpp; path = xplat/Flipper/CertificateUtils.cpp; sourceTree = ""; }; - F1CC57D0C298698021A075CD48F9B59D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + F1CAFDC9749A658C4C770C094DF84470 /* BlurViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlurViewManager.h; path = ios/BlurViewManager.h; sourceTree = ""; }; F1CC8DA0187F606BF5BF0A4A91CC75AB /* StaticConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticConst.h; path = folly/lang/StaticConst.h; sourceTree = ""; }; + F1D45A2B71EC9AA7167B5151A6B1F0D2 /* BugsnagStateEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagStateEvent.h; sourceTree = ""; }; F1D841594AC0B3715C4A76A17BDB42B0 /* fast-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fast-dtoa.cc"; path = "double-conversion/fast-dtoa.cc"; sourceTree = ""; }; - F202CEE75EAE78ED24C2B9892843DBE9 /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; - F2092C99076BACB5905FEB2806C3CBA4 /* RNCSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaShadowView.h; path = ios/SafeAreaView/RNCSafeAreaShadowView.h; sourceTree = ""; }; F20A431211371FE48A41C08351C700CA /* bit_writer_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bit_writer_utils.h; path = src/utils/bit_writer_utils.h; sourceTree = ""; }; - F21CCAF47107D491C484F4743F565B80 /* Pods-defaults-RocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-defaults-RocketChatRN-dummy.m"; sourceTree = ""; }; - F23755F3F289AC1B3AF09C62A34A01BA /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; + F20E738D3A69438E1C122F9A0597DA9A /* BugsnagNotifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagNotifier.h; sourceTree = ""; }; + F22CCC95CE1E45D47814E4D6F87F62FD /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; F2384F9FCDC8C8E4F8092212A51E69BE /* FirebaseInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallations.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations.h; sourceTree = ""; }; + F23AD8558F75A3F91F8721E980114C00 /* RCTImageURLLoaderWithAttribution.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageURLLoaderWithAttribution.mm; sourceTree = ""; }; F24DFCD6A2EC058E56485B04B0AD967E /* SDImageHEICCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoder.h; path = SDWebImage/Core/SDImageHEICCoder.h; sourceTree = ""; }; F25C3E827CEC99016CF835D55FD8A055 /* libPods-defaults-Rocket.Chat.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-defaults-Rocket.Chat.a"; path = "libPods-defaults-Rocket.Chat.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - F260606E5399E019816C05F8D9C28BEE /* BlurView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BlurView.m; path = ios/BlurView.m; sourceTree = ""; }; F2644328A8685FAFB272DAD706AC4A36 /* SDImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoader.h; path = SDWebImage/Core/SDImageLoader.h; sourceTree = ""; }; - F2728955F8CDF5857634CEDEB917E7EA /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; - F2733ECD3866A158F6165C347BF9E101 /* advancedIos.md */ = {isa = PBXFileReference; includeInIndex = 1; name = advancedIos.md; path = docs/advancedIos.md; sourceTree = ""; }; - F292A169FF060ED08AFD61D64F219B80 /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; + F26E8EE3627DD007995E38872AAFA34A /* SafeAreaSpacerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SafeAreaSpacerView.h; sourceTree = ""; }; + F27BB7B44D3D4D6F369D067EAC8C428F /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; + F28AFBA649D98C9468C89AEAE0F12E2D /* RNCAsyncStorageDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorageDelegate.h; path = ios/RNCAsyncStorageDelegate.h; sourceTree = ""; }; + F28B8D6EE6C68BAEA3DE434FE5F84065 /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; F29E3DA00733EA6D3619E628AEB20A0D /* UIButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "SDWebImage/Core/UIButton+WebCache.m"; sourceTree = ""; }; - F2A0F8A35A0C2F68628CE1438E1F1F79 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - F2AAFED44278DAADE645A90B5973A815 /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = InspectorInterfaces.cpp; sourceTree = ""; }; + F2A83070D76D4896271A32C9846E7EAC /* InspectorState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorState.h; sourceTree = ""; }; F2BB8F624E91CC8BB4F8EAA5F175A5EA /* QuotientMultiSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuotientMultiSet.h; path = folly/experimental/QuotientMultiSet.h; sourceTree = ""; }; + F2C8F1BCEEA27866D3346B8A49A98330 /* RCTDeviceInfo.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDeviceInfo.mm; sourceTree = ""; }; F2CC85DC5B0E20ACBC7029154A770E99 /* GCTripwireContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCTripwireContext.h; path = destroot/include/hermes/Public/GCTripwireContext.h; sourceTree = ""; }; + F2D103493A4E5E2BFF321613C9284ED7 /* SafeAreaSpacerShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SafeAreaSpacerShadowView.m; sourceTree = ""; }; + F2D42952D771D6847FB7EE54F104C408 /* RNBootSplash.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNBootSplash.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + F2E3027F493B38842E9FDBD22E957D27 /* RNFetchBlobNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobNetwork.h; path = ios/RNFetchBlobNetwork.h; sourceTree = ""; }; F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsiexecutor.a"; path = "libReact-jsiexecutor.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - F2EDC73D6BC0E503246F67284E2B60F3 /* RCTNetworkTask.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworkTask.mm; sourceTree = ""; }; F308F629276CE5EA8D6AC34229F4156C /* AtomicUnorderedMapUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUnorderedMapUtils.h; path = folly/detail/AtomicUnorderedMapUtils.h; sourceTree = ""; }; - F30FCE3AC19A17A706E00638A3116BEF /* Pods-defaults-RocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-defaults-RocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; - F32623B4E1DFB667D5F999E8985F4480 /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; - F32A0F7045702BDFBAB9059CAD1938C9 /* Pods-ShareRocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ShareRocketChatRN-acknowledgements.plist"; sourceTree = ""; }; + F317354C786766822DD67A7E191EA343 /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; + F328B6D74BBFF9B06C0F13B48B5952DA /* SafeAreaSpacerViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SafeAreaSpacerViewLocalData.h; sourceTree = ""; }; F32DF292FF18701CD4296B0F2A789C71 /* Singleton-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Singleton-inl.h"; path = "folly/Singleton-inl.h"; sourceTree = ""; }; F338801AAA68464A8DC5F21FC676D9B0 /* FrameTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameTransport.h; path = rsocket/framing/FrameTransport.h; sourceTree = ""; }; + F339762AA8DD6F76C7A6BE4A9051877A /* RCTBlobPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBlobPlugins.h; sourceTree = ""; }; + F34314642ABA673A54A96879E876F970 /* Pods-defaults-RocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-defaults-RocketChatRN-dummy.m"; sourceTree = ""; }; F3489AA7582FB320BAC9935E0E332756 /* diy-fp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "diy-fp.h"; path = "double-conversion/diy-fp.h"; sourceTree = ""; }; F350699D1059C8E80FBC4C4DF05A2B0E /* MPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCQueue.h; path = folly/MPMCQueue.h; sourceTree = ""; }; - F357C42D8F67194A251ED42AC4325922 /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; F37CF827ECF3CB523CFB5303EAEAC16A /* FirebaseInstallations.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstallations.release.xcconfig; sourceTree = ""; }; - F3827BB984B7ABC0434A322609F43FF3 /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSCRuntime.cpp; sourceTree = ""; }; F38C5303F7B521491FE9BA5EC76CB6E8 /* FIRDiagnosticsData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDiagnosticsData.m; path = FirebaseCore/Sources/FIRDiagnosticsData.m; sourceTree = ""; }; F3B55915438E2A778BBDC814F29F37B8 /* evthread-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "evthread-internal.h"; sourceTree = ""; }; F3D4269EDDDB1D35DEE5FFE4C47815A6 /* AtomicUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUtils.h; path = folly/synchronization/detail/AtomicUtils.h; sourceTree = ""; }; F3D4718735FCE29271043BE67B3D5EF2 /* Sleeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sleeper.h; path = folly/synchronization/detail/Sleeper.h; sourceTree = ""; }; F3DD32D017B1DA9E161BB9E0F4188B94 /* FlipperKitLayoutPlugin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperKitLayoutPlugin.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin.mm; sourceTree = ""; }; - F3E3C00251FA9B60545F0823AD069F05 /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobCollector.mm; sourceTree = ""; }; F3F9C7E6CC836240AC4DBF3C75028666 /* CustomizationPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CustomizationPoint.h; path = folly/lang/CustomizationPoint.h; sourceTree = ""; }; - F3FAB8103792C1FF3B34011A42C1CE1A /* BSG_KSCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry.h; sourceTree = ""; }; + F401C944F2D198765DF6DC6A29B04212 /* BSGStorageMigratorV0V1.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGStorageMigratorV0V1.m; sourceTree = ""; }; F40F4D13C064134A3B808F152E583CC3 /* VirtualEventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VirtualEventBase.h; path = folly/io/async/VirtualEventBase.h; sourceTree = ""; }; + F4158AE7E59BBE121CFE1EC34EF5D4B8 /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = ""; }; + F426EC127A24804A5AF0A94BBCFFD9E3 /* BSG_KSString.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSString.c; sourceTree = ""; }; F42986ECFFA483050295D48982F1A735 /* SysTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysTypes.h; path = folly/portability/SysTypes.h; sourceTree = ""; }; - F434DB3EE2B06E0B657E9BD8CD2DF5B3 /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = ""; }; + F42A2624F056C94D80F5503354B73FFC /* REANode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANode.m; sourceTree = ""; }; + F458D12292FA35B08C9A39B64CF76800 /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = ""; }; F46660C998520D7CE088FE9B174D1ED5 /* openssl_aes_core.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = openssl_aes_core.cpp; path = Core/aes/openssl/openssl_aes_core.cpp; sourceTree = ""; }; + F47828A6ACE63FA46BE094630CED9783 /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = ""; }; + F478FCC2423FF68BE7E0D0291906F44A /* RNDateTimePicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDateTimePicker-prefix.pch"; sourceTree = ""; }; F479CFB21AB01D2A48131512847D204F /* FramedReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FramedReader.h; path = rsocket/framing/FramedReader.h; sourceTree = ""; }; F4894891D2683756B59E4356267E11C3 /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/Private/GULAppEnvironmentUtil.h; sourceTree = ""; }; - F48AF1ABA54338CDDA7EDAEE1D95BAE5 /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = ""; }; + F492C284CDCC72A9270CF65696729407 /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSIndexedRAMBundle.cpp; sourceTree = ""; }; + F4BA021EFDD407D4A27AEF8D47D838CA /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; F4C353ED5FA2A9612D4901DA4A0899F8 /* SDImageCachesManagerOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManagerOperation.m; path = SDWebImage/Private/SDImageCachesManagerOperation.m; sourceTree = ""; }; - F4D7F8A621A168F0A2BD6A18433DAC6B /* ARTTextFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTTextFrame.h; path = ios/ARTTextFrame.h; sourceTree = ""; }; F4DE545BA22392C8F815EBCF42429004 /* GULAppDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m; sourceTree = ""; }; - F4F0003594455DBED04D5A76AF26202A /* RNFetchBlobRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobRequest.m; path = ios/RNFetchBlobRequest.m; sourceTree = ""; }; - F502EF8E9167202CCFAAC5CC3DF495D9 /* FBReactNativeSpec.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBReactNativeSpec.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - F521A2B9C5B1DB08DC86C256CAD63D3A /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = ""; }; - F524BACD8B4939A2E07564D7F55F5BA5 /* RNBackgroundTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBackgroundTimer.h; path = ios/RNBackgroundTimer.h; sourceTree = ""; }; + F51458ED217868C4E220100B51E3EFC2 /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = ""; }; + F52F4AA3524EB137E5E1FCD4279DD068 /* EXAV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAV.h; path = EXAV/EXAV.h; sourceTree = ""; }; F52F845A189384EC9BBD6B8783511AD3 /* FBLPromise+Catch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Catch.m"; path = "Sources/FBLPromises/FBLPromise+Catch.m"; sourceTree = ""; }; F5344B45D2A5F2585D79F4084CC0F9EA /* FlipperUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperUtil.m; path = iOS/FlipperKit/FlipperUtil.m; sourceTree = ""; }; - F53F5FCE1D2FAE83457EFAB473F21020 /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworking.mm; sourceTree = ""; }; - F54D738D337896E6486097BA312D1F72 /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; F55B26C281E7CC639D090359C95AF714 /* Foreach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Foreach.h; path = folly/container/Foreach.h; sourceTree = ""; }; F563103478429FABE9D3126BBB73415A /* SDImageAPNGCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAPNGCoder.m; path = SDWebImage/Core/SDImageAPNGCoder.m; sourceTree = ""; }; - F58021416A62A986A53B2D12008A3F89 /* Pods-NotificationService-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-NotificationService-resources.sh"; sourceTree = ""; }; + F576BCC4172904927F23B98D1F64E741 /* BSG_KSDynamicLinker.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSDynamicLinker.c; sourceTree = ""; }; + F5771F51BE8367D62CF31BCD2A4FEB67 /* UMPermissionsInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.debug.xcconfig; sourceTree = ""; }; + F57E1E3DCF37995386576E9CD9D1DCE9 /* EXVideoThumbnails-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXVideoThumbnails-prefix.pch"; sourceTree = ""; }; F581C9A5F02DED7814305888D182DF40 /* ConnectionContextStore.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionContextStore.cpp; path = xplat/Flipper/ConnectionContextStore.cpp; sourceTree = ""; }; F581E23D64DDD0F3D518E17717970CA0 /* AtomicUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUtils.h; path = folly/synchronization/detail/AtomicUtils.h; sourceTree = ""; }; + F5851EAB8954DE15BC38C794A0139EA3 /* MessageConverters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageConverters.h; sourceTree = ""; }; + F59574F26EAD934B166EC8F9C822F2FD /* RNBackgroundTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBackgroundTimer.h; path = ios/RNBackgroundTimer.h; sourceTree = ""; }; + F5B377F6105317F97F4A000A3DDB28B5 /* EXVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; + F5BABE80C6537FD2891E8B6959445D25 /* RCTAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimatedImage.h; path = Libraries/Image/RCTAnimatedImage.h; sourceTree = ""; }; F5C23D5F46756EE864E58C1346D30056 /* thread_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_utils.c; path = src/utils/thread_utils.c; sourceTree = ""; }; + F5C24A28F7BE299202A4BE137E4D7B83 /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; F5C47C24A4E9B381B4471B21AF14D50F /* LifoSem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LifoSem.h; path = folly/synchronization/LifoSem.h; sourceTree = ""; }; F5C5DF4C60B77F8383B42AB7ACBA6C09 /* CpuId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CpuId.h; path = folly/CpuId.h; sourceTree = ""; }; - F5D89F29A947DC6B045EEFD749DC12CC /* RNFBCrashlyticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBCrashlyticsModule.m; path = ios/RNFBCrashlytics/RNFBCrashlyticsModule.m; sourceTree = ""; }; - F5DC1A318679E374AF8B617C6DA4652A /* Pods-defaults-Rocket.Chat-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-defaults-Rocket.Chat-frameworks.sh"; sourceTree = ""; }; - F5EFC72E888F0DEF201C70085870D40F /* QBImagePickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBImagePickerController.m; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.m; sourceTree = ""; }; + F5E7B4DED4D5A8CA8A2AC2E8E3B2E978 /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = ""; }; + F5EB7201D728C7DB3F37A71DB6AF6C98 /* QBAssetsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.h; sourceTree = ""; }; F5F787DF75B9E09594E5251817DDFB91 /* evdns.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evdns.h; path = include/evdns.h; sourceTree = ""; }; F60B8B4C00F766209BDBF4C89C226F47 /* lossless_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_sse2.c; path = src/dsp/lossless_sse2.c; sourceTree = ""; }; - F61399E0062A8409AB83BEB9179FB468 /* MessageTypesInlines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageTypesInlines.h; sourceTree = ""; }; + F619F6E9441077F0E51EB483160227A3 /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; F61AC29A434D8AD3AA33C42765183FBD /* Flipper-RSocket.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-RSocket.release.xcconfig"; sourceTree = ""; }; - F6365F25B9BDB0242DF234892A2C9ED6 /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = ""; }; - F6403C9B3737BF0A8227211F0D7E766A /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; + F61ACA5C6F1C50F250EAC26D616F95AE /* React-perflogger.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-perflogger.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; F64742258C6EF3E1F9C88DADBD27295E /* ReadMostlySharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReadMostlySharedPtr.h; path = folly/experimental/ReadMostlySharedPtr.h; sourceTree = ""; }; F656E9E9B098FF51164E8EDD69ECDCB0 /* upsampling_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_msa.c; path = src/dsp/upsampling_msa.c; sourceTree = ""; }; F664652BB858F525BA3D936AEB2F1E1B /* MMKVHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKVHandler.h; path = iOS/MMKV/MMKV/MMKVHandler.h; sourceTree = ""; }; F667AE46E263A7A517E722D9B783D79B /* FIRCLSOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSOperation.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSOperation.h; sourceTree = ""; }; F6841ECB79AB4A38CB837F68495B3AB0 /* tree_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_enc.c; path = src/enc/tree_enc.c; sourceTree = ""; }; + F68A5EB0647CE6880D14B79F96C6735C /* FBReactNativeSpec-generated.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "FBReactNativeSpec-generated.mm"; path = "FBReactNativeSpec/FBReactNativeSpec-generated.mm"; sourceTree = ""; }; + F68BA11CC0C275B67DC8ECAFC32E5A60 /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; + F68BDB89D6BB3EDD1ADD7F9F18B1F9C2 /* UMCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.debug.xcconfig; sourceTree = ""; }; + F6999E1FA5D1118E99918E215C000A6E /* RNPushKitEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventHandler.h; path = RNNotifications/RNPushKitEventHandler.h; sourceTree = ""; }; F69B4FD77A2ECAB40F80D5B29BFC7385 /* Rcu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Rcu.h; path = folly/synchronization/Rcu.h; sourceTree = ""; }; - F6A2F9F88877D6888B03E4A85A7EC47F /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; F6AB4587E201E4C23AB7619E10ED0427 /* evutil.c */ = {isa = PBXFileReference; includeInIndex = 1; path = evutil.c; sourceTree = ""; }; F6C380CA7A33FA313D82D9CB909D3CE4 /* Flipper-DoubleConversion.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-DoubleConversion.debug.xcconfig"; sourceTree = ""; }; + F6D0AB52E9908D40784364BCF9A2C284 /* Pods-defaults-Rocket.Chat.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-defaults-Rocket.Chat.release.xcconfig"; sourceTree = ""; }; + F6D284B7576715CC4396B43BE47D1555 /* RNReanimated.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.debug.xcconfig; sourceTree = ""; }; F6DAA1715ADF9A5DE86C19321C5B86A2 /* Iterators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Iterators.h; path = folly/detail/Iterators.h; sourceTree = ""; }; F6EA10A90AA1593D6A98F29E04F47B9E /* bignum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bignum.h; path = "double-conversion/bignum.h"; sourceTree = ""; }; + F6FC3E36C12BEA0B1BCE874338D485A7 /* notificationsEvents.md */ = {isa = PBXFileReference; includeInIndex = 1; name = notificationsEvents.md; path = docs/notificationsEvents.md; sourceTree = ""; }; F6FE7555EDE359A14D2F715534F474C8 /* Demangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Demangle.h; path = folly/detail/Demangle.h; sourceTree = ""; }; F706C3AD388C5F7FBE62C7B79AE8E90C /* Lazy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lazy.h; path = folly/Lazy.h; sourceTree = ""; }; F709182254F371DCB7FC9E4E5AD51402 /* firebasecore.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = firebasecore.nanopb.c; path = Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.c; sourceTree = ""; }; F7108AEA271F505A21FEBB5ABFFBDDCF /* AtFork.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AtFork.cpp; path = folly/detail/AtFork.cpp; sourceTree = ""; }; F711B71C9191D701EF0B6D739CAF2971 /* SDInternalMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDInternalMacros.h; path = SDWebImage/Private/SDInternalMacros.h; sourceTree = ""; }; F71D2A9EEEBCF6C9678A20634F0036C8 /* FIRCLSFABAsyncOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABAsyncOperation.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSFABAsyncOperation.h; sourceTree = ""; }; + F71DB06084160D809A34D0F0449453D5 /* MessageInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageInterfaces.h; sourceTree = ""; }; F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTBlob.a"; path = "libReact-RCTBlob.a"; sourceTree = BUILT_PRODUCTS_DIR; }; F71F5BB161EFE16845835C17D1071F44 /* SDImageTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageTransformer.h; path = SDWebImage/Core/SDImageTransformer.h; sourceTree = ""; }; - F72017B1E553A1F1E141A83638C9F120 /* RCTImagePlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImagePlugins.mm; sourceTree = ""; }; F73BB6947B4750A2A5E5F61F29384ACE /* YogaKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YogaKit.debug.xcconfig; sourceTree = ""; }; F741A695174331064C6F1F03D184685B /* RSocketRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketRequester.h; path = rsocket/RSocketRequester.h; sourceTree = ""; }; F75799BE5F54F996D3AE4DDCC29FB260 /* pb_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_encode.c; sourceTree = ""; }; - F7596430F9704FDF1F9AFF41AEB6B95C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - F75AEC7C349CCF5C83AE233BA364B853 /* RNBootSplash.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNBootSplash.release.xcconfig; sourceTree = ""; }; + F759368598F3CB12858EFD5919BB5FB1 /* BugsnagBreadcrumbs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagBreadcrumbs.h; sourceTree = ""; }; F77B5FF434ABB196616C9FDD68A45DBA /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Sources/Private/FIRDependency.h; sourceTree = ""; }; - F780277E54584A9B21DD9D411CED0CB7 /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.h; sourceTree = ""; }; + F784B594BAB762A38CFE432CC18FE196 /* RNGestureHandlerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerEvents.h; path = ios/RNGestureHandlerEvents.h; sourceTree = ""; }; + F7A188639F1627BFE03D870F23213D40 /* react-native-slider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-slider-prefix.pch"; sourceTree = ""; }; F7A64D41667778D33A9333B1C9294E2F /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = threadsafe.h; path = destroot/include/jsi/threadsafe.h; sourceTree = ""; }; F7A9DDBA9BFFE646492645017B4ED408 /* MemoryMapping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryMapping.h; path = folly/system/MemoryMapping.h; sourceTree = ""; }; F7B36E0655F52B09126B8CB05E74753E /* da-DK.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "da-DK.lproj"; path = "Objective-C/TOCropViewController/Resources/da-DK.lproj"; sourceTree = ""; }; - F7C3AFBD9437924674CF0B2832C89AD1 /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; - F7C4FB1E601E4EFDDFF23297713CBE33 /* EXImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXImageLoader.h; path = EXImageLoader/EXImageLoader.h; sourceTree = ""; }; + F7C40C88F5C3C5FE1938B1CEC0B1179C /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = ""; }; + F7D554F5ED674572E6525FC97E60D179 /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + F7E66212CF7771A3C2BB41F23B4A3798 /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; F80D14207A4BC374E1108E515C59113B /* GlobalShutdownSocketSet.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = GlobalShutdownSocketSet.cpp; path = folly/io/GlobalShutdownSocketSet.cpp; sourceTree = ""; }; F80EFFD5CEFD057F6C9AB017625E04C0 /* GULUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULUserDefaults.h; path = GoogleUtilities/UserDefaults/Private/GULUserDefaults.h; sourceTree = ""; }; + F83A4C8812F4CB19573C1DD3BB28018E /* Registration.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = Registration.cpp; sourceTree = ""; }; F83F91B2D05DD47B50B966F30439E031 /* TcpConnectionAcceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpConnectionAcceptor.h; path = rsocket/transports/tcp/TcpConnectionAcceptor.h; sourceTree = ""; }; F84258E26BD1F2E4F4E845499D19D291 /* vp8i_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_enc.h; path = src/enc/vp8i_enc.h; sourceTree = ""; }; - F84D001BE5ABD4E479DDA8F82AB46551 /* RCTRequired.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTRequired.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; F84D66B66D9C1D0B7FA28AC0AF726DA5 /* openssl_md32_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = openssl_md32_common.h; path = Core/aes/openssl/openssl_md32_common.h; sourceTree = ""; }; F84EC6F38F363EC3FADF882D35D98126 /* FlipperKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FlipperKit-prefix.pch"; sourceTree = ""; }; F850DA2AF3D46F85AD5CA6273D824993 /* Promise-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Promise-inl.h"; path = "folly/futures/Promise-inl.h"; sourceTree = ""; }; F857F1D4F6B0DA51D90C2E47D9113790 /* InterProcessLock_Win32.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InterProcessLock_Win32.cpp; path = Core/InterProcessLock_Win32.cpp; sourceTree = ""; }; F85832130A3148FE810602F0E05D38C5 /* Payload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Payload.h; path = rsocket/Payload.h; sourceTree = ""; }; - F86CCA2E39E21795B0A4DD98437E0605 /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; F87FD82161211A08881DC52942907F6B /* FlowableConcatOperators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableConcatOperators.h; path = yarpl/flowable/FlowableConcatOperators.h; sourceTree = ""; }; F8858511AF37F8A3D53D4FE0D621D8F9 /* RecordIO.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RecordIO.h; path = folly/io/RecordIO.h; sourceTree = ""; }; F893670BC5A985D6ABFC6BDA419F2EB6 /* Future-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Future-inl.h"; path = "folly/futures/Future-inl.h"; sourceTree = ""; }; + F89FCCEDA81EAB26185CEB2124BC010D /* RCTDevMenu.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevMenu.mm; sourceTree = ""; }; F8A293D697BEB0EB90B945383C617400 /* Hazptr-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Hazptr-fwd.h"; path = "folly/synchronization/Hazptr-fwd.h"; sourceTree = ""; }; + F8A34C931F8875081A4EE2BB1B802E30 /* UMPermissionsInterface-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMPermissionsInterface-dummy.m"; sourceTree = ""; }; F8A79B87F04F432DCEF4AB0A2C2E513F /* QuotientMultiSet-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "QuotientMultiSet-inl.h"; path = "folly/experimental/QuotientMultiSet-inl.h"; sourceTree = ""; }; + F8B921051AB4FF0A77981EF9913F6E3F /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = ""; }; F8BC1EE68A6BE949F205AF0A712CB58C /* CancellationToken-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CancellationToken-inl.h"; path = "folly/CancellationToken-inl.h"; sourceTree = ""; }; F8CD14050C72D23D91D42E504CB876EF /* GoogleAppMeasurement.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.debug.xcconfig; sourceTree = ""; }; F8CD2C6096A9D4F117D18EEE386A1A90 /* UncaughtExceptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UncaughtExceptions.h; path = folly/lang/UncaughtExceptions.h; sourceTree = ""; }; F8D2E7E327EF00F423CF3CB0003837EE /* MMKVLog.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MMKVLog.cpp; path = Core/MMKVLog.cpp; sourceTree = ""; }; + F8D50667E4ED06A26937DE3CB1093BF5 /* EXAudioSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioSessionManager.m; path = EXAV/EXAudioSessionManager.m; sourceTree = ""; }; F8FD5A216F32168394C74F3137AD387D /* AsyncPipe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncPipe.h; path = folly/io/async/AsyncPipe.h; sourceTree = ""; }; F905161DEF3AFDF41768E0E23B15FB64 /* FIRStackFrame_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStackFrame_Private.h; path = Crashlytics/Crashlytics/Private/FIRStackFrame_Private.h; sourceTree = ""; }; - F90D76EB274756CD3EE07685241DA074 /* TurboCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TurboCxxModule.h; sourceTree = ""; }; F90EED1DC20A348419D2B4FB2DCB70F7 /* EvictingCacheMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EvictingCacheMap.h; path = folly/container/EvictingCacheMap.h; sourceTree = ""; }; - F92DABAC5582855340129072E321DE41 /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; - F939FF814F33E9FED5111224746689AA /* VibrancyView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VibrancyView.h; path = ios/VibrancyView.h; sourceTree = ""; }; + F930708FEBC0293B5A61239E13D57DF1 /* Pods-defaults-Rocket.Chat-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-defaults-Rocket.Chat-dummy.m"; sourceTree = ""; }; + F93297EBA8996FF25D53F9E5C941A5A3 /* react-native-appearance-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-appearance-prefix.pch"; sourceTree = ""; }; + F9368D22615B059953CDCF32754A57A7 /* EXLocalAuthentication.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXLocalAuthentication.debug.xcconfig; sourceTree = ""; }; F9443F644AE9D404E5CF0E1FF4F41249 /* AsyncSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSocket.h; path = folly/io/async/AsyncSocket.h; sourceTree = ""; }; - F949EE0C22F3B9A07AA2BC2F5F4C78A6 /* RCTHmac.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTHmac.m; path = ios/RCTCrypto/RCTHmac.m; sourceTree = ""; }; - F94A29581BCCA01F862FDA6E66D05EB9 /* Restart.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Restart.h; path = ios/Restart.h; sourceTree = ""; }; - F94BF3FB54468D1F9CB960B3A59D0B05 /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; + F947BA1DC1389531D34C18DE2C6E1145 /* RNRootView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNRootView-prefix.pch"; sourceTree = ""; }; F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRCTTypeSafety.a; path = libRCTTypeSafety.a; sourceTree = BUILT_PRODUCTS_DIR; }; F9590B544AC71E50DB3D4A1FD459091F /* AsyncSocketException.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncSocketException.cpp; path = folly/io/async/AsyncSocketException.cpp; sourceTree = ""; }; F96321D27807E501875E9B7AD050A2D2 /* GDTCORLifecycle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORLifecycle.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORLifecycle.m; sourceTree = ""; }; F968A99F776F201893FF2E12F10DC872 /* MallctlHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MallctlHelper.h; path = folly/memory/MallctlHelper.h; sourceTree = ""; }; - F973876B2813A1AFAEECA1082BB53619 /* LICENSE.txt */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.txt; sourceTree = ""; }; + F969AB07C5F0F86647AD40EF77FD8A5B /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; + F96EAFECE7254CF38639FE8E3ECF86BF /* RNCConnectionStateWatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCConnectionStateWatcher.m; path = ios/RNCConnectionStateWatcher.m; sourceTree = ""; }; + F96FEC904C3C515E17B3C84FE3C2C8D5 /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; + F975E93D0FA1578E1A6F12A2B7879ABE /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; F9A922675A0AEE799DFC55AF54CD6D29 /* CancellationToken-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CancellationToken-inl.h"; path = "folly/CancellationToken-inl.h"; sourceTree = ""; }; F9AB6E248D04BFEA6DDB12144F24888A /* Ordering.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Ordering.h; path = folly/lang/Ordering.h; sourceTree = ""; }; F9AE333ECA95951FD8ED4424A16B3433 /* Retrying.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Retrying.h; path = folly/futures/Retrying.h; sourceTree = ""; }; - F9B9F8C09CB15EFED44B788E6C48F6F0 /* UMSensorsInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.debug.xcconfig; sourceTree = ""; }; - F9DAC87913E653A43B306891E2702175 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + F9AF0CE3E531CB7ECF512BA158A835A9 /* BugsnagPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagPlugin.h; sourceTree = ""; }; + F9C5B792F5BED323EE2A3FD36FAE2E44 /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; + F9DD0BC61611D57C9D11D949E99F4721 /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; F9EF06F5F49DEB53FEDFF233A23B10D5 /* GDTCORAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORAssert.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORAssert.h; sourceTree = ""; }; F9F717971EB4CADD925F4933F21D6A1B /* FIRCLSRecordIdentity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordIdentity.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordIdentity.m; sourceTree = ""; }; - FA01927C0F34FDE81C05B77D6AB327B8 /* RCTLocalAssetImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLocalAssetImageLoader.mm; sourceTree = ""; }; FA08E277E9507C2A0DA8E52FEC0EC8E5 /* RCT-Folly-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCT-Folly-prefix.pch"; sourceTree = ""; }; FA0A3AAE1D9214E3A5BF27D002C29A5E /* DistributedMutex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DistributedMutex-inl.h"; path = "folly/synchronization/DistributedMutex-inl.h"; sourceTree = ""; }; - FA2E8E55C0D5B46E3138211167244CD4 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTClipboard.h; path = React/CoreModules/RCTClipboard.h; sourceTree = ""; }; - FA38DF5A10384F7C38F6713D7579E2F7 /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = ""; }; - FA3B61A50C04962E80196BC37FB98A0E /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; + FA187242EBEDD3399949F29771D88BC5 /* ReactNativeART.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeART.debug.xcconfig; sourceTree = ""; }; FA3D6C41645AC0376301D491D6A72F1B /* filters_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_msa.c; path = src/dsp/filters_msa.c; sourceTree = ""; }; - FA437AE1A5188A2FB5942F77DEEE86A1 /* RNFBPreferences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBPreferences.h; path = ios/RNFBApp/RNFBPreferences.h; sourceTree = ""; }; + FA40170E5CE0A56BEF48BE0B6D7955AA /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; FA45F4A628D2428B77D2FC2F4E4BD03F /* HazptrHolder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrHolder.h; path = folly/synchronization/HazptrHolder.h; sourceTree = ""; }; FA5E26E72716FB2C14E4628E317D45D2 /* File.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = File.h; path = folly/File.h; sourceTree = ""; }; + FA71C084C162276FBC53CF96C82956E1 /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; FA78E89356894AB05B1E6C451A83D8CB /* InlineExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineExecutor.h; path = folly/executors/InlineExecutor.h; sourceTree = ""; }; - FAABF30F9DD73BF9BD603CBCA3A7CC40 /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - FAB355FBB0BB59C0EB7DCA71BE0091F2 /* QBCheckmarkView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBCheckmarkView.m; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.m; sourceTree = ""; }; + FA857FDABCDE1F76E178BF9A5E3828C2 /* EXAV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAV.m; path = EXAV/EXAV.m; sourceTree = ""; }; + FA91F551FEA0B48AF49F7EDFF5C38E56 /* BSG_KSFileUtils.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSFileUtils.c; sourceTree = ""; }; + FAC851118E62DB911AC0EB77960EE97A /* TurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TurboModule.h; sourceTree = ""; }; + FAC8A167DF1A7C0901FE50F1DE77AB71 /* RCTConvertHelpers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTConvertHelpers.mm; sourceTree = ""; }; FAD7A3F2CAE2409B8C2A9B0EE30BF275 /* RSocketServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketServer.h; path = rsocket/RSocketServer.h; sourceTree = ""; }; FAD97A42DFA849596624DD41A3ACE426 /* GDTCORTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORTransport.h; sourceTree = ""; }; FAE388C4C377F211302B9CBF05455030 /* Arena-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Arena-inl.h"; path = "folly/memory/Arena-inl.h"; sourceTree = ""; }; - FAEAC6790B55B14CC72C300E4264BB43 /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; FAFCCD7B99AE6159D261163AC8C4ABBF /* File.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = File.cpp; path = folly/File.cpp; sourceTree = ""; }; - FB09F2CC54808FC8464A3C01F66C2052 /* UMCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.debug.xcconfig; sourceTree = ""; }; + FB13979D42C83C133B136F38E22E8680 /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LongLivedObject.h; sourceTree = ""; }; FB1C906AA0D780C3960F0FCABF91285B /* TOCropViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropViewController.m; path = "Objective-C/TOCropViewController/TOCropViewController.m"; sourceTree = ""; }; FB1CD31848D10613306C97D58F26A6AC /* SKNodeDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKNodeDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNodeDescriptor.h; sourceTree = ""; }; + FB382A9A31F060BB77B2CC16756C177A /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; + FB39E988EB8A89967A85BB29D55C89AE /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; FB4559CDF57FC81DD76DA71C08892047 /* ResumeIdentificationToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ResumeIdentificationToken.h; path = rsocket/framing/ResumeIdentificationToken.h; sourceTree = ""; }; + FB66E981678899432AAEE22D2D1F4B7F /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; FB6FAD8F0183E86ACBFBD8A81BA7BF3A /* liblibevent.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = liblibevent.a; path = liblibevent.a; sourceTree = BUILT_PRODUCTS_DIR; }; + FB71298544C4A579C35EA82025B38F9A /* React-jsi.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.debug.xcconfig"; sourceTree = ""; }; FB93C116608C7D0893D4BF7038D99D1F /* FIRCLSNetworkClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSNetworkClient.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSNetworkClient.h; sourceTree = ""; }; - FBAD02DEE06C8AA685D1ECAF3C517369 /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = ""; }; FBB320002E181B764E4B39247F2C49AA /* Executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Executor.h; path = folly/Executor.h; sourceTree = ""; }; + FBCB658A9A1C862C5CC585CCE43230B6 /* RNGestureHandlerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerModule.h; path = ios/RNGestureHandlerModule.h; sourceTree = ""; }; + FBCC9D8F5D3463434F12152F53AD744A /* RNPinchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPinchHandler.m; sourceTree = ""; }; + FBD206A4E40645F8B1B0CA79E1EBD3D2 /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; + FBD63547CE6A0E4EBC76D27EBE26B64E /* MessageTypes.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = MessageTypes.cpp; sourceTree = ""; }; FBD951D0B0CC459A4AC6A1C86491F255 /* CocoaAsyncSocket-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CocoaAsyncSocket-prefix.pch"; sourceTree = ""; }; FBEBC8AE4B5592403820E4F187C46A48 /* SKViewDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKViewDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewDescriptor.h; sourceTree = ""; }; - FBF5EF33427EB1021979F026356D1E44 /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = ""; }; - FC0FDFB86CAAC3C697EE3DA169ACF6BB /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - FC350D2C00A929B13FA17CF6E28392FE /* EXVideoThumbnailsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXVideoThumbnailsModule.m; path = EXVideoThumbnails/EXVideoThumbnailsModule.m; sourceTree = ""; }; + FC1BC417DD12AC349999A332965BBB26 /* react-native-document-picker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-document-picker.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + FC3B2F6648E4E990484D03409B3C47C2 /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; FC3C2EC41A218DD33B6276EB82F35EF5 /* Executor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Executor.cpp; path = folly/Executor.cpp; sourceTree = ""; }; - FC501E102B843C7936DD95D5D5B667D5 /* RNCMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedViewManager.m; path = ios/RNCMaskedViewManager.m; sourceTree = ""; }; - FC59398D9683C51FA1488722D3DF0DD9 /* BSG_KSObjCApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjCApple.h; sourceTree = ""; }; - FC5DBB2DE839D5DDED62B77AABF05CB8 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; FC6D40DB7C45B03A921125161D7D475E /* FIRCoreDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsData.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h; sourceTree = ""; }; + FC74A77541F9CFAEA3B265B8EBB9F649 /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; FC77D4B7D9EDE13C7061E4AD80EBDD69 /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = SDWebImage/Core/SDWebImageOperation.h; sourceTree = ""; }; FC7E6596644453D30491DBA091AAF494 /* FIRCLSMachException.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSMachException.c; path = Crashlytics/Crashlytics/Handlers/FIRCLSMachException.c; sourceTree = ""; }; + FC83FB36E6881FC37B06AB32B3F37279 /* BSG_KSMach.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach.c; sourceTree = ""; }; FC882B53AD9232AB35FE1978D55A730F /* SDWebImageWebPCoder-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImageWebPCoder-dummy.m"; sourceTree = ""; }; + FCA58601E5C7F004185388335C86AF23 /* RNCSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaShadowView.m; path = ios/SafeAreaView/RNCSafeAreaShadowView.m; sourceTree = ""; }; + FCAF45D355DD370C372A77984C10FA2C /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; FCB7E3B5334ABF28474FCC48E3B1C68D /* FlipperClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperClient.h; path = xplat/Flipper/FlipperClient.h; sourceTree = ""; }; + FCB95C6F1EA0545E85DE1112C478B3C7 /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; + FCE82986B8F4C7BF2E760101EF43B205 /* Yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-prefix.pch"; sourceTree = ""; }; FCF61D9B2B75054A9A3185DDC609B7FF /* libSDWebImageWebPCoder.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImageWebPCoder.a; path = libSDWebImageWebPCoder.a; sourceTree = BUILT_PRODUCTS_DIR; }; + FD028CB98C9F9EFDFAFBE551B94565B8 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; FD05E41D3DBD6CEB5FA70823CF4C4329 /* FBLPromise+Any.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Any.m"; path = "Sources/FBLPromises/FBLPromise+Any.m"; sourceTree = ""; }; - FD1241FE7FB682EC9FE080EBFF4F091F /* MessageInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageInterfaces.h; sourceTree = ""; }; + FD082006079338D62D08663C33A48A59 /* BugsnagDevice+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagDevice+Private.h"; sourceTree = ""; }; + FD122D95D3FA4E6535A1CA894145D057 /* RNFBApp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBApp-dummy.m"; sourceTree = ""; }; FD1931A7004B7A0B8E31C246FAE641BB /* FIRCLSDwarfExpressionMachine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDwarfExpressionMachine.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfExpressionMachine.h; sourceTree = ""; }; FD1A4FB0F4464BD1370B5260F737A4F1 /* ieee.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ieee.h; path = "double-conversion/ieee.h"; sourceTree = ""; }; - FD1EF5716FFC8DCFEF86FFAB9C756377 /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; - FD28A8882BD06CC87979E71078B83948 /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Brands.ttf; path = Fonts/FontAwesome5_Brands.ttf; sourceTree = ""; }; FD2A557AEB83B8CC073A1184AB31527D /* nanopb.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.release.xcconfig; sourceTree = ""; }; FD35FC9A29C7C86E783D3C8A3A0DEF3A /* ConnectionContextStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionContextStore.h; path = xplat/Flipper/ConnectionContextStore.h; sourceTree = ""; }; FD3B4717E08D79F7EEEE2083AA6BD770 /* SDAsyncBlockOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAsyncBlockOperation.m; path = SDWebImage/Private/SDAsyncBlockOperation.m; sourceTree = ""; }; - FD3E2706FC8050FCFFC24061A7FAFF8D /* REATransitionValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionValues.h; sourceTree = ""; }; FD6C8D5A0B4CCBA5486FD113C97A9D07 /* Invoke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Invoke.h; path = folly/functional/Invoke.h; sourceTree = ""; }; FD7CEB9400B120D3967B693B0B157334 /* LockTraits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LockTraits.h; path = folly/LockTraits.h; sourceTree = ""; }; FD939B493E1F5FBBC1297B44B2E9A962 /* ExceptionWrapper-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ExceptionWrapper-inl.h"; path = "folly/ExceptionWrapper-inl.h"; sourceTree = ""; }; FD9EDEDEF1E88E6DCEF209BD0AF2F483 /* TimedDrivableExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimedDrivableExecutor.h; path = folly/executors/TimedDrivableExecutor.h; sourceTree = ""; }; + FDBD0C57A0C9A4AFF777B7532C045201 /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; FDCC2F6EA2E74361965F0588E6B7717B /* Foreach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Foreach.h; path = folly/container/Foreach.h; sourceTree = ""; }; + FDD204D61CE2D011A95FD93EAA25308B /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = ""; }; + FDD2686C962849789E028510F6F2B0A6 /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = ""; }; FDDAAF3643795C5D07BFB71694E8382D /* Sockets.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Sockets.cpp; path = folly/portability/Sockets.cpp; sourceTree = ""; }; - FE04340EFFCB5BDD23F2E89A693A4C15 /* FFFastImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageSource.m; path = ios/FastImage/FFFastImageSource.m; sourceTree = ""; }; FE0A9EDABB70F6E69735C65E4CB586B9 /* rescaler_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips32.c; path = src/dsp/rescaler_mips32.c; sourceTree = ""; }; + FE11B48849D25AB2247070F9E98D8372 /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; FE1E812071397E31AE21DFF368B781B1 /* TOCropViewControllerBundle.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = TOCropViewControllerBundle.bundle; path = "TOCropViewController-TOCropViewControllerBundle.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; FE2D8D8C28338380E5C7F236E7D59928 /* fa.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fa.lproj; path = "Objective-C/TOCropViewController/Resources/fa.lproj"; sourceTree = ""; }; - FE36B957CE88D2FE6144316620C87145 /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; + FE3BF3728F1CB1F893F7BFC06E6505EC /* RNNativeViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNNativeViewHandler.h; sourceTree = ""; }; FE5C2E5ECE500F046DDAEFBB1AA82A09 /* Sockets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sockets.h; path = folly/portability/Sockets.h; sourceTree = ""; }; - FE6978C1BFD7A6FC08CA45C6F0EA4A4B /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = ""; }; FE6D792B6328AAF68E46924D7F466631 /* AccessibilityResources.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = AccessibilityResources.bundle; path = "React-Core-AccessibilityResources.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; - FE6F9287AFCD6711FAC3B05939EFED99 /* RCTTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModule.h; sourceTree = ""; }; FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTAnimation.a"; path = "libReact-RCTAnimation.a"; sourceTree = BUILT_PRODUCTS_DIR; }; FE8D16AF667A7D8A41E9D13981967F3B /* FIRCLSSymbolResolver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSymbolResolver.m; path = Crashlytics/Crashlytics/Models/FIRCLSSymbolResolver.m; sourceTree = ""; }; - FE8D276AB3AA5B533C5AC77559727651 /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = ""; }; - FEA2202A80C1E07CF6A5EF8D8A538A0B /* rn-fetch-blob.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "rn-fetch-blob.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - FEB5A7252A9DF3D7C4AA43F7EE88AEBC /* React-jsi.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.release.xcconfig"; sourceTree = ""; }; - FEBBC62ADEBFA775C90FDF0872C45C81 /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = ""; }; FEC8FE60ECAE340F1C62F76ABB5097D5 /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = SDWebImage/Core/SDWebImageDownloaderOperation.h; sourceTree = ""; }; + FECF06704C4BCA91C6A43790DEB6D35C /* RNFBApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBApp.release.xcconfig; sourceTree = ""; }; FED12E0BDD67E0F93E53BEFCF504D270 /* MemoryIdler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MemoryIdler.cpp; path = folly/detail/MemoryIdler.cpp; sourceTree = ""; }; - FEDAF5ACD87B214AAEA697830ACF7991 /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; FEDED317099F2F9D101BBB2B59B5DC84 /* bit_reader_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bit_reader_utils.h; path = src/utils/bit_reader_utils.h; sourceTree = ""; }; FEEA2711BAA6C175F6373B87C94FEA5C /* Sse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sse.h; path = folly/detail/Sse.h; sourceTree = ""; }; - FEECD65FAC38562FFB6C5E0FF2168B3C /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = ""; }; FF00494CCECEB92C703520915AF2DF03 /* RSocketClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketClient.cpp; path = rsocket/RSocketClient.cpp; sourceTree = ""; }; - FF006A0A412AA1854D689DD897F38F09 /* QBAssetsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.h; sourceTree = ""; }; FF1278116DDF6E31C0A121D313ECD61B /* SysMembarrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysMembarrier.cpp; path = folly/portability/SysMembarrier.cpp; sourceTree = ""; }; FF1E5960C85CE08107861C1055BE68B1 /* FIRCLSdSYM.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSdSYM.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSdSYM.h; sourceTree = ""; }; FF259A97C6851A6DFEA8E80CC64AAE13 /* IndexedMemPool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IndexedMemPool.h; path = folly/IndexedMemPool.h; sourceTree = ""; }; - FF3D02A21C520585BF57DDADFDB4EAD1 /* BSG_KSSignalInfo.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSignalInfo.c; sourceTree = ""; }; - FF42441109A7D2E1225ED8FC43D4E0AC /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; - FF46ACCC55F4FE37AB6A1CA8D5F07D81 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; FF4A69A3C859B09ABE519C0CD4F41FC9 /* SocketFastOpen.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SocketFastOpen.cpp; path = folly/detail/SocketFastOpen.cpp; sourceTree = ""; }; + FF4FBD82B67BC08F0D6292D2D201F97D /* BugsnagHandledState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagHandledState.h; sourceTree = ""; }; FF502F3EBDB9A79E6731736B20C705A2 /* Poly.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Poly.h; path = folly/Poly.h; sourceTree = ""; }; FF6809C3B5759B98830548E16DE1858D /* SharedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedMutex.h; path = folly/SharedMutex.h; sourceTree = ""; }; FF6856A70766A3EF1370F83A8EB1690C /* EventBaseBackendBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBaseBackendBase.cpp; path = folly/io/async/EventBaseBackendBase.cpp; sourceTree = ""; }; FF6FDC0558CA5B4149283A7623418B24 /* SKInvalidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKInvalidation.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKInvalidation.h; sourceTree = ""; }; - FF7EF32F15C69A1611BB95FC89295AF6 /* CallbackOStream.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = CallbackOStream.cpp; sourceTree = ""; }; - FFA02D8B27A90553671499D9101EC88A /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = ""; }; + FF9B1705147C4A4C0497F3D38501F86C /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; + FF9C3D5930CF0F4DF3E43D8EC1FD1858 /* Hmac.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Hmac.m; sourceTree = ""; }; FFA8920602E194F719FDBCD36097B350 /* TOCropViewController.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TOCropViewController.release.xcconfig; sourceTree = ""; }; FFCE347A1CEBBD0FA95EFF4E15B38328 /* RCT-Folly.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "RCT-Folly.release.xcconfig"; sourceTree = ""; }; FFD1CAE105527CF63F11A820AD292567 /* GDTCORRegistrar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORRegistrar.h; sourceTree = ""; }; @@ -13387,17 +13818,25 @@ FFDB7FAA8CFF007C8D2DBF497D5F7D2C /* FIRCLSMachO.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachO.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachO.h; sourceTree = ""; }; FFDC7746794AB17CFB7150820479DF40 /* libFlipper-RSocket.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-RSocket.a"; path = "libFlipper-RSocket.a"; sourceTree = BUILT_PRODUCTS_DIR; }; FFEEEAA43F9E2279D73C849BE609807E /* SanitizeLeak.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SanitizeLeak.cpp; path = folly/memory/SanitizeLeak.cpp; sourceTree = ""; }; + FFFB3400D9B937F709EDAA8E0F84A585 /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ - 0476D78B811E978A754D00AAD4EA9AE0 /* Frameworks */ = { + 0615D9ED43AF53DF22ADA10E76905AAF /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 059449D46D8FD6C685DFF43B725C34E2 /* Frameworks */ = { + 06A3F9F481ED5BA74F32721A55EC4EED /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 06C7CFE6615FAB6FFC979FFD210C6D6B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -13411,6 +13850,20 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 094AC3245FADAF5DBBEA7ECAB638E8D1 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0A1622D4B45E86D4BA47153B70CCC6E8 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 0B2351201886A582A4987397C9CCFC27 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -13425,6 +13878,27 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 0C20EDC920BD0413FA427B46B3C71C6A /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0CDFE3C2D078FB44B58EF903F4DEAA7F /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0E524B4CD3E5901ECA12F9118A571F54 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 104CADF9830A7F3EE4AE9A75F54A98A4 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -13439,21 +13913,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 13849B7A0A283B36C5779F0A635DDDFF /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 172F476CA5A61759483A7819800102E7 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 179E66E1718A7CC64A7EDDFDC25E7501 /* Frameworks */ = { + 16D542A505F9763CF89BAE7EAC972694 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -13488,13 +13948,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 1CB02A67658BF9EF985FC4256F4B8967 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 1ED962D6EA0709DE61C4175410E7A40B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -13516,35 +13969,28 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 2392AAD6049195A17E754385221D60F4 /* Frameworks */ = { + 25FE4B6AC8DFEABC185404F013EDF4A9 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 2820E078F798E0621ED492A4B4F4F010 /* Frameworks */ = { + 2697CAACE81DB3F436C2C2696C976C23 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 29B38A9214567FC3B57159D039FDD113 /* Frameworks */ = { + 274DED14DC226F4FFEB0135F04B1EC27 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 2A324E4746DB80E29874AA089755B1E9 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 2B132CE394FCB8CCA93CEA9D8D02B288 /* Frameworks */ = { + 2AC53D729A9E0D2A2AC583B626B028BE /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -13558,13 +14004,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 30D413FC9ED22C2C42C52563F6483309 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 30E3918AE84084D603854F0E1F86097F /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -13572,14 +14011,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3167ADB16552EC0C486D6A1939E4B9ED /* Frameworks */ = { + 36A4838F1353C315E6135E06D576B5B3 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 37965C4B44CD30493B7D1FD1BECDE4CA /* Frameworks */ = { + 36F26C4C734E8588E99C9754140D3669 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -13600,14 +14039,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 39FE416F629FC3CDC75DD95CD6CF6EBD /* Frameworks */ = { + 3B634DFA44193ED6D4649980A7DC565B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 3B634DFA44193ED6D4649980A7DC565B /* Frameworks */ = { + 3D6EAB8755CEC7BF11F57D2E2C9531B9 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -13621,7 +14060,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 40E6B6A0F07187BC91D0AA2FBAA4888E /* Frameworks */ = { + 41BB1927509BDFF50ABBF429C29F99A7 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -13635,20 +14074,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 43C372FEA4081584E0F45A7025F2B6DC /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 43DF9D2E68C9F501A6A8FBE4F4039887 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 45DE0E46676F8DA0160E0E8BC44846A7 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -13656,7 +14081,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 475B0F8DA0AF2B2461EA4C4F715E8FD3 /* Frameworks */ = { + 47DD1A475E3F12C74B93009CC32A35D4 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -13670,6 +14095,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 4927BD1B98A84A2C86C7AB0612955C10 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 4FC3A63003CF26024AD51363D652F192 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -13677,27 +14109,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 50182B37454594304796B0F32F8BEC80 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 5088B630745F116C1C6C62B6D1AC4DA6 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 519223573291ADBF9B2C4AC20E3A498E /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 5600FF2636F70E74A5931C35672BC8BB /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -13712,35 +14123,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 5B6C5E8708BE022B93EC8821E8564DA3 /* Frameworks */ = { + 5BB61348516797F98DB7291477F25B93 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 5BE88CB16BF10A63308954D3A3240D3D /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 61F983BEDAFE853E33F34659614EF164 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 67021CCFF1BBA79C5AFA4D61CC0A282A /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 6880D65C338A33F255339A451A702A86 /* Frameworks */ = { + 5CB9AEADFD9920EE12A7AB31A87E6C9B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -13761,21 +14151,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 6D58224FD96376E857EE12668FDD6B7A /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 6E008439510B6ED114938115A0EB0462 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 6EFAD81D4B213D5DEE07058A24A3D260 /* Frameworks */ = { + 6F4D91982CA29811352BD9AA9D80D801 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -13789,7 +14165,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 729AE33DAFDEBCFB9094CE1AD63D23BF /* Frameworks */ = { + 76EF700C7CE56E8F5B6D1C077D2FEF53 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 772FAED248537EF7AAB5D93B26AC1D88 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -13803,14 +14186,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 80FF80A3DFCCEFD65569A1FE9203E7DB /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 812110F7DD66EC78E9DEF964A5813E11 /* Frameworks */ = { + 886C32514753C74BF10F98AD5099DBFB /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -13824,6 +14200,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 8BA1BE1AA86046F731A299A90F48F47C /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 8C31BB30375E33D666B7964BAE92F6F5 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -13831,14 +14214,28 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 8C3E3EE89FB808069A90389026C8C6FF /* Frameworks */ = { + 8D565FA49E6F0EFA98DE5496CD8AD27D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 8DDDBE31E70E0E99552D64EE81951650 /* Frameworks */ = { + 8F59E186ECE4687B417F87A75B24BAD0 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 8FCE07682FCCB59E7A8309D3F9FA6FB5 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 9019351B2013DBE70FFC962917EE6E8D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -13852,14 +14249,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 96A16D36210580A641228616EDEF16E7 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 97BFD4C14847B6BEDB0845DB8D1EDF30 /* Frameworks */ = { + 922C8248D4EBD9723ABBB0E242C6B7D8 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -13873,14 +14263,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 99C75404E330E2197D2E1A2D04160284 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 9CBB4F710C58A2A1CF18007B51B51E24 /* Frameworks */ = { + 9C947A33C1672CF907F182ED96F234B7 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -13894,14 +14277,28 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - A8C319088C621F415AECA7C9FCDFB123 /* Frameworks */ = { + A4475EB91C5C44D2A349A2ECD6B17401 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - AAD8BC25F21011EF09EE8965BD76BB7B /* Frameworks */ = { + A56E11ADBCC08C7D525CDBB967BFDC18 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + A821EBF7BEF1209B095AFE0F7D01AF9F /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + A8C319088C621F415AECA7C9FCDFB123 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -13950,6 +14347,20 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + B16361FAE64D27E46BE21FB0DFE5B6CF /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B18D6FC4695EE9D488646219D64136DD /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; B458B587EAFB173EBB3886C36D6C5861 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -13964,20 +14375,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - B6E295F9D866D6BAA718B9F92139B904 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - B75F3A0756FD1625D96EE7174073A4EA /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; B957C43085298A49DA950F909D0AC37C /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -13992,7 +14389,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - BCE62B42C4C7509DBC84703EE4FCCE40 /* Frameworks */ = { + BEE7F8065C4285BE5056ECAF04472D60 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -14013,7 +14410,35 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - D129FC3FF503A5CD4363809D0E08AC6D /* Frameworks */ = { + C36D034E8BA7B4FF22CE4D6F94D604FC /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + C44BB04015DF2257CD7DBA77075BE16F /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + C496617F801558CE8BE3D307D72565D3 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + C733EB8292891A1E95A574F173849A17 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + CAFAD5CA48A9F97C0F72849759ECB4D6 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -14027,6 +14452,20 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + D53569BC185C8976331FD2E0EFEEFFC7 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + D6A39A77ED1F270CD92DE17EE0AF1656 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; D9EE26D75106C7040260AD59BA022F32 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -14041,7 +14480,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - DD73490FB4A6F416707DD67D1922CAF3 /* Frameworks */ = { + DDC4D8C0F4080E0C98424DA76891575F /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -14062,6 +14501,20 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + E0BD34EC65CAEF7CE2B492D302B2C5BB /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E12E6A6310A53994D5F1643B28B9BCCF /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; E3E13ACB021F25C010579EFC639E312A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -14076,20 +14529,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - E907E77D6F488B4C842EC56F8A93D239 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - E92823B16502817B1480C140CB9E6C52 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; ED0B1D946D62FDBBC4994CCAA74F8F3D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -14097,14 +14536,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - F2A91F276EDF715851512B40C6E9B8C0 /* Frameworks */ = { + EF44AAFDF7D1EFE4BD2D0AEC87F54183 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - F62EDD4DF1D3907A2654586BAA0918F7 /* Frameworks */ = { + F5B4F2569A623305018E44F0E870F184 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -14146,13 +14585,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - FED70A3275AB9A54AED7F0CC298DC68E /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ @@ -14311,6 +14743,57 @@ name = webp; sourceTree = ""; }; + 0012CE52DF826E823DB925B46FA05058 /* React-RCTSettings */ = { + isa = PBXGroup; + children = ( + 0CC423979935EE595B6D7953492ABE5E /* RCTSettingsManager.mm */, + 697AD1D3EC759E22877C4FDBCFCF6816 /* RCTSettingsPlugins.mm */, + F2D81CCA0762A4A03BCFC78CE0764E76 /* Pod */, + DD6AF4948EC7F51B326A53CE0EE46600 /* Support Files */, + ); + name = "React-RCTSettings"; + path = "../../node_modules/react-native/Libraries/Settings"; + sourceTree = ""; + }; + 0051AE31E8160682B6666AF94FD43D76 /* React-CoreModules */ = { + isa = PBXGroup; + children = ( + AF33CE15513792246634152E3DCA3C2B /* CoreModulesPlugins.mm */, + 708F4376C358D7131052A82B9135C4A6 /* RCTAccessibilityManager.mm */, + 6ED4D25011BAD0ECDF0976D92211BF3F /* RCTActionSheetManager.mm */, + E6E79FE021EE1FF1B04B701B1D757EEB /* RCTAlertController.m */, + 2794BF391589D1CFB5280CB6BDDBE022 /* RCTAlertManager.mm */, + C32591EEDE3377EF9F2D1BAFD2185D97 /* RCTAppearance.mm */, + 696B1D52D0D68745C933A07535EEDDCF /* RCTAppState.mm */, + 86AA0BB8AB1F81709D8DAE74879B068D /* RCTAsyncLocalStorage.mm */, + 6D4488B3A6E4CE9B4FDFD87803624CEF /* RCTClipboard.mm */, + F2C8F1BCEEA27866D3346B8A49A98330 /* RCTDeviceInfo.mm */, + AB67EAA6F30A859AE4F167D603F2160B /* RCTDevLoadingView.mm */, + F89FCCEDA81EAB26185CEB2124BC010D /* RCTDevMenu.mm */, + 5ECE145F88E238B706A47CA042E7F8C0 /* RCTDevSettings.mm */, + A4E286F0D5D5A1C67FF8F09F07A85C09 /* RCTDevSplitBundleLoader.mm */, + 97B763A074EB5BD7EAE91979A432F6AC /* RCTEventDispatcher.mm */, + 773AEAE125E1B97FCE5EFAB6EFE16A8A /* RCTExceptionsManager.mm */, + 896D88B2987A64FD6E6A606176592663 /* RCTFPSGraph.m */, + 0CAE1967C4A341DC0BBDF6A55DE59DAC /* RCTI18nManager.mm */, + E5B537ACAE05A9107F8CA4D4676B8F34 /* RCTKeyboardObserver.mm */, + 1B3F7EED940B46ECFC021D632EC4EE86 /* RCTLogBox.mm */, + 2ED748BD35A98F47D36456871617E751 /* RCTLogBoxView.mm */, + BD6E8DBC6B22B90257F40CEF70FDC667 /* RCTPerfMonitor.mm */, + 5CC09DC9037224C3B66F8AC19F2B6059 /* RCTPlatform.mm */, + ADEFD5B66F064F5EDDCD15BA9C6B49FC /* RCTRedBox.mm */, + 2C17B2692915442C061B9BD0B2FC5D68 /* RCTSourceCode.mm */, + 0D4E47CF87EA1B46B2B44533C1B5C444 /* RCTStatusBarManager.mm */, + 86D860598D8AF40A45A7B59E29840C40 /* RCTTiming.mm */, + 6F815F8790C9087086FE9DE411255EBF /* RCTWebSocketExecutor.mm */, + 000055EB58F9954C08827947C49DEAA3 /* RCTWebSocketModule.mm */, + 36B571D5CDF18F9956567753B26DE890 /* Pod */, + 7F3B210349E9AB3E3EADD2AB592D867D /* Support Files */, + ); + name = "React-CoreModules"; + path = "../../node_modules/react-native/React/CoreModules"; + sourceTree = ""; + }; 009C51A2701501821F87CBCF6497D66D /* Support Files */ = { isa = PBXGroup; children = ( @@ -14332,28 +14815,65 @@ name = FlipperKitHighlightOverlay; sourceTree = ""; }; - 014A1C605139DEE8D22E78D3F0C3EBEE /* DevSupport */ = { + 012DBFA344725E841C467E35D87FC881 /* EXConstants */ = { isa = PBXGroup; children = ( - C5C7FF1D4FB2E576212F7738AE527ED4 /* DevSupport */, - 4BF02B916071020C87344407C9B328A1 /* Inspector */, + BA3C1544B3D3A1541D6FC1E84475A9C8 /* EXConstants.h */, + D9F75E7DAE922168FF40B90D585476A7 /* EXConstants.m */, + 99A6421B152D69680B967E3A392F1F99 /* EXConstantsService.h */, + 2A213939D88D46C9D88D0BBCEF62E13D /* EXConstantsService.m */, + CB9661D71BCD7348E4BC7B92F1AD56D0 /* Pod */, + FDC62708DB0A95B2B84A97F1E0E256EB /* Support Files */, ); - name = DevSupport; + name = EXConstants; + path = "../../node_modules/expo-constants/ios"; sourceTree = ""; }; - 0276DCECECD9E7B7DAFB87AE750122A3 /* Default */ = { + 02189358DA22899E52E53CE4299E2518 /* UMViewManagerAdapter */ = { isa = PBXGroup; children = ( - 9E56DF00BFEC83E14B493CF337DBC260 /* Base */, - A11B4C6C8952F23DD4C8FB2460995015 /* CxxBridge */, - EFC5F81762CC2C35573244B061EFF52E /* CxxModule */, - 4CFE53D1D26552E17DDAF59E8E9A9C39 /* CxxUtils */, - B2C5912E7C2A9594A77C368F40E5EF6E /* Modules */, - ED0E73A0A708B8CFBE99678FC397DD37 /* Profiler */, - 48B095821B3F2151CAFB6FD1541E6F73 /* UIUtils */, - 45096ED5C4A92E0469A020155DE2A411 /* Views */, + A8B24971382BB080E93170E98E414535 /* UMViewManagerAdapter.h */, + BB8D81B8EB25444591F57C018D815DEE /* UMViewManagerAdapter.m */, ); - name = Default; + name = UMViewManagerAdapter; + path = UMReactNativeAdapter/UMViewManagerAdapter; + sourceTree = ""; + }; + 0232CDC089ABCD0FFD2CD6C7209AFFCD /* Filters */ = { + isa = PBXGroup; + children = ( + 3D6A7D1051A44C58772B267CE3C0CB9D /* BSGOnErrorSentBlock.h */, + ); + name = Filters; + path = Filters; + sourceTree = ""; + }; + 029BF0B569B93D06A7FB9DC6E0DE1338 /* ReactNativeUiLib */ = { + isa = PBXGroup; + children = ( + D5F0CA470DA4BE6B46050DA749D431CB /* highlighterview */, + BB9FF11C4412FB2EBC8E2587466E69A1 /* keyboardinput */, + B16EB19843469B10D649ED357705821C /* keyboardtrackingview */, + 347C38F6F21989397AC3CB18A4E7C341 /* Pod */, + A58FB0DC3EEEF0A80F13C0D7CAC969AD /* safearea */, + 27C6A48BE3DEDE8FE6166EB7BF79F808 /* Support Files */, + ); + name = ReactNativeUiLib; + path = "../../node_modules/react-native-ui-lib/lib"; + sourceTree = ""; + }; + 0310FA1F7CAEBC972DEA0F3438CB2395 /* KeyCommands */ = { + isa = PBXGroup; + children = ( + BF72C69834CD282DFCE8ACCEEB7995E4 /* RCTKeyCommandConstants.h */, + 583CAA829AE25EB98694B65A874253F7 /* RCTKeyCommandConstants.m */, + 7BD4BC06C4F2B33F49A31B34CEFC5BAE /* RCTKeyCommandsManager.h */, + 598032C41ED7209D4D75542FF1256B60 /* RCTKeyCommandsManager.m */, + 878EAAEFA33FFD1622DBCF1CA2AAA4A4 /* Pod */, + 57607476FB45C52C9F3CF22F8AC2CEA8 /* Support Files */, + ); + name = KeyCommands; + path = "../../node_modules/react-native-keycommands"; sourceTree = ""; }; 038CFA8CF16A391D11D40F6BB3294922 /* TOCropViewController */ = { @@ -14385,56 +14905,25 @@ path = TOCropViewController; sourceTree = ""; }; - 0435F8374CA9EE6E75CAC2B60B667D38 /* Pod */ = { + 06254E569651D28305BFE2D742C32E4F /* Nodes */ = { isa = PBXGroup; children = ( - 7D232688AE46532D2447393A3A564800 /* LICENSE */, - 57F10CEC1473367D8AD232FDECDB57FE /* README.md */, - 98889911AB084255DF75BAB3DD150DE5 /* RNCAsyncStorage.podspec */, + 6ED44C6E2CAA76255A8A8349F38A9EC4 /* RCTAdditionAnimatedNode.m */, + 87E47624EA5966C953C89E28C2FA8F10 /* RCTAnimatedNode.m */, + 3C4440B36E277CE16DA33BC400C130CC /* RCTDiffClampAnimatedNode.m */, + 2BA3E5792BCC8BDA3697E65514DAA0E4 /* RCTDivisionAnimatedNode.m */, + B1BC2E3C86586718127703C3E68A9E23 /* RCTInterpolationAnimatedNode.m */, + EBB7562BD808A9A1D1BC43A8E0459F7E /* RCTModuloAnimatedNode.m */, + 02FF1085A4CCD4E09581C17A9D3F00D0 /* RCTMultiplicationAnimatedNode.m */, + DAFAD979CBC200B5DB75C39E4AE29EED /* RCTPropsAnimatedNode.m */, + 8D9037CD1178822F4B7F101ED0CEE3EA /* RCTStyleAnimatedNode.m */, + 43CFFE187D922E2A69DF28EEEF6CB5D5 /* RCTSubtractionAnimatedNode.m */, + 43D4CFD7E0C1B4DBC898DD936DB82101 /* RCTTrackingAnimatedNode.m */, + 0A99368FA9B7C56371503B6CE44602A8 /* RCTTransformAnimatedNode.m */, + 70A8F6F5498FFF2183DE83495A2A6750 /* RCTValueAnimatedNode.m */, ); - name = Pod; - sourceTree = ""; - }; - 053D706F11A9E5FE5F70F3C0E78442ED /* Pod */ = { - isa = PBXGroup; - children = ( - 6FB553E345465ACCFBEA29590F793975 /* React-RCTActionSheet.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 05DDC1AF8253CA2D88EB4BAC905C065D /* Support Files */ = { - isa = PBXGroup; - children = ( - EB7BACB70711FEE33C63C4B99A0D7C6E /* react-native-background-timer-dummy.m */, - 0E889720CB30E7395D653477B9C164E5 /* react-native-background-timer-prefix.pch */, - 79080FFBD5863F916E0FBD16D55AA057 /* react-native-background-timer.debug.xcconfig */, - 33AC6CD2B0CB268E08F66AFC7741163D /* react-native-background-timer.release.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-background-timer"; - sourceTree = ""; - }; - 062A3BD871C3997403354F6208B81B7C /* Support Files */ = { - isa = PBXGroup; - children = ( - 6FF7222CF7B231FA58FF160C0DDDFBB2 /* react-native-simple-crypto.modulemap */, - 3E369252A69920EB832267852262ED84 /* react-native-simple-crypto-dummy.m */, - 83FED3058E5CBB81A370C617DEADE879 /* react-native-simple-crypto-prefix.pch */, - 97AC38E821A76BC80DECB5E78AC5FF76 /* react-native-simple-crypto-umbrella.h */, - 8DA4BFF194EB97853DBDCD87D0D9573F /* react-native-simple-crypto.debug.xcconfig */, - 5B2254B969B01665658D2FAC2D991BC8 /* react-native-simple-crypto.release.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-simple-crypto"; - sourceTree = ""; - }; - 06F667483E89EF1530CA64ABD70BC363 /* Pod */ = { - isa = PBXGroup; - children = ( - 9F121E95B254082EF187287D6D3ED984 /* FBLazyVector.podspec */, - ); - name = Pod; + name = Nodes; + path = Nodes; sourceTree = ""; }; 078C4ABBF9B38F7D5C6DB692554B1C8D /* Support Files */ = { @@ -14470,76 +14959,58 @@ path = glog; sourceTree = ""; }; - 07E49D0620CF13E4330DF2FC26F45F12 /* Support Files */ = { + 08493E7480FC1038F8F5F21F1D41AA2B /* Pod */ = { isa = PBXGroup; children = ( - 7DB4E8B56F16D9070533E4CE8D2AEE0C /* EXWebBrowser-dummy.m */, - F521A2B9C5B1DB08DC86C256CAD63D3A /* EXWebBrowser-prefix.pch */, - 7B7B5399A4E1E6F214BD725F1FA4635A /* EXWebBrowser.debug.xcconfig */, - 7C08C6D39091B515F437109B741BC482 /* EXWebBrowser.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; - sourceTree = ""; - }; - 0831BC4FD199209E84A1BAC6D5BF844F /* Hermes */ = { - isa = PBXGroup; - children = ( - D0F1A11F0EFBCF7EEF5BEFC51B1C1438 /* executor */, - 15DD9F63AF309D59208FF319B71ABB7E /* inspector */, - ); - name = Hermes; - sourceTree = ""; - }; - 0857DFDC630843C9C35E787B439C1887 /* Pod */ = { - isa = PBXGroup; - children = ( - ECCC4D99A7D1426CB985B465695A7BEC /* LICENSE */, - 25BE79F8F3AC899AA194FF71777FDA12 /* README.md */, - C7F5ED3DFB3B1834F83E316FB57014E3 /* RNConfigReader.podspec */, + E384D9EEFFAFC41DAC815088C09F4FA1 /* README.md */, + 281DED7A5AC3482F24B86FA5ED70B94A /* RNRootView.podspec */, ); name = Pod; sourceTree = ""; }; - 0869A065315E66BD005428193A50F1DB /* Pod */ = { + 0874FE68C60470262F19A57B0AC74BEB /* Support Files */ = { isa = PBXGroup; children = ( - F9DAC87913E653A43B306891E2702175 /* LICENSE */, - 3C413AF8991A80C938E8C801569B2C9E /* README.md */, - C61E6249027BB6A7E43EA2CDFD96D560 /* RNScreens.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 0873D9FEBBE4BDD7AD0AE06A2FF711D2 /* Support Files */ = { - isa = PBXGroup; - children = ( - 5F2683A971E15880EF5B327BD5626263 /* React-CoreModules-dummy.m */, - 33390B7DAC1790AE2305451D1FD959DE /* React-CoreModules-prefix.pch */, - 27A4A26B39865A6CB46806501B41B410 /* React-CoreModules.debug.xcconfig */, - 05B71D0B3B63ED61565A82C802E2D594 /* React-CoreModules.release.xcconfig */, + 5DE1DEECA7B95C2F487E21F26B6995B3 /* RNDateTimePicker-dummy.m */, + F478FCC2423FF68BE7E0D0291906F44A /* RNDateTimePicker-prefix.pch */, + 1076C197124588FD6485535FFF0916BD /* RNDateTimePicker.debug.xcconfig */, + 1B5F6CEE5D7CFF670C9C2F1FC8621A17 /* RNDateTimePicker.release.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-CoreModules"; + path = "../../../ios/Pods/Target Support Files/RNDateTimePicker"; sourceTree = ""; }; - 08B3A9DDE7FB769634DFB4D9DB78A7A1 /* RNImageCropPicker */ = { + 091C7C2E680ABBE8944BB4E230A85B4E /* Support Files */ = { isa = PBXGroup; children = ( - F92DABAC5582855340129072E321DE41 /* Compression.h */, - BC5C7D47ADB7665AD15EB38241F8559A /* Compression.m */, - 2FE8133B0C25ADFC09E0B2934C23999D /* ImageCropPicker.h */, - 0C8E3F87F676BB4FBB8E2BA9B719E892 /* ImageCropPicker.m */, - E5E9BF5E99B5E51AD55B2218BC2695F4 /* UIImage+Extension.h */, - 6B0E7E1DACD749F5D83A7FDE42D5C858 /* UIImage+Extension.m */, - 8C598E27AD7DB764D597A04471162067 /* UIImage+Resize.h */, - FAEAC6790B55B14CC72C300E4264BB43 /* UIImage+Resize.m */, - DE53470C2AEE4CC8E60E3361B61CCC9C /* Pod */, - 16B55907FCBB15E3796478B7699D7542 /* QBImagePickerController */, - 3C2C724B4706E8223D1D2F0C0E7419CA /* Support Files */, + 6DD121FD76E97C58E23365FDFC628B14 /* EXImageLoader-dummy.m */, + 0A7C4523B69E2AA2672DFA346EE4BE43 /* EXImageLoader-prefix.pch */, + E1483CD8DB8D1F9F325FC40E006F8437 /* EXImageLoader.debug.xcconfig */, + E311AF75C55D8D925493BFE2F1C09138 /* EXImageLoader.release.xcconfig */, ); - name = RNImageCropPicker; - path = "../../node_modules/react-native-image-crop-picker"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXImageLoader"; + sourceTree = ""; + }; + 0928B51CE3E1E654EF6139AEC2243BD1 /* Nodes */ = { + isa = PBXGroup; + children = ( + 70D108EC355DF85A27E3C4DBC75DF773 /* RCTAdditionAnimatedNode.h */, + 56E5FA42808A7E3FA3882E05796F2BE2 /* RCTAnimatedNode.h */, + FCB95C6F1EA0545E85DE1112C478B3C7 /* RCTDiffClampAnimatedNode.h */, + ABC0FE0AC4418ABB1EABFD7ED37E3D6F /* RCTDivisionAnimatedNode.h */, + DF924119346381ACE894F12EB6E0AF5E /* RCTInterpolationAnimatedNode.h */, + FA71C084C162276FBC53CF96C82956E1 /* RCTModuloAnimatedNode.h */, + E75DC717CE866A378A65C768DBF983EE /* RCTMultiplicationAnimatedNode.h */, + E759369F67438720C9E32980E6886097 /* RCTPropsAnimatedNode.h */, + F9C5B792F5BED323EE2A3FD36FAE2E44 /* RCTStyleAnimatedNode.h */, + 5FE6C989797E55076A1A74AF992750C5 /* RCTSubtractionAnimatedNode.h */, + D570269BE6A7372A8F825DF7468EFFD9 /* RCTTrackingAnimatedNode.h */, + 03FBFF30594F0CEA591FF451970653F4 /* RCTTransformAnimatedNode.h */, + 2A2E31F1D554AB0E4ED50E5806B88B3E /* RCTValueAnimatedNode.h */, + ); + name = Nodes; + path = Libraries/NativeAnimation/Nodes; sourceTree = ""; }; 09F60EF4922F0B81EC1E179E66BCF4B3 /* Support Files */ = { @@ -14553,12 +15024,64 @@ path = "../Target Support Files/FirebaseInstallations"; sourceTree = ""; }; - 0A36BC12B7FEFF81A3E8ED25C9DFFA08 /* Pod */ = { + 0A40D5E22B5A4885069D0691AE56BE4D /* UMCameraInterface */ = { isa = PBXGroup; children = ( - 28869E678ABEEEC133EF65E97FD6A5EE /* UMCameraInterface.podspec */, + D8D01FDBB13E714AD1DA9DEFE7609ACE /* UMCameraInterface.h */, + D06623C9D46AC971A9EC0B8EBE0104FF /* Pod */, + 3B8B1DF98386A9823FE884510BFF7F14 /* Support Files */, ); - name = Pod; + name = UMCameraInterface; + path = "../../node_modules/unimodules-camera-interface/ios"; + sourceTree = ""; + }; + 0ABAE5E9F152B0A5E14A3544DEACD0E6 /* Support Files */ = { + isa = PBXGroup; + children = ( + BF5415DDB9E4FE5CFE25F782B29B7048 /* React-cxxreact-dummy.m */, + C3ACADAB2B34DCE52AC92C162C411639 /* React-cxxreact-prefix.pch */, + 443779677599696911099703F1E27B42 /* React-cxxreact.debug.xcconfig */, + 31A1445D31D37F28425B528799C43F1F /* React-cxxreact.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-cxxreact"; + sourceTree = ""; + }; + 0B4F336C514F383337AD55993EEFA77B /* RCTNetworkHeaders */ = { + isa = PBXGroup; + children = ( + B55B72929A8B06D0ABA87CB5C61D4A15 /* RCTDataRequestHandler.h */, + 11DAD95EB383741A607A74A0E7158358 /* RCTFileRequestHandler.h */, + FC74A77541F9CFAEA3B265B8EBB9F649 /* RCTHTTPRequestHandler.h */, + C9F7D7AF91C7C14AE0306582CCBDCC34 /* RCTNetworking.h */, + 1A7CE26C0CA1D4575095C3AD73588D7B /* RCTNetworkPlugins.h */, + 78B7E72795E2B29EDDE0ACDB1A9D248B /* RCTNetworkTask.h */, + ); + name = RCTNetworkHeaders; + sourceTree = ""; + }; + 0B53B07E2A4EBC1FA87BED8D187FEEE1 /* react-native-cookies */ = { + isa = PBXGroup; + children = ( + 8443DF482A4A09A72E9EE2EF68264AA6 /* RNCookieManagerIOS.h */, + 810D5871ADA0B4191B15B5E4A9394733 /* RNCookieManagerIOS.m */, + 45936C54D08E5A57C991B0222E4E9BEF /* Pod */, + 5815DF1EE4F4138F356D334F99315099 /* Support Files */, + ); + name = "react-native-cookies"; + path = "../../node_modules/@react-native-cookies/cookies"; + sourceTree = ""; + }; + 0B691A079711499CB39AA67B7945F227 /* Support Files */ = { + isa = PBXGroup; + children = ( + 2949045990424B924BB4ACE1FF5B0454 /* EXPermissions-dummy.m */, + 4A3539FC5276FDA9160CBF06662BF190 /* EXPermissions-prefix.pch */, + 120C448D23A1D2880C0A29639A4D28E3 /* EXPermissions.debug.xcconfig */, + EB549B703A202BC1F8F18BA6CA72C26B /* EXPermissions.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXPermissions"; sourceTree = ""; }; 0B8BD02255C2CA937F4BF1379B80F7E9 /* Support Files */ = { @@ -14572,157 +15095,112 @@ path = "../Target Support Files/FirebaseCrashlytics"; sourceTree = ""; }; - 0C72DC48C28463999EB35AEE75E6DA6A /* react-native-notifications */ = { + 0C72D09103A95D8FF37F9A28510E4133 /* Pod */ = { isa = PBXGroup; children = ( - 6FC0225CC3853B5DABF6CFEF92183314 /* RCTConvert+RNNotifications.h */, - CCDB30CF5A656CC69458A78528C52015 /* RCTConvert+RNNotifications.m */, - 933DCB7DEC624B679142B6159AD63A95 /* RNBridgeModule.h */, - 9B622BBDDE413F5F8AE95CA69669A227 /* RNBridgeModule.m */, - 0E1727E8F69A95E33E2459FA916B0880 /* RNCommandsHandler.h */, - 934C200D580B365763E277BADD70B777 /* RNCommandsHandler.m */, - 0AE0F59D643A8384601A0A88A0232375 /* RNEventEmitter.h */, - DB69D1D9A4730E68494B03AD7056A429 /* RNEventEmitter.m */, - 937390C7D5C482A8CBDB82C6853E5501 /* RNNotificationCenter.h */, - C2FAA18C7812E76A1D3B307E87E9A280 /* RNNotificationCenter.m */, - 673AC98601EA685ECC95DCF683933C54 /* RNNotificationCenterListener.h */, - 5CA7ECB7CF77BAF895C2BAB733C0766E /* RNNotificationCenterListener.m */, - 7075F2303111FFA440AA3570F1AED4E7 /* RNNotificationCenterMulticast.h */, - 1BA5299B024B88BB58761B11E1095029 /* RNNotificationCenterMulticast.m */, - 12372EC8D24C793A3E820C2F3DA1D714 /* RNNotificationEventHandler.h */, - 1636D8949DE4789E5AB30988C7FED07D /* RNNotificationEventHandler.m */, - 0D0E62BD41B5014578C906A77BBF477F /* RNNotificationParser.h */, - 21B24D49253EBDA6825FFC23C8EC2C70 /* RNNotificationParser.m */, - 29A7CD22B9B99E12469FC6E951B08C6A /* RNNotifications.h */, - 2598E914567D704F311E434B75315CB7 /* RNNotifications.m */, - C63BCDFA62544D31E8348317DA78A2ED /* RNNotificationsStore.h */, - D87FBE06E359D8DF84E696F78CA6F1DA /* RNNotificationsStore.m */, - 1AAB4A336F5A139D39EACC06BB3355F3 /* RNNotificationUtils.h */, - 92A49EE85EF12F05E97E56753349B854 /* RNNotificationUtils.m */, - D8DF7AFABBA68397F89064647D969B79 /* RNPushKit.h */, - 844DD2443B6ABF176775F2DD005A932D /* RNPushKit.m */, - 058B2CCF1D86628F70EEB3EC7A7F4DCC /* RNPushKitEventHandler.h */, - 3D4520260EFE9D2140A4EBEBF1CA252E /* RNPushKitEventHandler.m */, - 6780A66BC4062D4ABA53E6B60F07CBBE /* RNPushKitEventListener.h */, - 9CCEAF19D75CA0E17BFF341735F75F95 /* RNPushKitEventListener.m */, - DCF729858FDF504C4745080236525B43 /* Pod */, - 10AF35A7F5801587EE029A4585F1A3D0 /* Support Files */, - ); - name = "react-native-notifications"; - path = "../../node_modules/react-native-notifications"; - sourceTree = ""; - }; - 0CD81BEE4E22A03B88757DA1E031B673 /* react-native-blur */ = { - isa = PBXGroup; - children = ( - 8BE4CFE9565176BE22DC0163128A6039 /* BlurEffectWithAmount.h */, - C8C8AA3D6ACB6ED86523B0A123FEACC3 /* BlurEffectWithAmount.m */, - CB8AFFD93FA677A9A84FBDFA269DA871 /* BlurView.h */, - F260606E5399E019816C05F8D9C28BEE /* BlurView.m */, - 68552BEDC89D66210CD1DAC47C465168 /* BlurViewManager.h */, - 7214962918216B419B8D26296C62CF6A /* BlurViewManager.m */, - F939FF814F33E9FED5111224746689AA /* VibrancyView.h */, - 0FBD9BE306B9C8FC6C6C3F8EA469C13A /* VibrancyView.m */, - 57C4CE6F525A7E042FC0D6770E33DD76 /* VibrancyViewManager.h */, - 42B00DB0587074A3C1364495D0F9CCBD /* VibrancyViewManager.m */, - 454C9C94B0FB476BE31710E198A41859 /* Pod */, - 58FD828B73ED25F82CD20C0E6E2914D2 /* Support Files */, - ); - name = "react-native-blur"; - path = "../../node_modules/@react-native-community/blur"; - sourceTree = ""; - }; - 0D5032268302431E420B2FAC910C30FE /* Pod */ = { - isa = PBXGroup; - children = ( - CBA413151A287EB64FFA9830FAED7C5E /* LICENSE */, - 252D65C58D49F07778E4F08C39EB8282 /* README.md */, - 8F1A2EC59B0D17DD1DA13F45E440DAA6 /* RNReanimated.podspec */, + E82511315009324355D2E12F76D4A1CD /* LICENSE */, + 8215C5F33AEA1B010AC029A40C872169 /* README.md */, + 1C363FF244E55F1750F22E78AB8BFCD8 /* rn-extensions-share.podspec */, ); name = Pod; sourceTree = ""; }; - 0DBC32DB481BD8B45EF0CA95FE91FEBE /* UMAppLoader */ = { + 0E1EF7FD04745BCA08893FF3D93320FB /* Pod */ = { isa = PBXGroup; children = ( - 566570BDA47DC31BBAED8966AF990BAA /* UMAppLoaderProvider.h */, - 1B21F32BA07D0FD9583EA741D25ED58E /* UMAppLoaderProvider.m */, - BECA427D890683D3DF13CB8980C8B73F /* Interfaces */, - 68B8413996B18ED5BF29A675B2D7840C /* Pod */, - E0F37EFEED6A52339AE62242427E93CE /* Support Files */, - ); - name = UMAppLoader; - path = "../../node_modules/unimodules-app-loader/ios"; - sourceTree = ""; - }; - 0E17BDF10EF6BEC1BA37417DC8E09C31 /* Pod */ = { - isa = PBXGroup; - children = ( - 890233325EC57DDFD53354C5A83DA51A /* EXKeepAwake.podspec */, + 081CDA12B85E6970A4DD9FBE607A3AAB /* LICENSE */, + 25DB1A2CD425834D51DBF9951B90345A /* react-native-safe-area-context.podspec */, + 338D4E099E55BDD65470E14BF5332F87 /* README.md */, ); name = Pod; sourceTree = ""; }; - 0E4AC6E60BFB56307012B97532DBBD22 /* Support Files */ = { + 0EC07F7CFED2E62168EAF9271FDC23A1 /* Pod */ = { isa = PBXGroup; children = ( - 491FA9528E2B3B4E929893150763AA85 /* FBLazyVector.debug.xcconfig */, - D2BC8C740454D8A8ADCB21F3446A7B1C /* FBLazyVector.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/FBLazyVector"; - sourceTree = ""; - }; - 0FA3157352496AAE48E6AE3C85870B98 /* Pod */ = { - isa = PBXGroup; - children = ( - C4329517D355417C1B7429C1C4228B33 /* UMFontInterface.podspec */, + 51B85E44A450130E8077001DE97DDC86 /* LICENSE */, + B248EA8DEF3C40A83D0E1F7246D05B6D /* README.md */, + 43872AEC50F02D54258971586CCE5B86 /* RNGestureHandler.podspec */, ); name = Pod; sourceTree = ""; }; - 109B8B00D6E6B2B85F22D820D0146CEF /* Support Files */ = { + 1021CBFA06415F01DCAA687139697296 /* Support Files */ = { isa = PBXGroup; children = ( - 01A7338442EA1895921865960B882820 /* react-native-appearance-dummy.m */, - 29230292827F1A18B38C070E5A38E5A5 /* react-native-appearance-prefix.pch */, - BB562EA826EF46ABEE485DB5A157CCFF /* react-native-appearance.debug.xcconfig */, - 2966B2229A727F37015E74DBBDD9392E /* react-native-appearance.release.xcconfig */, + C9C9A2BE6194882D45341E0D8CEE3C18 /* React-RCTVibration-dummy.m */, + FDD204D61CE2D011A95FD93EAA25308B /* React-RCTVibration-prefix.pch */, + 088D72C0DB7BE89FA9B04E9896A589D5 /* React-RCTVibration.debug.xcconfig */, + C2D9F45693D8E29A6B33D948513BB8DE /* React-RCTVibration.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-appearance"; + path = "../../../../ios/Pods/Target Support Files/React-RCTVibration"; sourceTree = ""; }; - 10AF35A7F5801587EE029A4585F1A3D0 /* Support Files */ = { + 103CC2A89D0EE2F2E5F23C4F506954E2 /* Support Files */ = { isa = PBXGroup; children = ( - CB49EE5918865679957300780193C31A /* react-native-notifications-dummy.m */, - 704FDD18FBE854022CF0A629F0DF6340 /* react-native-notifications-prefix.pch */, - 43EBCD8EE86F7C9E96A85F66ED497213 /* react-native-notifications.debug.xcconfig */, - 04571D1915BA48E87A7E88204BF4DE73 /* react-native-notifications.release.xcconfig */, + C2CC138F3EBFE8E6414F78D511270704 /* EXAppleAuthentication-dummy.m */, + 54D44305B2A10ACB385926B44F27A128 /* EXAppleAuthentication-prefix.pch */, + 95A1C64F658C55F9743F8E5CECFBC7CF /* EXAppleAuthentication.debug.xcconfig */, + 5FAA21C6C0C9980EEE59850DC56F4710 /* EXAppleAuthentication.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-notifications"; + path = "../../../ios/Pods/Target Support Files/EXAppleAuthentication"; sourceTree = ""; }; - 10C25D8017B2D3306720EC99B681838D /* Support Files */ = { + 10E3478B3B64EB823B56561B7731BC42 /* Support Files */ = { isa = PBXGroup; children = ( - A9A5A0D8DDA97F77EA157407049E77E3 /* RNFBApp-dummy.m */, - 8AE9CE8ACD136B91A56AA6E459F4C046 /* RNFBApp-prefix.pch */, - 691DC86469A0E20B38DF416D365DD6B9 /* RNFBApp.debug.xcconfig */, - 72A9DD5733C7107B4349211499AB6D36 /* RNFBApp.release.xcconfig */, + E55D28053CED82024BBF5606B125B4AD /* RNCMaskedView-dummy.m */, + 02F8CC2129A43B8BD6053EF5DC64F1E5 /* RNCMaskedView-prefix.pch */, + 34E97ED2E8B3D9030E0FEFDF1E0F0EA0 /* RNCMaskedView.debug.xcconfig */, + 939D19E9FA261043EA8E6CF511D9E404 /* RNCMaskedView.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNFBApp"; + path = "../../../ios/Pods/Target Support Files/RNCMaskedView"; sourceTree = ""; }; - 11D8940B18545C848C5EF2B96DD72663 /* Pod */ = { + 10F86E66E0536F796186D4071AAF9666 /* BugsnagReactNative */ = { isa = PBXGroup; children = ( - A66034CEDA26EB780569383C19FF8702 /* EXPermissions.podspec */, + 6E14464624A16C87A3E048A7BD5D4F68 /* BugsnagConfigSerializer.h */, + 4EA0D8520C977127B4CFE93E6E40CCE0 /* BugsnagConfigSerializer.m */, + A8328F6F268BE9F930BB69676027BA42 /* BugsnagEventDeserializer.h */, + 73F9C5FBFBBC5A005A4AE1FE0927089F /* BugsnagEventDeserializer.m */, + C5FD43B9AFE049BA54629F93A34D0BF1 /* BugsnagReactNative.h */, + 49835B928F1BD03B9BF8EFAFBC8B036A /* BugsnagReactNative.m */, + 208FA81342E93D1EEFE65C0E4EF49F03 /* BugsnagReactNativeEmitter.h */, + F136C717FB0B4F7B7A23AF3EFAA2FF44 /* BugsnagReactNativeEmitter.m */, + 2BE066C60E8DFBD22751401C52C64631 /* BugsnagReactNativePlugin.h */, + BED4D545EAB9F7C4A9B42407D30E8441 /* BugsnagReactNativePlugin.m */, ); - name = Pod; + name = BugsnagReactNative; + path = ios/BugsnagReactNative; + sourceTree = ""; + }; + 111AAA3ABE57A743F5849CC9525371AC /* Support Files */ = { + isa = PBXGroup; + children = ( + 4F04F335D30B43118E83087B7DED120B /* UMReactNativeAdapter-dummy.m */, + DA78EECCA50E297CC158E7C7315675C1 /* UMReactNativeAdapter-prefix.pch */, + 3A01F89A0B9A22D8CBF6CF6A3DB222EB /* UMReactNativeAdapter.debug.xcconfig */, + 9591C5298AF54D3E53DC9613C0E2ED57 /* UMReactNativeAdapter.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; + sourceTree = ""; + }; + 11C0389B6A245AB145289CFD7F7A5799 /* react-native-background-timer */ = { + isa = PBXGroup; + children = ( + F59574F26EAD934B166EC8F9C822F2FD /* RNBackgroundTimer.h */, + 23F38D8B8018A84BB11E245D1381A5EA /* RNBackgroundTimer.m */, + E94FB031F791D1DED308D8442EA23A97 /* Pod */, + 53DCBAA1138E63235F18EB007CD16B9D /* Support Files */, + ); + name = "react-native-background-timer"; + path = "../../node_modules/react-native-background-timer"; sourceTree = ""; }; 11E103C4A6EAB85209C2CB12C4BAB44F /* Support Files */ = { @@ -14778,26 +15256,16 @@ name = Pods; sourceTree = ""; }; - 126F0F29589D0F40705554BC3333C9F7 /* Pod */ = { + 13EC029082B3E3E2E6E3AB5D12656686 /* Support Files */ = { isa = PBXGroup; children = ( - 5E47FC1B177ED11362FBB280B902E135 /* LICENSE */, - 5CF59257F3C0F2DB8EC4951850A41F31 /* README.md */, - 61FECB7565483F35A4A79A45FBB46538 /* RNFBCrashlytics.podspec */, + 04CFEFB3F1120ED65335C3CA7E6A4ED3 /* react-native-orientation-locker-dummy.m */, + 2907CC3C454CF4176D9898F9A569C05A /* react-native-orientation-locker-prefix.pch */, + 7B2B988372B94744CFCB043C04181A2F /* react-native-orientation-locker.debug.xcconfig */, + 0559FF4F31D9F39593DA553690AC4BBF /* react-native-orientation-locker.release.xcconfig */, ); - name = Pod; - sourceTree = ""; - }; - 13AA1D534BA062C5DE501009364BAAF4 /* EXImageLoader */ = { - isa = PBXGroup; - children = ( - F7C4FB1E601E4EFDDFF23297713CBE33 /* EXImageLoader.h */, - 72902D0631A7B5703B22C961F29FFA83 /* EXImageLoader.m */, - BA6688891CC720AC21D81DDFBABAB04F /* Pod */, - 1D60FAB92892951BAAC74DF7D271E87C /* Support Files */, - ); - name = EXImageLoader; - path = "../../node_modules/expo-image-loader/ios"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; sourceTree = ""; }; 1431C1F2FD53BA86D5FC99BAE55DEF1C /* Support Files */ = { @@ -14812,39 +15280,44 @@ path = "../Target Support Files/CocoaAsyncSocket"; sourceTree = ""; }; - 14365716044418A82E6DD14AA8D16049 /* Pods-defaults-RocketChatRN */ = { + 14B0874027965AB0076A22C974812618 /* Pod */ = { isa = PBXGroup; children = ( - DA4B7547743BC6FDE8E00424A6906467 /* Pods-defaults-RocketChatRN.modulemap */, - F30FCE3AC19A17A706E00638A3116BEF /* Pods-defaults-RocketChatRN-acknowledgements.markdown */, - 95D00A3E66C847FBED5DC0B6073EB67F /* Pods-defaults-RocketChatRN-acknowledgements.plist */, - F21CCAF47107D491C484F4743F565B80 /* Pods-defaults-RocketChatRN-dummy.m */, - 5E87B44B33AAED551BDFE7329D248E7C /* Pods-defaults-RocketChatRN-frameworks.sh */, - 28123DB19C3F0DCA57159E998D699E85 /* Pods-defaults-RocketChatRN-resources.sh */, - BE44CBCE6C75B26E95A4555F9D976298 /* Pods-defaults-RocketChatRN-umbrella.h */, - 33CE3A123A50C02157F9260308A228EE /* Pods-defaults-RocketChatRN.debug.xcconfig */, - 0C404EDA3875132C8D70CCF5BD2B3946 /* Pods-defaults-RocketChatRN.release.xcconfig */, + 7DDAD7B74DF964029D8C8E0445940E3D /* UMFaceDetectorInterface.podspec */, ); - name = "Pods-defaults-RocketChatRN"; - path = "Target Support Files/Pods-defaults-RocketChatRN"; + name = Pod; sourceTree = ""; }; - 15DD9F63AF309D59208FF319B71ABB7E /* inspector */ = { + 15370399CFB593553101E73843678C13 /* react-native-blur */ = { isa = PBXGroup; children = ( - AA98D1F2E70C5F4BC293DFD94CF99BEC /* AsyncPauseState.h */, - 8B5D8681740738084057C0DFFE33BF5E /* Exceptions.h */, - 884A68A503B81022B9DCDF496B2723F4 /* Inspector.cpp */, - CB7B4B236EDBF83CAE1318D657ADDD3C /* Inspector.h */, - 491287C43FB178F30432173009BDD921 /* InspectorState.cpp */, - 736EDBC0DCBFC91C303ADD0406ADC0C4 /* InspectorState.h */, - 9B1A183613CBA0C90C910C9D98A739A2 /* RuntimeAdapter.cpp */, - 55D7C479CFA836BE5AEDA831A4C43640 /* RuntimeAdapter.h */, - 521C11A8668F3D93E297C9E22D9F9584 /* chrome */, - 22469285E516E5723DAD97EBE4C1ABCC /* detail */, + 501761ADCF286CCADF126E860D725360 /* BlurEffectWithAmount.h */, + 67CAA565D53A463C56D681FD8D161D9F /* BlurEffectWithAmount.m */, + C6FC6468868664B70D3E281882C24504 /* BlurView.h */, + D3B33FD155FD295BAA0410C2986FCA37 /* BlurView.m */, + F1CAFDC9749A658C4C770C094DF84470 /* BlurViewManager.h */, + 9CA76A689A2C2A3731103D8254D9FCA7 /* BlurViewManager.m */, + E65F59936EEA71AA441C0A9D942FFAEA /* VibrancyView.h */, + 7E329469FAA7DDFFCC66C76EDC885390 /* VibrancyView.m */, + B1B5F8F61C6845AF170F2EED2DAE8326 /* VibrancyViewManager.h */, + A60901098A81B5D3F5D589CC582F5A4F /* VibrancyViewManager.m */, + 910422524195BA4E7726E48984121CCA /* Pod */, + B864EE777F6E3ED39E767110907AB296 /* Support Files */, ); - name = inspector; - path = ReactCommon/hermes/inspector; + name = "react-native-blur"; + path = "../../node_modules/@react-native-community/blur"; + sourceTree = ""; + }; + 162A0E35DD751790684EC0010D116703 /* Support Files */ = { + isa = PBXGroup; + children = ( + 9973427BC849E103A860FA21364BE7BB /* React-RCTText-dummy.m */, + C7CC87F7EED5A5012C03710749B33402 /* React-RCTText-prefix.pch */, + C06B1CFDE7B4DF08E03F2CC199843255 /* React-RCTText.debug.xcconfig */, + 83FC195C5C31491E3BCB9BAD956650FE /* React-RCTText.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTText"; sourceTree = ""; }; 16645291BE2C26B99026DFA742E76664 /* DoubleConversion */ = { @@ -14874,62 +15347,6 @@ path = DoubleConversion; sourceTree = ""; }; - 16A19C444DABDE840CCB705DDA94775C /* rn-extensions-share */ = { - isa = PBXGroup; - children = ( - C9F18BDD06EF321764D8EFE3830C7EFF /* ReactNativeShareExtension.h */, - BFEEAEAD0C293AFF05B72E3F5B826452 /* ReactNativeShareExtension.m */, - A661AC243E6E5199CF57B2727BB34A1F /* Pod */, - FA6266F4407B3B2B2181C402AF0AEFD4 /* Support Files */, - ); - name = "rn-extensions-share"; - path = "../../node_modules/rn-extensions-share"; - sourceTree = ""; - }; - 16A22961A94620137F49C05B4BDB02B3 /* UMImageLoaderInterface */ = { - isa = PBXGroup; - children = ( - 5AB301AC3A089A667C0342156B31CBE2 /* UMImageLoaderInterface.h */, - 1BE3750213DAC252F4F30E1741F72E60 /* Pod */, - F54DCF5FB223C79DA92E0A11A5BF50AB /* Support Files */, - ); - name = UMImageLoaderInterface; - path = "../../node_modules/unimodules-image-loader-interface/ios"; - sourceTree = ""; - }; - 16B55907FCBB15E3796478B7699D7542 /* QBImagePickerController */ = { - isa = PBXGroup; - children = ( - 04644AA758CE84D0CBA62BFCA34EB7D9 /* de.lproj */, - CA1FFE0C05DE24B176E4502BD057F66A /* en.lproj */, - 9633D58929A8EABB54152B6EE014840A /* es.lproj */, - 1D1B0ACE34D52490D575C7CB8F8857E3 /* fr.lproj */, - AEDD290D0FF52975B1C82C19D809F8AA /* ja.lproj */, - 4E806A627D8A3EAEFF2878AC1FACCAC6 /* pl.lproj */, - BFC43567E2E1578407BD24350C578FAE /* QBAlbumCell.h */, - E94541184FBC811C9D5D5AD893DADF82 /* QBAlbumCell.m */, - 654B4588CF131310C1E22D0639B391FB /* QBAlbumsViewController.h */, - A9F757B6793A26C55B14899A3F8208BF /* QBAlbumsViewController.m */, - 6E2AD4DC3C7BAFF897E5295A7023310C /* QBAssetCell.h */, - E688698D52FC27F6B99524FE91C229BD /* QBAssetCell.m */, - FF006A0A412AA1854D689DD897F38F09 /* QBAssetsViewController.h */, - 627622AC23DD03D9DD5E6337E505E548 /* QBAssetsViewController.m */, - 5733AA14A8EDC4682DC0516B0A519130 /* QBCheckmarkView.h */, - FAB355FBB0BB59C0EB7DCA71BE0091F2 /* QBCheckmarkView.m */, - 7AE36C604CCE170F098593FC34F96AAF /* QBImagePicker.storyboard */, - BEFFFADF15BA7819F73DAE200677F3F0 /* QBImagePickerController.h */, - F5EFC72E888F0DEF201C70085870D40F /* QBImagePickerController.m */, - D0C2DD91A9EBD4168DC911AF0073DF62 /* QBSlomoIconView.h */, - CE9C1CAF322174BAF8E557DC26BBDD20 /* QBSlomoIconView.m */, - B6743FEDDF72DFBF09FBCB4FA3768AA3 /* QBVideoIconView.h */, - 007C0C65DFF1B590AA5D587D3A0F3FA1 /* QBVideoIconView.m */, - 61A5623BACFC54B40BECCC9D5CD72BA1 /* QBVideoIndicatorView.h */, - DE098FD7CE3243CEA8853D0002C7F3B5 /* QBVideoIndicatorView.m */, - B17255A8E21167D60FD904F91AE80CFB /* zh-Hans.lproj */, - ); - name = QBImagePickerController; - sourceTree = ""; - }; 16CEF3BFD35752F2FF9D0834B94F1BF3 /* Support Files */ = { isa = PBXGroup; children = ( @@ -14941,24 +15358,119 @@ path = "../Target Support Files/PromisesObjC"; sourceTree = ""; }; - 17AAB010B98EC817A7ACFA384F7E49E8 /* Support Files */ = { + 16DF97173707887DEFD155929A3E8141 /* RCTWebSocket */ = { isa = PBXGroup; children = ( - 6A749218B06B95BF1C8412194242EEB0 /* React-RCTAnimation-dummy.m */, - EAC652CBC6C84962FC79437C929D4AD2 /* React-RCTAnimation-prefix.pch */, - DBA6DCF004C50AF1D1150EC91E6ECBE9 /* React-RCTAnimation.debug.xcconfig */, - 761D253CF3AEBD546D663579BBEE55FD /* React-RCTAnimation.release.xcconfig */, + 9E28708E421A551C02DCD2DDE407CF2A /* RCTReconnectingWebSocket.h */, + 0DF5EBAE45D17E0DE1799E01B3B01984 /* RCTReconnectingWebSocket.m */, + 9B4E35C0E3E457D89A4DF2403BB432CA /* RCTSRWebSocket.h */, + B04A0DBA2F42C8B8861D99EDCA183129 /* RCTSRWebSocket.m */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTAnimation"; + name = RCTWebSocket; sourceTree = ""; }; - 194264DC44A195F374A14C851C269CDD /* Pod */ = { + 16EC9B2B3B254E5E3A9B97999E10F173 /* Storage */ = { isa = PBXGroup; children = ( - 756239EA5AEBA1B683E5B4FBDBEE26BE /* UMTaskManagerInterface.podspec */, + 3572364D36B575E095ED6CF97556C4E5 /* BSGFileLocations.h */, + 9A28152C927DBE33FC159F237838CA4F /* BSGFileLocations.m */, + D40C3533BF228493CCEDE27D1FB64084 /* BSGStorageMigratorV0V1.h */, + F401C944F2D198765DF6DC6A29B04212 /* BSGStorageMigratorV0V1.m */, + 1ED60785E613974940745804A80CF521 /* BugsnagFileStore.h */, + E99D032CA45AE795463E8CCFCA3FBE80 /* BugsnagFileStore.m */, + 6B459DE3753ACF65B3EE6005C011ABAA /* BugsnagSessionFileStore.h */, + 07BABC1C04DAB1CEC0A77A7D6B220B6A /* BugsnagSessionFileStore.m */, ); - name = Pod; + name = Storage; + path = Storage; + sourceTree = ""; + }; + 16F19B631347386A4D406EB5A29DF185 /* RNImageCropPicker */ = { + isa = PBXGroup; + children = ( + 5321578E4C914574AC5A3F7F7ACF0704 /* Compression.h */, + 4EDBEF597A90BB3A563FD690349CFDDE /* Compression.m */, + 295599FD34D82437BF3C41270FBB2523 /* ImageCropPicker.h */, + 69B4659927463CDABCB118B5DEC7ED20 /* ImageCropPicker.m */, + C5F18678F590CDEA4A6F29AF36D8C5DC /* UIImage+Extension.h */, + 2E8A4966347DDE08B91EE969C520C066 /* UIImage+Extension.m */, + AF492A2FAAF74AC6ADAD5E79DCE6A08A /* UIImage+Resize.h */, + 60EA4B570BE390DC3171F49D41731488 /* UIImage+Resize.m */, + 4D6B9E82B00C4C54E90E2F9CADB473BE /* Pod */, + 3B5F06B35DD32F9A59054F621F630E47 /* QBImagePickerController */, + B0F213CEE2ABCC56288FC244E24CE662 /* Support Files */, + ); + name = RNImageCropPicker; + path = "../../node_modules/react-native-image-crop-picker"; + sourceTree = ""; + }; + 16F3F2CE67054AA63D889EF26CEBEF74 /* React-RCTBlob */ = { + isa = PBXGroup; + children = ( + 6CCC914F4F5E3F78B40CCDAC0BDEB908 /* RCTBlobCollector.h */, + 5C9B552556AD3AC3AC9A1FF4D59CECE1 /* RCTBlobCollector.mm */, + 8FCFA71E7FBCE4592668FE90C1220BE6 /* RCTBlobManager.mm */, + F339762AA8DD6F76C7A6BE4A9051877A /* RCTBlobPlugins.h */, + 89E76C6091B3365DFAFAB90BF5C9CFDF /* RCTBlobPlugins.mm */, + 1742A79C0C3E90899FB5F9FBA7D59CC0 /* RCTFileReaderModule.mm */, + FCCF69CABCDBA2B92EA18F72B31768A2 /* Pod */, + 2ED49C3FDA7BEC476F00E79559D73E9D /* Support Files */, + ); + name = "React-RCTBlob"; + path = "../../node_modules/react-native/Libraries/Blob"; + sourceTree = ""; + }; + 1735DB7DC7AEF560880AFDB0920B82DE /* Surface */ = { + isa = PBXGroup; + children = ( + DAA93BB561277F589EFD5B03D3A98A18 /* RCTSurface.h */, + 79B29BED9BBCAA461C6D59F27D7BADC4 /* RCTSurface.mm */, + 4D2B5DC912FBCDE6B892CA46F279A39D /* RCTSurfaceDelegate.h */, + 18F0FA4FDA122C17C4DCBEB2AA25B85E /* RCTSurfaceProtocol.h */, + 129BF999B117C84BAB3A73C84ADAD27B /* RCTSurfaceRootShadowView.h */, + BB9CC1354ABBC880F7DDB6106CBDE2D0 /* RCTSurfaceRootShadowView.m */, + 207111C4FFBA3C94778096073B011DFE /* RCTSurfaceRootShadowViewDelegate.h */, + 87F2CBC95E98D64C0ADA8517411FE08D /* RCTSurfaceRootView.h */, + 580DCF30E8F730B898A9CB6FDA5A1DBA /* RCTSurfaceRootView.mm */, + E5539CD4B01605A209EAE449CD37F855 /* RCTSurfaceStage.h */, + 4EBDF38D772E501B8DDFAD480A0A8439 /* RCTSurfaceStage.m */, + C761D7AE50CD6FB34E193946254D6163 /* RCTSurfaceView.h */, + 32A5033B53147739415CD64E50CB0241 /* RCTSurfaceView.mm */, + EA44814345FD3334AE3676B7C6390179 /* RCTSurfaceView+Internal.h */, + 929F25571593985667AC183E1D7A61D9 /* SurfaceHostingView */, + ); + name = Surface; + path = Surface; + sourceTree = ""; + }; + 173F16F614C99F1F2EBB2FE4639688D3 /* Source */ = { + isa = PBXGroup; + children = ( + 7F3A7EA895F0566C5548469737EF00DD /* KSCrash */, + ); + name = Source; + path = Source; + sourceTree = ""; + }; + 182FD26660A490C17254AF5BCF8CBE3A /* React-callinvoker */ = { + isa = PBXGroup; + children = ( + 6C50F0B068A73AFAA9B5CC8A6EE68016 /* CallInvoker.h */, + C92D2063B50D3797E0D045BB8BEDC2AB /* Pod */, + 29F709BE7E7EBE94BBB06009E02BEA34 /* Support Files */, + ); + name = "React-callinvoker"; + path = "../../node_modules/react-native/ReactCommon/callinvoker"; + sourceTree = ""; + }; + 192A2D7E57C30857F88797D9326B7047 /* UMModuleRegistryProvider */ = { + isa = PBXGroup; + children = ( + 65A8ACF1D7DE947873F2F653FE01B728 /* UMModuleRegistryProvider.h */, + FC3B2F6648E4E990484D03409B3C47C2 /* UMModuleRegistryProvider.m */, + ); + name = UMModuleRegistryProvider; + path = UMCore/UMModuleRegistryProvider; sourceTree = ""; }; 19BCBCA23754C003B87C6264595C711B /* JitsiMeetSDK */ = { @@ -14971,49 +15483,6 @@ path = JitsiMeetSDK; sourceTree = ""; }; - 1A0CCF0D85F3F90F437C445D5E8751E2 /* Drivers */ = { - isa = PBXGroup; - children = ( - 1EBAA836C4E35678DAB65BA34B873FF7 /* RCTAnimationDriver.h */, - 75FCAC09D5C0F159E4617EB14AF7220D /* RCTDecayAnimation.h */, - 244D4B8FB5468A8044F66AB2D782711E /* RCTEventAnimation.h */, - 7018D19C272BB68149C8AF74788193D3 /* RCTFrameAnimation.h */, - 073B695D1116E71DE4B85507FC6C4838 /* RCTSpringAnimation.h */, - ); - name = Drivers; - path = Libraries/NativeAnimation/Drivers; - sourceTree = ""; - }; - 1A0EFBE2D8F561924C1588F45AC5F463 /* Pod */ = { - isa = PBXGroup; - children = ( - 7503E9C7DD66C725C3B6B3B279F46E47 /* LICENSE */, - 480FA2DA01F8F810259D7713990142B5 /* react-native-jitsi-meet.podspec */, - E0E737DE13C88379906F0FF92FC3DFF6 /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 1AC56EB3837AE01DA46D3EDB634A7544 /* ReactCommon */ = { - isa = PBXGroup; - children = ( - 698E67A5FC5F74ABB902D4C5BE7D2857 /* LongLivedObject.cpp */, - 8EF30960D09834540CA7308F37BA73AB /* LongLivedObject.h */, - 55F735F7B49FCE1144653E67FA4429F9 /* TurboCxxModule.cpp */, - F90D76EB274756CD3EE07685241DA074 /* TurboCxxModule.h */, - C050DE5FA7D253CC9759E6DDFDC51DAF /* TurboModule.cpp */, - 16CEEBDE7A7E39E101B6CC746BC9FF6C /* TurboModule.h */, - BE0AAD6D3B91A89C70E627CE69C9836B /* TurboModuleBinding.cpp */, - 5882B340EDC0435EE5759E04FC4D9CA9 /* TurboModuleBinding.h */, - ECBF3EFF9976882C405D5E9CC56ABD52 /* TurboModulePerfLogger.cpp */, - F0EECECDE308A45C7EDB48B47585FC99 /* TurboModulePerfLogger.h */, - 4AEFBA708B946901C44245DDCCD8A15D /* TurboModuleUtils.cpp */, - 02DC901724352E63C0DE82E4B2EF6FBE /* TurboModuleUtils.h */, - ); - name = ReactCommon; - path = react/nativemodule/core/ReactCommon; - sourceTree = ""; - }; 1B082747F9E813D0338BCAD63F875FCB /* Support Files */ = { isa = PBXGroup; children = ( @@ -15024,39 +15493,141 @@ path = "../Target Support Files/Firebase"; sourceTree = ""; }; - 1B368FA8C5952C41DA3934BF2089DF8C /* Pod */ = { + 1B31FDA752685D2F5B5D0C1C9D81877D /* Protocols */ = { isa = PBXGroup; children = ( - 4CC8681119DE18394A7EB1CEE3B43643 /* React-cxxreact.podspec */, + 0A8135C214F18C12DA255B2595E7E617 /* UMAppLifecycleListener.h */, + E86E5936B7E74BEB90393903C90CB8F1 /* UMAppLifecycleService.h */, + C90799EA218551C7B83AA144EDE89E53 /* UMEventEmitter.h */, + FBD206A4E40645F8B1B0CA79E1EBD3D2 /* UMEventEmitterService.h */, + F969AB07C5F0F86647AD40EF77FD8A5B /* UMInternalModule.h */, + 91A46B091E0CF0D8EC21498BA37BBE37 /* UMJavaScriptContextProvider.h */, + CAF651E25771DF3B08038A53419DD063 /* UMKernelService.h */, + C34BB7C9B5B6543C0E09A57C1B4F97EC /* UMLogHandler.h */, + A1CE18A3F321A875155302101DDA52BE /* UMModuleRegistryConsumer.h */, + C09EA5E56B1A86D17A324942FE907F38 /* UMUIManager.h */, + 6E0CDCC5D6ED7F4BA5BD967EE9279F4B /* UMUtilitiesInterface.h */, ); - name = Pod; + name = Protocols; + path = UMCore/Protocols; sourceTree = ""; }; - 1B6E6B8C1802C573934739FE35FCB945 /* Pod */ = { + 1B335148B93033657E20AC9E4B039735 /* Development Pods */ = { isa = PBXGroup; children = ( - 0D76277DEF1627015108E94EB794BC16 /* UMFaceDetectorInterface.podspec */, + 2DE5EBC4462FAB226CF1389AC547081A /* BugsnagReactNative */, + 6188F243DDEBAF750199A0437E405B5D /* EXAppleAuthentication */, + D15ED738D87DD497D46022FF9F0E37B8 /* EXAV */, + 012DBFA344725E841C467E35D87FC881 /* EXConstants */, + A46028F3C2BF9F9250B1A76C28F447EF /* EXFileSystem */, + 5BB55349F94B480F64D0D497441B51A5 /* EXHaptics */, + 7DD3CC43754B8BB4344595E9E8F9DE9F /* EXImageLoader */, + A560EFE2C83F48343706CFC874A6696A /* EXKeepAwake */, + DCEC7379A961D5631CF2252F29FA5EA6 /* EXLocalAuthentication */, + BBEA79C48F83498C265AE187467CA896 /* EXPermissions */, + 995F9E2F0B69506652E782FC65C4A6C6 /* EXVideoThumbnails */, + 53DFB52417A78862E432498F0F33CEFC /* EXWebBrowser */, + 89F3BCF1FE4AF51C65B00C90266890A0 /* FBLazyVector */, + D28D229C5EE87F7BAB47AF2F689FFA65 /* FBReactNativeSpec */, + 0310FA1F7CAEBC972DEA0F3438CB2395 /* KeyCommands */, + D0E71086ADCF2FEA20D803FBBECBA339 /* RCTRequired */, + 9FB1FC23DE15AFE2E73510A47F631002 /* RCTTypeSafety */, + 4EDCC714192024D6D9BF2E59778B78A1 /* React */, + 182FD26660A490C17254AF5BCF8CBE3A /* React-callinvoker */, + 399E361168DC15BBA351FDF15B988A20 /* React-Core */, + 0051AE31E8160682B6666AF94FD43D76 /* React-CoreModules */, + 57C8456FBD7C8139050FCC835628C511 /* React-cxxreact */, + 29290CDC75BEB381B81698C34C08C9E8 /* React-jsi */, + 80E4CCAFD5FF95805C8836B2EF70A567 /* React-jsiexecutor */, + BE78E2A6C9710F8E92C2B7B9145E5D12 /* React-jsinspector */, + E59FEF70BFF6740CC25625B0B26D0730 /* react-native-appearance */, + 11C0389B6A245AB145289CFD7F7A5799 /* react-native-background-timer */, + 15370399CFB593553101E73843678C13 /* react-native-blur */, + BC8AD7436858385576E3D4D83284830B /* react-native-cameraroll */, + 0B53B07E2A4EBC1FA87BED8D187FEEE1 /* react-native-cookies */, + 3ECF7641B16FCA7AEC743CA0985A1BD2 /* react-native-document-picker */, + C556E6A80675BF73DEC959223199473A /* react-native-jitsi-meet */, + E1D4BF5E99E0AF9736EEFC1DCB8D0688 /* react-native-mmkv-storage */, + 7950EE29EE71494397E527E7A0DA6FF8 /* react-native-netinfo */, + A840C4EEDEFE30A7526204C1CD1C063F /* react-native-notifications */, + E9C7468296CF3D854A6FE3CCDCE8AC5E /* react-native-orientation-locker */, + B5C94B22866D0D81496F56267E46A91B /* react-native-restart */, + F7CA8A6EC0BBAEED2EF6838FD4356737 /* react-native-safe-area-context */, + ED6F5ECD9E4977BB3242B6DCBAEA7DB2 /* react-native-simple-crypto */, + 54FC4D24043627C1BEB096BBC6FB23F1 /* react-native-slider */, + 8CCDE0C1317BAD85D95C2EE070994A16 /* react-native-webview */, + 665EF1CC568095EF79E87D15FAA1106F /* React-perflogger */, + 864CF10D742C3C6D7902FAD8E8271F0B /* React-RCTActionSheet */, + 8D1C566FFF4721FE4113138C0C3A9B01 /* React-RCTAnimation */, + 16F3F2CE67054AA63D889EF26CEBEF74 /* React-RCTBlob */, + A3C6F98DF7B23B0632926F167871EBB2 /* React-RCTImage */, + 77B6CFB7EA90A814C562A8632026BFC3 /* React-RCTLinking */, + 869B4074E5995282377E90FFCC5FAE96 /* React-RCTNetwork */, + 0012CE52DF826E823DB925B46FA05058 /* React-RCTSettings */, + 88D72EAE58E7FF54C41C9AE90D614DE4 /* React-RCTText */, + BC01994F5346B655A7EF2DBB8A594621 /* React-RCTVibration */, + A587B4C02F87F1060C117A378428DFB5 /* React-runtimeexecutor */, + 4AF77E31B0B3576820370F5FD7E7B525 /* ReactCommon */, + 3F630BF050CA9C4050D4D842FC79957E /* ReactNativeART */, + 029BF0B569B93D06A7FB9DC6E0DE1338 /* ReactNativeUiLib */, + A31D5AD00EAE5341E2F862C116937B96 /* rn-extensions-share */, + DD448CFE54899E8214FC0DE261C125B5 /* rn-fetch-blob */, + B611CE5D5941E6EC93FB041A5D1CC251 /* RNBootSplash */, + 1C7EAF4559B58A91FC3ACD6238962A64 /* RNCAsyncStorage */, + 2F1824855DC6896AC2F93FCBE0CF1B9D /* RNCMaskedView */, + 3F68AF716FB9A41D57E83991D632C6C2 /* RNConfigReader */, + E934F12F18782FA5B7B698BDE78CDB0F /* RNCPicker */, + 58A0BF53D5CFE638DE2E520B1BCBAD33 /* RNDateTimePicker */, + 82350E5B841E516E40D653D2AB5544C3 /* RNDeviceInfo */, + AB7F6355C86DFC7E91B9EAC52F07B85F /* RNFastImage */, + 3534088DB66DEF568FAF45B5A920EB0F /* RNFBAnalytics */, + CF47CCB4B0D7AE3C64A1E8209912222A /* RNFBApp */, + 66B22295C3DA10581CB53EA09351F463 /* RNFBCrashlytics */, + AF3CB75A79A4B74B34F3BB35441AD173 /* RNGestureHandler */, + 16F19B631347386A4D406EB5A29DF185 /* RNImageCropPicker */, + 31DD4FF38AC66E1A3EE4190CF53BF65A /* RNLocalize */, + D3D565AD0273ADAF1182FCDB041402D1 /* RNReanimated */, + 70BD345152219405D7B9B498749DE2F4 /* RNRootView */, + E39145EAD6394D4B8D24AEF743F4F5E9 /* RNScreens */, + 80F18FC30D1168F50A8F5773FDBE16A6 /* RNVectorIcons */, + 8FCF92E88EA049BECAD6F86AFBFF76E0 /* UMAppLoader */, + 35071B6A8FBDBF6B984FB20DCC1B6E85 /* UMBarCodeScannerInterface */, + 0A40D5E22B5A4885069D0691AE56BE4D /* UMCameraInterface */, + C5F15D6DBC185E120658917AE5C9B8E3 /* UMConstantsInterface */, + DBE62A767FAC06B7576C596C16323417 /* UMCore */, + 27AE64D6C1A1C55C1B64934788AFC47C /* UMFaceDetectorInterface */, + 9EAD96B268B16ABA0F5D8AF18F58FA65 /* UMFileSystemInterface */, + D66284598A6DA33D69CE93DBC9B03E96 /* UMFontInterface */, + D40748F6423A8A1669F834DA2CCA7E6F /* UMImageLoaderInterface */, + 8A398024DCC655930DBEA867FA2BF127 /* UMPermissionsInterface */, + 861B805BFF1794D2F3879FD37E1AC9EB /* UMReactNativeAdapter */, + C2550707A5AC3D8A3EF4CB8AC0F7536A /* UMSensorsInterface */, + BF0FA41607BD73699FF511D72C0D6DB7 /* UMTaskManagerInterface */, + C0FC3DA25325B253DEA3F31467C0C1AF /* Yoga */, ); - name = Pod; + name = "Development Pods"; sourceTree = ""; }; - 1BE3750213DAC252F4F30E1741F72E60 /* Pod */ = { + 1BB3134D8F6E3A3586510F3F466926CF /* Support Files */ = { isa = PBXGroup; children = ( - 0805ED6781BB14AFC5659517A3F9E04C /* UMImageLoaderInterface.podspec */, + CE58441B97197A9C77EC5B3FA60736DD /* RNFastImage-dummy.m */, + 37B0BD899FBA992E7DEE922392E39845 /* RNFastImage-prefix.pch */, + EEDEF25F4BD51250B333F8487ADCABD1 /* RNFastImage.debug.xcconfig */, + D209C4FA27308DF998A5A82B02E763F2 /* RNFastImage.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNFastImage"; sourceTree = ""; }; - 1C0729B146796103CB8F59D704B39DD8 /* UMConstantsInterface */ = { + 1BF0FAC162CBE9BEEB6BD29935DD335B /* Pod */ = { isa = PBXGroup; children = ( - 87F85C8D392247940F2D06630D914116 /* UMConstantsInterface.h */, - DF9B101D0D312F6D42E194A1DB28EEB6 /* Pod */, - 997659BFDF2A512C5D668B02C752DBFC /* Support Files */, + 16A67BBF51FE99EC701E5F6893B3DBFF /* LICENSE.md */, + FC1BC417DD12AC349999A332965BBB26 /* react-native-document-picker.podspec */, + 658CDE58F0A145A01F4B64355610CEA8 /* README.md */, ); - name = UMConstantsInterface; - path = "../../node_modules/unimodules-constants-interface/ios"; + name = Pod; sourceTree = ""; }; 1C510A0633AA2F02AED3612F6DBCC490 /* Flipper-PeerTalk */ = { @@ -15076,14 +15647,17 @@ path = "Flipper-PeerTalk"; sourceTree = ""; }; - 1CDB49C5FDE2E4A2F7F5A5F24A536904 /* Pod */ = { + 1C7EAF4559B58A91FC3ACD6238962A64 /* RNCAsyncStorage */ = { isa = PBXGroup; children = ( - 527BC6DBEB3A3082A05F74C8F3BC2BD6 /* LICENSE */, - C1DDB3050D2F365F1F117DBF6A959E0A /* react-native-webview.podspec */, - 2A9A010CB7EFEF22F0295385AC4A1E11 /* README.md */, + B83C0C0C4E720AD644EF057182F53228 /* RNCAsyncStorage.h */, + C0180E0DAAFCDC1180358204BBF1D0EE /* RNCAsyncStorage.m */, + F28AFBA649D98C9468C89AEAE0F12E2D /* RNCAsyncStorageDelegate.h */, + 73032D7ABFA5F5EC43ADEF910CFBCF21 /* Pod */, + 9401049CC091D20F3E832BE0538542FF /* Support Files */, ); - name = Pod; + name = RNCAsyncStorage; + path = "../../node_modules/@react-native-community/async-storage"; sourceTree = ""; }; 1D12C2D07E4439611478BC772F414AD3 /* Support Files */ = { @@ -15098,35 +15672,45 @@ path = "../Target Support Files/Flipper-RSocket"; sourceTree = ""; }; - 1D60FAB92892951BAAC74DF7D271E87C /* Support Files */ = { + 1D7AF6AC756E889CFBBA16648E0D9321 /* Delivery */ = { isa = PBXGroup; children = ( - B140572A6A5316649AE4678D57A91B08 /* EXImageLoader-dummy.m */, - 255860A0B808B0A41877A4B9DC8818A0 /* EXImageLoader-prefix.pch */, - 6B18D9CCA3190DF28E422E2DB4F8F735 /* EXImageLoader.debug.xcconfig */, - BED30E21CA69BC6D89B34B95AD3C0F0D /* EXImageLoader.release.xcconfig */, + 111352AA53F0093A3AB2AEB343C37458 /* BSGConnectivity.h */, + D05C1CEC62104465904E3A67032B0338 /* BSGConnectivity.m */, + AB2B5D58205F45FDC1B97AF9658D4492 /* BSGEventUploader.h */, + B35A3F11DC99091C6A796255001C7507 /* BSGEventUploader.m */, + DF6E83B328726602E52506BBD87E3626 /* BSGEventUploadFileOperation.h */, + 94A96617407F7DDFF6A60E846D25757B /* BSGEventUploadFileOperation.m */, + 3B58D254DBD56810C7C07ABA162011BB /* BSGEventUploadKSCrashReportOperation.h */, + 574448DDB956D4C4A26897FFD13475A1 /* BSGEventUploadKSCrashReportOperation.m */, + B0D5A182C42291DAF7F26A11BD8C8483 /* BSGEventUploadObjectOperation.h */, + 27B7CEE5273A820E4FE8C0B13071E6DC /* BSGEventUploadObjectOperation.m */, + 3BF80B3C5C9D06C7E4861B18B24125A9 /* BSGEventUploadOperation.h */, + 039B1088A923BF790ADA0AC7732F66D2 /* BSGEventUploadOperation.m */, + 70BFA5E481DB2ED2EDD2DC75CC99DB74 /* BugsnagApiClient.h */, + 112D962E5A1F21D8C0DCB29477800458 /* BugsnagApiClient.m */, + C89060B13A5EAABE289966B9B7599BED /* BugsnagSessionTrackingApiClient.h */, + 85850D0F4EDDE83B68C1D3E63B63EB40 /* BugsnagSessionTrackingApiClient.m */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXImageLoader"; + name = Delivery; + path = Delivery; sourceTree = ""; }; - 1D8537AB1BFFEDD1BF6FCD0CCF06A9D3 /* Pod */ = { + 1DA63BF698EFFC4138BF51C8BC58CC1D /* Pod */ = { isa = PBXGroup; children = ( - B95A8F2F1A23013012F91BB8BA2C9D71 /* Yoga.podspec */, + 3598CD9163C8A620F21EE26D2D077183 /* advancedIos.md */, + 47104D1984A5C2F25BE8C9292B94B0AB /* installation.md */, + B57D2A87F8D209EC3EE1910BF101A458 /* LICENSE */, + 7E6ACF4F764B85148076064F490E35DC /* localNotifications.md */, + F6FC3E36C12BEA0B1BCE874338D485A7 /* notificationsEvents.md */, + BA844493E0367735F02B3DC1ABEC6311 /* react-native-notifications.podspec */, + 6994E61B1A90908489F7A027BC5BDC02 /* README.md */, + 948A4B74B6634810FD7152CB3A62A612 /* subscription.md */, ); name = Pod; sourceTree = ""; }; - 1DA9D9123E9B7F3C0E7A4B7305BDCAFA /* Reporting */ = { - isa = PBXGroup; - children = ( - 947ECF290A4ACF80E01A9C3892530837 /* Filters */, - ); - name = Reporting; - path = Reporting; - sourceTree = ""; - }; 1EA2EBBA07EAB3F2E0170F57BE43726A /* demux */ = { isa = PBXGroup; children = ( @@ -15137,16 +15721,6 @@ name = demux; sourceTree = ""; }; - 1EFCB502A327B47869BF5EF5B3024C9F /* Support Files */ = { - isa = PBXGroup; - children = ( - 1605B6FD583E67D1BEE24E6F9603B2C2 /* React-RCTActionSheet.debug.xcconfig */, - C94085E6B6A7A13D6CD5F15E0F6AE388 /* React-RCTActionSheet.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTActionSheet"; - sourceTree = ""; - }; 1FC1040188BBDF21303EB3FECEB54093 /* SDWebImageWebPCoder */ = { isa = PBXGroup; children = ( @@ -15161,28 +15735,6 @@ path = SDWebImageWebPCoder; sourceTree = ""; }; - 1FDE98F4547989A407DF00E2B588523F /* Pod */ = { - isa = PBXGroup; - children = ( - 21B12993427D7D0C83AAB9B181BEECCE /* LICENCE */, - 3C5F3081ED487C422AB3AF75093589E1 /* react-native-cameraroll.podspec */, - C7524F40571A7CAC0F17081D78CA171B /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 2008EAA124DB15A9226362FC74769A7C /* FBLazyVector */ = { - isa = PBXGroup; - children = ( - 23889D0E8A2F159ABBB81DAC1A78C208 /* FBLazyIterator.h */, - 0BF60F77642163DFF7DCABCDEDD8BE78 /* FBLazyVector.h */, - 06F667483E89EF1530CA64ABD70BC363 /* Pod */, - 0E4AC6E60BFB56307012B97532DBBD22 /* Support Files */, - ); - name = FBLazyVector; - path = "../../node_modules/react-native/Libraries/FBLazyVector"; - sourceTree = ""; - }; 2061B7311BF445D14F55305B58ED8988 /* CocoaAsyncSocket */ = { isa = PBXGroup; children = ( @@ -15196,16 +15748,36 @@ path = CocoaAsyncSocket; sourceTree = ""; }; - 20E74844E909F2DFC6C2397AC8D3422F /* Support Files */ = { + 2082BB99107B3B538C2E9FFC0E7A5C1A /* Support Files */ = { isa = PBXGroup; children = ( - 479D8E3AD31B5C8B9194AF439B56E901 /* react-native-mmkv-storage-dummy.m */, - 15D37FC8F85A61F540E029BC2B5A4EF9 /* react-native-mmkv-storage-prefix.pch */, - 3C53D1447B47B5110DBB0C52B2EF28B3 /* react-native-mmkv-storage.debug.xcconfig */, - AD2F63C80AA09A93F724FC566068DE6C /* react-native-mmkv-storage.release.xcconfig */, + EB1889F513B963203313D59B84A4D47D /* UMAppLoader-dummy.m */, + 11CB20F69C4411E5FDBA7623836E517F /* UMAppLoader-prefix.pch */, + B3F477DAC2CCDDEF7E1FA593B313DA60 /* UMAppLoader.debug.xcconfig */, + AE81EB40D8855381204EDA2A1E90003E /* UMAppLoader.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-mmkv-storage"; + path = "../../../ios/Pods/Target Support Files/UMAppLoader"; + sourceTree = ""; + }; + 2086F8EB8E1E136B1E3FCC567017A038 /* Pod */ = { + isa = PBXGroup; + children = ( + 8A4F992D9FCFC9A6A3E8F32CA25A1412 /* EXPermissions.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 2162A14A4DD7552B05675CC2711CB9E2 /* Support Files */ = { + isa = PBXGroup; + children = ( + A95ACD68CF68B792E1500C4081DB693C /* RNFBCrashlytics-dummy.m */, + 5C4250C05D4C210BAFA42C1CB4B27CB5 /* RNFBCrashlytics-prefix.pch */, + CB2403880F88F5DA093CE37CD971C654 /* RNFBCrashlytics.debug.xcconfig */, + E6B31D47FEA12DF3F7029345AFBA4B35 /* RNFBCrashlytics.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNFBCrashlytics"; sourceTree = ""; }; 218B26ABB0386AF0A97FB99AAE154B4C /* Frameworks */ = { @@ -15216,26 +15788,6 @@ name = Frameworks; sourceTree = ""; }; - 21FBA913ECB76F42E2175ADBEFF3F46F /* Pod */ = { - isa = PBXGroup; - children = ( - 61230AE453795B7A133A7459CE9BEBA6 /* UMSensorsInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 22140368671B2F922FE690C705501000 /* Support Files */ = { - isa = PBXGroup; - children = ( - 909811E53E8D44B7E9169FA59C7C94E2 /* UMPermissionsInterface-dummy.m */, - 7BA8D44E9F44FC58D71C3B883752F223 /* UMPermissionsInterface-prefix.pch */, - 9C88E2F9B45323A6B5B3E908D52B8633 /* UMPermissionsInterface.debug.xcconfig */, - 36F48B9009C0F1A2D6A6DB550409F4EC /* UMPermissionsInterface.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; - sourceTree = ""; - }; 222528DDC6F0791247B5F37794C1A6BA /* Frameworks */ = { isa = PBXGroup; children = ( @@ -15244,29 +15796,6 @@ name = Frameworks; sourceTree = ""; }; - 222D1D713FDD43D937CCE0ED8EB42818 /* RCTVibrationHeaders */ = { - isa = PBXGroup; - children = ( - 743B26E20D8673229070367B13C805DB /* RCTVibration.h */, - 96EC8C9375C6ADC92D478742206AAC57 /* RCTVibrationPlugins.h */, - ); - name = RCTVibrationHeaders; - sourceTree = ""; - }; - 22469285E516E5723DAD97EBE4C1ABCC /* detail */ = { - isa = PBXGroup; - children = ( - FF7EF32F15C69A1611BB95FC89295AF6 /* CallbackOStream.cpp */, - 346C26C5FDF9D26B1BCE38D397689071 /* CallbackOStream.h */, - 1C7107A992CAB08E5405E3EB1AD0C4DD /* SerialExecutor.cpp */, - D1D37F5BF753E9A21626896FBF19BE86 /* SerialExecutor.h */, - 762BA1FB95C0828800C43D58EBCAB1FE /* Thread.cpp */, - 8B44E2BA237EA657E0BA4B863125FFBB /* Thread.h */, - ); - name = detail; - path = detail; - sourceTree = ""; - }; 2301EE18F04F8E39CEB03D3ECC283D06 /* Support Files */ = { isa = PBXGroup; children = ( @@ -15289,25 +15818,6 @@ path = "../Target Support Files/JitsiMeetSDK"; sourceTree = ""; }; - 23580CF2E1858984F720AB6078F72D4A /* RCTRequired */ = { - isa = PBXGroup; - children = ( - 3F93FA89E97BD72E71B198182FB2A5C5 /* RCTRequired.h */, - 484E131036699CF9CFDB6A32358F3B76 /* Pod */, - 3445ED78EBA9BD289D5C469189B2F8D9 /* Support Files */, - ); - name = RCTRequired; - path = "../../node_modules/react-native/Libraries/RCTRequired"; - sourceTree = ""; - }; - 23BEE685651DA3393088B672A9897564 /* Pod */ = { - isa = PBXGroup; - children = ( - 911733C4E482E3EE66641E393F2D7B58 /* React-RCTNetwork.podspec */, - ); - name = Pod; - sourceTree = ""; - }; 240535AAA21390B67D2D702AA4D47519 /* decode */ = { isa = PBXGroup; children = ( @@ -15315,91 +15825,59 @@ name = decode; sourceTree = ""; }; - 244A97C2239766766E4C9DC7A0D9B6EE /* Pod */ = { + 25D598A75FCE674C4B80EAA48F9E6C06 /* Reporting */ = { isa = PBXGroup; children = ( - 7564E0F7847B6D9FD254CC09384997A0 /* LICENSE */, - 3A29CC470A2E746B87226199C4119598 /* react-native-orientation-locker.podspec */, - 7C4ACC8C6645C264E409BC4D3A20E808 /* README.md */, + 0232CDC089ABCD0FFD2CD6C7209AFFCD /* Filters */, ); - name = Pod; + name = Reporting; + path = Reporting; sourceTree = ""; }; - 2597C2D1A54D734FBC93E0C0B8E2F574 /* Support Files */ = { + 25E311ECE3341C0A076F3113BF6D46A2 /* Support Files */ = { isa = PBXGroup; children = ( - F48AF1ABA54338CDDA7EDAEE1D95BAE5 /* UMReactNativeAdapter-dummy.m */, - 1852E63B39A60C32242DC51BA5E79C12 /* UMReactNativeAdapter-prefix.pch */, - B593F833F9150F17305B0586F57644BF /* UMReactNativeAdapter.debug.xcconfig */, - BBDC96F1040C276F298801BF4C8B68DF /* UMReactNativeAdapter.release.xcconfig */, + 88924A7F0E7ED8E66C1C0A3ABE595DE3 /* React-RCTAnimation-dummy.m */, + DE478CEF7E6BBAC84708D5A369135801 /* React-RCTAnimation-prefix.pch */, + 03902662E196BE0FB6D7C3BBAD0738EA /* React-RCTAnimation.debug.xcconfig */, + 6E4512E71DEA6EB132DB9A11EE925080 /* React-RCTAnimation.release.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; + path = "../../../../ios/Pods/Target Support Files/React-RCTAnimation"; sourceTree = ""; }; - 25A8DD16A8694FF384F89937B514500E /* Core */ = { + 2630F56D134825750C948A207C1710C3 /* Support Files */ = { isa = PBXGroup; children = ( - ); - name = Core; - sourceTree = ""; - }; - 25E7ADB05B60B7B50E64781139F82C79 /* ReactCommon */ = { - isa = PBXGroup; - children = ( - 6E9F1D380388CC8F4E616CC3A4E33030 /* Support Files */, - 35D03548084CA8E885752237646DB83F /* turbomodule */, - ); - name = ReactCommon; - path = "../../node_modules/react-native/ReactCommon"; - sourceTree = ""; - }; - 269982BC1C644060553D51ABF1EB0630 /* react-native-jitsi-meet */ = { - isa = PBXGroup; - children = ( - 001A02A83A7692A8A79F45A266DB1EAF /* RNJitsiMeetView.h */, - 9CD0551584386CDA882ED878BB3E7441 /* RNJitsiMeetView.m */, - 8B96FBD3F084B25C0C52E865813E4690 /* RNJitsiMeetViewManager.h */, - 6748AF569364CD745C071D9CD54291DE /* RNJitsiMeetViewManager.m */, - 1A0EFBE2D8F561924C1588F45AC5F463 /* Pod */, - 380E26E446B9F40C41D9CFC8F0E63BDF /* Support Files */, - ); - name = "react-native-jitsi-meet"; - path = "../../node_modules/react-native-jitsi-meet"; - sourceTree = ""; - }; - 26FEEE0FD00C7C096271E6015C26D483 /* Support Files */ = { - isa = PBXGroup; - children = ( - 459C9A09C637182BA7152B33A7E9DC5B /* UMBarCodeScannerInterface.debug.xcconfig */, - 73316DB1DBC3402150E9CBDDF72A9B67 /* UMBarCodeScannerInterface.release.xcconfig */, + 77807DD48D1773606AF513C2B92338F5 /* UMFaceDetectorInterface.debug.xcconfig */, + 15C06E8BC22CE33F1AC579FF3EED5F01 /* UMFaceDetectorInterface.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; + path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; sourceTree = ""; }; - 272789F849F426A81268690001E4FFA7 /* Support Files */ = { + 27AE64D6C1A1C55C1B64934788AFC47C /* UMFaceDetectorInterface */ = { isa = PBXGroup; children = ( - 8CF899EFB71F38AEE156A535F6F569AB /* ReactNativeART-dummy.m */, - A9F2337CB63FC02E8DE531E2B8A60111 /* ReactNativeART-prefix.pch */, - 28FB3829A88EC4071042B4D690042CCB /* ReactNativeART.debug.xcconfig */, - 9B92B07A63CA3319D23692AA38449C1A /* ReactNativeART.release.xcconfig */, + 23AE9981C25EC0DD6CAA9273628B1D1D /* UMFaceDetectorManager.h */, + 121B8E3C90C259A8DBB49E51ECF028F2 /* UMFaceDetectorManagerProvider.h */, + 14B0874027965AB0076A22C974812618 /* Pod */, + 2630F56D134825750C948A207C1710C3 /* Support Files */, + ); + name = UMFaceDetectorInterface; + path = "../../node_modules/unimodules-face-detector-interface/ios"; + sourceTree = ""; + }; + 27C6A48BE3DEDE8FE6166EB7BF79F808 /* Support Files */ = { + isa = PBXGroup; + children = ( + AE8AC1829EFA92E41449AE5D122C171F /* ReactNativeUiLib-dummy.m */, + 0870CA6F2AB8D35483D97F6189570EB4 /* ReactNativeUiLib-prefix.pch */, + 859B9C5CC2B046D642D6E37D5EC38A39 /* ReactNativeUiLib.debug.xcconfig */, + 8AA93F829781BB82572A2B7D14A93599 /* ReactNativeUiLib.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/ReactNativeART"; - sourceTree = ""; - }; - 272D08B0355B79469259FF89FCFE74BA /* RNBootSplash */ = { - isa = PBXGroup; - children = ( - C251FAFE2013DD0DF9A5B6B62E3B2C30 /* RNBootSplash.h */, - B78438139966D602FB55C96C0171935E /* RNBootSplash.m */, - 9D76CB98E0F65FF231AD600B41DBC7D1 /* Pod */, - E66930F9B3DDD5B811B995D1649F9D61 /* Support Files */, - ); - name = RNBootSplash; - path = "../../node_modules/react-native-bootsplash"; + path = "../../../ios/Pods/Target Support Files/ReactNativeUiLib"; sourceTree = ""; }; 27F422F53DA14B74AE0EF0CC5DC4DA05 /* MMKV */ = { @@ -15414,13 +15892,38 @@ path = MMKV; sourceTree = ""; }; - 28D3EEF9DCFF9823CD9F4B165B703235 /* Pod */ = { + 27F74A6091A6F5F5492D142B1FE6BAD6 /* Support Files */ = { isa = PBXGroup; children = ( - 85130ACC8455CC3152011775F18857A8 /* README.md */, - 7603A664128750A61D7A95A3A2CE7D98 /* RNRootView.podspec */, + 9CF7B065AE2F454C92B112DA7734C782 /* UMBarCodeScannerInterface.debug.xcconfig */, + 7882F64290BD38F9E125BF84409F74A5 /* UMBarCodeScannerInterface.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; + sourceTree = ""; + }; + 28231AF484C698273669847C1DD7ABBA /* RawText */ = { + isa = PBXGroup; + children = ( + D6B54A82E94BF7B2CFD4B0174A07DE6C /* RCTRawTextShadowView.m */, + BACE883A39343A35E0D7C43689B9A13E /* RCTRawTextViewManager.m */, + ); + name = RawText; + path = RawText; + sourceTree = ""; + }; + 291031A305B371D4AEE4F1DA066ACD4E /* Support Files */ = { + isa = PBXGroup; + children = ( + 6174C6C58855E02EEFC88B8F6D256DF9 /* Yoga.modulemap */, + 78D86B2A9ECB46E74E8330B64B2E55F9 /* Yoga-dummy.m */, + FCE82986B8F4C7BF2E760101EF43B205 /* Yoga-prefix.pch */, + 9E8370F57B4CD8FC9815CC109C7CF48C /* Yoga-umbrella.h */, + 00FB9E7D2F9A485D27C21E89AFFBDDDD /* Yoga.debug.xcconfig */, + E46F50A7B06925F63C961B555F8D2501 /* Yoga.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/Yoga"; sourceTree = ""; }; 2919C4ADBC70FACD374207376B0BC186 /* Support Files */ = { @@ -15434,26 +15937,54 @@ path = "../Target Support Files/OpenSSL-Universal"; sourceTree = ""; }; - 2A0B8AC7B6EF780190A954D33CF2BAF0 /* Support Files */ = { + 291EA66C178E664FC9E1C62C71796E21 /* UIUtils */ = { isa = PBXGroup; children = ( - EA2B97AB9AFF644576D626D5157A989B /* React-RCTLinking-dummy.m */, - 5B186345815F6A815E8705BF239D68DC /* React-RCTLinking-prefix.pch */, - 3701A4329E51EDE753BB23D8D44B7BDF /* React-RCTLinking.debug.xcconfig */, - C895DF4AFB14DB637758149F9B3E8709 /* React-RCTLinking.release.xcconfig */, + 1786B30D3A2D0FDA491DA441AA95B05F /* RCTUIUtils.h */, + 291A3EF93026735D4A371473E47296C4 /* RCTUIUtils.m */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTLinking"; + name = UIUtils; + path = React/UIUtils; sourceTree = ""; }; - 2A32B24871EBC47C2DBEAA247464D04C /* Pod */ = { + 29290CDC75BEB381B81698C34C08C9E8 /* React-jsi */ = { isa = PBXGroup; children = ( - E45A84E2934A0E8130F1A88D011DE4E1 /* LICENSE */, - A1D33A9846E78AC1B1014AF47FAD2532 /* README.md */, - 3F9FC7E7CBCF1ED65FE6D79F702C0544 /* RNLocalize.podspec */, + 100FF3BEA5FECADD67AD149C0ECC3CB4 /* JSCRuntime.cpp */, + AA817559181B1223AA1F194FBE06B705 /* JSCRuntime.h */, + 672AF95080F815C951BE7C1CD6E27BE8 /* jsi */, + AC3FACD0A5A73FFF1253989A85A746E3 /* Pod */, + 38D9EAF47DFD9D6656C267373959A73D /* Support Files */, ); - name = Pod; + name = "React-jsi"; + path = "../../node_modules/react-native/ReactCommon/jsi"; + sourceTree = ""; + }; + 29F709BE7E7EBE94BBB06009E02BEA34 /* Support Files */ = { + isa = PBXGroup; + children = ( + D85BA8C9AB92AE4535FB92658398E81D /* React-callinvoker.debug.xcconfig */, + 81AF47282A6DA97839BF24F1A5FA42E7 /* React-callinvoker.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-callinvoker"; + sourceTree = ""; + }; + 2A13D72527B64620BD3DDE11B8E77759 /* CxxModule */ = { + isa = PBXGroup; + children = ( + E612D2832D116E527EFCC79329C6BEC5 /* DispatchMessageQueueThread.h */, + DD4D85719B708A4778BF1B148B6F1152 /* RCTCxxMethod.h */, + AEB135E8942546DB1AF42D3CF1B59508 /* RCTCxxMethod.mm */, + DA0EB8F4CBDE9D79FB27DC6176E546B1 /* RCTCxxModule.h */, + 7FE97DB842A59B5C2F615564FE5857EE /* RCTCxxModule.mm */, + DA0A31425FD62D5681ABB35C58430178 /* RCTCxxUtils.h */, + BF55835DEC39E3DA93EFFAB8A7E93815 /* RCTCxxUtils.mm */, + 90E0C5C1D038330241A0A2B207F13D08 /* RCTNativeModule.h */, + 5D7BE327B326B95C648585A7BE370A3A /* RCTNativeModule.mm */, + ); + name = CxxModule; + path = React/CxxModule; sourceTree = ""; }; 2ADDAEF89256CBF49155EA891F52C149 /* FlipperKitLayoutTextSearchable */ = { @@ -15464,44 +15995,50 @@ name = FlipperKitLayoutTextSearchable; sourceTree = ""; }; - 2C60965C4B8A7C8664E05C85ED268B5F /* internal */ = { + 2B3A3D161EE9A83388601D1B21185E62 /* RNFetchBlob */ = { isa = PBXGroup; children = ( - 863FFB2563D846E6655C95E09E864C34 /* experiments.cpp */, - 5399C3596FEA33E4943A0C0900F250E6 /* experiments.h */, - 67C5FAE32BEA89A9F629CED076CF7F99 /* experiments-inl.h */, + 84FACB1B8A9DB495EDF073E347729893 /* RNFetchBlob.h */, + E476010170478AC9D7AA25B09F7DCF62 /* RNFetchBlob.m */, ); - name = internal; - path = yoga/internal; + name = RNFetchBlob; + path = ios/RNFetchBlob; sourceTree = ""; }; - 2D8C873B2B18EE881666782A90CDF863 /* BugsnagReactNative */ = { + 2B45685CBA4FA71A1D076B8BEC8EB450 /* Support Files */ = { isa = PBXGroup; children = ( - B53E7F80E8EA3C88D4B762C16A7A1285 /* BugsnagReactNative.h */, - E88349E97E6DBAF0F9E56B0BC24364B4 /* BugsnagReactNative.m */, - 25A8DD16A8694FF384F89937B514500E /* Core */, - 9D91796F48A98E8E7CD4B9582AB71BA9 /* Pod */, - D9A5EBA44539396AB49EF6B38CC7A344 /* Support Files */, - D0BA31A1AA07BA93AD9B5DEDBA07AD4C /* vendor */, + BE088D34B31ACFBDBA428DB61D2FC8FE /* React-RCTNetwork-dummy.m */, + A3F2E83BB04FE8AD5C6B2DB7479DAE08 /* React-RCTNetwork-prefix.pch */, + 8615DB1436F8371A8275C4ACBDA47BFC /* React-RCTNetwork.debug.xcconfig */, + 00D4C04F9C078B723204D9E3500F2881 /* React-RCTNetwork.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTNetwork"; + sourceTree = ""; + }; + 2DCA09607972EF02C6DC33BC3DE26927 /* Support Files */ = { + isa = PBXGroup; + children = ( + F8A34C931F8875081A4EE2BB1B802E30 /* UMPermissionsInterface-dummy.m */, + 98DAAEA31AF8159C03E061644FC4BB80 /* UMPermissionsInterface-prefix.pch */, + F5771F51BE8367D62CF31BCD2A4FEB67 /* UMPermissionsInterface.debug.xcconfig */, + D18A2940596CFCC7B0DD063E40A88D66 /* UMPermissionsInterface.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; + sourceTree = ""; + }; + 2DE5EBC4462FAB226CF1389AC547081A /* BugsnagReactNative */ = { + isa = PBXGroup; + children = ( + 10F86E66E0536F796186D4071AAF9666 /* BugsnagReactNative */, + 6ABD67D964FDB8D39BBD2A098FE3D095 /* Pod */, + 326825D90FD7E0E28366D006D62F34B2 /* Support Files */, + 9551023A9ABE6695D0ACF46D95AD29DE /* vendor */, ); name = BugsnagReactNative; - path = "../../node_modules/bugsnag-react-native"; - sourceTree = ""; - }; - 2DC8D4AC2F2B9BD09525DBABCCB9474F /* RCTTextHeaders */ = { - isa = PBXGroup; - children = ( - 0621CFA7E1002C3D06E43D092DC62FBF /* RCTConvert+Text.h */, - 691F68D1104C3DC9EC6978403FEACA7D /* RCTTextAttributes.h */, - 7EF0B16ECF34B288D753FC7B5F377EA5 /* RCTTextTransform.h */, - E1340116A55BC2789767D505C903ED39 /* BaseText */, - B8095FCDEB378CC998D94F16EE2708B1 /* RawText */, - 990FB92901F318BD008341889694D453 /* Text */, - 6497CD66D4DB067B164CC444826B52AC /* TextInput */, - 8DF857D5AB48A5A6439081BED89C1F45 /* VirtualText */, - ); - name = RCTTextHeaders; + path = "../../node_modules/@bugsnag/react-native"; sourceTree = ""; }; 2DEE7E4490FAF113AC4089C451217EDD /* boost-for-react-native */ = { @@ -15513,82 +16050,76 @@ path = "boost-for-react-native"; sourceTree = ""; }; - 2F4A2D47B9E22A17202C02B15B77608A /* React-callinvoker */ = { + 2ED49C3FDA7BEC476F00E79559D73E9D /* Support Files */ = { isa = PBXGroup; children = ( - A71376A1FA8BD623D85C2D4F5199E0EB /* CallInvoker.h */, - 64CF3DE7D4E31FDB509E8391BF2879F4 /* Pod */, - 4591EBF68EE40EEAE4015F73FDAE4F3F /* Support Files */, + 28A8F597A0C2B9228920010A7D3BA31D /* React-RCTBlob-dummy.m */, + B7CB201A324A5C467DCAB13465BE0F9F /* React-RCTBlob-prefix.pch */, + B0165A96BF4E5166DAC954DD7CC76CC1 /* React-RCTBlob.debug.xcconfig */, + 7E61F8A63FBA407A952062E0F522055D /* React-RCTBlob.release.xcconfig */, ); - name = "React-callinvoker"; - path = "../../node_modules/react-native/ReactCommon/callinvoker"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTBlob"; sourceTree = ""; }; - 300D65E40ECB7BC503C57C825DD117BF /* Transitioning */ = { + 2EF25E51A7D9B87C4E7E327310CEAACE /* Support Files */ = { isa = PBXGroup; children = ( - B30C952062B51376C8A15B9E4FF935CF /* RCTConvert+REATransition.h */, - 65F5FB558C6BE50EC9471DC96E88DE1F /* RCTConvert+REATransition.m */, - E8988CEE467F80B83CD7E67E6837241C /* REAAllTransitions.h */, - 048FEFFAD7A72CEC6B5E45B4E2D690B9 /* REAAllTransitions.m */, - EE24F85C6CA8CC94F70EA6BD9EC8A95A /* REATransition.h */, - 26A671BBA18FD0BAB99D9DCEC2816635 /* REATransition.m */, - 8362362156D5E925271D7E0EE22A1520 /* REATransitionAnimation.h */, - 8EE14648D3ABB02A2BE71F10A6166BE8 /* REATransitionAnimation.m */, - 708E9A123344EB6FEFBCEB160EBB895F /* REATransitionManager.h */, - BB178A15DE3440AD1634E267C07D5F21 /* REATransitionManager.m */, - FD3E2706FC8050FCFFC24061A7FAFF8D /* REATransitionValues.h */, - 5C38396678B7BDB25D669DB58C1C6B60 /* REATransitionValues.m */, + 5CD4624DD0FCA9E92E21136ACCE7F269 /* react-native-safe-area-context-dummy.m */, + B30D6FE2E629D083BE994DC651DCB6DC /* react-native-safe-area-context-prefix.pch */, + ABD3A2C3ABA0E1DFC3CA633DDDDE1135 /* react-native-safe-area-context.debug.xcconfig */, + 3C500AB3A394159D74E166DE57D0C06D /* react-native-safe-area-context.release.xcconfig */, ); - name = Transitioning; - path = ios/Transitioning; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-safe-area-context"; sourceTree = ""; }; - 307BD94642C75D44547CC1A0B7A6A44A /* KSCrash */ = { + 2F1824855DC6896AC2F93FCBE0CF1B9D /* RNCMaskedView */ = { isa = PBXGroup; children = ( - F784AB8FB199515944D756391F2F70C0 /* Recording */, - 1DA9D9123E9B7F3C0E7A4B7305BDCAFA /* Reporting */, + 9683279A137FDD94EBCEC25771038803 /* RNCMaskedView.h */, + 00B64C68E8E48A836E1764A9AA6F83DE /* RNCMaskedView.m */, + 739C26D6C8C0848BCEE6E33039D4CA57 /* RNCMaskedViewManager.h */, + A5105BEB6D09F367043F57348917EBD3 /* RNCMaskedViewManager.m */, + B5B617E1CC9C786733CB42BD157F5536 /* Pod */, + 10E3478B3B64EB823B56561B7731BC42 /* Support Files */, ); - name = KSCrash; - path = KSCrash; + name = RNCMaskedView; + path = "../../node_modules/@react-native-community/masked-view"; sourceTree = ""; }; - 31A1EA5BE35AFB0F4BA6FFB9BA6116C5 /* RCTImageHeaders */ = { + 2F90513627F8CF41BECF52C115FB80D9 /* Support Files */ = { isa = PBXGroup; children = ( - 43462A4C81987292895FEC812FF44DA8 /* RCTAnimatedImage.h */, - 2CD31BEB3A603CA7490419DCEB1B4AEC /* RCTDisplayWeakRefreshable.h */, - CA114D494B77EA5D42F892A8B5959AD6 /* RCTGIFImageDecoder.h */, - 7844B99C090843EDAFD2A13939C66B78 /* RCTImageBlurUtils.h */, - 842BAEFE6645458EE0F6E3A333F9C324 /* RCTImageCache.h */, - 64E106A7EF61FBD69B3F90133BD754FE /* RCTImageDataDecoder.h */, - A89986F4AE4413B663478EA0594E4921 /* RCTImageEditingManager.h */, - 0626E1B283A3C17E4DDD638BFB4C834C /* RCTImageLoader.h */, - CBEC3F4089ADD5AB6DA330FFDE57B3D9 /* RCTImageLoaderLoggable.h */, - 250BB41F6D26242C3F01BC339EAFF55A /* RCTImageLoaderProtocol.h */, - 693B5756644F952AD45D01C2CD4C9852 /* RCTImageLoaderWithAttributionProtocol.h */, - 745DFED99C7D3160B495419A1A3A211F /* RCTImagePlugins.h */, - 724D71AA50D9A7B8ED4A377648D7AE68 /* RCTImageShadowView.h */, - B639B2586982125945AC60AB08159B6D /* RCTImageStoreManager.h */, - 626E78CAC13DC163B172B18AB8B900B9 /* RCTImageURLLoader.h */, - 88DDBFC3B61FAB1F9A0438758D23ED76 /* RCTImageURLLoaderWithAttribution.h */, - 916E87C269F0E0ED71FE8D913352EBB6 /* RCTImageUtils.h */, - FA3B61A50C04962E80196BC37FB98A0E /* RCTImageView.h */, - A35EB1DD452451C041B64AFF1F004DAE /* RCTImageViewManager.h */, - 9DBAA4DD27E3D6EE3785EA1C9057163A /* RCTLocalAssetImageLoader.h */, - B37A5E9ECD5A7DA22C3BE71712F77862 /* RCTResizeMode.h */, - B1C2E4CD8A04D7C5D42B3B687D150469 /* RCTUIImageViewAnimated.h */, + E0017F1443C3D35518E942C0337D1FDD /* UMFileSystemInterface.debug.xcconfig */, + D6CA99BC0704966CBE320E4264148590 /* UMFileSystemInterface.release.xcconfig */, ); - name = RCTImageHeaders; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; sourceTree = ""; }; - 328261A6471157D1378147EDC7F30D0A /* Pod */ = { + 31DD4FF38AC66E1A3EE4190CF53BF65A /* RNLocalize */ = { isa = PBXGroup; children = ( - E40709C60964E9F1D6F6F7134AB81DC9 /* react-native-slider.podspec */, + 5B314EBC0F63CD448CFF48D750EBD705 /* RNLocalize.h */, + 88503417B54D3757756715839F7FDEE0 /* RNLocalize.m */, + FCEED0EE883829DB1F57C7D6F38DB526 /* Pod */, + F8263D86AEC7E8A3F873201850FC131A /* Support Files */, ); - name = Pod; + name = RNLocalize; + path = "../../node_modules/react-native-localize"; + sourceTree = ""; + }; + 326825D90FD7E0E28366D006D62F34B2 /* Support Files */ = { + isa = PBXGroup; + children = ( + 4A503693896CA041F220F3392F98D2C4 /* BugsnagReactNative-dummy.m */, + A55820A233D2D3FA9344258E8AF8EED8 /* BugsnagReactNative-prefix.pch */, + 1A5D76D484B71B551E3699390AAF7DE1 /* BugsnagReactNative.debug.xcconfig */, + AAAD5A87BBE65DD6BFF0976C7031A52C /* BugsnagReactNative.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/BugsnagReactNative"; sourceTree = ""; }; 33C44897323E8C824AD5ECFD9CF54193 /* Flipper-Folly */ = { @@ -16231,95 +16762,45 @@ name = CoreOnly; sourceTree = ""; }; - 3445ED78EBA9BD289D5C469189B2F8D9 /* Support Files */ = { + 34530DD0B832E4C99BD44D019F8225FC /* bugsnag-cocoa */ = { isa = PBXGroup; children = ( - E8973559ADDA453DCED6FA2EADBE53D1 /* RCTRequired.debug.xcconfig */, - 4A09100047E992538C7D75B4F541F18A /* RCTRequired.release.xcconfig */, + 37E18C2889BDB4B1AD665BC33A97BBCF /* Bugsnag */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/RCTRequired"; + name = "bugsnag-cocoa"; + path = "bugsnag-cocoa"; sourceTree = ""; }; - 348908CE6CC0A595682AF4AC5032BBE6 /* UMCore */ = { + 347C38F6F21989397AC3CB18A4E7C341 /* Pod */ = { isa = PBXGroup; children = ( - D8FE9A68195B8B6221AB0447095456E5 /* UMAppDelegateWrapper.h */, - B962981C6291A1A9A0EFB1010A7847D4 /* UMAppDelegateWrapper.m */, - C64512ECEB03ED85EBE66A4997DFDE03 /* UMDefines.h */, - 4DEFEA67D02FA564721B80789FB77DFD /* UMErrorCodes.h */, - 277268E787A2182104B4413BDA8B6563 /* UMErrorCodes.m */, - CC57885782F72E113CAA4D456A2B3028 /* UMExportedModule.h */, - 1565FD382D91781228BB1CC2768FA506 /* UMExportedModule.m */, - 33C66815DB0B429302AFF0A687C98F4E /* UMSingletonModule.h */, - 183570369A4328F7B92F7F393713225F /* UMSingletonModule.m */, - 9EC6DF4E4E06CC30499AEF1C0C2E3882 /* UMUtilities.h */, - FE36B957CE88D2FE6144316620C87145 /* UMUtilities.m */, - 422B3205071C101532F25B9077D57A64 /* UMViewManager.h */, - 21329FB0685D071C3B316738C047E981 /* UMViewManager.m */, - B667211B3FCCCA9741A39610C7E7EA8E /* Pod */, - 448CC11C553CEE5D0643176198C94B10 /* Protocols */, - 364157835A30E24D128553594B51997F /* Services */, - 8B2057048C8C329295981E69DA2948EC /* Support Files */, - 90E377E67D5E46E74FE4A6B6906C2757 /* UMModuleRegistry */, - D02B7C31EC3D953DA77F512C1F62F7A2 /* UMModuleRegistryProvider */, + 52A7365380BDE375D1690CA2016D6E62 /* ReactNativeUiLib.podspec */, ); - name = UMCore; - path = "../../node_modules/@unimodules/core/ios"; + name = Pod; sourceTree = ""; }; - 34ED28AF93568072AD00438A1EE89219 /* RNReanimated */ = { + 35071B6A8FBDBF6B984FB20DCC1B6E85 /* UMBarCodeScannerInterface */ = { isa = PBXGroup; children = ( - 100A4C9D354E9C12632216329A338020 /* REAModule.h */, - 007537A3AE7D930968AB89BB4298297A /* REAModule.m */, - AD1EBFFDFF2879BE4D70BA38E77046B3 /* REANodesManager.h */, - 79E3ED98C72D10CEA3B2407F751510F4 /* REANodesManager.m */, - 9C53428765AA8389817A98573FBD13E8 /* REAUtils.h */, - 9E19E2F9348DFD9849B48564552A2757 /* Nodes */, - 0D5032268302431E420B2FAC910C30FE /* Pod */, - 4D8753EC3ACF540EB6392C9192ADE718 /* Support Files */, - 300D65E40ECB7BC503C57C825DD117BF /* Transitioning */, + 276DB70CAFFA8C51DC9B44E88B8A4223 /* UMBarCodeScannerInterface.h */, + F5E7B4DED4D5A8CA8A2AC2E8E3B2E978 /* UMBarCodeScannerProviderInterface.h */, + 58D6CD830BF4033E4AFF05CF0202F788 /* Pod */, + 27F74A6091A6F5F5492D142B1FE6BAD6 /* Support Files */, ); - name = RNReanimated; - path = "../../node_modules/react-native-reanimated"; + name = UMBarCodeScannerInterface; + path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; sourceTree = ""; }; - 353629D166B90688AB38BA24D9AB7521 /* ScrollView */ = { + 3534088DB66DEF568FAF45B5A920EB0F /* RNFBAnalytics */ = { isa = PBXGroup; children = ( - 21D77BBDDC9574A05806235BE50D4DE8 /* RCTScrollableProtocol.h */, - D065B9C577E4DC606496BB1350D1FCB6 /* RCTScrollContentShadowView.h */, - 28B9E2C90E2A68EFCBB472D555EBEEFC /* RCTScrollContentShadowView.m */, - 8D99450DAAD42748A2271809EA7BA1CA /* RCTScrollContentView.h */, - AAACB7805F83ACF416453DB8B5686EE4 /* RCTScrollContentView.m */, - DAAC06851A21BA628D7E9B9FA8D2E1B1 /* RCTScrollContentViewManager.h */, - F292A169FF060ED08AFD61D64F219B80 /* RCTScrollContentViewManager.m */, - B8D6E693B6AD7698CFE7993822DB075B /* RCTScrollEvent.h */, - 221EBEA1DCF0618E7E6D62958BF7250E /* RCTScrollEvent.m */, - 5602C42462E64D62814F0E3ED63F3D1F /* RCTScrollView.h */, - DFA270BB02695B4346A971BC4359CD23 /* RCTScrollView.m */, - F32623B4E1DFB667D5F999E8985F4480 /* RCTScrollViewManager.h */, - 33223AB54F9BEA9408E23CDF0B9910C9 /* RCTScrollViewManager.m */, + 2071AD3F0AFE230C3414C7848E15AE62 /* RNFBAnalyticsModule.h */, + 8BE6ADD1D1BE6811A03AFB71BBB1B55C /* RNFBAnalyticsModule.m */, + 90847C147529FEF4F28E023947EEBBB2 /* Pod */, + 443035F3C3FB5B8DE480E9FC38A1B786 /* Support Files */, ); - name = ScrollView; - path = ScrollView; - sourceTree = ""; - }; - 35367DA4EF9E8AE580AE4A00EC6223F7 /* RNDeviceInfo */ = { - isa = PBXGroup; - children = ( - 629B984ED021E1DCFB8A9837C7E2B90B /* DeviceUID.h */, - 7F61568FDAD9793D667A39D598FF656B /* DeviceUID.m */, - DC1B78775E27A1FEAF951E8B70B046A7 /* EnvironmentUtil.h */, - 3DD9E75AA3D534EF30982FC4A81248EA /* EnvironmentUtil.m */, - 2BEF4D6A896CE5FDAD0DD5D191A5F9C4 /* RNDeviceInfo.h */, - C96E5440EBAA0152AF3EC9344D405D96 /* RNDeviceInfo.m */, - EA79E37A33083A0B4A560C871C2B8B42 /* Pod */, - 4E8A5C2004C949BCCA1A0D9B3FA34614 /* Support Files */, - ); - name = RNDeviceInfo; - path = "../../node_modules/react-native-device-info"; + name = RNFBAnalytics; + path = "../../node_modules/@react-native-firebase/analytics"; sourceTree = ""; }; 3569ED544B7FB5799855EF9E104057CD /* Firebase */ = { @@ -16332,36 +16813,6 @@ path = Firebase; sourceTree = ""; }; - 359D530BB9522BC3BA1437D9625A044E /* Support Files */ = { - isa = PBXGroup; - children = ( - 1F027FAF40C0626C6850E1DC593B64CE /* react-native-restart-dummy.m */, - 7A60818DA0A7BC2DB9547CBE018B0133 /* react-native-restart-prefix.pch */, - EC76FCFA4A08F84C5A18F32710F20B7A /* react-native-restart.debug.xcconfig */, - F181D4BA617A1BB0C2A7B3A8BED80E77 /* react-native-restart.release.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-restart"; - sourceTree = ""; - }; - 35D03548084CA8E885752237646DB83F /* turbomodule */ = { - isa = PBXGroup; - children = ( - D8C79E7331D4D6A7A90899D44EFC9CA6 /* core */, - ); - name = turbomodule; - sourceTree = ""; - }; - 364157835A30E24D128553594B51997F /* Services */ = { - isa = PBXGroup; - children = ( - 7D1EEACADE83839614558A6E592233BC /* UMLogManager.h */, - D3DFC42A3D2AE88A61355DBCD6819619 /* UMLogManager.m */, - ); - name = Services; - path = UMCore/Services; - sourceTree = ""; - }; 366FD0BAA8D9A84B9FEB1AECF2F017A0 /* RCT-Folly */ = { isa = PBXGroup; children = ( @@ -16635,16 +17086,12 @@ path = "RCT-Folly"; sourceTree = ""; }; - 36FCED2585FE4E68FE22C626EF83DDCD /* Support Files */ = { + 36B571D5CDF18F9956567753B26DE890 /* Pod */ = { isa = PBXGroup; children = ( - 3E9BD9CB8DAE05A9F4592A77CFE061DB /* React-perflogger-dummy.m */, - A72ADD9D7D965C65BD9FB04D70677BD0 /* React-perflogger-prefix.pch */, - 5B74D2662B077094DB23560B2624AC8D /* React-perflogger.debug.xcconfig */, - 0715A45F35F07E2A9D608A71A16F7E79 /* React-perflogger.release.xcconfig */, + A5B397701238EF3AAAEE7E5D6211B1DF /* React-CoreModules.podspec */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-perflogger"; + name = Pod; sourceTree = ""; }; 379FC1A4AA39C182B24660BE1D835886 /* Support Files */ = { @@ -16658,40 +17105,42 @@ path = "../Target Support Files/GoogleDataTransportCCTSupport"; sourceTree = ""; }; - 37A7C65BDA1D3B9875638933B2F076EA /* Support Files */ = { + 37E18C2889BDB4B1AD665BC33A97BBCF /* Bugsnag */ = { isa = PBXGroup; children = ( - 826D8E801EA68CF54FD3D32F7EFFCEED /* RNCMaskedView-dummy.m */, - D1F2F609776F4D3A97E600DC6C591A70 /* RNCMaskedView-prefix.pch */, - 12336EB7EEB07BAA8D0DC7AAD14A3FA1 /* RNCMaskedView.debug.xcconfig */, - 6407EBC83BE6A19967C53EE9F7B8FFE5 /* RNCMaskedView.release.xcconfig */, + B7358C94276CCEC1B4AE7E9A1A8E374F /* Bugsnag.m */, + 8CEF6312A691D6DB22CF8785A46A0F92 /* Bugsnag+Private.h */, + 320D2D9ED3CB8B62056C35DC07E096D4 /* BugsnagCrashSentry.h */, + 01EE423A9240BC77F04F0954BFE9AB21 /* BugsnagCrashSentry.m */, + 434E94F8ABB8EC5550FB9722BBAB5A64 /* BugsnagLastRunInfo.m */, + 0A1AB6D01744E2320165DCECBB1BE4F9 /* BugsnagLastRunInfo+Private.h */, + 2F7346407420D349CF5ADF41C420A657 /* BugsnagSessionTracker.h */, + 7AE5CF45ABF4F6803BE087F741E80D4C /* BugsnagSessionTracker.m */, + 10EE657F01EBB6BCF4637D1124C1343B /* BugsnagSessionTracker+Private.h */, + C9BD5139DF22D21BF4CB4F97E6819226 /* BugsnagSystemState.h */, + EA8AF9736E107436330E00907D1BA6BC /* BugsnagSystemState.m */, + 6B8177413FE23A44A20772483FB6A2DB /* Breadcrumbs */, + 5D6FD0E97DAF411CF365958D4C4A2A43 /* Client */, + 7B2BB809FDDECF64E64B0B8EFAA482BB /* Configuration */, + 1D7AF6AC756E889CFBBA16648E0D9321 /* Delivery */, + 592FAACF379830F3D0E3FE3F478C6D10 /* Helpers */, + 751EF41D8D7AA945AF43D96BCC74634A /* include */, + 84E40C32042BC4E376079790C363EBBC /* KSCrash */, + 8E5A32E3DE7F8BBF28366A1F99BCFEA5 /* Metadata */, + 89E9DE362B0DA8851E0A2A3EDC9F8C0F /* Payload */, + 8A6EAA35821CBEC3697C77A447F0A1D9 /* Plugins */, + 16EC9B2B3B254E5E3A9B97999E10F173 /* Storage */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNCMaskedView"; + name = Bugsnag; + path = Bugsnag; sourceTree = ""; }; - 380E26E446B9F40C41D9CFC8F0E63BDF /* Support Files */ = { + 381949ED43D1CDA5910C97837B136DE6 /* Pod */ = { isa = PBXGroup; children = ( - E54E06E04C498E5F5E737A263756BCF3 /* react-native-jitsi-meet-dummy.m */, - 193445A0F9977B2A7F9DDCD56A8EA64E /* react-native-jitsi-meet-prefix.pch */, - 53E7E3570CB24F2714CA1C846EA0FFD7 /* react-native-jitsi-meet.debug.xcconfig */, - E64EF16A5E4BE731DCFD0AA7BD8C0599 /* react-native-jitsi-meet.release.xcconfig */, + 36F2F210CB0253245C2C4717A0A78D78 /* UMCore.podspec */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-jitsi-meet"; - sourceTree = ""; - }; - 384ABF970008CA4AB08882FC66003997 /* Support Files */ = { - isa = PBXGroup; - children = ( - B82467061550F63C530C4605A63703DF /* react-native-slider-dummy.m */, - 67443A0D721E53CCA52629029D127560 /* react-native-slider-prefix.pch */, - 34F8FA85D998FCF2F591931428F5BF8B /* react-native-slider.debug.xcconfig */, - 0DF223CBFA90F7B8693B5CC356031354 /* react-native-slider.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/react-native-slider"; + name = Pod; sourceTree = ""; }; 389E6219E25B293E37400BF93542290B /* Support Files */ = { @@ -16706,72 +17155,92 @@ path = "../Target Support Files/Flipper-DoubleConversion"; sourceTree = ""; }; - 391842083B9523E0FCB384EA4AB46739 /* EXAppleAuthentication */ = { + 38D9EAF47DFD9D6656C267373959A73D /* Support Files */ = { isa = PBXGroup; children = ( - 0FF2090437A38730740B7F0C74DDF438 /* EXAppleAuthentication.h */, - 04A6F722C92E459F6D83D92B90C54F50 /* EXAppleAuthentication.m */, - 1D954CAC56BBE0F2A7FB2555D6D0E3E8 /* EXAppleAuthenticationButton.h */, - 3D65B29A18EC8789606B6EBE207F70C0 /* EXAppleAuthenticationButton.m */, - 2C1B8AA7028C25E6A62FCC730DFE37A2 /* EXAppleAuthenticationButtonViewManagers.m */, - 7BA4E47A1FFF7ECD3994E443C14F65E6 /* EXAppleAuthenticationMappings.h */, - 7B5F6F7FB8E998677282001A8C8425D6 /* EXAppleAuthenticationMappings.m */, - D3289860078493081E88901C691B4FB0 /* EXAppleAuthenticationRequest.h */, - 7DECE3AD29CC36E9C2CC1FFBA3546E9D /* EXAppleAuthenticationRequest.m */, - 7ECE618DA08E485C1747235EE46BAC36 /* Pod */, - 47901BF5A7BA3CC3B510566C364FEDC3 /* Support Files */, + 047F29786AB3962508FB437472C96F1A /* React-jsi-dummy.m */, + D7158FAE9DF446090D9C9B2C3C24BD46 /* React-jsi-prefix.pch */, + FB71298544C4A579C35EA82025B38F9A /* React-jsi.debug.xcconfig */, + CE75A73372A46C20D81FFA32E2B7FF33 /* React-jsi.release.xcconfig */, ); - name = EXAppleAuthentication; - path = "../../node_modules/expo-apple-authentication/ios"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-jsi"; sourceTree = ""; }; - 3953A3359EC915AF526149B37A60DD5B /* jsi */ = { + 396863BF3DD7F36F45EBEED3C6D4A98D /* Pod */ = { isa = PBXGroup; children = ( - 4257DE517EBD8606610FFEC462A56B0B /* decorator.h */, - 02C586FEA37641674D3756C271DA84A6 /* instrumentation.h */, - A90B20A96D407BEC18685F2FFCDDE434 /* jsi.cpp */, - F780277E54584A9B21DD9D411CED0CB7 /* jsi.h */, - D4CEDE5C0FE1EFEDF54BD7AF098B1595 /* jsi-inl.h */, - C34A18A174B7C9DF73B8613D868C3FCD /* JSIDynamic.cpp */, - 3AED56F927A549A7619ECF0369EEECFA /* JSIDynamic.h */, - 5031A605E3E486316E0E47ABF063A379 /* jsilib.h */, - 1D17E9422562B9AE40FF349AAE22B990 /* jsilib-posix.cpp */, - E20599F626D412CD0CD01BC127220DF0 /* jsilib-windows.cpp */, - EE010C8DEC106260AA454468C450A6DF /* threadsafe.h */, - ); - name = jsi; - path = jsi; - sourceTree = ""; - }; - 39A131E286162E6DA10FF152F1A36768 /* Pod */ = { - isa = PBXGroup; - children = ( - 4C1356979F34071EFA57C35C20FE379B /* RCTTypeSafety.podspec */, + 9F42DFDA6F22835E42110275C6D45AD4 /* LICENSE */, + B44FE944CBD14BC532A9DD4246A36A3B /* react-native-netinfo.podspec */, + CB9ED71E24B8573D5A3F1BDF00522916 /* README.md */, ); name = Pod; sourceTree = ""; }; - 39A7C1656200AA487AF2901A8090E2B6 /* React */ = { + 399E361168DC15BBA351FDF15B988A20 /* React-Core */ = { isa = PBXGroup; children = ( - 79B6734F85D1BBE586AE31C06947B1C0 /* Pod */, - 50634DF989FB4583D87F62C903073AAD /* Support Files */, + C33C6F61CDBFDA394DA7D50D55E37F81 /* en.lproj */, + 5BABAA3A876E374DB80E5EE341FF8328 /* CoreModulesHeaders */, + A2EA80D2B861D24F3C4EFFFF75D4A028 /* Default */, + 9F36383D72DBF777DCB4FF1C7E4D0CA0 /* DevSupport */, + D8096B7AEC97A59C7C7D5A5E93C22202 /* Hermes */, + CDEA12D8150F0166590FD46EEE7CA305 /* Pod */, + 7136B12C4957CB04016A9076AF6B7651 /* RCTAnimationHeaders */, + FA808CFB40F601FBA98ACB56E8260884 /* RCTBlobHeaders */, + 4CFF1B77A281FBC35B5E1A2E3DDCD4CC /* RCTImageHeaders */, + C2A30B7BC14C869EC1C303D971779223 /* RCTLinkingHeaders */, + 0B4F336C514F383337AD55993EEFA77B /* RCTNetworkHeaders */, + 40AC56184139D6A75DDD29A9BFC052CE /* RCTSettingsHeaders */, + ADC0180113BDF314524896A2DC7468BA /* RCTTextHeaders */, + 5BE88C47F5FE6B199AAE81DE4BE4EEF0 /* RCTVibrationHeaders */, + 16DF97173707887DEFD155929A3E8141 /* RCTWebSocket */, + 71040A7C01F867C4BBC1C3486A7E176B /* Support Files */, ); - name = React; + name = "React-Core"; path = "../../node_modules/react-native"; sourceTree = ""; }; - 3B0A42E20B30CAEDE80899C72D28C17C /* Pod */ = { + 3A37A5E90C6C412F4E0BA775B67E249F /* Pod */ = { isa = PBXGroup; children = ( - A75B404D794A583413EFBCE86EB06644 /* LICENSE */, - CDB68DA9D1F31B64C7C1A12485F15A94 /* react-native-appearance.podspec */, - F1CC57D0C298698021A075CD48F9B59D /* README.md */, + BB924E2348F50D4641552CACC27C7A2F /* EXKeepAwake.podspec */, ); name = Pod; sourceTree = ""; }; + 3A51952E40338BFA1F012325F35C9B92 /* Support Files */ = { + isa = PBXGroup; + children = ( + E311CA96855FCF8855795BD4CE0AED45 /* rn-extensions-share-dummy.m */, + 6DBC133BD573DB96A2EFAC4EFE1318BC /* rn-extensions-share-prefix.pch */, + BDE5F0AC59BC5BAB36BA4C7B8245D641 /* rn-extensions-share.debug.xcconfig */, + 8909D94BC2491628F567748899BADD31 /* rn-extensions-share.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/rn-extensions-share"; + sourceTree = ""; + }; + 3A5230BB15A79DA55006B811D7814B95 /* ViewManagers */ = { + isa = PBXGroup; + children = ( + EBDFCF84A98A224047685A16A587A47E /* ARTGroupManager.h */, + E2C4F5D506247FD844878A1AA9B5B87E /* ARTGroupManager.m */, + 03617C7B382C83B9380716415C7DC53F /* ARTNodeManager.h */, + A800C3F16DC464A4511CDAE609AFBA34 /* ARTNodeManager.m */, + 5C916787C74604D8FD50FB4D7B25FFDA /* ARTRenderableManager.h */, + 7AED5BBB1861BBE84645A9A7B9670CE9 /* ARTRenderableManager.m */, + 821EFB2AD57FC7AAF6E4807273C20B56 /* ARTShapeManager.h */, + C9A7663B51899E9286FE8EFD38D72255 /* ARTShapeManager.m */, + 0717248847249C2F0906B2AF1AC14BA2 /* ARTSurfaceViewManager.h */, + 048BA257BC45490465B8024434ADA4F9 /* ARTSurfaceViewManager.m */, + 788A40ED01BB50ABD4F04BF4036D602E /* ARTTextManager.h */, + 1EAEEC68C0C4EF5223271B9D61A19D6F /* ARTTextManager.m */, + ); + name = ViewManagers; + path = ios/ViewManagers; + sourceTree = ""; + }; 3B0BEE9EB3FAD1BC4E1F3B77ECF664EF /* Frameworks */ = { isa = PBXGroup; children = ( @@ -16781,17 +17250,59 @@ name = Frameworks; sourceTree = ""; }; - 3C2C724B4706E8223D1D2F0C0E7419CA /* Support Files */ = { + 3B5F06B35DD32F9A59054F621F630E47 /* QBImagePickerController */ = { isa = PBXGroup; children = ( - 1299993311FE06E08B696339C865A54A /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */, - 44B3AC3A382198A1FC1377764842E54A /* RNImageCropPicker-dummy.m */, - 4A54730A4D16F602A7A23A860204F61D /* RNImageCropPicker-prefix.pch */, - 03954AEE20828DFC2E03367E9C8E0D11 /* RNImageCropPicker.debug.xcconfig */, - 76F040F7FB81248FFFB036799F33A65C /* RNImageCropPicker.release.xcconfig */, + 297E3326962EB460F2F3DCCB46B61FDD /* de.lproj */, + 00A792DB181EE87A94B1014D67850B27 /* en.lproj */, + 9AEB5D60F61E5CFCED85D70717DD27A5 /* es.lproj */, + 05FAE5D72DBDBDFEF33497FEB33A3454 /* fr.lproj */, + 1588731ED24E7943B390F4C87491A950 /* ja.lproj */, + E9727559286383AEBBDE40C6EC18F9F5 /* pl.lproj */, + 7799E6AB9741A90186122CF2B9D0146D /* QBAlbumCell.h */, + B02D8D43A8E6786CF62BCF30E24A36D9 /* QBAlbumCell.m */, + F090F061AC5C4B0E1DC3E845757F1542 /* QBAlbumsViewController.h */, + 35D9EBB8F22D3DE7D5E65D8D66CBAADC /* QBAlbumsViewController.m */, + 92CAD975CD7A20E93B55EF4E59090F99 /* QBAssetCell.h */, + 5E798A9318B82BB207DAEBB2D6604A9E /* QBAssetCell.m */, + F5EB7201D728C7DB3F37A71DB6AF6C98 /* QBAssetsViewController.h */, + 0E68C66A69B7E5F622F5B5273FC096A4 /* QBAssetsViewController.m */, + C9A67E3773B8A1005ED03BE3434F1EC5 /* QBCheckmarkView.h */, + 445FC593F30485717EBE305592618FD6 /* QBCheckmarkView.m */, + D20C1F69C8D64CF80267E0043A39E62E /* QBImagePicker.storyboard */, + 7A4E2F3708CA04A758B943E594737114 /* QBImagePickerController.h */, + 269B79E04D74D32BB3857DEFBC2B344E /* QBImagePickerController.m */, + BFEFAFEBF84E9FBD4F8AD032AB419A71 /* QBSlomoIconView.h */, + 7A5058AECCABB9E39123724170D99D66 /* QBSlomoIconView.m */, + 591FA607D74A59DECE40C10AAE8667E7 /* QBVideoIconView.h */, + 4ACD3C341BF3A171077258DD2E353362 /* QBVideoIconView.m */, + 02AB655AA81715AD591B40A32DD7A704 /* QBVideoIndicatorView.h */, + 21A6053EC3D1830C964689171A8B773B /* QBVideoIndicatorView.m */, + C50601436C1024EC64C217FF43FAB96F /* zh-Hans.lproj */, + ); + name = QBImagePickerController; + sourceTree = ""; + }; + 3B8B1DF98386A9823FE884510BFF7F14 /* Support Files */ = { + isa = PBXGroup; + children = ( + 5EDE4B6188274A04D1D48E9D069863FC /* UMCameraInterface.debug.xcconfig */, + 7E91599FA3BC0029A923484575892EE9 /* UMCameraInterface.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; + path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; + sourceTree = ""; + }; + 3C14BBE5A6DFBD07A3BFC1B457383596 /* Support Files */ = { + isa = PBXGroup; + children = ( + CAFCAA2659951C5F2840A793D96B938F /* FBReactNativeSpec-dummy.m */, + DF2C8B2FED7F52A516FB7033B9AA4253 /* FBReactNativeSpec-prefix.pch */, + 868B8F033FCD7483A5C51ED38B9A065C /* FBReactNativeSpec.debug.xcconfig */, + 85EC70A6AA577F3618C422F6509F6B57 /* FBReactNativeSpec.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/FBReactNativeSpec"; sourceTree = ""; }; 3C340826F2D3F6DEC6DDD45CDAE54284 /* FirebaseCoreDiagnostics */ = { @@ -16808,445 +17319,373 @@ path = FirebaseCoreDiagnostics; sourceTree = ""; }; - 3DED171A6D710B9FDF00DAE753FCFE58 /* React-jsinspector */ = { + 3CF6EBCA1E9E52895E565BD6FB14FA5B /* VirtualText */ = { isa = PBXGroup; children = ( - F2AAFED44278DAADE645A90B5973A815 /* InspectorInterfaces.cpp */, - 2C775C14924CE68B918E49DBC07E0462 /* InspectorInterfaces.h */, - 8D1EA7B3189F16041BBC9F2DFEFA1212 /* Pod */, - 902D5787558EAD024A9B8A02BFA047FD /* Support Files */, + 478DF8C445CCDF77B39FA9B32149D61C /* RCTVirtualTextShadowView.h */, + 0E66BD9275AF1DCFAE284A18EDB3DB96 /* RCTVirtualTextViewManager.h */, ); - name = "React-jsinspector"; - path = "../../node_modules/react-native/ReactCommon/jsinspector"; + name = VirtualText; + path = Libraries/Text/VirtualText; sourceTree = ""; }; - 3EFE9A4D60C3868B6E727E15CF97F721 /* Support Files */ = { + 3ECF7641B16FCA7AEC743CA0985A1BD2 /* react-native-document-picker */ = { isa = PBXGroup; children = ( - CE0C4A8B6C2D128A86C2AADF7D4B3E40 /* EXPermissions-dummy.m */, - A25771F859E185EF5ED5967A5BD7EB83 /* EXPermissions-prefix.pch */, - 6615A2E2272EE55298643FBBEFD8EE16 /* EXPermissions.debug.xcconfig */, - 98F6399D54E8D67F9EF4BBCA4F4112BB /* EXPermissions.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXPermissions"; - sourceTree = ""; - }; - 41B28E5919E203045AE314F4141329D1 /* BaseText */ = { - isa = PBXGroup; - children = ( - AA1CE850DABF13336CBFD5E65D11A5E8 /* RCTBaseTextShadowView.m */, - ECF6274B422B5070584B23CD75BDF7EA /* RCTBaseTextViewManager.m */, - ); - name = BaseText; - path = BaseText; - sourceTree = ""; - }; - 426E6D26BFE8FBCE5247FA85865C9268 /* RNScreens */ = { - isa = PBXGroup; - children = ( - A05C8730DB538D2EC8A18C6FC9AA4F71 /* RNSScreen.h */, - B8FF33E3248604EAAD1185ED8CEDA331 /* RNSScreen.m */, - EF0A57993059CD6B449626FCAAD7CB58 /* RNSScreenContainer.h */, - 42D664A0C02CE8B359FBC56C3FF16612 /* RNSScreenContainer.m */, - 93A83A25A4D2C58B976438003D4060AC /* RNSScreenStack.h */, - 91040B04501301457F40B23C9888A8B1 /* RNSScreenStack.m */, - 8AE5283E41BBB16A0A78B75721D9B299 /* RNSScreenStackHeaderConfig.h */, - 90C9392F71893D253F3FE57198C7DD13 /* RNSScreenStackHeaderConfig.m */, - 0869A065315E66BD005428193A50F1DB /* Pod */, - A1FFE96A7AFFF38816B2819CBD0DEC1C /* Support Files */, - ); - name = RNScreens; - path = "../../node_modules/react-native-screens"; - sourceTree = ""; - }; - 448CC11C553CEE5D0643176198C94B10 /* Protocols */ = { - isa = PBXGroup; - children = ( - 298EF32294E39FCD41FAC2AE85517610 /* UMAppLifecycleListener.h */, - 45FB3F7CC6A63A51F47CF5D70049EC1B /* UMAppLifecycleService.h */, - 9E232D398BC12A4C673E6250BA15D587 /* UMEventEmitter.h */, - 886591E5AA46B071E652AC8CFBB30BDD /* UMEventEmitterService.h */, - CAB163CC453CB671E735393A50963940 /* UMInternalModule.h */, - E9AF2BFDF7B235CB61C74A7EE7A4C82A /* UMJavaScriptContextProvider.h */, - 86CFE60E12EE97FFCD2AEE589B017D22 /* UMKernelService.h */, - 3547C5EE598BDF27BF5868CF6E1B4764 /* UMLogHandler.h */, - AF0A3520A89842B19B581DAFD17D99B5 /* UMModuleRegistryConsumer.h */, - 9BD07A336F409A29BE9C79ABFEAFC38E /* UMUIManager.h */, - F6365F25B9BDB0242DF234892A2C9ED6 /* UMUtilitiesInterface.h */, - ); - name = Protocols; - path = UMCore/Protocols; - sourceTree = ""; - }; - 45096ED5C4A92E0469A020155DE2A411 /* Views */ = { - isa = PBXGroup; - children = ( - 26B47003518E96C5A8A671261EA8C5EF /* RCTActivityIndicatorView.h */, - 3982D712C7B3264E2B4061DE932045C0 /* RCTActivityIndicatorView.m */, - 3BEF49093845DDC9CB2648D903D30325 /* RCTActivityIndicatorViewManager.h */, - 45252E0FABE010F3C70C129164C32B79 /* RCTActivityIndicatorViewManager.m */, - 7407811B66DDD0110526BD7FEC370D4C /* RCTAnimationType.h */, - 9AA97DEE8DA56377574E6FF78AB113D6 /* RCTAutoInsetsProtocol.h */, - 16C9015BD0A0B74CEA6D43AF89FCD04F /* RCTBorderDrawing.h */, - 8BFD3A3A3C98ECBC0BD2A15A481F8D59 /* RCTBorderDrawing.m */, - AA46474D1E4058849E8D0F7D8E199CC2 /* RCTBorderStyle.h */, - 1EA38016D925A891156C2CD4F49C291C /* RCTComponent.h */, - C9C5E6185D9BEB593FDAEE8D9C695E37 /* RCTComponentData.h */, - 38A12A3ECC3F33AC639F777F219463C5 /* RCTComponentData.m */, - BC34112B5BA3EDD7D3665A91663E64DF /* RCTConvert+CoreLocation.h */, - 4ACA96AF7A40917DC63DBD40FEBBB54B /* RCTConvert+CoreLocation.m */, - A5B6E53B1EA4C12F117C1B8B85AEE214 /* RCTConvert+Transform.h */, - FF42441109A7D2E1225ED8FC43D4E0AC /* RCTConvert+Transform.m */, - 8F9798970E2AE328EE09C560C382F3A7 /* RCTDatePicker.h */, - C419D7878BB410D952937F7491383336 /* RCTDatePicker.m */, - 6E99D6C2A288A7C117EAAE21A1959639 /* RCTDatePickerManager.h */, - 7F694550EB70903F2284F3EBBE04B8E9 /* RCTDatePickerManager.m */, - 0D7EF8C901F7000EEA6BFB0673C19EF8 /* RCTFont.h */, - 371B28F82A1ED21F2AEF3B36D7E0732B /* RCTFont.mm */, - 913DE05DCA14C5FAE0C1183F8A19ECEA /* RCTLayout.h */, - 79A9637B9FBB5335261BF42C8A47D090 /* RCTLayout.m */, - 92F324CB45068E03D0ED4F3EBBD493AC /* RCTMaskedView.h */, - 95A407F587675F50C235A231D771F147 /* RCTMaskedView.m */, - 25578B9A60447C91AA98CC57642AD848 /* RCTMaskedViewManager.h */, - 568061B962A8628A2583A8F201F9C2E5 /* RCTMaskedViewManager.m */, - 5412CD0E31F34E9F3702381C037BA9DC /* RCTModalHostView.h */, - 7D30E2993D68BD7EC30537F610662BE5 /* RCTModalHostView.m */, - 85F454D900D9E3F1EC0368BA1E08F269 /* RCTModalHostViewController.h */, - 67FED35915516D004344018E4837E98B /* RCTModalHostViewController.m */, - 3434389DF3696B53B90F2F2EBE9118AC /* RCTModalHostViewManager.h */, - E32F1187F93F4D6338F8FFA8801461D2 /* RCTModalHostViewManager.m */, - 5F2B7B521B5CB97DC3E8275845FE10E8 /* RCTModalManager.h */, - F2728955F8CDF5857634CEDEB917E7EA /* RCTModalManager.m */, - 917324CD6B8261910AE8FB9D5B5D85B9 /* RCTPicker.h */, - AF6EC2F17768F6FE1167C1A6CBCE23AC /* RCTPicker.m */, - 89D4F729E6BD5C757B99E718C8D3BD70 /* RCTPickerManager.h */, - 79162227240B6786E43A59ACEA4B1F44 /* RCTPickerManager.m */, - 6377DE541E0C6E7297F6C5EF6D754F48 /* RCTPointerEvents.h */, - 2C9DCC228B654BC693B430822A72F794 /* RCTProgressViewManager.h */, - 93D62110C771F401145F6AE0AA0561CA /* RCTProgressViewManager.m */, - 0C9C6C38C59183D5511A79DC72F3DE4C /* RCTRootShadowView.h */, - D5B2355CC35954E9C49262D1C805126D /* RCTRootShadowView.m */, - 2D0F90F9DD1B215971A05EF66FC3366D /* RCTSegmentedControl.h */, - 4F85C401E9C6B0AA8C57171AEB77C93D /* RCTSegmentedControl.m */, - 11FBE174F53CE8FC3F580B4B6C3A0CAD /* RCTSegmentedControlManager.h */, - 575C0CA92CD3A201B1E951FA6470DC7D /* RCTSegmentedControlManager.m */, - 40123FB2C7C27669E5D228D929778590 /* RCTShadowView.h */, - 589A90DC21B86114FE26A76388EEA3D0 /* RCTShadowView.m */, - D2230E534485C9E75F15FFB2F67318D3 /* RCTShadowView+Internal.h */, - 8BCE966DF43AC7CEE300D7041B0D3554 /* RCTShadowView+Internal.m */, - 16354A3A2E4DC170EAD17BDB9E78058C /* RCTShadowView+Layout.h */, - 3B4A31BDDD4A0A956355E9AE13560C02 /* RCTShadowView+Layout.m */, - 4EDB13431034DC092F4374B84345B44E /* RCTSlider.h */, - 9ED48661942DB09890F24EBDC0B7755F /* RCTSlider.m */, - 6BB558448356A4D39A31307FD3C409F4 /* RCTSliderManager.h */, - E2D2901D1AB6215DA4418CA69AF31D13 /* RCTSliderManager.m */, - A9805BB28DE03E79698B2F89C119243E /* RCTSwitch.h */, - D196AE1B55787F646D039E8E580BDCA5 /* RCTSwitch.m */, - F94BF3FB54468D1F9CB960B3A59D0B05 /* RCTSwitchManager.h */, - 82391B90CCEF95B447654F7B2458083C /* RCTSwitchManager.m */, - 181C97ECC59572541F253F5C42B03FD1 /* RCTTextDecorationLineType.h */, - 9BD62FD1EAF86D42FBFFBD61036B233D /* RCTView.h */, - F23755F3F289AC1B3AF09C62A34A01BA /* RCTView.m */, - 47E979636E1E0DF746A3AAB12AFC7949 /* RCTViewManager.h */, - 12300C8AB123C4788168C1E3F9C417D6 /* RCTViewManager.m */, - 4C03C2DE3EBDFE0B44CA7C61777FCC75 /* RCTWrapperViewController.h */, - 2C15F014F660AA158F9A7CAD4199DFA3 /* RCTWrapperViewController.m */, - 91D0007F0B44D87A9E7C67ED68997057 /* UIView+Private.h */, - 4FD9060B3D3C139108B7CCF8DB6EB9F2 /* UIView+React.h */, - 39075FBD60B624D44E193316E50A9AE4 /* UIView+React.m */, - 74B124AED6D5187F1D1EE8A097950B1B /* RefreshControl */, - 4B2916DEBF3906DFC8A7D23EB7145BB2 /* SafeAreaView */, - 353629D166B90688AB38BA24D9AB7521 /* ScrollView */, - ); - name = Views; - path = React/Views; - sourceTree = ""; - }; - 454C9C94B0FB476BE31710E198A41859 /* Pod */ = { - isa = PBXGroup; - children = ( - 40CD55D43B87E836C7FC1180FE897315 /* LICENSE */, - AB01AD6CC991F23763B2693860D43D06 /* react-native-blur.podspec */, - 4F367BBCAA005A2A7BBDFB8865BEAECF /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 454E4FEF6319133EE1CF43D904B286E5 /* RNFastImage */ = { - isa = PBXGroup; - children = ( - 043E6DDD7CCF09B200DC3C00E6197153 /* FFFastImageSource.h */, - FE04340EFFCB5BDD23F2E89A693A4C15 /* FFFastImageSource.m */, - 35D427331095E2422EC9BCF3C8D91CA9 /* FFFastImageView.h */, - 7A9443962511C92FD7F5225D9E1A6C0A /* FFFastImageView.m */, - A45D5B7698A7B7C901DDD3AE54564605 /* FFFastImageViewManager.h */, - 6CA9C2CF15A63F4CA8A773271762C929 /* FFFastImageViewManager.m */, - 757A0C01A2A62533D19E98342F8B5D0D /* RCTConvert+FFFastImage.h */, - 6D0DA8859E79F2DB7185EEC52C8A9ED2 /* RCTConvert+FFFastImage.m */, - F8322387D707C07D51963FBAAA4C2973 /* Pod */, - C0BE6C0D1A7283FABB0856AE969EFDD9 /* Support Files */, - ); - name = RNFastImage; - path = "../../node_modules/@rocket.chat/react-native-fast-image"; - sourceTree = ""; - }; - 4591EBF68EE40EEAE4015F73FDAE4F3F /* Support Files */ = { - isa = PBXGroup; - children = ( - 0D5BBBB7AD1D865CEDD923D166C39BB3 /* React-callinvoker.debug.xcconfig */, - D484B3C4171FE47BACEDE24FE6B0B41C /* React-callinvoker.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-callinvoker"; - sourceTree = ""; - }; - 46926FD9AAFE0B07E0DAE089AD2986AA /* safearea */ = { - isa = PBXGroup; - children = ( - 818CB0D5B66DB7CD5A9B03951812A7CF /* SafeAreaManager.h */, - 6B316F3EB3F04EB82A40DE42C29374D4 /* SafeAreaManager.m */, - 87748E27FEC252F9DB7E83F57992D891 /* SafeAreaSpacerShadowView.h */, - 7620D890F194860EE2882BB61D61EA29 /* SafeAreaSpacerShadowView.m */, - 0ABE5571AD63590AB00E15F3FEC1E582 /* SafeAreaSpacerView.h */, - 4068FB95892206282347082A92DDF33C /* SafeAreaSpacerView.m */, - 0F18239889D5C128EA1402D289AE5CE6 /* SafeAreaSpacerViewLocalData.h */, - DE271832108177A46D669E1BEC4D684B /* SafeAreaSpacerViewLocalData.m */, - 89150B0A3D5E2A096D1706A478282A89 /* SafeAreaSpacerViewManager.h */, - 8F5B310E73AF1F9C6C5E3ACCEDE8B248 /* SafeAreaSpacerViewManager.m */, - ); - name = safearea; - path = ios/reactnativeuilib/safearea; - sourceTree = ""; - }; - 46C85AA5DC699BDBA8B6C61BB9B09BF2 /* Support Files */ = { - isa = PBXGroup; - children = ( - C5187DBFEB74E69B1C8D013C3DAC8884 /* RNFBCrashlytics-dummy.m */, - 675CAEE33B9097E82C62669A02A100FD /* RNFBCrashlytics-prefix.pch */, - 0349D9B866669E6BF1FED7EF8EEEAD0A /* RNFBCrashlytics.debug.xcconfig */, - 0A9A37CA9D46A7E435C023DE581010BB /* RNFBCrashlytics.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNFBCrashlytics"; - sourceTree = ""; - }; - 47646E301BC23233AB064FFF3EF7F303 /* Sentry */ = { - isa = PBXGroup; - children = ( - 789B2B29325D12DE736E8759DF579A7B /* BSG_KSCrashSentry.c */, - F3FAB8103792C1FF3B34011A42C1CE1A /* BSG_KSCrashSentry.h */, - 6D912204E55E4D99267763A4775EC975 /* BSG_KSCrashSentry_CPPException.h */, - B6A6BA3A53C99B66F5A5DC13B9AA5AFB /* BSG_KSCrashSentry_CPPException.mm */, - 66DBED08D481E3230301B0600488D541 /* BSG_KSCrashSentry_MachException.c */, - 5C95B85703FD3909D26F4D6F5F09452B /* BSG_KSCrashSentry_MachException.h */, - 16114C81CC8E0A116B82A4C3894454A8 /* BSG_KSCrashSentry_NSException.h */, - 0722DFF6E36A11A78507E6717291246A /* BSG_KSCrashSentry_NSException.m */, - 4BA82A9C11131F58A6147B3E57966BEA /* BSG_KSCrashSentry_Private.h */, - D1B825B8C351A9CC5F57DBA490C5F7D3 /* BSG_KSCrashSentry_Signal.c */, - A827520F2A7F6932E809F8409B1DF5F4 /* BSG_KSCrashSentry_Signal.h */, - BD673995F60C9E61AAC2C639D5BC3CC5 /* BSG_KSCrashSentry_User.c */, - 6AEA540EBD145F05A9C283DD8DF728C4 /* BSG_KSCrashSentry_User.h */, - ); - name = Sentry; - path = Sentry; - sourceTree = ""; - }; - 47901BF5A7BA3CC3B510566C364FEDC3 /* Support Files */ = { - isa = PBXGroup; - children = ( - 7B07F6CDC189F85A34478B0D84841E15 /* EXAppleAuthentication-dummy.m */, - 883542833FE5BFC88FDFFCFEA3F9DC1E /* EXAppleAuthentication-prefix.pch */, - DB752E1CC8DE8EC89038D7FE07F16736 /* EXAppleAuthentication.debug.xcconfig */, - 1E0D47826A73E69B50EE035AE0AD8D26 /* EXAppleAuthentication.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXAppleAuthentication"; - sourceTree = ""; - }; - 4822F6A0D9F7776FEF529C014567DC77 /* Support Files */ = { - isa = PBXGroup; - children = ( - DC517F752B3D8A0C90C674D080ED0265 /* UMTaskManagerInterface.debug.xcconfig */, - 078D964FEAB5D5E810F67F885FBDCA6E /* UMTaskManagerInterface.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; - sourceTree = ""; - }; - 484E131036699CF9CFDB6A32358F3B76 /* Pod */ = { - isa = PBXGroup; - children = ( - F84D001BE5ABD4E479DDA8F82AB46551 /* RCTRequired.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 48B095821B3F2151CAFB6FD1541E6F73 /* UIUtils */ = { - isa = PBXGroup; - children = ( - 627D20F1B33BC522318E7820082BC048 /* RCTUIUtils.h */, - E8795D7BD23A87E54DB07D464B15FA0D /* RCTUIUtils.m */, - ); - name = UIUtils; - path = React/UIUtils; - sourceTree = ""; - }; - 49667244C353B2AD37F042DA3082B6D2 /* React-cxxreact */ = { - isa = PBXGroup; - children = ( - E1E6921B5EAEF59ADC52E24F87AEF537 /* CxxModule.h */, - 2ACB15B509F18CDF482A4FA7D738B34F /* CxxNativeModule.cpp */, - ACF973B189198F2CB15242EDF1E8A725 /* CxxNativeModule.h */, - C021805E21A690949A5BF3326BD26343 /* ErrorUtils.h */, - 557FB656903AB1CF7A53942FE6D2C153 /* Instance.cpp */, - 190CE181BA87CD4A25DAAF844AD78673 /* Instance.h */, - 712009C99073672BFF4D2D1DB1445FC8 /* JsArgumentHelpers.h */, - 44B053FA00285F2C0DCD94BEAC5D0B76 /* JsArgumentHelpers-inl.h */, - BAED0E96BF78EC7982D6B38B4D6D658C /* JSBigString.cpp */, - D56F7FAAC8A53E1BC6F58AB6E97B23F9 /* JSBigString.h */, - 876970F6A9EA5AABD769FE441E0644FF /* JSBundleType.cpp */, - 32E0CDBDAB1342AEAF6E279FA4F2B620 /* JSBundleType.h */, - EFAAF47B4801CDE958D673372A01BBF3 /* JSExecutor.cpp */, - 728DCD7B35A7852B1FD750F76741E897 /* JSExecutor.h */, - 5D775911616F066110A00982DB65A0CF /* JSIndexedRAMBundle.cpp */, - A866DE2F2B6102A2E8A9F3FB16CC6A2B /* JSIndexedRAMBundle.h */, - 83D5AA99E0E6E0F53037D6DB37801041 /* JSModulesUnbundle.h */, - B51EEE12985C53348E194EBB46753C59 /* MessageQueueThread.h */, - 04B8617080763B511FFA26B4B2883D76 /* MethodCall.cpp */, - 0D9DA6605A5EC6BA2B775035CF901D16 /* MethodCall.h */, - 576F8706451A4977F83DDFE1E1BE5A63 /* ModuleRegistry.cpp */, - 25747DDE22751EFD64D62C45F85C1EFD /* ModuleRegistry.h */, - 4B381FB46DB755A2057D4D32406AE2A7 /* NativeModule.h */, - 361194A66DF7D2D5B9B38ED8BED6AAF9 /* NativeToJsBridge.cpp */, - 303C4921600ED01992C0528D52C81B42 /* NativeToJsBridge.h */, - 3665F670F09B6CD165F2B9022FD63313 /* RAMBundleRegistry.cpp */, - 8A946CBA0236163B5D6AD1CBAE7E8594 /* RAMBundleRegistry.h */, - C490134B6DF9A068D75DD687B061463C /* ReactMarker.cpp */, - 85D33A1402CC1B5CCE66713F4160CA37 /* ReactMarker.h */, - B0FEACC0CB1FB92340BA8E160A2C2E6A /* ReactNativeVersion.h */, - AE40E991B5D04B318639EBE8C223A0C8 /* RecoverableError.h */, - 0E3EA0186C82A8DF7D7102BB4982E1AF /* SharedProxyCxxModule.h */, - 4505A2DC2AA94681B244E2CF6D831A75 /* SystraceSection.h */, - 1B368FA8C5952C41DA3934BF2089DF8C /* Pod */, - 759E0A8A237D312DB0E0194E77F219C5 /* Support Files */, - ); - name = "React-cxxreact"; - path = "../../node_modules/react-native/ReactCommon/cxxreact"; - sourceTree = ""; - }; - 4AEFD2558B645E3821DA335D69288805 /* Support Files */ = { - isa = PBXGroup; - children = ( - 7A07089A6630D56DCCD6F6C37D3AA5B9 /* React-jsiexecutor-dummy.m */, - 03809174CF57438208CEC0F7EC7034D8 /* React-jsiexecutor-prefix.pch */, - 4D4FDAB00C0EA2B8970D7994FFFA8279 /* React-jsiexecutor.debug.xcconfig */, - BD0D868FB4241719B88CB96551A60F2C /* React-jsiexecutor.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsiexecutor"; - sourceTree = ""; - }; - 4B2916DEBF3906DFC8A7D23EB7145BB2 /* SafeAreaView */ = { - isa = PBXGroup; - children = ( - B57234370441A1188CC4B57867664254 /* RCTSafeAreaShadowView.h */, - 4ECDFB77ED55DDC152572476C28A6383 /* RCTSafeAreaShadowView.m */, - 03A47EB93BA6B8854EFFC0EE9AE61F99 /* RCTSafeAreaView.h */, - 185366F633C28434DC61E24706AAFFC3 /* RCTSafeAreaView.m */, - FC5DBB2DE839D5DDED62B77AABF05CB8 /* RCTSafeAreaViewLocalData.h */, - 5B062F792B90C0FFB25C7A0DAC10F247 /* RCTSafeAreaViewLocalData.m */, - 99B4E282439969483EF0BDCB2C15EC8E /* RCTSafeAreaViewManager.h */, - CCB20B3F49C91DB8C396C1117E4975C4 /* RCTSafeAreaViewManager.m */, - ); - name = SafeAreaView; - path = SafeAreaView; - sourceTree = ""; - }; - 4BE734D8520280AC6A91DED13794A305 /* react-native-document-picker */ = { - isa = PBXGroup; - children = ( - E312468311B6B57960E7B3846761FBD3 /* RNDocumentPicker.h */, - 0B614B1E8899450A514539C8FAA8F4C6 /* RNDocumentPicker.m */, - D748446A2BDCE4280D5FF1A3F4DF96C3 /* Pod */, - FA806DA2033D93920AA0E5C58AC34EBB /* Support Files */, + C9F3D0F0276B02303042AD8CEDE218BF /* RNDocumentPicker.h */, + 4150B1022A1C4EA48976C1918DB2DA4D /* RNDocumentPicker.m */, + 1BF0FAC162CBE9BEEB6BD29935DD335B /* Pod */, + FA03BA6B3DBC87C9DA543B61A41D2B04 /* Support Files */, ); name = "react-native-document-picker"; path = "../../node_modules/react-native-document-picker"; sourceTree = ""; }; - 4BEDF040D0F41C5B0898AF4815E9F735 /* Support Files */ = { + 3F630BF050CA9C4050D4D842FC79957E /* ReactNativeART */ = { isa = PBXGroup; children = ( - 193197E3F1750B82A4A2D256C0450725 /* RNConfigReader-dummy.m */, - EAC07065EF0C6C5085A9AD7AF661DE8D /* RNConfigReader-prefix.pch */, - 448CE5F64D3458C4CA76D1C124E5F59B /* RNConfigReader.debug.xcconfig */, - 9EA98E83D04A3AE21D0C2F7A639C494E /* RNConfigReader.release.xcconfig */, + B301AAB908F0277D9B59DFA5796189EB /* ARTCGFloatArray.h */, + C4152E0A282E1646120955713F62D908 /* ARTContainer.h */, + 480AA8188F9EA701921324A062433032 /* ARTGroup.h */, + 4E6FD3789AE32FF2039C5FC657EAA0A4 /* ARTGroup.m */, + 0FAD6BB44C5FCB7E7D3E10085572B5B0 /* ARTNode.h */, + 5C7493E37DFFDB0A29EA930EBD0F25C2 /* ARTNode.m */, + C6CFB06B15368338718A38E06350FC81 /* ARTRenderable.h */, + 7C0B43A991C621D8375536967E7F702D /* ARTRenderable.m */, + EC51DD54CD0EED9344522EB545B298B3 /* ARTShadow.h */, + 372D48682B9E2DF058C7841B584D9BC1 /* ARTShape.h */, + 077F86B7F0AB320485085AB7FE12E1DE /* ARTShape.m */, + 10E8EE79A039D0EAA20868FC060EDE3C /* ARTSurfaceView.h */, + 81228D55716D17AA0DE748C8160BB301 /* ARTSurfaceView.m */, + 00D7029CDF36815B074ED319C2F18BE3 /* ARTText.h */, + 64087F3B75718DA47431935A6FF88F39 /* ARTText.m */, + 58EC4AF8CC887E52459F1B6E3EC87A2F /* ARTTextFrame.h */, + 5A8E6865E8B1705CA95C0ED9EB913458 /* RCTConvert+ART.h */, + 68486419F43F8281CD207605D2E14272 /* RCTConvert+ART.m */, + 76CAC2D2FD5770A1824626F10F1F57FC /* Brushes */, + F665DD37085CF39892F6815455739FCF /* Pod */, + B572E39F5023CA0D41271F4F8E929B5B /* Support Files */, + 3A5230BB15A79DA55006B811D7814B95 /* ViewManagers */, + ); + name = ReactNativeART; + path = "../../node_modules/@react-native-community/art"; + sourceTree = ""; + }; + 3F68AF716FB9A41D57E83991D632C6C2 /* RNConfigReader */ = { + isa = PBXGroup; + children = ( + 61966A99342D60B517BD347F8A86DA49 /* RNConfigReader.h */, + 6EC09334D862F611D8B61F433B6C8440 /* RNConfigReader.m */, + 551D8FB324C29D51DB7D1925EBEE2DC5 /* Pod */, + 862F7B0A41DD6B161675A6E6B7B61144 /* RNConfigReader.xcodeproj */, + 4DD12DDE7AC34A6D988F09A82A6CC482 /* RNConfigReader.xcworkspace */, + 4858F62A4DE166A773F6DCBC4EDB067B /* Support Files */, + ); + name = RNConfigReader; + path = "../../node_modules/react-native-config-reader"; + sourceTree = ""; + }; + 3F7C81F7BCA12A87FB2D45E47B302091 /* Pod */ = { + isa = PBXGroup; + children = ( + B4085A0F7918181A1D30B9BC6816F89B /* React-RCTLinking.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 3F8260685653CC7D726E07C5C6BBC587 /* Handlers */ = { + isa = PBXGroup; + children = ( + D0B9B3241560309851012EDF6E8A3626 /* RNFlingHandler.h */, + 59BD0C07D24524D4C340E46EC4907F53 /* RNFlingHandler.m */, + 209F29716FAF00EE6C3A8047B39A532A /* RNForceTouchHandler.h */, + ADF844E92090E13A94B7FFED33503E01 /* RNForceTouchHandler.m */, + 60A8A8253558AB307ED8E84CF4F5D614 /* RNLongPressHandler.h */, + 07A975EBBEF16BAA2DD5A684DF560E5B /* RNLongPressHandler.m */, + FE3BF3728F1CB1F893F7BFC06E6505EC /* RNNativeViewHandler.h */, + E64D6F2518426A503477914FC7324C80 /* RNNativeViewHandler.m */, + D4C7960CE956C5F384C6FCFE3EF90FF5 /* RNPanHandler.h */, + 56BCA2B97E1DAE73AA56E72BEEFB6722 /* RNPanHandler.m */, + B2ECBA9C7F58B36347D49D2C42DC9E92 /* RNPinchHandler.h */, + FBCC9D8F5D3463434F12152F53AD744A /* RNPinchHandler.m */, + 9805FAF985C740CD5AF04BB3DC67F701 /* RNRotationHandler.h */, + 5A89A78A49C5BA532B42B922603F10D5 /* RNRotationHandler.m */, + 903A7619FDE7ED53437A19C410F5B823 /* RNTapHandler.h */, + 1275FBF2FBD9C7995AA9987864CA1174 /* RNTapHandler.m */, + ); + name = Handlers; + path = ios/Handlers; + sourceTree = ""; + }; + 400A0006842DBA7536C33ED4D5829FEB /* Support Files */ = { + isa = PBXGroup; + children = ( + 5AE33E6B0FBB3B12DA4E53484838DA32 /* react-native-appearance-dummy.m */, + F93297EBA8996FF25D53F9E5C941A5A3 /* react-native-appearance-prefix.pch */, + 27E48D41D14E4E75865F8FD09A45346B /* react-native-appearance.debug.xcconfig */, + 6BC844546A49F881F76425F68A1F936E /* react-native-appearance.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-appearance"; + sourceTree = ""; + }; + 40AC56184139D6A75DDD29A9BFC052CE /* RCTSettingsHeaders */ = { + isa = PBXGroup; + children = ( + 6588EE64A2769BC2FE5EC0F6D78CD8E4 /* RCTSettingsManager.h */, + AA33C72486C653056728F07308087B0D /* RCTSettingsPlugins.h */, + ); + name = RCTSettingsHeaders; + sourceTree = ""; + }; + 40F5C52C1A0E439D528F17D8BB7F5429 /* Services */ = { + isa = PBXGroup; + children = ( + FF9B1705147C4A4C0497F3D38501F86C /* UMReactFontManager.h */, + 35E8349DDFB19341CFB6AF34F3E9C974 /* UMReactFontManager.m */, + 81095CC27AB0AD6D943702F4AAED8A59 /* UMReactLogHandler.h */, + DFF170F26E49AF34B2AED8CAC632BA14 /* UMReactLogHandler.m */, + 2995DF92AA3FBAEA5B1D8A964592AFC5 /* UMReactNativeAdapter.h */, + 4FD65F73976A789DD9400A46AC219377 /* UMReactNativeAdapter.m */, + 38566BD58F1A1BD25F8A4793D6740999 /* UMReactNativeEventEmitter.h */, + 4535D92010F9CAB039FDCFF9CD6BA233 /* UMReactNativeEventEmitter.m */, + ); + name = Services; + path = UMReactNativeAdapter/Services; + sourceTree = ""; + }; + 416E8EF9EBB0C2E5A393C3CE6DFBD1B3 /* Support Files */ = { + isa = PBXGroup; + children = ( + 9F198B4D94F74E5EB473430661ECBF52 /* react-native-restart-dummy.m */, + BF926A855355608FCE60EEDBF74D78E2 /* react-native-restart-prefix.pch */, + 8AA2A7AA72B24124B829115293D735E6 /* react-native-restart.debug.xcconfig */, + 78B4B36C13100D30E53040F5DBA07C93 /* react-native-restart.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-restart"; + sourceTree = ""; + }; + 417E190998E86BEA8DCFFEFE376B3B3E /* Pod */ = { + isa = PBXGroup; + children = ( + 129E379454FA7C014949A5AB2C96C229 /* LICENSE */, + 760C480A9FF3DF129FE571D562011BC1 /* README.md */, + F2D42952D771D6847FB7EE54F104C408 /* RNBootSplash.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 438FB989D257A5781B3F2133C4867DF2 /* Pod */ = { + isa = PBXGroup; + children = ( + 430D3FDF8D298AD145FDF3A90FD69493 /* LICENSE */, + BA4B0E81EF9BF74DB565EB8D5A64184A /* react-native-appearance.podspec */, + 804615896A1BBBB7B8BA5D29291F8864 /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + 43E56E8FC0D1FD1417476BC28E3F73D1 /* Support Files */ = { + isa = PBXGroup; + children = ( + EFD4EBBD38CDFD28C3A24C71E03FB0D2 /* React-jsiexecutor-dummy.m */, + 876151ECB586864624FAF9EE49CA3D76 /* React-jsiexecutor-prefix.pch */, + B5FC7F17ABCDE32FBB838064E95987E3 /* React-jsiexecutor.debug.xcconfig */, + 0E24F4B867825B723C02E2C2EDF698D8 /* React-jsiexecutor.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-jsiexecutor"; + sourceTree = ""; + }; + 443035F3C3FB5B8DE480E9FC38A1B786 /* Support Files */ = { + isa = PBXGroup; + children = ( + E28A2805C79CA4D8B140FB3487A2714D /* RNFBAnalytics-dummy.m */, + 62F8007FC792903E650CF2C9E6DCF5C4 /* RNFBAnalytics-prefix.pch */, + 6B51ED28BE9F80874D2FED1984B9BD21 /* RNFBAnalytics.debug.xcconfig */, + 01277E6EA0D313D5068182BBB84B9E98 /* RNFBAnalytics.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNFBAnalytics"; + sourceTree = ""; + }; + 45936C54D08E5A57C991B0222E4E9BEF /* Pod */ = { + isa = PBXGroup; + children = ( + 2ACB1DD9B5C3CE4961BF64D0BABEF146 /* LICENSE */, + A260E94609877FF65B233EE6D71362FB /* react-native-cookies.podspec */, + BC1E496EFDBEBAD5DF0D5A4E7A903EC3 /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + 4858F62A4DE166A773F6DCBC4EDB067B /* Support Files */ = { + isa = PBXGroup; + children = ( + 520BB052543E92220A00A5375AC4F2A9 /* RNConfigReader-dummy.m */, + E6247092A3A7D4453BA51D4C8EB6FA36 /* RNConfigReader-prefix.pch */, + 96241B9F1CFBD84D1ACCFE24CA7634CF /* RNConfigReader.debug.xcconfig */, + 4A94AB5BC9695876728A55E9BC8E5E72 /* RNConfigReader.release.xcconfig */, ); name = "Support Files"; path = "../../ios/Pods/Target Support Files/RNConfigReader"; sourceTree = ""; }; - 4BF02B916071020C87344407C9B328A1 /* Inspector */ = { + 48C388686489D844FD45C47D54530840 /* Pods-defaults-NotificationService */ = { isa = PBXGroup; children = ( - B460A23CFB410A25BB9C4EE0C0B25E08 /* RCTInspector.h */, - 9F7A5AF71B7686A61CEB3242ED1C0219 /* RCTInspector.mm */, - 42C7BFA8839318E173CD5F277B397D48 /* RCTInspectorPackagerConnection.h */, - 4015B082139928B6E2862D193107C09B /* RCTInspectorPackagerConnection.m */, + 1149EC628D06B34CD9EDC96DE9D17BA8 /* Pods-defaults-NotificationService.modulemap */, + 0F9D5A741266CEE07A80185290400D69 /* Pods-defaults-NotificationService-acknowledgements.markdown */, + 8DF218DEC123655935FA5B064254A0B8 /* Pods-defaults-NotificationService-acknowledgements.plist */, + 38811FF30BDDEC853CE21220CB6EF709 /* Pods-defaults-NotificationService-dummy.m */, + 1789278C6FEE726423261FA57764C9A1 /* Pods-defaults-NotificationService-resources.sh */, + 39F7D18EC081B100AF21BD824398CC8D /* Pods-defaults-NotificationService-umbrella.h */, + DB35E3D5D47D77CD1915590828BCC4E7 /* Pods-defaults-NotificationService.debug.xcconfig */, + 00484029BCBD0F9A6EB7995A57C3311B /* Pods-defaults-NotificationService.release.xcconfig */, + ); + name = "Pods-defaults-NotificationService"; + path = "Target Support Files/Pods-defaults-NotificationService"; + sourceTree = ""; + }; + 49744E113C4C3F1B442B605185725E55 /* Support Files */ = { + isa = PBXGroup; + children = ( + 1FDBA1499FAC5D38003778610D1DFAC8 /* react-native-mmkv-storage-dummy.m */, + 42042C1A71F24D6A33EB035C65A1C078 /* react-native-mmkv-storage-prefix.pch */, + 82746B65ADB874980B643F7D6A9EACA4 /* react-native-mmkv-storage.debug.xcconfig */, + 0696B943EDC4A311B847984997C71865 /* react-native-mmkv-storage.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-mmkv-storage"; + sourceTree = ""; + }; + 4A1EFD2802870441B25F49F44AA2EB92 /* SafeAreaView */ = { + isa = PBXGroup; + children = ( + CB67C93D6401F212FFF1E5EE7D0106B9 /* RCTSafeAreaShadowView.h */, + C546EB9A217A4633A47E8498CCE72DC9 /* RCTSafeAreaShadowView.m */, + B7789F4DD5CB94A03DCE8958303BAB32 /* RCTSafeAreaView.h */, + 642047E681784F26A48404E6D40A6ABD /* RCTSafeAreaView.m */, + 199B4D9418A060D8E6D101491598E0C2 /* RCTSafeAreaViewLocalData.h */, + CE6D47E068EE3C3F710FDCC6A5571833 /* RCTSafeAreaViewLocalData.m */, + 35C462873D8556B83C39A330E577312B /* RCTSafeAreaViewManager.h */, + 94DB5F79A325AE3462321F5B421B3675 /* RCTSafeAreaViewManager.m */, + ); + name = SafeAreaView; + path = SafeAreaView; + sourceTree = ""; + }; + 4AF77E31B0B3576820370F5FD7E7B525 /* ReactCommon */ = { + isa = PBXGroup; + children = ( + D83D43E1AE745172DA695D03C2BE1296 /* Support Files */, + 7A5A2B0D92DE68189B5F7747D1FE9852 /* turbomodule */, + ); + name = ReactCommon; + path = "../../node_modules/react-native/ReactCommon"; + sourceTree = ""; + }; + 4B5D8ADF78472A169FC25BD72175E0DB /* VirtualText */ = { + isa = PBXGroup; + children = ( + 8F2791169A71E8FC83E4BD3E327C47D1 /* RCTVirtualTextShadowView.m */, + CD173BD5FA0D4297EBFCFC4693B7BEEA /* RCTVirtualTextViewManager.m */, + ); + name = VirtualText; + path = VirtualText; + sourceTree = ""; + }; + 4B889D187A787995BC1E3E8B5153BC28 /* BaseText */ = { + isa = PBXGroup; + children = ( + 157D66F636D88398C690DA2EA50D5955 /* RCTBaseTextShadowView.m */, + CDD860D6ECAD3BA713BD4D1F7DC63507 /* RCTBaseTextViewManager.m */, + ); + name = BaseText; + path = BaseText; + sourceTree = ""; + }; + 4C499D2B639960FBADB21694E1737622 /* Inspector */ = { + isa = PBXGroup; + children = ( + 2A1622AFF8166C9BC2526873A6A31D07 /* RCTInspector.h */, + B47797D3D59C968EF82764FEA01FCDB7 /* RCTInspector.mm */, + 0EBF0C796FE60145654DE7FB23E26B32 /* RCTInspectorPackagerConnection.h */, + F47828A6ACE63FA46BE094630CED9783 /* RCTInspectorPackagerConnection.m */, ); name = Inspector; path = React/Inspector; sourceTree = ""; }; - 4CFE53D1D26552E17DDAF59E8E9A9C39 /* CxxUtils */ = { + 4CFF1B77A281FBC35B5E1A2E3DDCD4CC /* RCTImageHeaders */ = { isa = PBXGroup; children = ( - 28794D09E1EC371253513C9CFD8D9F51 /* RCTFollyConvert.h */, - 41D19D3BC27AEF5470E562A5FF4378D0 /* RCTFollyConvert.mm */, + F5BABE80C6537FD2891E8B6959445D25 /* RCTAnimatedImage.h */, + D78EEF985308C79B8FBBEB68CCDDFABD /* RCTDisplayWeakRefreshable.h */, + 9BA3DE51E17B480EAFB1A0B28D2E7932 /* RCTGIFImageDecoder.h */, + 87F3ACB4AF1829993FE242559CF76FCA /* RCTImageBlurUtils.h */, + 54C3DB7CB50F66858BBCF53041CFFA71 /* RCTImageCache.h */, + 67A418ACC80C140583AE0AC6CFFA5D8B /* RCTImageDataDecoder.h */, + 379AAF32EBE1F942AD81C1C42FA1E080 /* RCTImageEditingManager.h */, + CB338AADDEBFFCE1DAE9153E8BD54079 /* RCTImageLoader.h */, + A35A7DE406B8FAE3EB7579B1AD3ACF49 /* RCTImageLoaderLoggable.h */, + E6C7448F6E74F1B3741E80C1407DB9AA /* RCTImageLoaderProtocol.h */, + 356DA93D46F12173410FCFE8AA805443 /* RCTImageLoaderWithAttributionProtocol.h */, + 6E320D828713423902FF9737F8D8B1DF /* RCTImagePlugins.h */, + D61D7C469D560268F734071F40F27401 /* RCTImageShadowView.h */, + 792FFD4B7461BB989E9DBD562EAB13A6 /* RCTImageStoreManager.h */, + 4DA6CCA1909E5F67EFB196C7F3C14F29 /* RCTImageURLLoader.h */, + 9A61FEF3F9A3004BC803F9B58AF3184B /* RCTImageURLLoaderWithAttribution.h */, + D5E55A4EAD292CC5AB8F7832A3894AAB /* RCTImageUtils.h */, + 53EA4730DD9F53694EA672E36F0054AF /* RCTImageView.h */, + F96FEC904C3C515E17B3C84FE3C2C8D5 /* RCTImageViewManager.h */, + 13B7AA56ECC8D13805741C6ACCC28520 /* RCTLocalAssetImageLoader.h */, + 0D260A02AF49F7EB75B4F755BE42C822 /* RCTResizeMode.h */, + 6CD0239177EF8EE0D59AB9A4F5F3C1F4 /* RCTUIImageViewAnimated.h */, ); - name = CxxUtils; - path = React/CxxUtils; + name = RCTImageHeaders; sourceTree = ""; }; - 4D8753EC3ACF540EB6392C9192ADE718 /* Support Files */ = { + 4D6B9E82B00C4C54E90E2F9CADB473BE /* Pod */ = { isa = PBXGroup; children = ( - 09E180C05B7FD43CD480B81BD6689A8F /* RNReanimated-dummy.m */, - 4FFACB575653551A6A5A21B2DCDE0BCD /* RNReanimated-prefix.pch */, - 8FB32F43B205C0EAEF3DDA9EC52D88D4 /* RNReanimated.debug.xcconfig */, - 7EA8282D3FEFF06E4C897E6ED3D9EB29 /* RNReanimated.release.xcconfig */, + 90C78CFE1BD35726BCF58E8406235BD2 /* LICENSE */, + EF592042EFCC79A50F2FD7710BCF2557 /* README.md */, + 8E39A1E9B0FE2BEAF1E900754F72BF8B /* RNImageCropPicker.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 4DD12DDE7AC34A6D988F09A82A6CC482 /* RNConfigReader.xcworkspace */ = { + isa = PBXGroup; + children = ( + C27CA06AF20B21BE9B9CF6351CF39A10 /* contents.xcworkspacedata */, + ); + name = RNConfigReader.xcworkspace; + path = ios/RNConfigReader.xcworkspace; + sourceTree = ""; + }; + 4E043185C96E22A32248074EBD1E03B8 /* Support Files */ = { + isa = PBXGroup; + children = ( + 6E0689640886583CF0A244F816A2FD5B /* EXLocalAuthentication-dummy.m */, + C272F0D9672149E05A955551304CD02F /* EXLocalAuthentication-prefix.pch */, + F9368D22615B059953CDCF32754A57A7 /* EXLocalAuthentication.debug.xcconfig */, + 3244965E9202F6697911B38410249411 /* EXLocalAuthentication.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNReanimated"; + path = "../../../ios/Pods/Target Support Files/EXLocalAuthentication"; sourceTree = ""; }; - 4E883F3E34D16722F36E5510D0FD0274 /* react-native-appearance */ = { + 4EDCC714192024D6D9BF2E59778B78A1 /* React */ = { isa = PBXGroup; children = ( - DE605FB23EF5FEE7EA5E9E0A543B199C /* RNCAppearance.h */, - 840CA435196E8AA94B62876E546400E7 /* RNCAppearance.m */, - C7DF67FEF46BB35E5B5C9A562C70691C /* RNCAppearanceProvider.h */, - 166DC0AF1DADC78C02FA2D58071387B5 /* RNCAppearanceProvider.m */, - 76BF8F438FA28DCCFBEBD0967D7762E3 /* RNCAppearanceProviderManager.h */, - 79203CE758071A3F21EAD7781876DC3F /* RNCAppearanceProviderManager.m */, - 3B0A42E20B30CAEDE80899C72D28C17C /* Pod */, - 109B8B00D6E6B2B85F22D820D0146CEF /* Support Files */, + 61C26AC849C5315C52B01F3F22F0EB52 /* Pod */, + 6FF1AAAF8C8C3F82DA12A57302173231 /* Support Files */, ); - name = "react-native-appearance"; - path = "../../node_modules/react-native-appearance"; - sourceTree = ""; - }; - 4E8A5C2004C949BCCA1A0D9B3FA34614 /* Support Files */ = { - isa = PBXGroup; - children = ( - C39E6B4BF38C0A9660CF41FF7D46B15C /* RNDeviceInfo-dummy.m */, - E73C2E53DDD78298D1E7F95EBFF2A4BA /* RNDeviceInfo-prefix.pch */, - 44BE1F1FD344C4C6C964AED218C6E055 /* RNDeviceInfo.debug.xcconfig */, - E93A9795F830EA2582E4EBE8BC877F60 /* RNDeviceInfo.release.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; + name = React; + path = "../../node_modules/react-native"; sourceTree = ""; }; 4EF256C4B1CE85BAF08CF47C3F20CA8D /* Logger */ = { @@ -17259,1661 +17698,7 @@ name = Logger; sourceTree = ""; }; - 4F8A1764B68CC0F98D5441303708E9D3 /* Pod */ = { - isa = PBXGroup; - children = ( - A21929D45B308E23541B02E8F73E60CF /* React-RCTBlob.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 4FB1A551593B59A1845CBBA9BA031B2D /* RCTSettingsHeaders */ = { - isa = PBXGroup; - children = ( - C66C86240AE70B8C050EC9A5A6B1807F /* RCTSettingsManager.h */, - A8F8A85DA0CDC78394F66E502910DCB2 /* RCTSettingsPlugins.h */, - ); - name = RCTSettingsHeaders; - sourceTree = ""; - }; - 4FCE380E17CDEBFC2B286EF8DAAFAF99 /* event */ = { - isa = PBXGroup; - children = ( - DE5F7D2AF7F9C46CCC468E54E7E60FC9 /* event.cpp */, - 0F50A80BB6E2BDDAD17E1EA98198E62C /* event.h */, - ); - name = event; - path = yoga/event; - sourceTree = ""; - }; - 4FFCB2A635A21790E69C670F4880DF86 /* Pod */ = { - isa = PBXGroup; - children = ( - D5D9EFA04212FDA9A0D98241B6A3BBA5 /* README.md */, - 3D5BEE3E82ED31B8EC8C92B61ED8AA88 /* RNCMaskedView.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 50634DF989FB4583D87F62C903073AAD /* Support Files */ = { - isa = PBXGroup; - children = ( - A0140941DF8E775B9B3C0F9C781BCDBA /* React.debug.xcconfig */, - 130BE0521B5462BB0F762AE5857DABCB /* React.release.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React"; - sourceTree = ""; - }; - 512B51AAB4B8C485B0EEC2915F1537CA /* Pod */ = { - isa = PBXGroup; - children = ( - A0EDFC87339AAA537A163C297EC360DB /* LICENSE */, - 9F182976F3BEC6E024C92F3C8859144B /* README.md */, - 5E96CBF4AB411D188859DD799CB2BDAA /* RNFBApp.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 51E82E8924532F142F47998A951F2BCF /* Pod */ = { - isa = PBXGroup; - children = ( - BDBA3BD1B7B585D8C94BF4344142716A /* api.md */, - B0B6A4BEA5647EC19E7091D1E7024A4F /* LICENSE */, - E6F3E7FE43A6DF8ADCB754B4D81851E6 /* ReactNativeART.podspec */, - 93B7AAFF188FC26B798B45AFEEB0B3DF /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 521C11A8668F3D93E297C9E22D9F9584 /* chrome */ = { - isa = PBXGroup; - children = ( - 517393F305886AC6D84CBFC78CB2A91E /* AutoAttachUtils.cpp */, - 1CDE8084C7A68B06FE7B02019398D952 /* AutoAttachUtils.h */, - 5F972AC9C15EA18677280333E536CEB6 /* Connection.cpp */, - 6C5B9B1C082DE54F9B9D5DABB08C2F8F /* Connection.h */, - E15ED9B4B26F5AD7F6B571B7245EBE4E /* ConnectionDemux.cpp */, - 3114A72307B3DFA9225E53CFB22E2F3A /* ConnectionDemux.h */, - 65DCD89017277DA042318CC0C4F6A952 /* MessageConverters.cpp */, - 3381F86F49C6C3DF26634CB5B738BEC1 /* MessageConverters.h */, - FD1241FE7FB682EC9FE080EBFF4F091F /* MessageInterfaces.h */, - 3716A19F80B70D0901D21C6CC1F456C6 /* MessageTypes.cpp */, - 261D33A05F4F0528096A16019F0A2BD1 /* MessageTypes.h */, - F61399E0062A8409AB83BEB9179FB468 /* MessageTypesInlines.h */, - 22AD38772A9FE6365A912C0AB9692C28 /* Registration.cpp */, - 803385913A06D30DF515AD0E3A72DD09 /* Registration.h */, - 87A42002CE935D81735F7BBDC468920F /* RemoteObjectsTable.cpp */, - 3F11A1E42D71CCAA5D48973DA18EE089 /* RemoteObjectsTable.h */, - ); - name = chrome; - path = chrome; - sourceTree = ""; - }; - 526400428A066077655519992F2112DE /* Environment */ = { - isa = PBXGroup; - children = ( - F4894891D2683756B59E4356267E11C3 /* GULAppEnvironmentUtil.h */, - 4A2B792B80ED688B169D906DB78A6E39 /* GULAppEnvironmentUtil.m */, - 7E5ED61984AC5D0734B2848B826BA9D7 /* GULHeartbeatDateStorage.h */, - E815744FFA2710E1B7D0A4B6EED45E59 /* GULHeartbeatDateStorage.m */, - AE1F66FF6A4EA4EFE43EADA7E95E849A /* GULKeychainStorage.h */, - C8029B6FA3BDC64E572449C131DB4F9A /* GULKeychainStorage.m */, - 90BCAF1AC58CAB9DA6A0307E93957A3D /* GULKeychainUtils.h */, - 8D413F8DFA6A6911681D61472C0DC9EF /* GULKeychainUtils.m */, - 69461254E0F0D3F1C43476F6235680E3 /* GULSecureCoding.h */, - 4CFB0570DCDE324E6BE1532D8CF0082E /* GULSecureCoding.m */, - ); - name = Environment; - sourceTree = ""; - }; - 5277176DB311DCAB0527969F72F55598 /* Pod */ = { - isa = PBXGroup; - children = ( - C6A4CEBFBF059C3F0881EFE0BE74C9C7 /* EXWebBrowser.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 542CE1C1019116EA2390CEE5E334025E /* Support Files */ = { - isa = PBXGroup; - children = ( - D09D3FE7CC7C7E27C81BB8B8916180FB /* ResourceBundle-TOCropViewControllerBundle-TOCropViewController-Info.plist */, - E9DAA69C91C5D71F71C166021395D3BE /* TOCropViewController-dummy.m */, - 69D34CE26D3CB422F08A8EBDA79343E3 /* TOCropViewController-prefix.pch */, - CC72D21238CDBFB46D8CFCC77CCABD69 /* TOCropViewController.debug.xcconfig */, - FFA8920602E194F719FDBCD36097B350 /* TOCropViewController.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/TOCropViewController"; - sourceTree = ""; - }; - 54955FCDD01B50FA7572289414848690 /* Pod */ = { - isa = PBXGroup; - children = ( - 9DB403108DBE8FA66185EC6C5AE3BFFF /* LICENSE */, - 3DC8A4B224AEF7E0E1E92DF483262A27 /* react-native-netinfo.podspec */, - 9D72F917A32A856BCD1A9D7D7B7A9BD2 /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 549F03B7AB363968A96C1850917DEAB1 /* nanopb */ = { - isa = PBXGroup; - children = ( - 7F763AD72B33D446728D68075D4A6AC7 /* pb.h */, - C6AF3E49B2DBFEA9ACFC6345FDDDB37F /* pb_common.c */, - 2943A07F6C1324D10B05C1B00DB35875 /* pb_common.h */, - 5C80621220CDF16B10C3A915E83A66BE /* pb_decode.c */, - A72E28AEF6DF1265BDD71B5670AF408C /* pb_decode.h */, - F75799BE5F54F996D3AE4DDCC29FB260 /* pb_encode.c */, - 0F73A7482432ABE08919D16E9DCE3ADC /* pb_encode.h */, - 240535AAA21390B67D2D702AA4D47519 /* decode */, - B9811984AFAD42C4FBA4991F41A2AEC8 /* encode */, - FD9366726B241C67B09A195B37FDC705 /* Support Files */, - ); - name = nanopb; - path = nanopb; - sourceTree = ""; - }; - 560722CF1773D900E73EAD2F26E65C5A /* React-RCTText */ = { - isa = PBXGroup; - children = ( - 4C6B8EC842DF0A12A01B6061F1796366 /* RCTConvert+Text.m */, - 4AE3CD610D12CC12718076BC213DF41D /* RCTTextAttributes.m */, - 41B28E5919E203045AE314F4141329D1 /* BaseText */, - B8F99C18DCE72342F89499168592A304 /* Pod */, - BB039AD66D6DB5EBF0EC438045215BA2 /* RawText */, - AD02DD025F239F3610E92987E62F78BF /* Support Files */, - D474787070F91FD07E3F8C20862DF0D0 /* Text */, - FF1D676388DF5CC748A62626E9D8912A /* TextInput */, - F97FD3B8A09E948F23BD13562A68FFC7 /* VirtualText */, - ); - name = "React-RCTText"; - path = "../../node_modules/react-native/Libraries/Text"; - sourceTree = ""; - }; - 56302070BBB147D1A5F4479FD023AF14 /* Pod */ = { - isa = PBXGroup; - children = ( - 2438B8843689B891AE94D1925587D3D8 /* React-perflogger.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 5663CD0AB0BE77D5328F03323168944F /* EXPermissions */ = { - isa = PBXGroup; - children = ( - 6F56E28417CCFCCEE48F22DBCCC87198 /* EXPermissions.h */, - ECAFF29EC840527BAAD771DA7AF5C8E4 /* EXPermissions.m */, - 14CC7AAC6BA8221BD1E3E4B79172FC78 /* EXReactNativeUserNotificationCenterProxy.h */, - 8200E5D8453D570E848614A7B5E0A803 /* EXReactNativeUserNotificationCenterProxy.m */, - 11D8940B18545C848C5EF2B96DD72663 /* Pod */, - 3EFE9A4D60C3868B6E727E15CF97F721 /* Support Files */, - ); - name = EXPermissions; - path = "../../node_modules/expo-permissions/ios"; - sourceTree = ""; - }; - 56D90BF2040C78853B6B88181FDB7439 /* Support Files */ = { - isa = PBXGroup; - children = ( - 0529D73D9878D4E0EC0416AE14565F83 /* MMKV-dummy.m */, - B97940D26FBBECAD4EB08C0B41320551 /* MMKV-prefix.pch */, - DEE3203D0A7AFEFAD6E8D45299F7C77B /* MMKV.debug.xcconfig */, - 19BB8FE3084DED2BBFFA385ECA29B2E6 /* MMKV.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/MMKV"; - sourceTree = ""; - }; - 57903137E39E58400EF73181E8406891 /* Pod */ = { - isa = PBXGroup; - children = ( - 3304FD9DFDE8984E53FEC647B6148EA8 /* React-RCTAnimation.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 5793C18134BCE7F8417505A6D77B5B02 /* Support Files */ = { - isa = PBXGroup; - children = ( - A30A3330B6D0B35676D27CB9F769141E /* Yoga.modulemap */, - 0C01026E1D77A91B3A8924615E1A998F /* Yoga-dummy.m */, - 2B514FB464980A84858A82BABD127757 /* Yoga-prefix.pch */, - 1D459110A843532B6331795D0BD473C9 /* Yoga-umbrella.h */, - 2AD31C10F356F09D94160F5655A22C6E /* Yoga.debug.xcconfig */, - 8C23BAB539C031E6E4AF31CBBB19EFB1 /* Yoga.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/Yoga"; - sourceTree = ""; - }; - 57C9E2EC2DF45CDE277B0C080BA1D71E /* Targets Support Files */ = { - isa = PBXGroup; - children = ( - 7A9D58B5CF36E4DB4963A3D88F79EF87 /* Pods-defaults-Rocket.Chat */, - 14365716044418A82E6DD14AA8D16049 /* Pods-defaults-RocketChatRN */, - 77665CA6DBD4FF81C39E24DADB7370B7 /* Pods-NotificationService */, - 9DB0D3C44A982CC7D6085AEB75D4069E /* Pods-ShareRocketChatRN */, - ); - name = "Targets Support Files"; - sourceTree = ""; - }; - 58BE42F17EBB1DDE531E8BB808B731C3 /* Pod */ = { - isa = PBXGroup; - children = ( - 1C4D1AE372E4FC9B337AB2A16356DEE8 /* React-CoreModules.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 58FD828B73ED25F82CD20C0E6E2914D2 /* Support Files */ = { - isa = PBXGroup; - children = ( - 607E59673F2126D78532D061EB6CDDC6 /* react-native-blur-dummy.m */, - 378A18B2F40908AA0836AEC1D190D329 /* react-native-blur-prefix.pch */, - 9251FF0392E0D4FF9E67FFB9636A0529 /* react-native-blur.debug.xcconfig */, - E14CE3C5F1E2CF97CC1653F3B44FF621 /* react-native-blur.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/react-native-blur"; - sourceTree = ""; - }; - 5929B296D8F3806DE35833708EA4CCA7 /* Nodes */ = { - isa = PBXGroup; - children = ( - D12AFA51E54C3C52B68464BCA5B84CF0 /* RCTAdditionAnimatedNode.h */, - A552EA0DAD600DBEB49BE6B472DB0684 /* RCTAnimatedNode.h */, - 20AE4B6BA4246F453C9095E3493F6682 /* RCTDiffClampAnimatedNode.h */, - 262DC452FD92F441F50D4570FAE4ACEA /* RCTDivisionAnimatedNode.h */, - 4A88DF429FB34F1FDCA9CA6886EE9459 /* RCTInterpolationAnimatedNode.h */, - DAF5C3428E135893FDC0417576139FCF /* RCTModuloAnimatedNode.h */, - 3D42540B4359851E48494A5F0E8CE6C7 /* RCTMultiplicationAnimatedNode.h */, - 00803C2B1253E1540309301BEC0F67FD /* RCTPropsAnimatedNode.h */, - E6D4001EC6E1539E580DDA8B4856CBCB /* RCTStyleAnimatedNode.h */, - 534166A3C26B1A407637456375230513 /* RCTSubtractionAnimatedNode.h */, - 29581F1EB845BFD0A7B1DE17099D7350 /* RCTTrackingAnimatedNode.h */, - EAED6E802D293C12664DDC6A69AF18D7 /* RCTTransformAnimatedNode.h */, - 7A40344F67101B3A95E46A054ABE755D /* RCTValueAnimatedNode.h */, - ); - name = Nodes; - path = Libraries/NativeAnimation/Nodes; - sourceTree = ""; - }; - 5AF8D412A68A2876B03803B842CB550F /* RCTWebSocket */ = { - isa = PBXGroup; - children = ( - 778E00A85B2819C06A2BF56AA88BD580 /* RCTReconnectingWebSocket.h */, - 5E1E8657FE2715577316C9E5298CC67A /* RCTReconnectingWebSocket.m */, - 84E31AD7495B25B636004D03A408D97B /* RCTSRWebSocket.h */, - A76277B4CF7E93604C6ED6C4F1780682 /* RCTSRWebSocket.m */, - ); - name = RCTWebSocket; - sourceTree = ""; - }; - 5DCAABDA712B41166B24A73444C38107 /* React-RCTNetwork */ = { - isa = PBXGroup; - children = ( - 91E991320FA938EA62EAC8C52DE57ACA /* RCTDataRequestHandler.mm */, - 1674806458AEB6C3A25F850188F291C5 /* RCTFileRequestHandler.mm */, - DABB3CFAC09E1EBF9B45CD371D8F0411 /* RCTHTTPRequestHandler.mm */, - F53F5FCE1D2FAE83457EFAB473F21020 /* RCTNetworking.mm */, - B8692BF77F3FFBB13B94239A4E5ED9E8 /* RCTNetworkPlugins.mm */, - F2EDC73D6BC0E503246F67284E2B60F3 /* RCTNetworkTask.mm */, - 23BEE685651DA3393088B672A9897564 /* Pod */, - B148E65231C5992A80C3754AF7F76D28 /* Support Files */, - ); - name = "React-RCTNetwork"; - path = "../../node_modules/react-native/Libraries/Network"; - sourceTree = ""; - }; - 608B0E9402A9F472376F26A96A621E8A /* Pod */ = { - isa = PBXGroup; - children = ( - EDC0539D681B2479FB44D1FA00F8F511 /* KeyCommands.podspec */, - 387CDC1C8200BC0F0203FDD1D4DA2611 /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 609D88F4210B15C54BF80F69AA48082C /* libevent */ = { - isa = PBXGroup; - children = ( - 5EF8A94048C6DB061F18D39393DD8E0C /* buffer.c */, - 457BF153D04F4820C937FA37AFCD368D /* bufferevent.c */, - 6A1E9C1B0EFF5B1C55F68933D06863DE /* bufferevent-internal.h */, - 31BE77BA970F0F9CE3CADED50681A14F /* bufferevent_filter.c */, - 5E28E5E5D8F3D49FB0BC9C998D181E05 /* bufferevent_pair.c */, - 39305B4A5D50A8905FE3337AF9BCC606 /* bufferevent_ratelim.c */, - 92CF4CA7AA549F6D173DB1F3510DAF47 /* bufferevent_sock.c */, - 3307140B2150CE64DA8836A94A018B22 /* changelist-internal.h */, - 30D81A3D660D3599BC10A49C1F29EEE0 /* defer-internal.h */, - 3DFA608104A26481888AF421986C11E4 /* epolltable-internal.h */, - D567A3C8BCF2DBFD5392F80573BD4FB4 /* evbuffer-internal.h */, - 77E27FA756A6B7F123B5FD0442782FD4 /* evconfig-private.h */, - C8F7A0909CE76DB246CB41A3FF611281 /* evdns.c */, - F5F787DF75B9E09594E5251817DDFB91 /* evdns.h */, - 598202B7E8219B4266CB62E0A114604D /* event.c */, - 677A0291688B635D3F8CBAEE82288760 /* event.h */, - 85679925C7418CFBC8047231557F405D /* event-internal.h */, - E551AF1B96A249735565C79072A99930 /* event_tagging.c */, - 64FDB424456A4DD24183CF1B2202D02E /* evhttp.h */, - 53E6098912BE03536ECD4B1FE675B237 /* evmap.c */, - CF0C1E54F3BF3139BD54F1B42B3175A4 /* evmap-internal.h */, - A6665D8FC0F6D068B435FA4B02F47F71 /* evrpc.c */, - 72F272903FFBC94B4E4612A594A555FF /* evrpc.h */, - 6E32947F097148F59B3F1E82CA8CFAF1 /* evrpc-internal.h */, - F068A4842CE3553A27782E11612DDC0C /* evsignal-internal.h */, - 58273B190325B547D525894CCAF07636 /* evthread.c */, - F3B55915438E2A778BBDC814F29F37B8 /* evthread-internal.h */, - F6AB4587E201E4C23AB7619E10ED0427 /* evutil.c */, - 7194150125DD93BA2E704772FCAE9146 /* evutil.h */, - 0D9C23B493FEC20AFFD1BE25C3AE1594 /* evutil_rand.c */, - 8069BAC4F69AE5E45CBB8F33CB396B67 /* evutil_time.c */, - 453EE913EAEECD3E8429629404148DE5 /* ht-internal.h */, - A16956E0F13387473A1FADDE58ECD237 /* http.c */, - 964ED3AFCF1FA95EB0D582FF7DD71626 /* http-internal.h */, - 095F9DC78A02A5B297431EB32A49075F /* iocp-internal.h */, - 72835F36D45E0327A28A757A7B2340F9 /* ipv6-internal.h */, - 19D8F967D64197E724B3530AC7D14799 /* kqueue.c */, - 4F27E3FDA8B6F4EE4FE0EA2B5D213B03 /* kqueue-internal.h */, - 6AFD3DAEA617156BF2B54EC866156EA4 /* listener.c */, - 73A59776370089BF47A36F0979BECF4A /* log.c */, - C4D0A9D298494CD59E36A2F6D0BA0F3A /* log-internal.h */, - 0A87D13283D45B725FCA1772F8ACC6C5 /* minheap-internal.h */, - 62241FF2F74F1894A38653432A83E2DB /* mm-internal.h */, - 7B4FCBFF3CE54A00C2F44A31FB4C5FA7 /* poll.c */, - 3FC593F0F6C973BD78BDD755CB42A289 /* ratelim-internal.h */, - E7D0233C155796C1E13046A0A2621FFB /* select.c */, - 19778043EF9C8D5381A4CDCD7EABD478 /* signal.c */, - 6E06CF35D5BF7A55466AB24B113BEC05 /* strlcpy.c */, - 666D07CFFA0543E74260EBDA643C53E5 /* strlcpy-internal.h */, - C9DF09F69040AFECB8B414130D0B901C /* time-internal.h */, - EF9EDC6CDBDDC9EA7F72BB6CE3AF8C23 /* util-internal.h */, - B171E99FAD968B67BB3F30E399327AEF /* Support Files */, - ); - name = libevent; - path = libevent; - sourceTree = ""; - }; - 60C7683AFE4FC3E21E69E161B2083723 /* React-CoreModules */ = { - isa = PBXGroup; - children = ( - CECDCF1B2C742A0707D868B5952BB5FA /* CoreModulesPlugins.mm */, - 226503FB82E50409B9100D2540B4EC08 /* RCTAccessibilityManager.mm */, - 44CA2DC53D39D61434A8271E72027722 /* RCTActionSheetManager.mm */, - 9F2C29336FD7CFB5BE40D48AF410701A /* RCTAlertController.m */, - 48043D3EA7129121701C47C56E10A8FF /* RCTAlertManager.mm */, - CA69FA11B7E7B4330F772D39D3B16DA7 /* RCTAppearance.mm */, - 94412BA51615AFFFFA371F963285E715 /* RCTAppState.mm */, - 0CFF9E7C0AF06FDC54654F7D01DD47ED /* RCTAsyncLocalStorage.mm */, - D1B601D8A0CABC2B2BB07898742E7709 /* RCTClipboard.mm */, - 8299F6E8BD0F3CCFC1F7B288BDCB3ECF /* RCTDeviceInfo.mm */, - C498AD8970FB8D1E7CC3D03686FD4E34 /* RCTDevLoadingView.mm */, - 3F336AFF6CCC81636BB09D0E5FF870E6 /* RCTDevMenu.mm */, - 3FF6F8DBB4B5B0A8A057D76CA075B8CF /* RCTDevSettings.mm */, - A78ED850FD9D3360266D85CFFB779D70 /* RCTDevSplitBundleLoader.mm */, - 311D1BFE3AD300DD7B609B6C654D6638 /* RCTEventDispatcher.mm */, - 7ECF371981DB912567D273476DE67202 /* RCTExceptionsManager.mm */, - CBB9B682CFDAA7BAEC67AE27B7B52B46 /* RCTFPSGraph.m */, - 28C355D499A3CBBB9DDF01674BAD2BD3 /* RCTI18nManager.mm */, - B922D41D5EAD166A8799BCC66E6727ED /* RCTKeyboardObserver.mm */, - BF600930B1FCF2ADD7567BD0972A6258 /* RCTLogBox.mm */, - 6ADB46F0379CAA95E7C8402BA3F0BD1E /* RCTLogBoxView.mm */, - 56B095963C683986CB4A5B767F900091 /* RCTPerfMonitor.mm */, - 3BC628A5D6EFE5C1CF16793C2DD01ADB /* RCTPlatform.mm */, - 29BCC12FEC96FEC825291E3DE577C7AC /* RCTRedBox.mm */, - 7864748CA36975D9B0488B0A0F8FCE38 /* RCTSourceCode.mm */, - E08E31C62C6E60E41E4F672168A2A72F /* RCTStatusBarManager.mm */, - 016373F0570AD0643ECAA1A17E753CA4 /* RCTTiming.mm */, - 935392AAAB676B4AA578BD46F0461BF9 /* RCTWebSocketExecutor.mm */, - C0007036D74FF1A32EA14AFEAA31CDFD /* RCTWebSocketModule.mm */, - 58BE42F17EBB1DDE531E8BB808B731C3 /* Pod */, - 0873D9FEBBE4BDD7AD0AE06A2FF711D2 /* Support Files */, - ); - name = "React-CoreModules"; - path = "../../node_modules/react-native/React/CoreModules"; - sourceTree = ""; - }; - 6130AF967341BBDA37AE7F4DAEB045EB /* RNCMaskedView */ = { - isa = PBXGroup; - children = ( - D5DE52F7D4DD68D70A1E463D13E2AC5E /* RNCMaskedView.h */, - 6F7241F44EB4C0A9C5C998545C7CC74B /* RNCMaskedView.m */, - 0BB81D79FA1A86216D5C9D6D2DBD42AE /* RNCMaskedViewManager.h */, - FC501E102B843C7936DD95D5D5B667D5 /* RNCMaskedViewManager.m */, - 4FFCB2A635A21790E69C670F4880DF86 /* Pod */, - 37A7C65BDA1D3B9875638933B2F076EA /* Support Files */, - ); - name = RNCMaskedView; - path = "../../node_modules/@react-native-community/masked-view"; - sourceTree = ""; - }; - 6182A0C4054C7A1CC2D4EBCF002D6FB0 /* UMNativeModulesProxy */ = { - isa = PBXGroup; - children = ( - 18DC6B69AA004E9F3BD7447EBC2AF9F1 /* UMNativeModulesProxy.h */, - 366C17B6F7A70E0C496DC59B2EF479DB /* UMNativeModulesProxy.m */, - ); - name = UMNativeModulesProxy; - path = UMReactNativeAdapter/UMNativeModulesProxy; - sourceTree = ""; - }; - 61DB4E0ECF82517EC3C0C5DE7CD543E0 /* Support Files */ = { - isa = PBXGroup; - children = ( - 93D2A241AFA45A6CEEA2FA5F519FF56E /* libwebp-dummy.m */, - 41E391FB458EE549981AC519F05E9422 /* libwebp-prefix.pch */, - E9521D4F883C544DE47CDF5C2FDF5C87 /* libwebp.debug.xcconfig */, - B180A30621C18D083C4C04ABBBD78726 /* libwebp.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/libwebp"; - sourceTree = ""; - }; - 6270032C442E8859A785FCEB6E4E74C8 /* Support Files */ = { - isa = PBXGroup; - children = ( - 80DEB6F7BB5140A191C8091E78BC3CD9 /* EXLocalAuthentication-dummy.m */, - 018009DF885734623A649BB3AABCEC1C /* EXLocalAuthentication-prefix.pch */, - 048FA4761B71A91CE00A15DD2BEA0CC3 /* EXLocalAuthentication.debug.xcconfig */, - 4E7F062D6F09F3B620A15E7F2C5BD06B /* EXLocalAuthentication.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXLocalAuthentication"; - sourceTree = ""; - }; - 6280EF73765DCE17C36B7F4759F0D701 /* highlighterview */ = { - isa = PBXGroup; - children = ( - 80C8A84BBD3FC1AABB3E6E71442DAA31 /* HighlighterView.h */, - 48A2DB68E2356F45E061527A12961AD9 /* HighlighterView.m */, - 5BBD2F56DE1B3C0CA7D05AD02C2F235B /* HighlighterViewManager.h */, - 86A632B5E966333C0668221A7CAA0212 /* HighlighterViewManager.m */, - ); - name = highlighterview; - path = ios/reactnativeuilib/highlighterview; - sourceTree = ""; - }; - 62E11969CA01B53F6A8F692FF47DD689 /* Support Files */ = { - isa = PBXGroup; - children = ( - 1EC02292322F492419329A9C87450E9F /* GoogleDataTransport-dummy.m */, - 3CB957F7D5240280A57EEDFC6B03ADDF /* GoogleDataTransport.debug.xcconfig */, - 03376185B2F0AEF87CE3705E3A6407C2 /* GoogleDataTransport.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/GoogleDataTransport"; - sourceTree = ""; - }; - 639A4CA0BD00F52C66463C1BAC6272CD /* React-jsiexecutor */ = { - isa = PBXGroup; - children = ( - 89313FAE5BFAD3E3EE2F8C5F6AFA9492 /* JSIExecutor.cpp */, - CF0830A49581DC5BE12B0270EEB2CD2A /* JSIExecutor.h */, - 630EC295F1EEE562FFA273E7F7DF23E1 /* JSINativeModules.cpp */, - 3F57180E422673C4692FCB461E020874 /* JSINativeModules.h */, - 72D5780778F11932AF29A5B8B8999A84 /* Pod */, - 4AEFD2558B645E3821DA335D69288805 /* Support Files */, - ); - name = "React-jsiexecutor"; - path = "../../node_modules/react-native/ReactCommon/jsiexecutor"; - sourceTree = ""; - }; - 63B400A3F939F6C05F6A1A8B0C8DE75A /* RNFBCrashlytics */ = { - isa = PBXGroup; - children = ( - 3A491F93DC7157267CAA32CAD2943C5F /* RNFBCrashlyticsInitProvider.h */, - C1B03222D4A28884A627F8CC29DADD17 /* RNFBCrashlyticsInitProvider.m */, - 826B9376C887114ACD8AC99586D15218 /* RNFBCrashlyticsModule.h */, - F5D89F29A947DC6B045EEFD749DC12CC /* RNFBCrashlyticsModule.m */, - 126F0F29589D0F40705554BC3333C9F7 /* Pod */, - 46C85AA5DC699BDBA8B6C61BB9B09BF2 /* Support Files */, - ); - name = RNFBCrashlytics; - path = "../../node_modules/@react-native-firebase/crashlytics"; - sourceTree = ""; - }; - 6459923B45B06E12D2F9680358ACA54C /* Support Files */ = { - isa = PBXGroup; - children = ( - DBFBB09224F974EEE440100A5E1DDAAF /* UMCameraInterface.debug.xcconfig */, - 7B316F9C57B13936AED3BB69B300691B /* UMCameraInterface.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; - sourceTree = ""; - }; - 6497CD66D4DB067B164CC444826B52AC /* TextInput */ = { - isa = PBXGroup; - children = ( - 98A731332702597251BBD92A7E2EE9E7 /* RCTBackedTextInputDelegate.h */, - 221C3F9BE44D57ECB192722A4047F545 /* RCTBackedTextInputDelegateAdapter.h */, - 4D4FDF46C84B10890F329D83D59BD3CB /* RCTBackedTextInputViewProtocol.h */, - C0708A1487C3ADC35CCAD20713FAD496 /* RCTBaseTextInputShadowView.h */, - C7B025FD007B78D44180E76CEE1D3173 /* RCTBaseTextInputView.h */, - E8FF1F99E46ADCCA66C1EA96CA8EC1C2 /* RCTBaseTextInputViewManager.h */, - 4156BBA7834D6C6E55D194C89C53915F /* RCTInputAccessoryShadowView.h */, - ABD9E0611B56F1E52924F8694462C036 /* RCTInputAccessoryView.h */, - 82455AFAA247F44EF2C7E74E2A84FBAC /* RCTInputAccessoryViewContent.h */, - 4BEEEF306AC143191D1E09F376687145 /* RCTInputAccessoryViewManager.h */, - CB4581065F9F852C0D03187495A16A5D /* RCTTextSelection.h */, - 76F167D2145B14A2D6ECC8DDB14BB5D0 /* Multiline */, - 6BCF066C3AECB25D58BA95A137B837D3 /* Singleline */, - ); - name = TextInput; - path = Libraries/Text/TextInput; - sourceTree = ""; - }; - 64CF3DE7D4E31FDB509E8391BF2879F4 /* Pod */ = { - isa = PBXGroup; - children = ( - A3DFA055C4DE8C8CBD4C28E5EE5EFCBE /* React-callinvoker.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 658A794353EA0E36F2034AEDFDB76DEE /* React-Core */ = { - isa = PBXGroup; - children = ( - A5BBF22C984C128BAC4D55B49D9D106E /* en.lproj */, - AA3011AA51E2595D480533C4D9B83B82 /* CoreModulesHeaders */, - 0276DCECECD9E7B7DAFB87AE750122A3 /* Default */, - 014A1C605139DEE8D22E78D3F0C3EBEE /* DevSupport */, - 0831BC4FD199209E84A1BAC6D5BF844F /* Hermes */, - FB06D3D0A84BE80A0C56EFA3D76851B2 /* Pod */, - 7601F73100E675FD3E44553C5D981844 /* RCTAnimationHeaders */, - E9FB88CE0FF0036C3952A316877EE424 /* RCTBlobHeaders */, - 31A1EA5BE35AFB0F4BA6FFB9BA6116C5 /* RCTImageHeaders */, - 7560177DDC7FF666D7C7CE850AE2E52B /* RCTLinkingHeaders */, - F0CCC55DD0058427099E03C43F2D436F /* RCTNetworkHeaders */, - 4FB1A551593B59A1845CBBA9BA031B2D /* RCTSettingsHeaders */, - 2DC8D4AC2F2B9BD09525DBABCCB9474F /* RCTTextHeaders */, - 222D1D713FDD43D937CCE0ED8EB42818 /* RCTVibrationHeaders */, - 5AF8D412A68A2876B03803B842CB550F /* RCTWebSocket */, - 84D9DDD71D0F444310B6C5F8817DEA33 /* Support Files */, - ); - name = "React-Core"; - path = "../../node_modules/react-native"; - sourceTree = ""; - }; - 662546606C3BB5C05F2CD30A04583B58 /* Pod */ = { - isa = PBXGroup; - children = ( - F2A0F8A35A0C2F68628CE1438E1F1F79 /* LICENSE */, - 115F7DE15B034C3D73E6DCEE63B22AB4 /* README.md */, - FEA2202A80C1E07CF6A5EF8D8A538A0B /* rn-fetch-blob.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 6665EACE47279D3879B88B303EA8C471 /* Support Files */ = { - isa = PBXGroup; - children = ( - E3D5FF0ED8DC8C460ACAF715A3DACD19 /* DoubleConversion-dummy.m */, - 94B9103E88D643C46E50A2568D73798F /* DoubleConversion-prefix.pch */, - 88397D67F1AC5325B9C5CDF7112BF6CF /* DoubleConversion.debug.xcconfig */, - BE506F4325CA171F9BC83739E72F4075 /* DoubleConversion.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/DoubleConversion"; - sourceTree = ""; - }; - 667D684D412E4C6045F8D4DF9927300F /* FKPortForwarding */ = { - isa = PBXGroup; - children = ( - 8352C4658640E252FE8BB25FCEDF2A0A /* FKPortForwardingCommon.h */, - 76F1A8FD599DF8E618FA93B58360A75C /* FKPortForwardingServer.h */, - E5DBA3610AA54AC09C951A55CEA789D4 /* FKPortForwardingServer.m */, - ); - name = FKPortForwarding; - sourceTree = ""; - }; - 6682A2D72E17E81E441765B56C5AD7BF /* Reachability */ = { - isa = PBXGroup; - children = ( - D6E2DBCF4B67D998B4EB021A9E07EAC8 /* GULReachabilityChecker.h */, - 2B718F26729C506A76A2B66E211E6927 /* GULReachabilityChecker.m */, - E531E7D2B3ED3E5A8881EEFD0CC0A77B /* GULReachabilityChecker+Internal.h */, - 071524D959DA1A66674ED6538F569B20 /* GULReachabilityMessageCode.h */, - ); - name = Reachability; - sourceTree = ""; - }; - 6689E492CC7E71304823C2E38E1D87EB /* Support Files */ = { - isa = PBXGroup; - children = ( - AD500CA9047F7D164BB55E65F0DF3A04 /* react-native-netinfo-dummy.m */, - E320F6E782E85A5746E92CB80EA924E6 /* react-native-netinfo-prefix.pch */, - 2E9692FA23C76680D83D321340DDBDC4 /* react-native-netinfo.debug.xcconfig */, - E11A4E97542ECCDBC6C25CC521C143F3 /* react-native-netinfo.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/react-native-netinfo"; - sourceTree = ""; - }; - 669BDCEBCE1471603467DC7FD8413596 /* Pod */ = { - isa = PBXGroup; - children = ( - A54C4F20AF0FD4B6E11728B86884E8C2 /* LICENSE */, - BF68758B0CF6317CD7D06E18FF131A04 /* react-native-background-timer.podspec */, - FF46ACCC55F4FE37AB6A1CA8D5F07D81 /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 677683BC5CCE1FBCE8EB8219E09E9B2A /* Support Files */ = { - isa = PBXGroup; - children = ( - A28745EB8CAE1EF817E27C30CA1ACC01 /* EXAV-dummy.m */, - 2F579E724EA2F426EA62400C0D11C20B /* EXAV-prefix.pch */, - B19642D11F390E64F58DB4EEA85AE42A /* EXAV.debug.xcconfig */, - ED700072584D4DDE449046BA87A0290B /* EXAV.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXAV"; - sourceTree = ""; - }; - 67B7CC128AF431AA09BD756EAABC5DC6 /* FlipperKitLayoutPlugin */ = { - isa = PBXGroup; - children = ( - 302B252F9DADA18163B5E886774704D3 /* FlipperKitLayoutPlugin.h */, - F3DD32D017B1DA9E161BB9E0F4188B94 /* FlipperKitLayoutPlugin.mm */, - 944C0D1EFE3AB1A70D936F9AB2715AC3 /* SKApplicationDescriptor.h */, - 3751C8EE9A818AABDBD2B0660FC9FF6E /* SKApplicationDescriptor.m */, - 937111731B8DBCD33C8B4E822A0195D2 /* SKButtonDescriptor.h */, - 39AE4BCE95194D82309404D0B73449CD /* SKButtonDescriptor.mm */, - 7A2EDFBE8E6EBC1A2691133E5F859A12 /* SKDescriptorMapper.h */, - CABA488DABFBFA90F5E1369C3D813996 /* SKDescriptorMapper.mm */, - 83015F74B9F4F8612DBA0CD2A7132244 /* SKHiddenWindow.h */, - 8910ED61EA488A224272FCA22AD8C114 /* SKHiddenWindow.m */, - FF6FDC0558CA5B4149283A7623418B24 /* SKInvalidation.h */, - C2661B362B6625627DF372579E7AEF04 /* SKInvalidation.m */, - A2F0117A83EC190EDCF3EEEA2CB09250 /* SKNamed.h */, - 2C27E6A4B9DEE937229E32BDF9455656 /* SKNamed.mm */, - FB1CD31848D10613306C97D58F26A6AC /* SKNodeDescriptor.h */, - AE8CA691F749AEA3C9AE791BCF1E2D3B /* SKNodeDescriptor.mm */, - 40D77212AD7D72BB9EB317A8F71F76AC /* SKObject.h */, - D5931E02E7529784C22BB8BEB80A6E2D /* SKObject.mm */, - DD94706F88D0811C813652FD44EAA9F1 /* SKObjectHash.h */, - C231A474BA8817ABE62D624B50C23C9E /* SKScrollViewDescriptor.h */, - 86D3CC47B0C340A700E877DEF908FAA8 /* SKScrollViewDescriptor.m */, - 31C5EC4D0F956F3425D9D0AA293684FB /* SKSearchResultNode.h */, - CF052B7BAEBD12FB552E6AAA12CE3E99 /* SKSearchResultNode.m */, - 7581311455DB6CDA5EE85DCA93A6D7AC /* SKSwizzle.h */, - 62A93AAB3B73950E2B5F76E03DE1FD0F /* SKSwizzle.mm */, - A2C445EAF42760A0FA5EB239EA31565B /* SKTapListener.h */, - 343F5A180BBCD24462D71E00FBD98C87 /* SKTapListenerImpl.h */, - D19A4CA590DD20503C9910C053E7E6EC /* SKTapListenerImpl.m */, - 9A8C62FBCBEE317E39083D803E58E73E /* SKTouch.h */, - D900E79A9D933E573EB8C221244030C1 /* SKTouch.m */, - 754E234EEBF74BEB989FA3F5F1BC97FF /* SKViewControllerDescriptor.h */, - 9FC7A652DA51D9F0183EA2D12E37F94B /* SKViewControllerDescriptor.m */, - FBEBC8AE4B5592403820E4F187C46A48 /* SKViewDescriptor.h */, - C58BA3EBB523D3E170AA5B68803E20C3 /* SKViewDescriptor.mm */, - EAD20D2095CADB729BA7A29DFD8EFFDF /* SKYogaKitHelper.h */, - 25A3922725F2DB608224CDDA8A856D1A /* UICollectionView+SKInvalidation.h */, - 9A04AB43580B7A96DD95CED1945FA3D0 /* UICollectionView+SKInvalidation.mm */, - 41718BA175DA03A8FF8BD8BC05A1E6E8 /* UIColor+SKSonarValueCoder.h */, - 112FB65056DB5FBF8B435ACD05AF3E49 /* UIColor+SKSonarValueCoder.mm */, - 5617A0417C21E344068EC440BE7AE2FA /* UIView+SKInvalidation.h */, - 7656B7BFE45650CC91E9A7D6BC46B62C /* UIView+SKInvalidation.mm */, - ); - name = FlipperKitLayoutPlugin; - sourceTree = ""; - }; - 68B8413996B18ED5BF29A675B2D7840C /* Pod */ = { - isa = PBXGroup; - children = ( - B92B3F644EAB1A79D114D75C3AF3683D /* UMAppLoader.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 68C958A342B52A6AC757775B56733AF6 /* keyboardtrackingview */ = { - isa = PBXGroup; - children = ( - A8C60F36133D0EA0F6FBAAE0EC945804 /* KeyboardTrackingViewTempManager.h */, - 07D3FE071A8980AB0AB4CE7B82276EAF /* KeyboardTrackingViewTempManager.m */, - C4DF262E1B11E411DD1D59F123573EE9 /* ObservingInputAccessoryViewTemp.h */, - 1BF04880D3AE121D708597860B2B89A7 /* ObservingInputAccessoryViewTemp.m */, - AF414C89E5926FFEC87E1AA4BC09DA62 /* UIResponder+FirstResponderTemp.h */, - 341A8F3B44712151883651FEB5C6CC66 /* UIResponder+FirstResponderTemp.m */, - ); - name = keyboardtrackingview; - path = ios/reactnativeuilib/keyboardtrackingview; - sourceTree = ""; - }; - 69D5069E75F3B1A0B543E66EBF8B1BD2 /* Support Files */ = { - isa = PBXGroup; - children = ( - 4AAE599F3880E67FC8440567F9FAD422 /* React-jsi-dummy.m */, - 981DC2860DE747E38500C6BA891401CF /* React-jsi-prefix.pch */, - B5E74BA3CFD1C2D81B0AB6793956639D /* React-jsi.debug.xcconfig */, - FEB5A7252A9DF3D7C4AA43F7EE88AEBC /* React-jsi.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsi"; - sourceTree = ""; - }; - 69FF7C6E49DC5EF28BA2CFC27CA19AB8 /* Support Files */ = { - isa = PBXGroup; - children = ( - 8AE85482E2ED181686FFA5A6A79E4AB5 /* EXConstants-dummy.m */, - 4E289072EA3238EE43CACE7C85948B45 /* EXConstants-prefix.pch */, - 1ED578F6EF47354C7C22C4999FEAA42E /* EXConstants.debug.xcconfig */, - C3C116F44A9480C6CF6F9E8D85818ADF /* EXConstants.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXConstants"; - sourceTree = ""; - }; - 6A5DEAA3D01641A84DE4658C3120AD67 /* react-native-mmkv-storage */ = { - isa = PBXGroup; - children = ( - 3C0BC1F04A6EFDC4DBBBFEB6EA5C02BE /* IDStore.h */, - C0D17A6C422A3B65014A26C8033DC6F7 /* IDStore.m */, - 7BA08BCE9F42463588E3E97BD471CD11 /* MMKVStorage.h */, - 2CB7929AC318E4A3B4581CBD03407E6F /* MMKVStorage.m */, - 8FE68C2B61C8E518B8525AFDFA73F37E /* SecureStorage.h */, - 8A5525F3F6FF25A9058B2CB012A330B2 /* SecureStorage.m */, - 9035663F845980CF1FBD35429B14DE4A /* StorageGetters.h */, - 773992093A04E0259ACE4B4372CA2E91 /* StorageGetters.m */, - 07C03B5292A7A019BC7C7875FE56D2B3 /* StorageIndexer.h */, - E5086FD8F34F835110BAE0FFD4189325 /* StorageIndexer.m */, - 116B3B461EB7D917B90AEDE92478E4C8 /* StorageSetters.h */, - 3B565AFDEDD7825DA21E918E71D547E8 /* StorageSetters.m */, - FC7FC2D9C77AAC090A66FE185453CC1F /* Pod */, - 20E74844E909F2DFC6C2397AC8D3422F /* Support Files */, - ); - name = "react-native-mmkv-storage"; - path = "../../node_modules/react-native-mmkv-storage"; - sourceTree = ""; - }; - 6A839F81917E956A0A65218982D33B68 /* Support Files */ = { - isa = PBXGroup; - children = ( - 5CB9F9D2D9DC5D4EC91C330EA3FE1DE8 /* react-native-webview-dummy.m */, - DABD16F95775B6969E8DD730710F54B9 /* react-native-webview-prefix.pch */, - 825CA8E7DDDF856470916C132E617B5F /* react-native-webview.debug.xcconfig */, - A640452425C086E201C212DEE283E8A4 /* react-native-webview.release.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-webview"; - sourceTree = ""; - }; - 6A84CB4A517EAA5C9254E881F3AC576C /* Network */ = { - isa = PBXGroup; - children = ( - 3AC7AC6810C2996CF21B58F57C3F54A4 /* GULMutableDictionary.h */, - 1B66C0BC893BAE6AF6FA76CBE2469AA8 /* GULMutableDictionary.m */, - 85BCB73B53578F6422484F9D3075B556 /* GULNetwork.h */, - 28862980D7EC5653DE2716BB9B13C94C /* GULNetwork.m */, - 5E3947DC22A5110AC3C2BEA168E2B5E5 /* GULNetworkConstants.h */, - 920923E2DB170384DABDA9E8EC651393 /* GULNetworkConstants.m */, - E5FBFF562348BFED4DA0A752A2AEC5F5 /* GULNetworkLoggerProtocol.h */, - 765C7F6D692CD6A890EC5C076DD04165 /* GULNetworkMessageCode.h */, - 7B2914B9B967D4181977345B5C172F7D /* GULNetworkURLSession.h */, - 6E981642F410BB1CAC1402953B1C9C35 /* GULNetworkURLSession.m */, - ); - name = Network; - sourceTree = ""; - }; - 6BCF066C3AECB25D58BA95A137B837D3 /* Singleline */ = { - isa = PBXGroup; - children = ( - 2A24B280935A2F0232B12ABEF5E68C38 /* RCTSinglelineTextInputView.h */, - 93765199AE00A9873ED2776D26CD161C /* RCTSinglelineTextInputViewManager.h */, - DAEFAA8FF94AA1D020B7B85B9691AE0B /* RCTUITextField.h */, - ); - name = Singleline; - path = Singleline; - sourceTree = ""; - }; - 6CBEED11550663CF61700B15E188830A /* React-RCTSettings */ = { - isa = PBXGroup; - children = ( - 14E2DBF174F33BB0BA591C5CA4ACB46F /* RCTSettingsManager.mm */, - 91514FB908B2693C38C3DF034DC6F0B9 /* RCTSettingsPlugins.mm */, - DAD606A1CD527C1B59A01BE1195067E6 /* Pod */, - ECAA5596BFAD6127B2BAE784D186D37D /* Support Files */, - ); - name = "React-RCTSettings"; - path = "../../node_modules/react-native/Libraries/Settings"; - sourceTree = ""; - }; - 6DADB688616C096BE15B0C82561460AF /* UMBarCodeScannerInterface */ = { - isa = PBXGroup; - children = ( - ABFDEB55169EC2A30F591E0107886DF4 /* UMBarCodeScannerInterface.h */, - B6FEF709B89E01E699A824F43EAC7A48 /* UMBarCodeScannerProviderInterface.h */, - BB8DDB70C9005F59D3EE5829D83FFEB2 /* Pod */, - 26FEEE0FD00C7C096271E6015C26D483 /* Support Files */, - ); - name = UMBarCodeScannerInterface; - path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; - sourceTree = ""; - }; - 6E1D2D28332E926CED02D52CDA76D1C6 /* React-RCTActionSheet */ = { - isa = PBXGroup; - children = ( - 053D706F11A9E5FE5F70F3C0E78442ED /* Pod */, - 1EFCB502A327B47869BF5EF5B3024C9F /* Support Files */, - ); - name = "React-RCTActionSheet"; - path = "../../node_modules/react-native/Libraries/ActionSheetIOS"; - sourceTree = ""; - }; - 6E9F1D380388CC8F4E616CC3A4E33030 /* Support Files */ = { - isa = PBXGroup; - children = ( - 368072C9870618A735A29D132AD41D85 /* ReactCommon-dummy.m */, - CCE701E8AA94F97CE576865A1C5D204C /* ReactCommon-prefix.pch */, - B5358846B097AB6CC5F7C835FA2E06EB /* ReactCommon.debug.xcconfig */, - 4C0EDD80F2CEB0782312B00BF333D671 /* ReactCommon.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/ReactCommon"; - sourceTree = ""; - }; - 6F5C12627FE5AA5217A5A9F537485EA2 /* GoogleAppMeasurement */ = { - isa = PBXGroup; - children = ( - D0E11B09D36C3939B7FD43A42B866D1E /* Frameworks */, - 7A39CD658434E837FF40C2C8B0F9FBC2 /* Support Files */, - ); - name = GoogleAppMeasurement; - path = GoogleAppMeasurement; - sourceTree = ""; - }; - 720EA738486CB5A5187B419CCEBCD6E6 /* ViewManagers */ = { - isa = PBXGroup; - children = ( - D3990797EC36854380E8D38CF61276B7 /* ARTGroupManager.h */, - 1EB50F3330ECA296E55E98523B523E7E /* ARTGroupManager.m */, - 734F3DC90DCE493473646EE7FBD61D76 /* ARTNodeManager.h */, - 3058D8E566C29CDDAF09A479884C6A60 /* ARTNodeManager.m */, - 594B203FD15CA48E370EE4C54FAC957B /* ARTRenderableManager.h */, - A035F886999DBA8AD347365BAD212FB3 /* ARTRenderableManager.m */, - DBA234A66D021937FA2C77B8FF57C61F /* ARTShapeManager.h */, - 02A7A7612AE64E315D438425C8024FDE /* ARTShapeManager.m */, - 2A791E0505E08E5FAB70079C58C924F8 /* ARTSurfaceViewManager.h */, - 0E479E8853E5ED5B92985DE2CAFC28A5 /* ARTSurfaceViewManager.m */, - B8FB3CA62BC13185F8B7FB56E71D1507 /* ARTTextManager.h */, - D5BF1399CE5EA4703577CE6C49545B73 /* ARTTextManager.m */, - ); - name = ViewManagers; - path = ios/ViewManagers; - sourceTree = ""; - }; - 7244B1D14F7C8D418FDE04020A68A780 /* Support Files */ = { - isa = PBXGroup; - children = ( - AA109362559D1809F0DEFF014204370E /* KeyCommands-dummy.m */, - 171AEE9D422B4CED03DF8E467AAA45CD /* KeyCommands-prefix.pch */, - 6C5F4C2E47B7500B938112601B233090 /* KeyCommands.debug.xcconfig */, - 0066440ABA721E8525E4ADE789BB0423 /* KeyCommands.release.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/KeyCommands"; - sourceTree = ""; - }; - 727E47B6BA91EF7DACEE3BA458598B39 /* Support Files */ = { - isa = PBXGroup; - children = ( - 651A1E9A9371528060742E73ED50B7BE /* react-native-safe-area-context-dummy.m */, - CE5C65A58387E1F691616A8258878D65 /* react-native-safe-area-context-prefix.pch */, - 561520D036043B1892AC6D71E7A79807 /* react-native-safe-area-context.debug.xcconfig */, - 3793552237EB390BDA89EC07E886FD21 /* react-native-safe-area-context.release.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-safe-area-context"; - sourceTree = ""; - }; - 72C9638159565DA696E358E5AF93E573 /* Pod */ = { - isa = PBXGroup; - children = ( - B1C879FE4E1A1929C45117417AD8A8E7 /* EXVideoThumbnails.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 72D5780778F11932AF29A5B8B8999A84 /* Pod */ = { - isa = PBXGroup; - children = ( - D3CEECCB786CE3C1919068637D39DB99 /* React-jsiexecutor.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 72FB0D5AEEE2347D17F36456B212A206 /* AppDelegateSwizzler */ = { - isa = PBXGroup; - children = ( - 4FD51AC155A82E1BD08CC8EEB840440C /* GULAppDelegateSwizzler.h */, - F4DE545BA22392C8F815EBCF42429004 /* GULAppDelegateSwizzler.m */, - 181AF9851716867B9D19B12D9C435955 /* GULAppDelegateSwizzler_Private.h */, - D2CB543418A0278B8EA4AF0B5E8165B1 /* GULApplication.h */, - 842CE69EF38520DDAA52171D3B28A041 /* GULLoggerCodes.h */, - 843C93882E727468AB416A5D1983E793 /* GULSceneDelegateSwizzler.h */, - 842663EF20781EC453C3AB321DD4BF19 /* GULSceneDelegateSwizzler.m */, - BDA60B5F2263D814E171E633B919C049 /* GULSceneDelegateSwizzler_Private.h */, - ); - name = AppDelegateSwizzler; - sourceTree = ""; - }; - 7383E688697BCB70812C71EB0457B46D /* Support Files */ = { - isa = PBXGroup; - children = ( - A9A235A975FFA925CF1A128115C1D9A2 /* glog-dummy.m */, - C41C8A2FA397BDDA73801BC5E52EAD9D /* glog-prefix.pch */, - 828CB40D123F17957991467978968C8E /* glog.debug.xcconfig */, - EA80C6CC551744CB4EE5BF2A056CF5B1 /* glog.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/glog"; - sourceTree = ""; - }; - 74B124AED6D5187F1D1EE8A097950B1B /* RefreshControl */ = { - isa = PBXGroup; - children = ( - 87EFCCB416B724AA2A36760419C1D6FB /* RCTRefreshableProtocol.h */, - 15938AB08456A38D35D6BB9136FBA93A /* RCTRefreshControl.h */, - 4EA08206F7B1C3D1D0B9FB48F2F048B4 /* RCTRefreshControl.m */, - 8EA2A03A95AE9DA815982AB1C06B501D /* RCTRefreshControlManager.h */, - D8F8CE55B45C71210D96A98BA5DD6881 /* RCTRefreshControlManager.m */, - ); - name = RefreshControl; - path = RefreshControl; - sourceTree = ""; - }; - 74D02E598381E7E544C42ED00424E20E /* Pod */ = { - isa = PBXGroup; - children = ( - 5EC4CCD019D6BB26A7A773D0011083C7 /* LICENSE */, - 43B0BCB384FA2C2B90881B82B576894B /* README.md */, - 4BF4A098D8D554A77811655BD6178416 /* RNCPicker.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 7502DB4C00735C2AA6AA23F29585A2C4 /* React-RCTBlob */ = { - isa = PBXGroup; - children = ( - B59D9C50BCA9A3F5BD94DA9FA5CBBDC0 /* RCTBlobCollector.h */, - F3E3C00251FA9B60545F0823AD069F05 /* RCTBlobCollector.mm */, - 42CCAE143472AD95202E046EFCF4DE38 /* RCTBlobManager.mm */, - 351369DD9071D05A1497877778827722 /* RCTBlobPlugins.h */, - 9E51D64676B8178E5ADC730DD7B1BED0 /* RCTBlobPlugins.mm */, - 0E363084F953A4BE1D64256DEA189F22 /* RCTFileReaderModule.mm */, - 4F8A1764B68CC0F98D5441303708E9D3 /* Pod */, - A37E3C31DD81ED7894987F0E6189C019 /* Support Files */, - ); - name = "React-RCTBlob"; - path = "../../node_modules/react-native/Libraries/Blob"; - sourceTree = ""; - }; - 7560177DDC7FF666D7C7CE850AE2E52B /* RCTLinkingHeaders */ = { - isa = PBXGroup; - children = ( - 7CA9D35E6DEC2B8DC589CA55C44ECBA4 /* RCTLinkingManager.h */, - CB5C2C7110BF9500BE037B1992946906 /* RCTLinkingPlugins.h */, - ); - name = RCTLinkingHeaders; - sourceTree = ""; - }; - 759E0A8A237D312DB0E0194E77F219C5 /* Support Files */ = { - isa = PBXGroup; - children = ( - 1529F8BCFF02F661EC77B0909BE42DF2 /* React-cxxreact-dummy.m */, - 474223D795B2A606A21D7215C2DCBC9C /* React-cxxreact-prefix.pch */, - D981C25D0B939172A278AF9B153C380B /* React-cxxreact.debug.xcconfig */, - 9F39D8CBB1DEC2AE31AB7508F1DB8CAF /* React-cxxreact.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-cxxreact"; - sourceTree = ""; - }; - 7601F73100E675FD3E44553C5D981844 /* RCTAnimationHeaders */ = { - isa = PBXGroup; - children = ( - 142D0B26F6F769E8C337BCBFCC795EEC /* RCTAnimationPlugins.h */, - 0FC7615C69023D6C4AA2EC495E61FC4A /* RCTAnimationUtils.h */, - 6B9685D2A2AEA1220BE43ECDC9E9E22E /* RCTNativeAnimatedModule.h */, - 17847E24C5904581B8BEF96F70DFCFF0 /* RCTNativeAnimatedNodesManager.h */, - D4F8BA2A79E951302AFE29C342C85D9F /* RCTNativeAnimatedTurboModule.h */, - 1A0CCF0D85F3F90F437C445D5E8751E2 /* Drivers */, - 5929B296D8F3806DE35833708EA4CCA7 /* Nodes */, - ); - name = RCTAnimationHeaders; - sourceTree = ""; - }; - 76391DDB23FF07DE2B28D75DBD7F4A66 /* ios */ = { - isa = PBXGroup; - children = ( - FE6F9287AFCD6711FAC3B05939EFED99 /* RCTTurboModule.h */, - C98435D232181CB59D9437BB281085D8 /* RCTTurboModule.mm */, - 45A27F45E451616474EE3BA06E6192CA /* RCTTurboModuleManager.h */, - 27BF5FC560FD2FAA9E0CE24B587EF40B /* RCTTurboModuleManager.mm */, - ); - name = ios; - path = ios; - sourceTree = ""; - }; - 76F167D2145B14A2D6ECC8DDB14BB5D0 /* Multiline */ = { - isa = PBXGroup; - children = ( - 491C51CD28536CB3C58BBB9969764C6F /* RCTMultilineTextInputView.h */, - BB11E12080EF34974D669D1BB3054263 /* RCTMultilineTextInputViewManager.h */, - 738329BFE8F5DCCB402225DBBF9A323B /* RCTUITextView.h */, - ); - name = Multiline; - path = Multiline; - sourceTree = ""; - }; - 77308058297620F913D6186D6AC3C901 /* react-native-simple-crypto */ = { - isa = PBXGroup; - children = ( - 421514AC35089A123F82847212688512 /* RCTAes.h */, - 21CCA9B0D76F7184E75764ADA893258D /* RCTAes.m */, - EC800AB4F913D98C62850585DA4CDB3B /* RCTCrypto-Bridging-Header.h */, - 8D330BD11C8CA4C1E679116A9B1ECE3F /* RCTHmac.h */, - F949EE0C22F3B9A07AA2BC2F5F4C78A6 /* RCTHmac.m */, - 07AFA3DA47FBF615B703A60E2A97977B /* RCTPbkdf2.h */, - 5AE36BD42B59F23DB7879CEBF3950A5D /* RCTPbkdf2.m */, - D007CFEE4AD7FD19ABF8EE56737FC685 /* RCTRsa.h */, - AAAF0A755C7FE38117F06CF845AB381C /* RCTRsa.m */, - 4925723943684CC0EFCE116A456047FF /* RCTRsaUtils.m */, - 581A7309AEB5386F083C9E89EC8CE4DF /* RCTRsaUtils.swift */, - 0379CBA89CCA780FC442513CCEE5FA2E /* RCTSha.h */, - 8BAA844162D89BF78534CD2CE919D5B9 /* RCTSha.m */, - 748FA945E7F2ECC16670A665D3BCF688 /* RNRandomBytes.h */, - 9FC2B930AF9C2ACB6BEDEFC3B6733F62 /* RNRandomBytes.m */, - 7CA74FF4C6362DC1E5181883AA7B6CE7 /* lib */, - 7F6892DA877262E8311DE539FB09A1D3 /* Pod */, - 062A3BD871C3997403354F6208B81B7C /* Support Files */, - ); - name = "react-native-simple-crypto"; - path = "../../node_modules/react-native-simple-crypto"; - sourceTree = ""; - }; - 77665CA6DBD4FF81C39E24DADB7370B7 /* Pods-NotificationService */ = { - isa = PBXGroup; - children = ( - EF68A95B2BB34793D30DC18E1A29109A /* Pods-NotificationService.modulemap */, - B34D7AD717D6773326F1B507DC17B4FE /* Pods-NotificationService-acknowledgements.markdown */, - 53EDC418FED268D0086748617F26DBF5 /* Pods-NotificationService-acknowledgements.plist */, - 24DD06DF3760AA8A84A2FD651A74E8B0 /* Pods-NotificationService-dummy.m */, - F58021416A62A986A53B2D12008A3F89 /* Pods-NotificationService-resources.sh */, - 44036119557B4464513ACB6E0DD07799 /* Pods-NotificationService-umbrella.h */, - 04C9072E8E73E49E527671FED550BBA8 /* Pods-NotificationService.debug.xcconfig */, - A6EB796E6E9E63CB8E30B650EF1BB98B /* Pods-NotificationService.release.xcconfig */, - ); - name = "Pods-NotificationService"; - path = "Target Support Files/Pods-NotificationService"; - sourceTree = ""; - }; - 77721A49F15F221B69BC8D4889A5C23A /* Pod */ = { - isa = PBXGroup; - children = ( - 99D43C29EC85F7083357AEA61945D755 /* EXAV.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 777FAF3E4219548EB47F87B320943205 /* FBReactNativeSpec */ = { - isa = PBXGroup; - children = ( - 98F920827825889ADBC528A3830BCEA9 /* FBReactNativeSpec.h */, - C7F2764B48E0183C8C819DDC549640E1 /* FBReactNativeSpec-generated.mm */, - 8C7DB5F1E9F144DA416F4BC51CBF4200 /* Pod */, - B08F14349379DFC42C8B1345F29ECC17 /* Support Files */, - ); - name = FBReactNativeSpec; - path = "../../node_modules/react-native/React/FBReactNativeSpec"; - sourceTree = ""; - }; - 783420C69E4B3095E8760143CC22683A /* EXSessionTasks */ = { - isa = PBXGroup; - children = ( - 73AE15DC1FB21681CBAF993064E7DF51 /* EXResumablesManager.h */, - B08EDAFE30DCC1ACD8476AF6BAA6AA4A /* EXResumablesManager.m */, - A6610CA1473962CD73207E1614B86652 /* EXSessionDownloadTaskDelegate.h */, - C15EB7B14B020BFB9E8B9685DF0137AB /* EXSessionDownloadTaskDelegate.m */, - 8B2A1D080E634E58293E932858D9EA98 /* EXSessionResumableDownloadTaskDelegate.h */, - 506DB39CA9189B2AEAF25CCCBB892C5A /* EXSessionResumableDownloadTaskDelegate.m */, - B2253C90BA1A0E6FCFF5C7668D984D3E /* EXSessionTaskDelegate.h */, - 70CD5ADC760D553E10D65A3B9E09C39C /* EXSessionTaskDelegate.m */, - AF27FB11110981F488457F0EE5BADBCB /* EXSessionTaskDispatcher.h */, - 96BE05BCF5DED1CFEE27DE983EF021BA /* EXSessionTaskDispatcher.m */, - 8E21C2D8C67E96DD2E8970568EB72679 /* EXSessionUploadTaskDelegate.h */, - 69C92812257DBCADEEF2E62E4A7A8D68 /* EXSessionUploadTaskDelegate.m */, - ); - name = EXSessionTasks; - path = EXFileSystem/EXSessionTasks; - sourceTree = ""; - }; - 7874709E42B00BB9CBAE4C6787D6E098 /* React-RCTAnimation */ = { - isa = PBXGroup; - children = ( - 8992EC690655551AB49DB2B1245424D9 /* RCTAnimationPlugins.mm */, - EDDB0ED7D13BFC094D2760B57240116E /* RCTAnimationUtils.m */, - 18AEE788948D0F35540FB577C7FDECC6 /* RCTNativeAnimatedModule.mm */, - 78AB9608FEA6D2371BA875A9A63096B8 /* RCTNativeAnimatedNodesManager.m */, - D0845F85A8A1373A6FB9BE2889058A48 /* RCTNativeAnimatedTurboModule.mm */, - C5408299CF2DDC5003D97EE48B3A8446 /* Drivers */, - D54F8C43C26463759E0B73BC6E1E9880 /* Nodes */, - 57903137E39E58400EF73181E8406891 /* Pod */, - 17AAB010B98EC817A7ACFA384F7E49E8 /* Support Files */, - ); - name = "React-RCTAnimation"; - path = "../../node_modules/react-native/Libraries/NativeAnimation"; - sourceTree = ""; - }; - 7998E1D06FEFEBA4A32563E9107B5808 /* lninterpolation */ = { - isa = PBXGroup; - children = ( - 94B5C3F90AB88ABD239EBCA2880336B6 /* Color+Interpolation.h */, - A30A02D443B833D2EC48E665E2C96AC8 /* Color+Interpolation.m */, - 487CEC89AFF0DCBE9337BAEF7F1F156A /* LNAnimatorTemp.h */, - 4ADAAA98943D36345D16BD28DB54FAFB /* LNAnimatorTemp.m */, - 4CD4CAE338C22B95462CA8D64D75BA67 /* LNInterpolable.h */, - C82F2291C0E1C10A94D728781D45E2F7 /* LNInterpolable.m */, - 26D1AF537F43C9CA37FA73214836DC23 /* LNInterpolation.h */, - 267905E3C815770B71178C6FB405140E /* NSValue+Interpolation.h */, - ); - name = lninterpolation; - path = lninterpolation; - sourceTree = ""; - }; - 79B6734F85D1BBE586AE31C06947B1C0 /* Pod */ = { - isa = PBXGroup; - children = ( - F042F3EDA3FB4BFF0AEE5C505E44B2A7 /* React.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 79C12B539B377E792AE43E40F6A26B0A /* RNConfigReader.xcworkspace */ = { - isa = PBXGroup; - children = ( - E2D8CE6AEEA3131D64AB5477E450F70B /* contents.xcworkspacedata */, - ); - name = RNConfigReader.xcworkspace; - path = ios/RNConfigReader.xcworkspace; - sourceTree = ""; - }; - 79F53A35899385E73A55FC3AD4210D4A /* UserDefaults */ = { - isa = PBXGroup; - children = ( - F80EFFD5CEFD057F6C9AB017625E04C0 /* GULUserDefaults.h */, - BD569C16ACD867CA9120A03F34357CB6 /* GULUserDefaults.m */, - ); - name = UserDefaults; - sourceTree = ""; - }; - 79F9C5DC46EEA76AF12DC1ED8C16CB41 /* UMModuleRegistryAdapter */ = { - isa = PBXGroup; - children = ( - 186CE65727441187F17B59BDF3987169 /* UMModuleRegistryAdapter.h */, - 50CAFB8F24C41D94870BC72414843960 /* UMModuleRegistryAdapter.m */, - 22DADB1CFC3AD9AD8407096A834D6C45 /* UMModuleRegistryHolderReactModule.h */, - 67DE76349AA2DBFCB1AE91B38BFB8E78 /* UMModuleRegistryHolderReactModule.m */, - CF5DBBC056AE612B13B56FA8EE6EB845 /* UMViewManagerAdapterClassesRegistry.h */, - 44C68B0BF6CD21A146605DA60902B87C /* UMViewManagerAdapterClassesRegistry.m */, - ); - name = UMModuleRegistryAdapter; - path = UMReactNativeAdapter/UMModuleRegistryAdapter; - sourceTree = ""; - }; - 7A39CD658434E837FF40C2C8B0F9FBC2 /* Support Files */ = { - isa = PBXGroup; - children = ( - F8CD14050C72D23D91D42E504CB876EF /* GoogleAppMeasurement.debug.xcconfig */, - DF0CCC4ED5EA093604440EBDE947BC63 /* GoogleAppMeasurement.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/GoogleAppMeasurement"; - sourceTree = ""; - }; - 7A9D58B5CF36E4DB4963A3D88F79EF87 /* Pods-defaults-Rocket.Chat */ = { - isa = PBXGroup; - children = ( - D67A8477403D4FF04D10186E20CBF92B /* Pods-defaults-Rocket.Chat.modulemap */, - 4DE9214CE8536885558ABFF1032C77F7 /* Pods-defaults-Rocket.Chat-acknowledgements.markdown */, - 2EFD0A6BE8310EB5AFA739603C80B858 /* Pods-defaults-Rocket.Chat-acknowledgements.plist */, - 1755BCB66039C137A85759A7F94BCBA6 /* Pods-defaults-Rocket.Chat-dummy.m */, - F5DC1A318679E374AF8B617C6DA4652A /* Pods-defaults-Rocket.Chat-frameworks.sh */, - 5D86198D4949CCBF29B30C14A072C51C /* Pods-defaults-Rocket.Chat-resources.sh */, - 9FF15DDF56C721A3A36BEBEC97A731D5 /* Pods-defaults-Rocket.Chat-umbrella.h */, - 3176AB3C86C5700B205948C24DBD3022 /* Pods-defaults-Rocket.Chat.debug.xcconfig */, - 22179B26EFA123B0FB129665B0D3749A /* Pods-defaults-Rocket.Chat.release.xcconfig */, - ); - name = "Pods-defaults-Rocket.Chat"; - path = "Target Support Files/Pods-defaults-Rocket.Chat"; - sourceTree = ""; - }; - 7C42AACEC9058818A5ADB3B57C501FD6 /* rn-fetch-blob */ = { - isa = PBXGroup; - children = ( - 6CC587454BD6B008658D1F81D5C7D43F /* IOS7Polyfill.h */, - 3A9E24B2B98CE17D546E24D2EBF76810 /* RNFetchBlobConst.h */, - 876DC40AD195D742638FA9BF1C0D7921 /* RNFetchBlobConst.m */, - 4A484C1D078AFA7FB230A1CA36002D48 /* RNFetchBlobFS.h */, - CE82711FB9B6F57CED5C24549CED4969 /* RNFetchBlobFS.m */, - 86DE22F6FE748461A4460AEF613CB60E /* RNFetchBlobNetwork.h */, - 983F9DF2C050AFCA94F0CA8E2E8669DC /* RNFetchBlobNetwork.m */, - 65A10CD384166D4915AA30899818E55F /* RNFetchBlobProgress.h */, - 6C2F19B01CDE0E540916BF36C0D235C2 /* RNFetchBlobProgress.m */, - C75319AD83E624146F210858A8598AA9 /* RNFetchBlobReqBuilder.h */, - 944FA174EF87D2543731F5E05EF8AE7B /* RNFetchBlobReqBuilder.m */, - AD0F4EAC69CF470383D7C418BBB97AA0 /* RNFetchBlobRequest.h */, - F4F0003594455DBED04D5A76AF26202A /* RNFetchBlobRequest.m */, - 662546606C3BB5C05F2CD30A04583B58 /* Pod */, - A8E862B746E20FCB9ADB08ADD91AA19C /* RNFetchBlob */, - 878AE813D8CA898A932C3539D588D058 /* Support Files */, - ); - name = "rn-fetch-blob"; - path = "../../node_modules/rn-fetch-blob"; - sourceTree = ""; - }; - 7C58533168BB7DDC651B2AEE7F8ACF7A /* Support Files */ = { - isa = PBXGroup; - children = ( - BC8B87DEC1D51EACDD0B4492796C767E /* EXVideoThumbnails-dummy.m */, - B46B8EA0BB5ABD4DBE239D45E020E1A2 /* EXVideoThumbnails-prefix.pch */, - 5CEEA2881319348B74379E95580994B0 /* EXVideoThumbnails.debug.xcconfig */, - D0AAC020FDC78E6B79317B21E523F9D4 /* EXVideoThumbnails.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXVideoThumbnails"; - sourceTree = ""; - }; - 7CA74FF4C6362DC1E5181883AA7B6CE7 /* lib */ = { - isa = PBXGroup; - children = ( - 4D479FFC149586E597ED1DBEEEA60A51 /* Aes.h */, - 7D3BA5115F9737AE637D285A7D17ECEA /* Aes.m */, - 2BA6E2B807EADC6DBE56261217B8CD4B /* Hmac.h */, - 9F18F0F2473E96006C112AADE8B5DFD5 /* Hmac.m */, - E829F714475EF6F063CF6C938929BFEE /* Pbkdf2.h */, - DA7889AD98BC21BD8A16B23E5BB55798 /* Pbkdf2.m */, - 8D8115907DABD52D7AE23BE75B06FBDA /* Rsa.h */, - 19B8A2A9818EEDF91CCBE35B0BDB5F50 /* Rsa.m */, - 8B68614B7A954CB2FD54D2A664EC9D67 /* RsaFormatter.h */, - AEF7F78F7DABD39ED7057DBA624CADAC /* RsaFormatter.m */, - 2A7858D1D872AC31A34991A1AC19FB64 /* Sha.h */, - D225EAEE3F5D4BC3CD7C9EC2973E1856 /* Sha.m */, - 3524D969409DB4A13D443D60EBA6B885 /* Shared.h */, - 3CB793653BD41D8635C7E424363F51FB /* Shared.m */, - ); - name = lib; - path = ios/RCTCrypto/lib; - sourceTree = ""; - }; - 7CF3F60D68841FCC7BF9E1F954CFCF3C /* Pod */ = { - isa = PBXGroup; - children = ( - 928FAACA93E55C346F969D4167D563FF /* LICENSE */, - C5995A8934DE61F8EE86F1E3BA547F57 /* README.md */, - 5917733B8AAA8B57183D45D1D9E0EB06 /* RNFBAnalytics.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 7D2BD92025B51DA60BB351BB9BAEC931 /* FBDefines */ = { - isa = PBXGroup; - children = ( - 5CEEAEB3328E9D73020B5EB925D69D19 /* FBDefines.h */, - ); - name = FBDefines; - sourceTree = ""; - }; - 7E5997F63A4EA05E1FDB3A2F0AFB4458 /* Support Files */ = { - isa = PBXGroup; - children = ( - 8C3B6BCE228748A7C85DC27F26E7C631 /* EXFileSystem-dummy.m */, - 89E405CCA1A391442D8914E9B728BCD2 /* EXFileSystem-prefix.pch */, - 725A1A8E044277E56A6C7F050026271B /* EXFileSystem.debug.xcconfig */, - A59D9474242C3F2ABC121ED2DE64E161 /* EXFileSystem.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXFileSystem"; - sourceTree = ""; - }; - 7ECE618DA08E485C1747235EE46BAC36 /* Pod */ = { - isa = PBXGroup; - children = ( - E9354A4991668C5A990FD4E1360339E5 /* EXAppleAuthentication.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 7EEBB5EB2B4D6429CEE7E5ACA20958D3 /* RNDateTimePicker */ = { - isa = PBXGroup; - children = ( - 41C6226D2A2E1887F08D45F1C60C9D9A /* RNDateTimePicker.h */, - 08EA7BAF8053A40E2918536B6F1CE145 /* RNDateTimePicker.m */, - 0CB8CF1462BE255C10DFD0A04C4E38D2 /* RNDateTimePickerManager.h */, - 17FB9D94F5FF23680996BFC5CF8F1EC2 /* RNDateTimePickerManager.m */, - 85EA4112D64367F26E272ABB31D558D5 /* Pod */, - 9B523D9745F3E1900B6814463500F74D /* Support Files */, - ); - name = RNDateTimePicker; - path = "../../node_modules/@react-native-community/datetimepicker"; - sourceTree = ""; - }; - 7F005AA6F3A2E7AADC1B2BF1E773836D /* Support Files */ = { - isa = PBXGroup; - children = ( - 9738B24602054161126702D51638C85D /* RNLocalize-dummy.m */, - 41C26FA032AB83618A65DDD23EE12663 /* RNLocalize-prefix.pch */, - B3AC2B7D4446EC25EA93B3247821553F /* RNLocalize.debug.xcconfig */, - 56D5E512D14827A857149974C62F7D82 /* RNLocalize.release.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNLocalize"; - sourceTree = ""; - }; - 7F6892DA877262E8311DE539FB09A1D3 /* Pod */ = { - isa = PBXGroup; - children = ( - 6F47C36D2EAD0640B20CA6E7577E4505 /* LICENSE */, - A6A07BB108AC83F356427FD2959D93BB /* react-native-simple-crypto.podspec */, - 3233B0285BABB269549B21B7FE43AD9D /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 801EC80B2E6A8D947B0DAD3B62445817 /* React-RCTImage */ = { - isa = PBXGroup; - children = ( - 0151D07F88EA17B45CFF98C3BB020F04 /* RCTAnimatedImage.m */, - 0C970220DC95DB4DD7D644673EBC10C4 /* RCTDisplayWeakRefreshable.m */, - 5BDA26914C4E565302DAF3E2410D8326 /* RCTGIFImageDecoder.mm */, - CE27789B9B6612735667ACD0E55F8916 /* RCTImageBlurUtils.m */, - C4F0251CC441D77332657E2CF0267616 /* RCTImageCache.m */, - 5A2341E12FAB23D2BD2757BCEDD80427 /* RCTImageEditingManager.mm */, - 24EDE437CEF92978BF7AFEBCADB858BB /* RCTImageLoader.mm */, - F72017B1E553A1F1E141A83638C9F120 /* RCTImagePlugins.mm */, - 2F37800457A2105A9E1F7E9F05B64EC7 /* RCTImageShadowView.m */, - 19BCF8673E3B945C77338B676EFD504C /* RCTImageStoreManager.mm */, - 26A0D7C490FBD2800D290929CCA897BD /* RCTImageURLLoaderWithAttribution.mm */, - 3A5B26A920688D9E84AA2D974DC794F6 /* RCTImageUtils.m */, - C88B75A182B9FF27AEEAC3DF6B2B28DF /* RCTImageView.mm */, - 7930696DB31D929DB6B53E5603372CEE /* RCTImageViewManager.mm */, - FA01927C0F34FDE81C05B77D6AB327B8 /* RCTLocalAssetImageLoader.mm */, - FFA02D8B27A90553671499D9101EC88A /* RCTResizeMode.m */, - 6B8B5DD9592BCEACA9C54DDBB4C954A7 /* RCTUIImageViewAnimated.m */, - C6D6FCD54F098617F40974E6011417A2 /* Pod */, - BE9DEB22C8F36168648A0EDA294219F9 /* Support Files */, - ); - name = "React-RCTImage"; - path = "../../node_modules/react-native/Libraries/Image"; - sourceTree = ""; - }; - 80272AF7E17ADE664906FFA66255D0C3 /* React-perflogger */ = { - isa = PBXGroup; - children = ( - 1288C2CD3F6B96DC5C50D947B0C05D0C /* BridgeNativeModulePerfLogger.cpp */, - A57643844AA82C3661CA9B030947D122 /* BridgeNativeModulePerfLogger.h */, - 70B51929E900D9E9A5F019AC15F42EFB /* NativeModulePerfLogger.h */, - 56302070BBB147D1A5F4479FD023AF14 /* Pod */, - 36FCED2585FE4E68FE22C626EF83DDCD /* Support Files */, - ); - name = "React-perflogger"; - path = "../../node_modules/react-native/ReactCommon/reactperflogger"; - sourceTree = ""; - }; - 807158F78E05C20A88CA104FFDB1FBFD /* Support Files */ = { - isa = PBXGroup; - children = ( - 27B95D25C59296DE4F9491AD1425DF06 /* RNGestureHandler-dummy.m */, - 2E92774EB52A10D9D917CF49F17A5AEC /* RNGestureHandler-prefix.pch */, - 3CA1BCB8D88569EA2B15FA77381E8A25 /* RNGestureHandler.debug.xcconfig */, - 03F5BC268435C4F4E7F26F360528B54D /* RNGestureHandler.release.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNGestureHandler"; - sourceTree = ""; - }; - 814E8E7E091098CC83DD495C815F1AF3 /* Support Files */ = { - isa = PBXGroup; - children = ( - 10D3CBD349DDBEDD8BC29FF16094AFD1 /* GoogleUtilities-dummy.m */, - 6ABC70D8E3CD1011B90A77C789F11198 /* GoogleUtilities.debug.xcconfig */, - E34AB18BAA4A47BB7C41BBCFCB2261F2 /* GoogleUtilities.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/GoogleUtilities"; - sourceTree = ""; - }; - 818B37BAEA74DEBA43F341269C8492A9 /* react-native-safe-area-context */ = { - isa = PBXGroup; - children = ( - 3E5D9DD3FAD6AA13E27482A54160D3DE /* RCTView+SafeAreaCompat.h */, - 88CCE6464D89071E71BE9A8A5D3ECED7 /* RCTView+SafeAreaCompat.m */, - 1C80D9D8E5CF1F2E467EE703052BFB0D /* RNCSafeAreaProvider.h */, - D7C0752E2281543637AD3FF993453899 /* RNCSafeAreaProvider.m */, - 0B999973704E2298F8D4E09D65AF653C /* RNCSafeAreaProviderManager.h */, - 8F17C1F45FF49B2A41C15ACE1427B279 /* RNCSafeAreaProviderManager.m */, - F2092C99076BACB5905FEB2806C3CBA4 /* RNCSafeAreaShadowView.h */, - 8A3940F1B4BCA47EE3978550D1283B3C /* RNCSafeAreaShadowView.m */, - E1D098F88C42967C0D38044EBC4FFD5D /* RNCSafeAreaView.h */, - 4235868962C8D8DEF5EAE9896B79E6CB /* RNCSafeAreaView.m */, - A9E45A7511D934BF04595250F5659161 /* RNCSafeAreaViewEdges.h */, - 734948868FD3466401304F71E4D66AA1 /* RNCSafeAreaViewEdges.m */, - 9C8B2C19E22DA707C9AB8B69169B49CF /* RNCSafeAreaViewLocalData.h */, - 3358A83AEF6EE9650687137594F42E15 /* RNCSafeAreaViewLocalData.m */, - DD1F298CEA554A71CA833260EC9F5307 /* RNCSafeAreaViewManager.h */, - 93163867AB8AD2240DD1C0CD1472D38A /* RNCSafeAreaViewManager.m */, - 441C502673B52E2B2CFADF89D4FA2660 /* RNCSafeAreaViewMode.h */, - C883504AA5CD6F532DEBF8F06A2A2C51 /* RNCSafeAreaViewMode.m */, - 87286BD7B45A2B76DB05C93F71DDCFB6 /* Pod */, - 727E47B6BA91EF7DACEE3BA458598B39 /* Support Files */, - ); - name = "react-native-safe-area-context"; - path = "../../node_modules/react-native-safe-area-context"; - sourceTree = ""; - }; - 836F70AFCF5B87FD9322F83023C9EA0F /* Brushes */ = { - isa = PBXGroup; - children = ( - 74C483730FEC4C3814C78CC526820975 /* ARTBrush.h */, - 6A78BB79A816BAAA08ACA4B49EE68C23 /* ARTBrush.m */, - 99FC832F344DC4E3F711C390B32F2F0D /* ARTLinearGradient.h */, - BFFCB8FC0F61C671EA2AC11DC9AA6E1C /* ARTLinearGradient.m */, - 0C7932C453738F6F6274F8460F0DC0F5 /* ARTPattern.h */, - 5F4F629A06B57337573242D35CD5AA6E /* ARTPattern.m */, - 288F6C79144FE973185A8730DB2EB91E /* ARTRadialGradient.h */, - AC718217CFB0201506260E25809F4040 /* ARTRadialGradient.m */, - 91480DA002B4797443D2BB99E00AF339 /* ARTSolidColor.h */, - B757F33E547FB3C2806852E7790225A8 /* ARTSolidColor.m */, - ); - name = Brushes; - path = ios/Brushes; - sourceTree = ""; - }; - 8459A5920258336A8C818512F7D04160 /* Pod */ = { - isa = PBXGroup; - children = ( - 58B8ECF76AAEE475E2FBC8334AB95A7A /* ReactNativeUiLib.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 84D9DDD71D0F444310B6C5F8817DEA33 /* Support Files */ = { - isa = PBXGroup; - children = ( - C70C9ACEBC3EA12096674B798398337E /* React-Core.modulemap */, - 520A053EA65F2E76A25C5D074CD2562F /* React-Core-dummy.m */, - 58D3AF415B00309C8E9321772845BFD5 /* React-Core-prefix.pch */, - 1FE679CF0F5DF3FD54DBD39B3FD918DD /* React-Core-umbrella.h */, - 370E9321A37DE0001F7FF090BDF39968 /* React-Core.debug.xcconfig */, - 3CAE08AD3C23F93D4E737EEDAF1FB756 /* React-Core.release.xcconfig */, - DF984F794DEDB3AB7BBC5DBDACC59718 /* ResourceBundle-AccessibilityResources-React-Core-Info.plist */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React-Core"; - sourceTree = ""; - }; - 858C1481B644FD8A10FCCF31E1EAF34C /* react-native-cameraroll */ = { - isa = PBXGroup; - children = ( - D387B13DD65247029584B19ABB2D3BC8 /* RNCAssetsLibraryRequestHandler.h */, - E92B82D2277D7E8D2DB51024E471642F /* RNCAssetsLibraryRequestHandler.m */, - 05EA5AE7692D62821313F1550C06B2C1 /* RNCCameraRollManager.h */, - 3A73A2D1784E04BFCCC8EE15146FEEFD /* RNCCameraRollManager.m */, - 1FDE98F4547989A407DF00E2B588523F /* Pod */, - F1E79BAFCFF0EC57C8AB55F6171CE0A3 /* Support Files */, - ); - name = "react-native-cameraroll"; - path = "../../node_modules/@react-native-community/cameraroll"; - sourceTree = ""; - }; - 85EA4112D64367F26E272ABB31D558D5 /* Pod */ = { - isa = PBXGroup; - children = ( - 30EDA292489B0B8485F41B05A448D236 /* LICENSE.md */, - 3541C88B900E0CFC93964D090D7F4A30 /* README.md */, - 964D36E288EAC7EC1FB9CCA4F6426EB8 /* RNDateTimePicker.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 86677D26A3179FEF358A0284BC61F3AE /* MethodSwizzler */ = { - isa = PBXGroup; - children = ( - A7F777A235BC6BD096853867E94D2332 /* GULOriginalIMPConvenienceMacros.h */, - A1BF68D59DC67100D469927A60889975 /* GULSwizzler.h */, - 073A0F73F0D948124331D5ED633FED78 /* GULSwizzler.m */, - ); - name = MethodSwizzler; - sourceTree = ""; - }; - 87286BD7B45A2B76DB05C93F71DDCFB6 /* Pod */ = { - isa = PBXGroup; - children = ( - BAEA026388D09D7DC06E490023BDF73B /* LICENSE */, - 0C3DDBBB3E0934364440A6EA08882C8B /* react-native-safe-area-context.podspec */, - 3DF526E4E93ACF0AC9E9F4CFA9F5FBBF /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 878AE813D8CA898A932C3539D588D058 /* Support Files */ = { - isa = PBXGroup; - children = ( - CB651E6E4E2D6D503984BD221C592A8E /* rn-fetch-blob-dummy.m */, - 0BA2E9CA009B73D0FD2EF03970BDADCA /* rn-fetch-blob-prefix.pch */, - 7DE885C78076134935C547C3A9DF5AAC /* rn-fetch-blob.debug.xcconfig */, - 12FE9D43DD733439B93B4E2D0EA81FFD /* rn-fetch-blob.release.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/rn-fetch-blob"; - sourceTree = ""; - }; - 881CCDE37D7C7D569598D96164DBB326 /* Support Files */ = { - isa = PBXGroup; - children = ( - 3C08BCD03276C8D7469D408A695758C5 /* RNFBAnalytics-dummy.m */, - CD819DA2C982130E0BE946480A248D3C /* RNFBAnalytics-prefix.pch */, - D16286F2EFC59A263D366B2375D99AE9 /* RNFBAnalytics.debug.xcconfig */, - 07AC36C3C3B745E9BBD8E0A5E31A379C /* RNFBAnalytics.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNFBAnalytics"; - sourceTree = ""; - }; - 882258EDA3057FBDBA54EAF0089FA8F1 /* FirebaseInstallations */ = { - isa = PBXGroup; - children = ( - 7343CA8A9C7528DFE57EC1F85F33C409 /* FIRAppInternal.h */, - FFDB251CDA064A494DD8DE2607DC5A3A /* FIRComponent.h */, - 62349CEF1BEF279D189F7115CFD85FD1 /* FIRComponentContainer.h */, - BC06AD0CDFCDE2EBDF8C53D6CA3E097A /* FIRComponentType.h */, - 942912A1EA0A7436F2FDD973903DF116 /* FIRCoreDiagnosticsConnector.h */, - F77B5FF434ABB196616C9FDD68A45DBA /* FIRDependency.h */, - 02E08451045D001829AD93FC5DDDC2FE /* FirebaseCoreInternal.h */, - F2384F9FCDC8C8E4F8092212A51E69BE /* FirebaseInstallations.h */, - 91F251357B1B861D6BECB35B97540576 /* FirebaseInstallationsInternal.h */, - 867B29A1250B07A84E8BC281E2916F23 /* FIRErrorCode.h */, - 67D5F573B6CFD6FF0723A26620D16C35 /* FIRErrors.h */, - 7D7EFA14CEAB378BAE4FD09AA6B5FDF1 /* FIRHeartbeatInfo.h */, - 0B32040CFCC394F3ABA8903C6AD30C71 /* FIRInstallations.h */, - 808157E8035BB54AD67EED203B4A8AD8 /* FIRInstallations.m */, - C2C0E90FEA77DD0E5EFF604B618FDA96 /* FIRInstallationsAPIService.h */, - A92471AA2B82BDB11D3DB2938A92C154 /* FIRInstallationsAPIService.m */, - D492EF8863AEA098B6A3F3255B3F8CB9 /* FIRInstallationsAuthTokenResult.h */, - 18571F19C03D63DC9FA1F9030B6EA0B9 /* FIRInstallationsAuthTokenResult.m */, - 3B930A32F432993FA5735ED7FFD3E125 /* FIRInstallationsAuthTokenResultInternal.h */, - 0799A00B1DC38572550D734432304845 /* FIRInstallationsErrors.h */, - 416D359A4FC7BB38FDA1EF50B2C9654C /* FIRInstallationsErrorUtil.h */, - 07B23753CEF78E886235745063A4B131 /* FIRInstallationsErrorUtil.m */, - 1CD4739532193BEA6F2B46CE2CAC3A2A /* FIRInstallationsHTTPError.h */, - 82CD836887898CD56425D5AE3E6F3813 /* FIRInstallationsHTTPError.m */, - 00D323FBBD73EFACF837D4D6D25372A0 /* FIRInstallationsIDController.h */, - 5ED3A731B84B5126546C42978C09FCD0 /* FIRInstallationsIDController.m */, - 7ED107C7D265D1E13894AC662AE1149C /* FIRInstallationsIIDStore.h */, - CD72FF4935D9AD07EEF34CDEC0AFC91F /* FIRInstallationsIIDStore.m */, - D9BD28134A368C0AFA8B5E2C29BC4702 /* FIRInstallationsIIDTokenStore.h */, - C335481D064FA5535D3CC9FB9822A2BF /* FIRInstallationsIIDTokenStore.m */, - 3EF4E581C7EAB7D5EBD1377F06CA0214 /* FIRInstallationsItem.h */, - 171E2F7335FA3822401B90809CDF31D2 /* FIRInstallationsItem.m */, - C20492402F9EA7E3B8AD53A1D41FC5D2 /* FIRInstallationsItem+RegisterInstallationAPI.h */, - CB8D1B05F7691BAED8591CFF2B187C65 /* FIRInstallationsItem+RegisterInstallationAPI.m */, - E240658062D7BD715785CFECCEAF544C /* FIRInstallationsLogger.h */, - 3146EE7F2F7253CE4A19AE42577E2750 /* FIRInstallationsLogger.m */, - 56EA0A0FE0344C01612010C4CCF72387 /* FIRInstallationsSingleOperationPromiseCache.h */, - 487D1690697E71AB3608BBB1B971C59D /* FIRInstallationsSingleOperationPromiseCache.m */, - 13D532F8576952B1731BD9017ABEF549 /* FIRInstallationsStatus.h */, - 07DF80C3CCE5F07D6160CBD62078D66D /* FIRInstallationsStore.h */, - 38DBC4FE53A7D3A0516B8339987659B6 /* FIRInstallationsStore.m */, - CD0A3443C6A7213D97CFC3BE33030908 /* FIRInstallationsStoredAuthToken.h */, - C2A38FCFC0C7CBF5FB62C446C28158CD /* FIRInstallationsStoredAuthToken.m */, - 9141094EE1ED49F64CDFCC8C60B96156 /* FIRInstallationsStoredItem.h */, - CA53479D1F7EC6FB3472EFF20F157B6C /* FIRInstallationsStoredItem.m */, - 9DB1D8FE765BE7361DB47698214C8827 /* FIRInstallationsVersion.h */, - D4A2BE8CFED384AE4AC4EC33BB298903 /* FIRInstallationsVersion.m */, - 6B6AF267F4A7C6DE4A649FA84CE33D1D /* FIRLibrary.h */, - 80313E41FC783BC7ACFB49F771393302 /* FIRLogger.h */, - B66CDF20D4E34DD68D5EEBC0BAE954FD /* FIROptionsInternal.h */, - 3ADA24494E344DDAD822C6DA6B4EF030 /* GULAppEnvironmentUtil.h */, - 41FA13DF57954BD5E585AB26E68DE195 /* GULHeartbeatDateStorage.h */, - E7D565D7D6C306053C2BDFCF2E18FB85 /* GULKeychainStorage.h */, - 14833B7595C20284FE302A11D245BE8D /* GULKeychainUtils.h */, - 2A052AC762DA5E58222E584F38CB2FF1 /* GULSecureCoding.h */, - 960AFA97C6DCB819D930DEC1EA15BF49 /* GULUserDefaults.h */, - 09F60EF4922F0B81EC1E179E66BCF4B3 /* Support Files */, - ); - name = FirebaseInstallations; - path = FirebaseInstallations; - sourceTree = ""; - }; - 8B2057048C8C329295981E69DA2948EC /* Support Files */ = { - isa = PBXGroup; - children = ( - 783BE74482F26E7A96DE2F3A74B7FE6A /* UMCore-dummy.m */, - D28BA3B3ABEEAC24F49B7E8E6A246ED5 /* UMCore-prefix.pch */, - FB09F2CC54808FC8464A3C01F66C2052 /* UMCore.debug.xcconfig */, - 72549368E3605C8B77F4769CDBD2EBCF /* UMCore.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMCore"; - sourceTree = ""; - }; - 8BB8C1C0E99F1B18F499877ED39B98D9 /* React-runtimeexecutor */ = { - isa = PBXGroup; - children = ( - 7BDAA6332B8FE46FE88C1FAAD8C43549 /* RuntimeExecutor.h */, - D68616456CDF0E7EE1DEEC9549D1DFFE /* Pod */, - 95525B4B010E0FCD540BBADF631F07AD /* Support Files */, - ); - name = "React-runtimeexecutor"; - path = "../../node_modules/react-native/ReactCommon/runtimeexecutor"; - sourceTree = ""; - }; - 8BCDA242335B32DDD47E0EF491D17437 /* Products */ = { + 4F324F96B78624E3B6F2EDE9CF6B621A /* Products */ = { isa = PBXGroup; children = ( FE6D792B6328AAF68E46924D7F466631 /* AccessibilityResources.bundle */, @@ -18953,10 +17738,10 @@ B88A54159B245E727A6D16DEFE105A09 /* libMMKV.a */, E0B603F54009DAEF6C3BAAE621E5F180 /* libMMKVCore.a */, 06FC5C9CF96D60C50FCD47D339C91951 /* libnanopb.a */, + 43ACA7A17003998EDE71C59EE7DDBB10 /* libPods-defaults-NotificationService.a */, F25C3E827CEC99016CF835D55FD8A055 /* libPods-defaults-Rocket.Chat.a */, 9621F4B0A44623E984DC190DDF0A9A4B /* libPods-defaults-RocketChatRN.a */, - 563E0A0FEB65B564D6A02A0A948B2E62 /* libPods-NotificationService.a */, - ABCA9F4CD6EE0D4686EBA505F526A436 /* libPods-ShareRocketChatRN.a */, + 5A2E6B443111E31A19B7468C0E056A7B /* libPods-defaults-ShareRocketChatRN.a */, 3347A1AB6546F0A3977529B8F199DC41 /* libPromisesObjC.a */, 1936453FF2A7E3A13063C4917C4D5598 /* libRCT-Folly.a */, F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */, @@ -19029,54 +17814,1818 @@ name = Products; sourceTree = ""; }; - 8BE19DA5A659428A18C7C14E37E63EB8 /* EXVideoThumbnails */ = { + 526400428A066077655519992F2112DE /* Environment */ = { isa = PBXGroup; children = ( - 82528F33CA02E533E44939A0C2850FC2 /* EXVideoThumbnailsModule.h */, - FC350D2C00A929B13FA17CF6E28392FE /* EXVideoThumbnailsModule.m */, - 72C9638159565DA696E358E5AF93E573 /* Pod */, - 7C58533168BB7DDC651B2AEE7F8ACF7A /* Support Files */, + F4894891D2683756B59E4356267E11C3 /* GULAppEnvironmentUtil.h */, + 4A2B792B80ED688B169D906DB78A6E39 /* GULAppEnvironmentUtil.m */, + 7E5ED61984AC5D0734B2848B826BA9D7 /* GULHeartbeatDateStorage.h */, + E815744FFA2710E1B7D0A4B6EED45E59 /* GULHeartbeatDateStorage.m */, + AE1F66FF6A4EA4EFE43EADA7E95E849A /* GULKeychainStorage.h */, + C8029B6FA3BDC64E572449C131DB4F9A /* GULKeychainStorage.m */, + 90BCAF1AC58CAB9DA6A0307E93957A3D /* GULKeychainUtils.h */, + 8D413F8DFA6A6911681D61472C0DC9EF /* GULKeychainUtils.m */, + 69461254E0F0D3F1C43476F6235680E3 /* GULSecureCoding.h */, + 4CFB0570DCDE324E6BE1532D8CF0082E /* GULSecureCoding.m */, ); - name = EXVideoThumbnails; - path = "../../node_modules/expo-video-thumbnails/ios"; + name = Environment; sourceTree = ""; }; - 8C7DB5F1E9F144DA416F4BC51CBF4200 /* Pod */ = { + 52F2A33587AF755FD188094DA4F22D31 /* Drivers */ = { isa = PBXGroup; children = ( - F502EF8E9167202CCFAAC5CC3DF495D9 /* FBReactNativeSpec.podspec */, + 18FFB6B8E3B72F4BA864DD9530CC7A6F /* RCTAnimationDriver.h */, + 8AA602DCBEEDEA49A0A583EEDCF0ACFC /* RCTDecayAnimation.h */, + B7BAE7EC72A94B862129150291E3A12E /* RCTEventAnimation.h */, + 316A90574F4767203686A7B623BD08DF /* RCTFrameAnimation.h */, + AB338D3DE7775EC9A3A7A5C6C8EF8871 /* RCTSpringAnimation.h */, + ); + name = Drivers; + path = Libraries/NativeAnimation/Drivers; + sourceTree = ""; + }; + 53DCBAA1138E63235F18EB007CD16B9D /* Support Files */ = { + isa = PBXGroup; + children = ( + 4E43DDC445CD2E8A4C9B98D3A5864896 /* react-native-background-timer-dummy.m */, + AADBF22EE399BD2B3827742C13A250C0 /* react-native-background-timer-prefix.pch */, + 18EBC9E9AA518CA89C3B0494781387BA /* react-native-background-timer.debug.xcconfig */, + 8563B2FC4FB842CB858FC49BF425377E /* react-native-background-timer.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-background-timer"; + sourceTree = ""; + }; + 53DFB52417A78862E432498F0F33CEFC /* EXWebBrowser */ = { + isa = PBXGroup; + children = ( + BD74D03C3EB4CC221C70AE0F7F2DB24E /* EXWebBrowser.h */, + DD639A12C46710EA1B2D9A2641AF3122 /* EXWebBrowser.m */, + 5FAC4FD6164B0174BB389F1F0AA6DD0D /* Pod */, + 6D630155EE7B8185E2F2398D2112A3A1 /* Support Files */, + ); + name = EXWebBrowser; + path = "../../node_modules/expo-web-browser/ios"; + sourceTree = ""; + }; + 542CE1C1019116EA2390CEE5E334025E /* Support Files */ = { + isa = PBXGroup; + children = ( + D09D3FE7CC7C7E27C81BB8B8916180FB /* ResourceBundle-TOCropViewControllerBundle-TOCropViewController-Info.plist */, + E9DAA69C91C5D71F71C166021395D3BE /* TOCropViewController-dummy.m */, + 69D34CE26D3CB422F08A8EBDA79343E3 /* TOCropViewController-prefix.pch */, + CC72D21238CDBFB46D8CFCC77CCABD69 /* TOCropViewController.debug.xcconfig */, + FFA8920602E194F719FDBCD36097B350 /* TOCropViewController.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/TOCropViewController"; + sourceTree = ""; + }; + 54644E6F3A8F864DD4E2393312366EF8 /* lninterpolation */ = { + isa = PBXGroup; + children = ( + 003B854D5742DC9F339D3D3F25B09576 /* Color+Interpolation.h */, + 1FA781FE35B9737A289A6F6DE796B40D /* Color+Interpolation.m */, + 992D41F7A137097278CF3EDB63F141AE /* LNAnimatorTemp.h */, + B1E561BB53064F378156F22F2A0939AC /* LNAnimatorTemp.m */, + A84D4EF51DA254BE4994B6F594A91701 /* LNInterpolable.h */, + 32CFF859FF41FB0A551A8E139D688D17 /* LNInterpolable.m */, + 365DCA14B065A771C6DEA582FB1A0EF1 /* LNInterpolation.h */, + BECE1E300CED3753A0542E5F1E4AF11E /* NSValue+Interpolation.h */, + ); + name = lninterpolation; + path = lninterpolation; + sourceTree = ""; + }; + 549F03B7AB363968A96C1850917DEAB1 /* nanopb */ = { + isa = PBXGroup; + children = ( + 7F763AD72B33D446728D68075D4A6AC7 /* pb.h */, + C6AF3E49B2DBFEA9ACFC6345FDDDB37F /* pb_common.c */, + 2943A07F6C1324D10B05C1B00DB35875 /* pb_common.h */, + 5C80621220CDF16B10C3A915E83A66BE /* pb_decode.c */, + A72E28AEF6DF1265BDD71B5670AF408C /* pb_decode.h */, + F75799BE5F54F996D3AE4DDCC29FB260 /* pb_encode.c */, + 0F73A7482432ABE08919D16E9DCE3ADC /* pb_encode.h */, + 240535AAA21390B67D2D702AA4D47519 /* decode */, + B9811984AFAD42C4FBA4991F41A2AEC8 /* encode */, + FD9366726B241C67B09A195B37FDC705 /* Support Files */, + ); + name = nanopb; + path = nanopb; + sourceTree = ""; + }; + 54FC4D24043627C1BEB096BBC6FB23F1 /* react-native-slider */ = { + isa = PBXGroup; + children = ( + A4A5845B88A33EFDB6AAE2D6706453D8 /* RNCSlider.h */, + A4E5D8024113C04A308B589034455548 /* RNCSlider.m */, + 025631EC319F114D70200FF936D0F45C /* RNCSliderManager.h */, + 40D47D7CB3CE368C41CE58178D446F27 /* RNCSliderManager.m */, + 89E42526F9DFE07C60CA8658D8ED2506 /* Pod */, + C4399765432138CF731F49C11D818658 /* Support Files */, + ); + name = "react-native-slider"; + path = "../../node_modules/@react-native-community/slider"; + sourceTree = ""; + }; + 551D8FB324C29D51DB7D1925EBEE2DC5 /* Pod */ = { + isa = PBXGroup; + children = ( + 071CA81D30430B1FFA956BD72ABB280A /* LICENSE */, + 83606A2F1248F96972C39BBACDC1C362 /* README.md */, + 68855EB97EDD027373CF568D23BD5DF6 /* RNConfigReader.podspec */, ); name = Pod; sourceTree = ""; }; - 8C905B5F17BC751A01ACDF0EAD37D295 /* Support Files */ = { + 560117F122F5EAE4590F0BBE856382C5 /* Targets Support Files */ = { isa = PBXGroup; children = ( - 303E051C808BB1AC99FC759FEA02C148 /* react-native-cookies-dummy.m */, - 547AB6E6C57FBEEA0DEB91D856A63BBA /* react-native-cookies-prefix.pch */, - 0D60570BC8C1B356697BE0F37FA05000 /* react-native-cookies.debug.xcconfig */, - E8FD1047B03F68AD7CBB1D024F14919A /* react-native-cookies.release.xcconfig */, + 48C388686489D844FD45C47D54530840 /* Pods-defaults-NotificationService */, + 727A845C55445F7312FE8EA9C2730D42 /* Pods-defaults-Rocket.Chat */, + E56E332379FE878AB5E0769D330B80DE /* Pods-defaults-RocketChatRN */, + 9CE3319E4DFE9ACAC08AC72447E6FD5B /* Pods-defaults-ShareRocketChatRN */, + ); + name = "Targets Support Files"; + sourceTree = ""; + }; + 56D90BF2040C78853B6B88181FDB7439 /* Support Files */ = { + isa = PBXGroup; + children = ( + 0529D73D9878D4E0EC0416AE14565F83 /* MMKV-dummy.m */, + B97940D26FBBECAD4EB08C0B41320551 /* MMKV-prefix.pch */, + DEE3203D0A7AFEFAD6E8D45299F7C77B /* MMKV.debug.xcconfig */, + 19BB8FE3084DED2BBFFA385ECA29B2E6 /* MMKV.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/MMKV"; + sourceTree = ""; + }; + 57607476FB45C52C9F3CF22F8AC2CEA8 /* Support Files */ = { + isa = PBXGroup; + children = ( + DCEA8F941CDD15EB2069935B316A55BB /* KeyCommands-dummy.m */, + 87FB3BAE4C0608D564B86E1ED9EE89A7 /* KeyCommands-prefix.pch */, + 558D3F7ACAF31C18087EB60CBBEF6338 /* KeyCommands.debug.xcconfig */, + 4B61C20E4E6ED1ADB8280B01F982A3F1 /* KeyCommands.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/KeyCommands"; + sourceTree = ""; + }; + 57C8456FBD7C8139050FCC835628C511 /* React-cxxreact */ = { + isa = PBXGroup; + children = ( + 494B50D5D5537B2B9842B43BE6116BEE /* CxxModule.h */, + 1B9BACB0377CD8C8008AD405848F4D2C /* CxxNativeModule.cpp */, + 959538869682DE8F5F8416B71AFB8690 /* CxxNativeModule.h */, + 36ECDE525D4C7376F5E88469F9AA0F0E /* ErrorUtils.h */, + CC132ACF573618FC05434FE77430522E /* Instance.cpp */, + 631870C24E6FF50FFE8421AB36226223 /* Instance.h */, + 972A33A68333AB5F1158E2DD2B039E97 /* JsArgumentHelpers.h */, + 07F8A416674D20EB4979BAF9EBF3D176 /* JsArgumentHelpers-inl.h */, + 975AFAA25345A61144FCBD53F33CA621 /* JSBigString.cpp */, + F8B921051AB4FF0A77981EF9913F6E3F /* JSBigString.h */, + 32A022EC517F10D917BF4DBC33E5C851 /* JSBundleType.cpp */, + 1EF300043F25CCBF87B4550F45407717 /* JSBundleType.h */, + 5D43D654FCA7F23771F07696175762B7 /* JSExecutor.cpp */, + 1899CDD77970FCB7A8B18F971C4DD188 /* JSExecutor.h */, + F492C284CDCC72A9270CF65696729407 /* JSIndexedRAMBundle.cpp */, + AB332063C3B127E3C0129F7EC7B091A0 /* JSIndexedRAMBundle.h */, + F458D12292FA35B08C9A39B64CF76800 /* JSModulesUnbundle.h */, + BF3037CDFDFCB0CB5E66960695EEF907 /* MessageQueueThread.h */, + DB84C45CEDAAB1F8403BCE7ACC59018C /* MethodCall.cpp */, + 8C1679586971637160054AD84FFF9389 /* MethodCall.h */, + CFEEC4B26238A97760C661FC6EBEEDE7 /* ModuleRegistry.cpp */, + 20F579A80884E8844CCC2526B455F17A /* ModuleRegistry.h */, + DF5DAB21386A74C921BAC62E663D7583 /* NativeModule.h */, + 90A795B88B61AAA21793461B45F9B037 /* NativeToJsBridge.cpp */, + CFBC2C9D2EE19A36E1AAE876E3BF5D26 /* NativeToJsBridge.h */, + E739090C6C03C989B43BF82B69633336 /* RAMBundleRegistry.cpp */, + 12287278B9CB792002A71AB641016514 /* RAMBundleRegistry.h */, + A711B6DDF5746588A5FFCD5E330DBF3D /* ReactMarker.cpp */, + 5C4DE2956E605D7F293176107A826EBA /* ReactMarker.h */, + C32367A944FF6A86BFA89489019B2D6B /* ReactNativeVersion.h */, + BC4E6281F75612E2835E8AAAFBCF5CEB /* RecoverableError.h */, + A01526E3DCC0E11B78DB0E7B3B6F7FB2 /* SharedProxyCxxModule.h */, + 533BF04B4077FA2D7C5F3204BADA4DAF /* SystraceSection.h */, + 71B21CD7D6EAC54B42A102151320A96C /* Pod */, + 0ABAE5E9F152B0A5E14A3544DEACD0E6 /* Support Files */, + ); + name = "React-cxxreact"; + path = "../../node_modules/react-native/ReactCommon/cxxreact"; + sourceTree = ""; + }; + 580748C24A4AD51F62DCE59388D39488 /* Transitioning */ = { + isa = PBXGroup; + children = ( + 7E6FC010879F7EE8CDCA75EFA68919D7 /* RCTConvert+REATransition.h */, + 5904BCC1697988B38283030C5C0C88DF /* RCTConvert+REATransition.m */, + AB0B72218F11A875FF74D719EE5216C6 /* REAAllTransitions.h */, + F16498BF973941A83EFADF8207428D45 /* REAAllTransitions.m */, + CA241484EAD056CDDD9937901FD9EFBA /* REATransition.h */, + D0ACA1571BAA3C0B215051D0BB3BC857 /* REATransition.m */, + 5E386DC9A27321FB9860CF02FA9F8D03 /* REATransitionAnimation.h */, + 32423B2579BF05539AC55667519D1939 /* REATransitionAnimation.m */, + 1D5E991FA1F0360C7AAA387F45E784D2 /* REATransitionManager.h */, + 08A0BFC7788EA8338F32393B48AEC433 /* REATransitionManager.m */, + F0A55BFC31DE0F8623420BCCFBAA7569 /* REATransitionValues.h */, + 225B31F9882865796B3764AE575F14B9 /* REATransitionValues.m */, + ); + name = Transitioning; + path = ios/Transitioning; + sourceTree = ""; + }; + 5815DF1EE4F4138F356D334F99315099 /* Support Files */ = { + isa = PBXGroup; + children = ( + 3F27913042F4D16F669BC9B55EF37EC3 /* react-native-cookies-dummy.m */, + 5F57E078B3F1604F757A25A55E445B3D /* react-native-cookies-prefix.pch */, + 3D6A39C11AB41732F04B5DCBC4C192D1 /* react-native-cookies.debug.xcconfig */, + 26808343AB28092E0DAB9877D31D6617 /* react-native-cookies.release.xcconfig */, ); name = "Support Files"; path = "../../../ios/Pods/Target Support Files/react-native-cookies"; sourceTree = ""; }; - 8D1EA7B3189F16041BBC9F2DFEFA1212 /* Pod */ = { + 58A0BF53D5CFE638DE2E520B1BCBAD33 /* RNDateTimePicker */ = { isa = PBXGroup; children = ( - 265E75E3AE4A43F75C357D411902647A /* React-jsinspector.podspec */, + 01BFEF506A51006C8E0ADF8BA799173D /* RNDateTimePicker.h */, + C9AEE440B62716E7DC763567258B5DB4 /* RNDateTimePicker.m */, + 5CAB83F1E564EEB611ED28B0CEAF30FE /* RNDateTimePickerManager.h */, + 0D5FFC28F633CA358E6A299EB5727859 /* RNDateTimePickerManager.m */, + 8B842BB44F8224928F375A7E2EB8FBE5 /* Pod */, + 0874FE68C60470262F19A57B0AC74BEB /* Support Files */, + ); + name = RNDateTimePicker; + path = "../../node_modules/@react-native-community/datetimepicker"; + sourceTree = ""; + }; + 58D6CD830BF4033E4AFF05CF0202F788 /* Pod */ = { + isa = PBXGroup; + children = ( + B7DDC6B95ED221B17E79CCE904953D67 /* UMBarCodeScannerInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 8DF857D5AB48A5A6439081BED89C1F45 /* VirtualText */ = { + 592FAACF379830F3D0E3FE3F478C6D10 /* Helpers */ = { isa = PBXGroup; children = ( - 9F4507DC98B551726ECCA52B6828D8CE /* RCTVirtualTextShadowView.h */, - 729325CDE10088C9A1033DA3862EF71A /* RCTVirtualTextViewManager.h */, + BD56632D10B1E370B66E12A3E178C53C /* BSG_RFC3339DateTool.h */, + C9825762599913C6EB8217C8F9C4D952 /* BSG_RFC3339DateTool.m */, + B41E122A072DAC1D36112A10BA073686 /* BSGAppHangDetector.h */, + 7D61EC35D28B4EF1C2E3F7DB04DB7EB7 /* BSGAppHangDetector.m */, + 7F9BD92B9BDF85B886D741E7E003973C /* BSGAppKit.h */, + E3BC7A6739A79A73F4091DEBB379CD0A /* BSGGlobals.h */, + D42007B4C16C152C107FFE5553789732 /* BSGGlobals.m */, + DA81A58DABB5895D1ECF1FDA42B13D66 /* BSGInternalErrorReporter.h */, + 023D1714BC6B2A0B494473E614844FA4 /* BSGInternalErrorReporter.m */, + AFFEB724A1817711BD36B10EF0CDD742 /* BSGJSONSerialization.h */, + DDB24E02EA6FB47F447446D284BE71FF /* BSGJSONSerialization.m */, + 5B707ED67B4BB2FCDC42FE3B71683C3D /* BSGSerialization.h */, + CA5710B5600A232F2F638BD59F307CCC /* BSGSerialization.m */, + 33E0D68A84FF625B142642B4F3D770BB /* BSGUIKit.h */, + D6FA4F6C91F2A4BED4534715D40E0D1F /* BugsnagCollections.h */, + ADC303935FF231B0CA9192400CD9661F /* BugsnagCollections.m */, + D03FB8816A2AB881FD70B5B6B25F9651 /* BugsnagKeys.h */, + 62915D9EE18CF11F2284CBAEA75CC96E /* BugsnagKeys.m */, + BFF9EC62AB53882036DC920F1DC18E0E /* BugsnagKVStore.c */, + E5D4170E4147969786CE3297B8D288DF /* BugsnagKVStore.h */, + F162080DEB1F229CAD72B7EF91B26785 /* BugsnagKVStoreObjC.h */, + B397F83E5364B2FB27FC44746EC7445B /* BugsnagKVStoreObjC.m */, + 12BC7C47A9E234FC866C54A93E6763D3 /* BugsnagLogger.h */, + 5824F8E1DF5A3B5BE9B2B0B16CF93383 /* BugsnagPlatformConditional.h */, + 557C06D43567F388267AB80BAAF2CCCA /* MRCCanary.m */, ); - name = VirtualText; - path = Libraries/Text/VirtualText; + name = Helpers; + path = Helpers; + sourceTree = ""; + }; + 5AF3EE885CBFFC9FBC554903D7A4C41C /* Support Files */ = { + isa = PBXGroup; + children = ( + C27817BEBD0764AAA5531522DE8E09A3 /* RNBootSplash-dummy.m */, + 36C8AD4B44F8CE0B2A2E431FE0F6C235 /* RNBootSplash-prefix.pch */, + 03E4DE6F65D0B3008B5D8D3E4A27F8A2 /* RNBootSplash.debug.xcconfig */, + 1BD2D2A94E724B03DE3F8DF09C6C406D /* RNBootSplash.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNBootSplash"; + sourceTree = ""; + }; + 5B2BE19CC4C4E3840DD03936DFB689E9 /* Support Files */ = { + isa = PBXGroup; + children = ( + EBFF5BC3C4AEDDCB346F620E28EF4774 /* RCTRequired.debug.xcconfig */, + C81BC27172EA0CE5C80194C0D70A45D3 /* RCTRequired.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/RCTRequired"; + sourceTree = ""; + }; + 5B611A6E0141478AD75DC5BE14FDE545 /* Support Files */ = { + isa = PBXGroup; + children = ( + 9D49C2015EC82F52D2FDB558E03A1801 /* UMTaskManagerInterface.debug.xcconfig */, + 911B3EC5FE59FFBB5939024ADE0D328B /* UMTaskManagerInterface.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; + sourceTree = ""; + }; + 5BABAA3A876E374DB80E5EE341FF8328 /* CoreModulesHeaders */ = { + isa = PBXGroup; + children = ( + AD0D3A362D811F5EAEB5C140E2BDCCEF /* CoreModulesPlugins.h */, + 5AE726FBD7EA3190FFA99F5A8DF3F737 /* RCTAccessibilityManager.h */, + BB43EAEC8B9375884DB2ADF6A88233BE /* RCTActionSheetManager.h */, + ED66E2553655F4848CEB00B46D764060 /* RCTAlertController.h */, + DFCBE7E816E8C610AEBD170C5BEB2938 /* RCTAlertManager.h */, + 7A608E0C3CA94318016EB7D1EC63456F /* RCTAppearance.h */, + 314D6A4AC5227189966DFE96E9021D45 /* RCTAppState.h */, + 8D994088F51E423A98794D609E35CAF6 /* RCTAsyncLocalStorage.h */, + 2361CE3F774C1F8B37B55A13CBBD1863 /* RCTClipboard.h */, + 2A201E321369369E539FE39ED859515D /* RCTDeviceInfo.h */, + 9730C5179AB23C55654E2F7644F4C25F /* RCTDevLoadingView.h */, + 90825145145C82A8F4E45D55BA6ED37E /* RCTDevMenu.h */, + 3653433E05093D7DD292F6CF1840A064 /* RCTDevSettings.h */, + 934CDE0CBDE9A0282A8DEC058F6C14E1 /* RCTDevSplitBundleLoader.h */, + 50CC8B1CF4B75396D57F35580E672455 /* RCTEventDispatcher.h */, + EE0C19A707DD76A72F53CE519B41D6C0 /* RCTExceptionsManager.h */, + 597A1AF2A1F2D22B468797A24BCF763B /* RCTFPSGraph.h */, + 0EC88FAC2B7478A7FC834D49B9513A81 /* RCTI18nManager.h */, + 2C4686785AFDD41B0581622BD388B30E /* RCTKeyboardObserver.h */, + A8C11BD5F904EC7DB1CB1B99D289E15A /* RCTLogBox.h */, + 41301A2B164A2E2586DB33EB7EA7DFC7 /* RCTLogBoxView.h */, + BA82B896587B196F261A9B1D9428EEB3 /* RCTPlatform.h */, + 29C3FBC8358D2B9354ADE309861B9CDE /* RCTRedBox.h */, + D84AD1D3232B0FAF8CBACB1950484819 /* RCTSourceCode.h */, + 7D85B1D5F8F87719F04404EECA61FC8B /* RCTStatusBarManager.h */, + E854F6CC4EF3F49C1842C5F714E0A458 /* RCTTiming.h */, + 70867544D01800EA6114ADA436856864 /* RCTWebSocketExecutor.h */, + 479E5A6756BD9FAFAF7BDE8B58EA1D30 /* RCTWebSocketModule.h */, + ); + name = CoreModulesHeaders; + sourceTree = ""; + }; + 5BB55349F94B480F64D0D497441B51A5 /* EXHaptics */ = { + isa = PBXGroup; + children = ( + 5D74EF68D1949BD56732B7EAB1BFCE79 /* EXHapticsModule.h */, + 68166958B14ADCB402252DD19DBCF907 /* EXHapticsModule.m */, + 8752AE4BE961C8B8A3881C16D383B796 /* Pod */, + BFE7B99AFC0F2FC332FF51BB451AB5F6 /* Support Files */, + ); + name = EXHaptics; + path = "../../node_modules/expo-haptics/ios"; + sourceTree = ""; + }; + 5BDB10A43998C1AAB312B64D6D1F2091 /* CxxUtils */ = { + isa = PBXGroup; + children = ( + 9B49A76A77062C6D3136B4DCCE6D2A60 /* RCTFollyConvert.h */, + BE6BA2C9AB3AF5A8930FB3A8745D4505 /* RCTFollyConvert.mm */, + ); + name = CxxUtils; + path = React/CxxUtils; + sourceTree = ""; + }; + 5BE88C47F5FE6B199AAE81DE4BE4EEF0 /* RCTVibrationHeaders */ = { + isa = PBXGroup; + children = ( + AE60EBEF10EB410D6454E9435714035A /* RCTVibration.h */, + B2B0C2B2DA9D3780174162903F4E336E /* RCTVibrationPlugins.h */, + ); + name = RCTVibrationHeaders; + sourceTree = ""; + }; + 5CA4B72893C3AC4BE6781F0CEB5FFC5F /* TextInput */ = { + isa = PBXGroup; + children = ( + 009BC89DA592B58B06F9C36A0827E973 /* RCTBackedTextInputDelegateAdapter.m */, + 6909DC17B79287F476ED5275B90B517D /* RCTBaseTextInputShadowView.m */, + 9950AA3B543B1E92A2B0EE75F9A5621F /* RCTBaseTextInputView.m */, + 8F5705395441466192BD91D1B715A784 /* RCTBaseTextInputViewManager.m */, + 9B45635ECCFEB9E3F7E1FB505F12D162 /* RCTInputAccessoryShadowView.m */, + AF1052A3AA28D97DA92D09B41486C8AE /* RCTInputAccessoryView.m */, + D138E7168D289E33D969E784634487E8 /* RCTInputAccessoryViewContent.m */, + 92DC2AC6A377D3C7250197995BC60280 /* RCTInputAccessoryViewManager.m */, + 773F67187D644D69CDBF5E12F7BABA77 /* RCTTextSelection.m */, + 717812801402C3A654DB9201AF7EF793 /* Multiline */, + 6E299EEA2EE5BFD46A7DFBF967F08984 /* Singleline */, + ); + name = TextInput; + path = TextInput; + sourceTree = ""; + }; + 5D2D5CA4A6F95D76729EA7568BB10504 /* Support Files */ = { + isa = PBXGroup; + children = ( + 957BDDA4643CD66E7752B7C7F1E09ECC /* react-native-jitsi-meet-dummy.m */, + 6A11237B02A98AEAEEF0BAEC3866800C /* react-native-jitsi-meet-prefix.pch */, + 534DB8EDC3186CDE3523F27EA5582D99 /* react-native-jitsi-meet.debug.xcconfig */, + 5717BE80A558DC52BD945542F682495A /* react-native-jitsi-meet.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-jitsi-meet"; + sourceTree = ""; + }; + 5D3EFC620D95BE6B9AC68EF209E77490 /* EXSessionTasks */ = { + isa = PBXGroup; + children = ( + 15F390A298B8A009BF341A8EED660992 /* EXResumablesManager.h */, + 23EEA2A9DD8C96756CD217E2C8C65B28 /* EXResumablesManager.m */, + 61FFC7CC0B3B4AA85642907AD9B5C5CB /* EXSessionDownloadTaskDelegate.h */, + DAD7E54D8867A225CF32D8C459853200 /* EXSessionDownloadTaskDelegate.m */, + 7267D00F1FD7F2751F6F318FB868C7EA /* EXSessionResumableDownloadTaskDelegate.h */, + 413F677E17E91D83904D400E7DF52DBA /* EXSessionResumableDownloadTaskDelegate.m */, + 09C6346F854CFF3D0E2B723676D88233 /* EXSessionTaskDelegate.h */, + CC024E46040AD05842D1554339DB9DFF /* EXSessionTaskDelegate.m */, + 398D18514E2FEAC75960BF69A0DCC236 /* EXSessionTaskDispatcher.h */, + 7B6DD548394A644C697223589C5139FB /* EXSessionTaskDispatcher.m */, + 81EB88AF33AF8FCFE87CD8EACA206B4F /* EXSessionUploadTaskDelegate.h */, + A8D091FBDDF484E5548B37CF0E4988D8 /* EXSessionUploadTaskDelegate.m */, + ); + name = EXSessionTasks; + path = EXFileSystem/EXSessionTasks; + sourceTree = ""; + }; + 5D6FD0E97DAF411CF365958D4C4A2A43 /* Client */ = { + isa = PBXGroup; + children = ( + D30DBF5B6FCBC3771FC82D8F61B0DDE1 /* BugsnagClient.m */, + 5AD22713EE6E7C846525A656A9999E89 /* BugsnagClient+Private.h */, + ); + name = Client; + path = Client; + sourceTree = ""; + }; + 5FAC4FD6164B0174BB389F1F0AA6DD0D /* Pod */ = { + isa = PBXGroup; + children = ( + 01B28A0C19F8AC0830294597DD03433F /* EXWebBrowser.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 5FEAEB799AFFB038C3392FC4909A3995 /* Pod */ = { + isa = PBXGroup; + children = ( + 2A7B58051260494638C90C0308908B0B /* FBReactNativeSpec.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 609D88F4210B15C54BF80F69AA48082C /* libevent */ = { + isa = PBXGroup; + children = ( + 5EF8A94048C6DB061F18D39393DD8E0C /* buffer.c */, + 457BF153D04F4820C937FA37AFCD368D /* bufferevent.c */, + 6A1E9C1B0EFF5B1C55F68933D06863DE /* bufferevent-internal.h */, + 31BE77BA970F0F9CE3CADED50681A14F /* bufferevent_filter.c */, + 5E28E5E5D8F3D49FB0BC9C998D181E05 /* bufferevent_pair.c */, + 39305B4A5D50A8905FE3337AF9BCC606 /* bufferevent_ratelim.c */, + 92CF4CA7AA549F6D173DB1F3510DAF47 /* bufferevent_sock.c */, + 3307140B2150CE64DA8836A94A018B22 /* changelist-internal.h */, + 30D81A3D660D3599BC10A49C1F29EEE0 /* defer-internal.h */, + 3DFA608104A26481888AF421986C11E4 /* epolltable-internal.h */, + D567A3C8BCF2DBFD5392F80573BD4FB4 /* evbuffer-internal.h */, + 77E27FA756A6B7F123B5FD0442782FD4 /* evconfig-private.h */, + C8F7A0909CE76DB246CB41A3FF611281 /* evdns.c */, + F5F787DF75B9E09594E5251817DDFB91 /* evdns.h */, + 598202B7E8219B4266CB62E0A114604D /* event.c */, + 677A0291688B635D3F8CBAEE82288760 /* event.h */, + 85679925C7418CFBC8047231557F405D /* event-internal.h */, + E551AF1B96A249735565C79072A99930 /* event_tagging.c */, + 64FDB424456A4DD24183CF1B2202D02E /* evhttp.h */, + 53E6098912BE03536ECD4B1FE675B237 /* evmap.c */, + CF0C1E54F3BF3139BD54F1B42B3175A4 /* evmap-internal.h */, + A6665D8FC0F6D068B435FA4B02F47F71 /* evrpc.c */, + 72F272903FFBC94B4E4612A594A555FF /* evrpc.h */, + 6E32947F097148F59B3F1E82CA8CFAF1 /* evrpc-internal.h */, + F068A4842CE3553A27782E11612DDC0C /* evsignal-internal.h */, + 58273B190325B547D525894CCAF07636 /* evthread.c */, + F3B55915438E2A778BBDC814F29F37B8 /* evthread-internal.h */, + F6AB4587E201E4C23AB7619E10ED0427 /* evutil.c */, + 7194150125DD93BA2E704772FCAE9146 /* evutil.h */, + 0D9C23B493FEC20AFFD1BE25C3AE1594 /* evutil_rand.c */, + 8069BAC4F69AE5E45CBB8F33CB396B67 /* evutil_time.c */, + 453EE913EAEECD3E8429629404148DE5 /* ht-internal.h */, + A16956E0F13387473A1FADDE58ECD237 /* http.c */, + 964ED3AFCF1FA95EB0D582FF7DD71626 /* http-internal.h */, + 095F9DC78A02A5B297431EB32A49075F /* iocp-internal.h */, + 72835F36D45E0327A28A757A7B2340F9 /* ipv6-internal.h */, + 19D8F967D64197E724B3530AC7D14799 /* kqueue.c */, + 4F27E3FDA8B6F4EE4FE0EA2B5D213B03 /* kqueue-internal.h */, + 6AFD3DAEA617156BF2B54EC866156EA4 /* listener.c */, + 73A59776370089BF47A36F0979BECF4A /* log.c */, + C4D0A9D298494CD59E36A2F6D0BA0F3A /* log-internal.h */, + 0A87D13283D45B725FCA1772F8ACC6C5 /* minheap-internal.h */, + 62241FF2F74F1894A38653432A83E2DB /* mm-internal.h */, + 7B4FCBFF3CE54A00C2F44A31FB4C5FA7 /* poll.c */, + 3FC593F0F6C973BD78BDD755CB42A289 /* ratelim-internal.h */, + E7D0233C155796C1E13046A0A2621FFB /* select.c */, + 19778043EF9C8D5381A4CDCD7EABD478 /* signal.c */, + 6E06CF35D5BF7A55466AB24B113BEC05 /* strlcpy.c */, + 666D07CFFA0543E74260EBDA643C53E5 /* strlcpy-internal.h */, + C9DF09F69040AFECB8B414130D0B901C /* time-internal.h */, + EF9EDC6CDBDDC9EA7F72BB6CE3AF8C23 /* util-internal.h */, + B171E99FAD968B67BB3F30E399327AEF /* Support Files */, + ); + name = libevent; + path = libevent; + sourceTree = ""; + }; + 60A569A3267557CAD6D1AACC49427736 /* Pod */ = { + isa = PBXGroup; + children = ( + 7C73775E47D4CF9B92EF7CCBDA2F0B96 /* LICENSE */, + A3040695AF0032C688FAA0D4587AAB2E /* react-native-mmkv-storage.podspec */, + 1D211DAD656DEB2E2B152DF669D8F780 /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + 60C1BED468D2F0A107DD88511A88F613 /* Pod */ = { + isa = PBXGroup; + children = ( + 4FCCB673DB96C95279676B3DDB6E0FCE /* LICENCE */, + 4BD5536E707ABA8BD79BBE4E822C7694 /* react-native-cameraroll.podspec */, + E7ADF92BC8D60C28A629D61B66BEC765 /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + 6188F243DDEBAF750199A0437E405B5D /* EXAppleAuthentication */ = { + isa = PBXGroup; + children = ( + C8A62565FF0C008C8CCCA2F926455E43 /* EXAppleAuthentication.h */, + B952CB53081748F46C04F821010B3D86 /* EXAppleAuthentication.m */, + C63764A8CAAA45692EA96FB71D6BA9E0 /* EXAppleAuthenticationButton.h */, + 6B462E204A57616C620FCD610EFD07A8 /* EXAppleAuthenticationButton.m */, + E690CF7FDCEF70E0454A91E9EB1E11EA /* EXAppleAuthenticationButtonViewManagers.m */, + 7EF6B9A47FFA6087F2E4D57B895577D6 /* EXAppleAuthenticationMappings.h */, + 12765E6C0FE3B8B56C136DB523CAC8DA /* EXAppleAuthenticationMappings.m */, + C590CA6D07CAF60A863741EFE53EDA7A /* EXAppleAuthenticationRequest.h */, + 8448FB44BB6062AC013CFCC3DDC33FDD /* EXAppleAuthenticationRequest.m */, + B4725EF2517297DCB97F2B6A02170E04 /* Pod */, + 103CC2A89D0EE2F2E5F23C4F506954E2 /* Support Files */, + ); + name = EXAppleAuthentication; + path = "../../node_modules/expo-apple-authentication/ios"; + sourceTree = ""; + }; + 61C26AC849C5315C52B01F3F22F0EB52 /* Pod */ = { + isa = PBXGroup; + children = ( + 75AFC01FBF230F63FACF16D65C354CDF /* React.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 61DB4E0ECF82517EC3C0C5DE7CD543E0 /* Support Files */ = { + isa = PBXGroup; + children = ( + 93D2A241AFA45A6CEEA2FA5F519FF56E /* libwebp-dummy.m */, + 41E391FB458EE549981AC519F05E9422 /* libwebp-prefix.pch */, + E9521D4F883C544DE47CDF5C2FDF5C87 /* libwebp.debug.xcconfig */, + B180A30621C18D083C4C04ABBBD78726 /* libwebp.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/libwebp"; + sourceTree = ""; + }; + 6222957EB3ADCA91D72DBFA80FDDCD9F /* chrome */ = { + isa = PBXGroup; + children = ( + C1D2B47E1C5431346888E77888673620 /* AutoAttachUtils.cpp */, + DA6569714811CB81F5058D796EF7AD4A /* AutoAttachUtils.h */, + EE211749CD18ADB36400BEAD047FD706 /* Connection.cpp */, + E3B827B8FE180C2C5A5139B362493C4C /* Connection.h */, + 6AFEA695161609385AB7DFD9B211A61C /* ConnectionDemux.cpp */, + 0CCA0D29921C0C30861DFC9EA324B1CC /* ConnectionDemux.h */, + 77EB9E7906E4AF58634F7804B1AC54B1 /* MessageConverters.cpp */, + F5851EAB8954DE15BC38C794A0139EA3 /* MessageConverters.h */, + F71DB06084160D809A34D0F0449453D5 /* MessageInterfaces.h */, + FBD63547CE6A0E4EBC76D27EBE26B64E /* MessageTypes.cpp */, + A2E6B5FB00130B2A74065468823F5126 /* MessageTypes.h */, + B5DC539B8635A83E5170C5A413DDBF15 /* MessageTypesInlines.h */, + F83A4C8812F4CB19573C1DD3BB28018E /* Registration.cpp */, + 3F3BD9FE0ECD5B49CEFE657B3B74DA51 /* Registration.h */, + 0C64E5996EF4943B03113E475C59389D /* RemoteObjectsTable.cpp */, + 72631910F86F3EE0DD864035E0C8BB24 /* RemoteObjectsTable.h */, + ); + name = chrome; + path = chrome; + sourceTree = ""; + }; + 6250D92290A9FAFD0257B5CC6B025E7D /* Pod */ = { + isa = PBXGroup; + children = ( + 2082D8C40A78A5CF90F5A370481D0F45 /* LICENSE */, + 00EF156A62AF441B7E35EDFB2B6078B5 /* README.md */, + 24D624636378CD4F756251BDFF96F26D /* RNScreens.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 62E11969CA01B53F6A8F692FF47DD689 /* Support Files */ = { + isa = PBXGroup; + children = ( + 1EC02292322F492419329A9C87450E9F /* GoogleDataTransport-dummy.m */, + 3CB957F7D5240280A57EEDFC6B03ADDF /* GoogleDataTransport.debug.xcconfig */, + 03376185B2F0AEF87CE3705E3A6407C2 /* GoogleDataTransport.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/GoogleDataTransport"; + sourceTree = ""; + }; + 65656180EE78A49100F9F87B921283FA /* Support Files */ = { + isa = PBXGroup; + children = ( + FD122D95D3FA4E6535A1CA894145D057 /* RNFBApp-dummy.m */, + 6B596B6A233AC2997CB28970BFAAB97C /* RNFBApp-prefix.pch */, + 45DF22CFEC6C88AEF4D15C665F595E8A /* RNFBApp.debug.xcconfig */, + FECF06704C4BCA91C6A43790DEB6D35C /* RNFBApp.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNFBApp"; + sourceTree = ""; + }; + 65C804B3D3E763DD20ED81980F817FB1 /* ScrollView */ = { + isa = PBXGroup; + children = ( + F68BA11CC0C275B67DC8ECAFC32E5A60 /* RCTScrollableProtocol.h */, + B8596D6EBD7AD819A94AE4D14F360601 /* RCTScrollContentShadowView.h */, + 81A05C8E8890D8184D5C24DB13E3B2D9 /* RCTScrollContentShadowView.m */, + 1758A6F4E7F4EDB8C7347927B69C4110 /* RCTScrollContentView.h */, + 6F662D0D4F3FA959BF89BA93821F6FAB /* RCTScrollContentView.m */, + 9C470A77658DF10376C0D0C59415D547 /* RCTScrollContentViewManager.h */, + DB991B88FA1191D58DA60D46AA320720 /* RCTScrollContentViewManager.m */, + 91C32104C640587A2B646FD89013D4BF /* RCTScrollEvent.h */, + 3D8210E7D61088E626BC33C0AFF31B23 /* RCTScrollEvent.m */, + 838D1BC1B1D71324DA582F1D93B77A63 /* RCTScrollView.h */, + 329287767C04EA1A5446C112A2C80F58 /* RCTScrollView.m */, + EE70FC63C3A4A9EC29E4C29EEEF55D45 /* RCTScrollViewManager.h */, + 85DF6CE874D2DF49B49C7EEA5F4E7BD7 /* RCTScrollViewManager.m */, + ); + name = ScrollView; + path = ScrollView; + sourceTree = ""; + }; + 662EB4D1C14F8AA2C5837B9A29621ED1 /* ReactCommon */ = { + isa = PBXGroup; + children = ( + A154FC57002D4A7C3A176A9677A855C0 /* LongLivedObject.cpp */, + FB13979D42C83C133B136F38E22E8680 /* LongLivedObject.h */, + 2F879142E2EE93DE74FB3050AB0E2791 /* TurboCxxModule.cpp */, + E84CBA71F965032851FABF0DCEB5989E /* TurboCxxModule.h */, + 6AE76AE1AFE4CFEA4DBE648484A0B5B0 /* TurboModule.cpp */, + FAC851118E62DB911AC0EB77960EE97A /* TurboModule.h */, + A0F186D93E942FD055EA978A99397B35 /* TurboModuleBinding.cpp */, + 470178089A8B574E25BA6E16B07CA254 /* TurboModuleBinding.h */, + 5E6C0041DF66013D73FBEED12E372544 /* TurboModulePerfLogger.cpp */, + 95996D377A3676FC12259D965827644A /* TurboModulePerfLogger.h */, + 58185E3C2604FA10E23E4B814C6AA23A /* TurboModuleUtils.cpp */, + ACA61489DCBF21D8BF85939ECCD147C3 /* TurboModuleUtils.h */, + ); + name = ReactCommon; + path = react/nativemodule/core/ReactCommon; + sourceTree = ""; + }; + 665EF1CC568095EF79E87D15FAA1106F /* React-perflogger */ = { + isa = PBXGroup; + children = ( + DCE53D3A2A477839449B9C6C35566704 /* BridgeNativeModulePerfLogger.cpp */, + 32CA7828799A6E45E4AA667862A300B4 /* BridgeNativeModulePerfLogger.h */, + 4D7771767C0A64A4CFEC135F4E46E7A1 /* NativeModulePerfLogger.h */, + F01DECD75D599D9E0F21175BA00634B7 /* Pod */, + 682F4457778748FE0956118F9A950718 /* Support Files */, + ); + name = "React-perflogger"; + path = "../../node_modules/react-native/ReactCommon/reactperflogger"; + sourceTree = ""; + }; + 6665EACE47279D3879B88B303EA8C471 /* Support Files */ = { + isa = PBXGroup; + children = ( + E3D5FF0ED8DC8C460ACAF715A3DACD19 /* DoubleConversion-dummy.m */, + 94B9103E88D643C46E50A2568D73798F /* DoubleConversion-prefix.pch */, + 88397D67F1AC5325B9C5CDF7112BF6CF /* DoubleConversion.debug.xcconfig */, + BE506F4325CA171F9BC83739E72F4075 /* DoubleConversion.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/DoubleConversion"; + sourceTree = ""; + }; + 667D684D412E4C6045F8D4DF9927300F /* FKPortForwarding */ = { + isa = PBXGroup; + children = ( + 8352C4658640E252FE8BB25FCEDF2A0A /* FKPortForwardingCommon.h */, + 76F1A8FD599DF8E618FA93B58360A75C /* FKPortForwardingServer.h */, + E5DBA3610AA54AC09C951A55CEA789D4 /* FKPortForwardingServer.m */, + ); + name = FKPortForwarding; + sourceTree = ""; + }; + 6682A2D72E17E81E441765B56C5AD7BF /* Reachability */ = { + isa = PBXGroup; + children = ( + D6E2DBCF4B67D998B4EB021A9E07EAC8 /* GULReachabilityChecker.h */, + 2B718F26729C506A76A2B66E211E6927 /* GULReachabilityChecker.m */, + E531E7D2B3ED3E5A8881EEFD0CC0A77B /* GULReachabilityChecker+Internal.h */, + 071524D959DA1A66674ED6538F569B20 /* GULReachabilityMessageCode.h */, + ); + name = Reachability; + sourceTree = ""; + }; + 66B22295C3DA10581CB53EA09351F463 /* RNFBCrashlytics */ = { + isa = PBXGroup; + children = ( + D004E755154C0609093CBA5A993FFB05 /* RNFBCrashlyticsInitProvider.h */, + 7EF1B4B664E008E8F33B1CBE45A07A6F /* RNFBCrashlyticsInitProvider.m */, + B7882807A6DD96AEF4AE5270F95E61EE /* RNFBCrashlyticsModule.h */, + AD664037CDFA6CCEDAAA356ABF4A0B56 /* RNFBCrashlyticsModule.m */, + FC9BAE212206265AB6B079A6022BADA8 /* Pod */, + 2162A14A4DD7552B05675CC2711CB9E2 /* Support Files */, + ); + name = RNFBCrashlytics; + path = "../../node_modules/@react-native-firebase/crashlytics"; + sourceTree = ""; + }; + 672AF95080F815C951BE7C1CD6E27BE8 /* jsi */ = { + isa = PBXGroup; + children = ( + 124EB0925EE1CAB42EC4BBD5C77ED793 /* decorator.h */, + 19C40F199DC8A09E224DB48995827F5E /* instrumentation.h */, + D3CA87F3981BA1FAD1B5A90A2FB91D9D /* jsi.cpp */, + C9BE03A9ED4C0B01D14B481322AEEF98 /* jsi.h */, + 32C94E4DC8CC970EE989EA673AF074B6 /* jsi-inl.h */, + 8571823AA5D946194320312B28D9AEEF /* JSIDynamic.cpp */, + 83F0718D4AC46929A67616693A2E5E6A /* JSIDynamic.h */, + 8C1132CCBD5C35499E22128E3F54A07B /* jsilib.h */, + D5AB44E082B868273CCA855943AA3210 /* jsilib-posix.cpp */, + 3F5483E0672F46DDF80A6F09BA5152C4 /* jsilib-windows.cpp */, + 89A476ACB3FE57D02EC16766114B7E08 /* threadsafe.h */, + ); + name = jsi; + path = jsi; + sourceTree = ""; + }; + 67B7CC128AF431AA09BD756EAABC5DC6 /* FlipperKitLayoutPlugin */ = { + isa = PBXGroup; + children = ( + 302B252F9DADA18163B5E886774704D3 /* FlipperKitLayoutPlugin.h */, + F3DD32D017B1DA9E161BB9E0F4188B94 /* FlipperKitLayoutPlugin.mm */, + 944C0D1EFE3AB1A70D936F9AB2715AC3 /* SKApplicationDescriptor.h */, + 3751C8EE9A818AABDBD2B0660FC9FF6E /* SKApplicationDescriptor.m */, + 937111731B8DBCD33C8B4E822A0195D2 /* SKButtonDescriptor.h */, + 39AE4BCE95194D82309404D0B73449CD /* SKButtonDescriptor.mm */, + 7A2EDFBE8E6EBC1A2691133E5F859A12 /* SKDescriptorMapper.h */, + CABA488DABFBFA90F5E1369C3D813996 /* SKDescriptorMapper.mm */, + 83015F74B9F4F8612DBA0CD2A7132244 /* SKHiddenWindow.h */, + 8910ED61EA488A224272FCA22AD8C114 /* SKHiddenWindow.m */, + FF6FDC0558CA5B4149283A7623418B24 /* SKInvalidation.h */, + C2661B362B6625627DF372579E7AEF04 /* SKInvalidation.m */, + A2F0117A83EC190EDCF3EEEA2CB09250 /* SKNamed.h */, + 2C27E6A4B9DEE937229E32BDF9455656 /* SKNamed.mm */, + FB1CD31848D10613306C97D58F26A6AC /* SKNodeDescriptor.h */, + AE8CA691F749AEA3C9AE791BCF1E2D3B /* SKNodeDescriptor.mm */, + 40D77212AD7D72BB9EB317A8F71F76AC /* SKObject.h */, + D5931E02E7529784C22BB8BEB80A6E2D /* SKObject.mm */, + DD94706F88D0811C813652FD44EAA9F1 /* SKObjectHash.h */, + C231A474BA8817ABE62D624B50C23C9E /* SKScrollViewDescriptor.h */, + 86D3CC47B0C340A700E877DEF908FAA8 /* SKScrollViewDescriptor.m */, + 31C5EC4D0F956F3425D9D0AA293684FB /* SKSearchResultNode.h */, + CF052B7BAEBD12FB552E6AAA12CE3E99 /* SKSearchResultNode.m */, + 7581311455DB6CDA5EE85DCA93A6D7AC /* SKSwizzle.h */, + 62A93AAB3B73950E2B5F76E03DE1FD0F /* SKSwizzle.mm */, + A2C445EAF42760A0FA5EB239EA31565B /* SKTapListener.h */, + 343F5A180BBCD24462D71E00FBD98C87 /* SKTapListenerImpl.h */, + D19A4CA590DD20503C9910C053E7E6EC /* SKTapListenerImpl.m */, + 9A8C62FBCBEE317E39083D803E58E73E /* SKTouch.h */, + D900E79A9D933E573EB8C221244030C1 /* SKTouch.m */, + 754E234EEBF74BEB989FA3F5F1BC97FF /* SKViewControllerDescriptor.h */, + 9FC7A652DA51D9F0183EA2D12E37F94B /* SKViewControllerDescriptor.m */, + FBEBC8AE4B5592403820E4F187C46A48 /* SKViewDescriptor.h */, + C58BA3EBB523D3E170AA5B68803E20C3 /* SKViewDescriptor.mm */, + EAD20D2095CADB729BA7A29DFD8EFFDF /* SKYogaKitHelper.h */, + 25A3922725F2DB608224CDDA8A856D1A /* UICollectionView+SKInvalidation.h */, + 9A04AB43580B7A96DD95CED1945FA3D0 /* UICollectionView+SKInvalidation.mm */, + 41718BA175DA03A8FF8BD8BC05A1E6E8 /* UIColor+SKSonarValueCoder.h */, + 112FB65056DB5FBF8B435ACD05AF3E49 /* UIColor+SKSonarValueCoder.mm */, + 5617A0417C21E344068EC440BE7AE2FA /* UIView+SKInvalidation.h */, + 7656B7BFE45650CC91E9A7D6BC46B62C /* UIView+SKInvalidation.mm */, + ); + name = FlipperKitLayoutPlugin; + sourceTree = ""; + }; + 67BC0A4C87FEC2C6F4858B1AD83570AE /* Pod */ = { + isa = PBXGroup; + children = ( + 46B626453142EFDFCD5CFFCB077A10B4 /* React-RCTVibration.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 682F4457778748FE0956118F9A950718 /* Support Files */ = { + isa = PBXGroup; + children = ( + 776B3012326972E4E0C073ECF6219795 /* React-perflogger-dummy.m */, + 524B0CB6BB24B62F20F2D2771E91A839 /* React-perflogger-prefix.pch */, + 537D942E7F8CDD34D9798800DFD7B3E1 /* React-perflogger.debug.xcconfig */, + 3B44AFCCB749BD05EB75EF3F8E1DE2E5 /* React-perflogger.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-perflogger"; + sourceTree = ""; + }; + 68402E3A17BC67549AEFCE91A61BF371 /* Support Files */ = { + isa = PBXGroup; + children = ( + 8B5EA7310EF8CC88530EBDC323C4F645 /* RNScreens-dummy.m */, + BACA1141597E10199EE9225185C0479F /* RNScreens-prefix.pch */, + A87434E572253A7172B76006412A08CB /* RNScreens.debug.xcconfig */, + 2F91A48D4257E40AAA818AB8B7100A38 /* RNScreens.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNScreens"; + sourceTree = ""; + }; + 69D3D961AC07C97B931878E118178A61 /* Support Files */ = { + isa = PBXGroup; + children = ( + 9F857244E538483C660C5D21E4A4E1C4 /* UMSensorsInterface.debug.xcconfig */, + 25D1F282AA2642EE4323F894908D4CC4 /* UMSensorsInterface.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; + sourceTree = ""; + }; + 6A84CB4A517EAA5C9254E881F3AC576C /* Network */ = { + isa = PBXGroup; + children = ( + 3AC7AC6810C2996CF21B58F57C3F54A4 /* GULMutableDictionary.h */, + 1B66C0BC893BAE6AF6FA76CBE2469AA8 /* GULMutableDictionary.m */, + 85BCB73B53578F6422484F9D3075B556 /* GULNetwork.h */, + 28862980D7EC5653DE2716BB9B13C94C /* GULNetwork.m */, + 5E3947DC22A5110AC3C2BEA168E2B5E5 /* GULNetworkConstants.h */, + 920923E2DB170384DABDA9E8EC651393 /* GULNetworkConstants.m */, + E5FBFF562348BFED4DA0A752A2AEC5F5 /* GULNetworkLoggerProtocol.h */, + 765C7F6D692CD6A890EC5C076DD04165 /* GULNetworkMessageCode.h */, + 7B2914B9B967D4181977345B5C172F7D /* GULNetworkURLSession.h */, + 6E981642F410BB1CAC1402953B1C9C35 /* GULNetworkURLSession.m */, + ); + name = Network; + sourceTree = ""; + }; + 6ABD67D964FDB8D39BBD2A098FE3D095 /* Pod */ = { + isa = PBXGroup; + children = ( + E8BF05003B6E1A74DEB132D265F033A8 /* BugsnagReactNative.podspec */, + 1ECB98E494D26D3CE6B88FA3164715A5 /* LICENSE.txt */, + 14F6318BFB1F3F710D6A8DB51F413F84 /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + 6B8177413FE23A44A20772483FB6A2DB /* Breadcrumbs */ = { + isa = PBXGroup; + children = ( + CCB97095D881D3E0D5625AFC68D06EA2 /* BSGNotificationBreadcrumbs.h */, + EB917A79529EC54B6B6890E1CC8DAB5D /* BSGNotificationBreadcrumbs.m */, + F759368598F3CB12858EFD5919BB5FB1 /* BugsnagBreadcrumbs.h */, + C60F0BD5F22F65B8ECCCB31C20A6C5E1 /* BugsnagBreadcrumbs.m */, + ); + name = Breadcrumbs; + path = Breadcrumbs; + sourceTree = ""; + }; + 6D630155EE7B8185E2F2398D2112A3A1 /* Support Files */ = { + isa = PBXGroup; + children = ( + 1E8378298D5B969F8DE52819062D87F2 /* EXWebBrowser-dummy.m */, + D3CB59A60FE13ECB21FE7841B42C6FF9 /* EXWebBrowser-prefix.pch */, + 33AC82FB3AC41D5507F9362E56EF96D8 /* EXWebBrowser.debug.xcconfig */, + 56C209F75E540ED4D8203CDE11F2E1B8 /* EXWebBrowser.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; + sourceTree = ""; + }; + 6E030B897EB9A69E0A685B3A7DE38DAD /* Support Files */ = { + isa = PBXGroup; + children = ( + 0ED04B806B0C2054B1FD194C3753377E /* React-RCTLinking-dummy.m */, + 31FD48A1A79697ADAB2C8ACE3EF44707 /* React-RCTLinking-prefix.pch */, + B3D315E54667C3E03E9D6864813B0E38 /* React-RCTLinking.debug.xcconfig */, + 9E2713CA157638DEAFAC794B8097287C /* React-RCTLinking.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTLinking"; + sourceTree = ""; + }; + 6E299EEA2EE5BFD46A7DFBF967F08984 /* Singleline */ = { + isa = PBXGroup; + children = ( + 4C4E63781EB5282F7FBEC911DEA07DD1 /* RCTSinglelineTextInputView.m */, + B79E44E27992535930335B6EE61DC447 /* RCTSinglelineTextInputViewManager.m */, + 107BF0D79A81DCBF9F2C7251D501A63A /* RCTUITextField.m */, + ); + name = Singleline; + path = Singleline; + sourceTree = ""; + }; + 6E327E9A663C056D21BD068F8AAB5979 /* Recording */ = { + isa = PBXGroup; + children = ( + A9341F7BF84C0221A1AD1B597F136AD2 /* BSG_Jailbreak.h */, + 432D193BB206D15FA4F612B0D3090FBC /* BSG_KSCrash.h */, + 92043D3966AF5FC9C59E6083D1D92325 /* BSG_KSCrash.m */, + D928F49253BF59C0396D955092552CE1 /* BSG_KSCrashAdvanced.h */, + 971CD715DCCACC85D5AB2AD820C9B7A7 /* BSG_KSCrashC.c */, + EEEF5FAAE4B42250CBF1B3FF63D486E3 /* BSG_KSCrashC.h */, + 98F664E7D76100C647C47911BF525392 /* BSG_KSCrashContext.h */, + 829C9C9E602BAD1C89CF50E09A76222B /* BSG_KSCrashDoctor.h */, + EA26F49E2AADEDB96790941D0189B8D0 /* BSG_KSCrashDoctor.m */, + 43AF0B370689AA129AD26A1065F12CAE /* BSG_KSCrashIdentifier.h */, + 4EC9214E320BBD039409478C85CB3D4E /* BSG_KSCrashIdentifier.m */, + 4B5B3779D6AB8FEFC561F8749A3E7170 /* BSG_KSCrashReport.c */, + 789E43D8893122D597A2C48EDB7CFD7C /* BSG_KSCrashReport.h */, + 09980FBD264D2DD8D9054DC82F6EA5F5 /* BSG_KSCrashReportFields.h */, + 140BF54141B2674E32CB6707116B3D52 /* BSG_KSCrashReportVersion.h */, + 0A7315913B6B00C96B1969BC6DB6EA51 /* BSG_KSCrashState.h */, + A81B190C680DAF19D634822AB23DBCAD /* BSG_KSCrashState.m */, + 6BB250331658AE5163B01B81D50B014F /* BSG_KSCrashType.c */, + D20343DBF407D8021B5FCD3EC802C4E2 /* BSG_KSCrashType.h */, + 72D924B8236E2AF165F6D5F8354A471D /* BSG_KSSystemInfo.h */, + 357963FAA9DC468CA01E17439E7FDD5D /* BSG_KSSystemInfo.m */, + 7E82C6B85AA6A1A43C7EA0B9C5B0DBA1 /* BSG_KSSystemInfoC.h */, + E9A4E43ED98092B712DD6E93E04C7C30 /* Sentry */, + CEED4DC9EE9C33EE5D7640838EBF8A41 /* Tools */, + ); + name = Recording; + path = Recording; + sourceTree = ""; + }; + 6F5C12627FE5AA5217A5A9F537485EA2 /* GoogleAppMeasurement */ = { + isa = PBXGroup; + children = ( + D0E11B09D36C3939B7FD43A42B866D1E /* Frameworks */, + 7A39CD658434E837FF40C2C8B0F9FBC2 /* Support Files */, + ); + name = GoogleAppMeasurement; + path = GoogleAppMeasurement; + sourceTree = ""; + }; + 6FE9633002568CCB9846A275B09257DF /* Pod */ = { + isa = PBXGroup; + children = ( + 69389DC458827669951C8BAA959A038A /* RCTTypeSafety.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 6FF1AAAF8C8C3F82DA12A57302173231 /* Support Files */ = { + isa = PBXGroup; + children = ( + D6140EAA04937CCDC62246EB577E04F8 /* React.debug.xcconfig */, + 4B8E3BCF06F973E8F0D678D9DD3178ED /* React.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/React"; + sourceTree = ""; + }; + 70BD345152219405D7B9B498749DE2F4 /* RNRootView */ = { + isa = PBXGroup; + children = ( + 2C1EE05A18109AA23C61F78E7E447A87 /* RootView.h */, + A49F25B700EE4A6775B874F4E8AD3D62 /* RootView.m */, + 08493E7480FC1038F8F5F21F1D41AA2B /* Pod */, + 722082939E49DC0C18F514CD0A018C9A /* Support Files */, + ); + name = RNRootView; + path = "../../node_modules/rn-root-view"; + sourceTree = ""; + }; + 71040A7C01F867C4BBC1C3486A7E176B /* Support Files */ = { + isa = PBXGroup; + children = ( + 08F6B390C35EA07D9D7C8C2945CEC55D /* React-Core.modulemap */, + 9AE69C4075F10FB677FDB33EC3800CD5 /* React-Core-dummy.m */, + 23EAC0B27620F9F7EA42AD35A54E3752 /* React-Core-prefix.pch */, + 6A19D8BD47C70E27B2D60A385E031D01 /* React-Core-umbrella.h */, + B8F9958D28A43B51CE55A9E673B47073 /* React-Core.debug.xcconfig */, + 306E981283C96604480F569449C71241 /* React-Core.release.xcconfig */, + A3ED697F0E0E24C8E2A51F3891D132DB /* ResourceBundle-AccessibilityResources-React-Core-Info.plist */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/React-Core"; + sourceTree = ""; + }; + 7136B12C4957CB04016A9076AF6B7651 /* RCTAnimationHeaders */ = { + isa = PBXGroup; + children = ( + 1C88629AF7D9C7E7E38F3E17677FC2DC /* RCTAnimationPlugins.h */, + 275B06783B4CBD407AB1C9906AB4FC35 /* RCTAnimationUtils.h */, + 37BC4DD8E2155A8B4DB3B8EB9AB6022C /* RCTNativeAnimatedModule.h */, + 5922923155F3938505DC98B5FD1F7886 /* RCTNativeAnimatedNodesManager.h */, + 06384479D373E19F9C14A08E0BFF3788 /* RCTNativeAnimatedTurboModule.h */, + 52F2A33587AF755FD188094DA4F22D31 /* Drivers */, + 0928B51CE3E1E654EF6139AEC2243BD1 /* Nodes */, + ); + name = RCTAnimationHeaders; + sourceTree = ""; + }; + 717812801402C3A654DB9201AF7EF793 /* Multiline */ = { + isa = PBXGroup; + children = ( + B4507C7DFD6A67ED8484D249AA895C20 /* RCTMultilineTextInputView.m */, + 44D4034EE561C21C1F6F12E807E4ABC5 /* RCTMultilineTextInputViewManager.m */, + 0B74A30016078BE56D8EE4ADF85FB7C6 /* RCTUITextView.m */, + ); + name = Multiline; + path = Multiline; + sourceTree = ""; + }; + 719E02D3C4FC8F494174E6D5C0CAA682 /* Pod */ = { + isa = PBXGroup; + children = ( + FDBD0C57A0C9A4AFF777B7532C045201 /* UMConstantsInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 71B21CD7D6EAC54B42A102151320A96C /* Pod */ = { + isa = PBXGroup; + children = ( + 293023BA89AA14C83B86A99FC19C66A2 /* React-cxxreact.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 722082939E49DC0C18F514CD0A018C9A /* Support Files */ = { + isa = PBXGroup; + children = ( + 7E82EE73F5EEB92B1F189A5C87C94C90 /* RNRootView-dummy.m */, + F947BA1DC1389531D34C18DE2C6E1145 /* RNRootView-prefix.pch */, + 7F391CE3D6B0FE9ACF4401557839803D /* RNRootView.debug.xcconfig */, + 52051000F9BC6625B82A6F74204791A8 /* RNRootView.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNRootView"; + sourceTree = ""; + }; + 727A845C55445F7312FE8EA9C2730D42 /* Pods-defaults-Rocket.Chat */ = { + isa = PBXGroup; + children = ( + 2C87439E014D563FB46251C4F6383191 /* Pods-defaults-Rocket.Chat.modulemap */, + 8B36E70850A67C0E5A32854B477E6DB3 /* Pods-defaults-Rocket.Chat-acknowledgements.markdown */, + 0B7BD46A66B3036240A24D17DD1E1366 /* Pods-defaults-Rocket.Chat-acknowledgements.plist */, + F930708FEBC0293B5A61239E13D57DF1 /* Pods-defaults-Rocket.Chat-dummy.m */, + 79BBBADB6047CFBD36EF663F59F64A44 /* Pods-defaults-Rocket.Chat-frameworks.sh */, + 2948517443F3306D1366C64D558F85D6 /* Pods-defaults-Rocket.Chat-resources.sh */, + 91275ACC299A3B0CAF165A0981B9252D /* Pods-defaults-Rocket.Chat-umbrella.h */, + 158B757C9F26DE64E393CA25BBBA63D7 /* Pods-defaults-Rocket.Chat.debug.xcconfig */, + F6D0AB52E9908D40784364BCF9A2C284 /* Pods-defaults-Rocket.Chat.release.xcconfig */, + ); + name = "Pods-defaults-Rocket.Chat"; + path = "Target Support Files/Pods-defaults-Rocket.Chat"; + sourceTree = ""; + }; + 72FB0D5AEEE2347D17F36456B212A206 /* AppDelegateSwizzler */ = { + isa = PBXGroup; + children = ( + 4FD51AC155A82E1BD08CC8EEB840440C /* GULAppDelegateSwizzler.h */, + F4DE545BA22392C8F815EBCF42429004 /* GULAppDelegateSwizzler.m */, + 181AF9851716867B9D19B12D9C435955 /* GULAppDelegateSwizzler_Private.h */, + D2CB543418A0278B8EA4AF0B5E8165B1 /* GULApplication.h */, + 842CE69EF38520DDAA52171D3B28A041 /* GULLoggerCodes.h */, + 843C93882E727468AB416A5D1983E793 /* GULSceneDelegateSwizzler.h */, + 842663EF20781EC453C3AB321DD4BF19 /* GULSceneDelegateSwizzler.m */, + BDA60B5F2263D814E171E633B919C049 /* GULSceneDelegateSwizzler_Private.h */, + ); + name = AppDelegateSwizzler; + sourceTree = ""; + }; + 73032D7ABFA5F5EC43ADEF910CFBCF21 /* Pod */ = { + isa = PBXGroup; + children = ( + B126233D13D7E7E44723CA60B4D89984 /* LICENSE */, + A3C338F47E0F3CD612CD2E4833E1BD3F /* README.md */, + D459214CFD30F80EBC830BD08EBBA7B9 /* RNCAsyncStorage.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 7383E688697BCB70812C71EB0457B46D /* Support Files */ = { + isa = PBXGroup; + children = ( + A9A235A975FFA925CF1A128115C1D9A2 /* glog-dummy.m */, + C41C8A2FA397BDDA73801BC5E52EAD9D /* glog-prefix.pch */, + 828CB40D123F17957991467978968C8E /* glog.debug.xcconfig */, + EA80C6CC551744CB4EE5BF2A056CF5B1 /* glog.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/glog"; + sourceTree = ""; + }; + 751EF41D8D7AA945AF43D96BCC74634A /* include */ = { + isa = PBXGroup; + children = ( + FEDF0F0255067333E30BE5FA68328373 /* Bugsnag */, + ); + name = include; + path = include; + sourceTree = ""; + }; + 759853FBE6212AD6A2ABD36D16024E1F /* Pod */ = { + isa = PBXGroup; + children = ( + 343390246A60444A23488A674E808245 /* LICENSE */, + E2FEA075AAC34B17ECD9903D379DE845 /* README.md */, + 69CBDAEC21CED6734106C954B1F4AB29 /* RNReanimated.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 76CAC2D2FD5770A1824626F10F1F57FC /* Brushes */ = { + isa = PBXGroup; + children = ( + A9082B2BD3226DFFA225E5FFFB855224 /* ARTBrush.h */, + 328FF4DA3783FF0044814C6596A7871C /* ARTBrush.m */, + 29B811FAE251A530D910EA08052ED41D /* ARTLinearGradient.h */, + 6F94301C0561DD443C43F2F07AE4968F /* ARTLinearGradient.m */, + EE003B14F3BDD73E4063997EC4E2607F /* ARTPattern.h */, + 9846051E8163DD05F07AEFC5926019F2 /* ARTPattern.m */, + 22A686E40495B915A10C8270E6551F91 /* ARTRadialGradient.h */, + DC304B4145DD0AFD8E5888E0F029F416 /* ARTRadialGradient.m */, + 2A3D59FB3665A31F8B7500521E96B781 /* ARTSolidColor.h */, + AE6C0F640CBDB125D6165A9FE5277811 /* ARTSolidColor.m */, + ); + name = Brushes; + path = ios/Brushes; + sourceTree = ""; + }; + 77B6CFB7EA90A814C562A8632026BFC3 /* React-RCTLinking */ = { + isa = PBXGroup; + children = ( + E4AC6DA50FDB54B47545655896A80D4E /* RCTLinkingManager.mm */, + 3B97C66180DF19949AF1558D6A0033C4 /* RCTLinkingPlugins.mm */, + 3F7C81F7BCA12A87FB2D45E47B302091 /* Pod */, + 6E030B897EB9A69E0A685B3A7DE38DAD /* Support Files */, + ); + name = "React-RCTLinking"; + path = "../../node_modules/react-native/Libraries/LinkingIOS"; + sourceTree = ""; + }; + 7950EE29EE71494397E527E7A0DA6FF8 /* react-native-netinfo */ = { + isa = PBXGroup; + children = ( + 0F71F642AF3DE7DD9E1E4E9BE0B3DBBD /* RNCConnectionState.h */, + 6D96E809EA4CE71B2F3930CB24DB6293 /* RNCConnectionState.m */, + 66B424E1E337CAC9AA470426F174F470 /* RNCConnectionStateWatcher.h */, + F96EAFECE7254CF38639FE8E3ECF86BF /* RNCConnectionStateWatcher.m */, + 7782E390EB5A04EF25130C2A2A8D343F /* RNCNetInfo.h */, + CFE777E168A9AFBF074D469F9EFF7C47 /* RNCNetInfo.m */, + 396863BF3DD7F36F45EBEED3C6D4A98D /* Pod */, + BCBF9DB2D24F27DAFBA9B681F1BA2629 /* Support Files */, + ); + name = "react-native-netinfo"; + path = "../../node_modules/@react-native-community/netinfo"; + sourceTree = ""; + }; + 797588B8BF534279FFAF1D3FE1861607 /* Support Files */ = { + isa = PBXGroup; + children = ( + 2644F2579B6A8617B5235C3BF091B1D3 /* UMImageLoaderInterface.debug.xcconfig */, + 97E794BA33DA6947E9A38E96DC57959A /* UMImageLoaderInterface.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; + sourceTree = ""; + }; + 799233F0A73C201D006B13B7F6BE1B0D /* RawText */ = { + isa = PBXGroup; + children = ( + DF89921367DDB419FD2E008843163C09 /* RCTRawTextShadowView.h */, + AA7FC102D46DBA597743B98D535FAB2F /* RCTRawTextViewManager.h */, + ); + name = RawText; + path = Libraries/Text/RawText; + sourceTree = ""; + }; + 79F53A35899385E73A55FC3AD4210D4A /* UserDefaults */ = { + isa = PBXGroup; + children = ( + F80EFFD5CEFD057F6C9AB017625E04C0 /* GULUserDefaults.h */, + BD569C16ACD867CA9120A03F34357CB6 /* GULUserDefaults.m */, + ); + name = UserDefaults; + sourceTree = ""; + }; + 7A39CD658434E837FF40C2C8B0F9FBC2 /* Support Files */ = { + isa = PBXGroup; + children = ( + F8CD14050C72D23D91D42E504CB876EF /* GoogleAppMeasurement.debug.xcconfig */, + DF0CCC4ED5EA093604440EBDE947BC63 /* GoogleAppMeasurement.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/GoogleAppMeasurement"; + sourceTree = ""; + }; + 7A5A2B0D92DE68189B5F7747D1FE9852 /* turbomodule */ = { + isa = PBXGroup; + children = ( + 8B11D6802FC09C19066A17235A404BA7 /* core */, + ); + name = turbomodule; + sourceTree = ""; + }; + 7B037C312B641BA61D9AF131E99A7022 /* Support Files */ = { + isa = PBXGroup; + children = ( + 08272036C5209030B6CF0F4CEFE8A1DA /* RCTTypeSafety-dummy.m */, + 3D86D2A31A5C0B47043E1A36D380B41F /* RCTTypeSafety-prefix.pch */, + 4AECC08C02DCA1B2C649AB26AAE1461E /* RCTTypeSafety.debug.xcconfig */, + DE5A7C8C6EAD47E655B33CFF04F6CCFE /* RCTTypeSafety.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/RCTTypeSafety"; + sourceTree = ""; + }; + 7B07C752853171258EA3AE8E5D78D812 /* TextInput */ = { + isa = PBXGroup; + children = ( + FD028CB98C9F9EFDFAFBE551B94565B8 /* RCTBackedTextInputDelegate.h */, + 35B7D5020B6E5BA9A2FE52CC9AE126AD /* RCTBackedTextInputDelegateAdapter.h */, + 219E0924E0BE9C7E6130A5F93A67232A /* RCTBackedTextInputViewProtocol.h */, + 5D3EA5B4B575BDA257735202166064A3 /* RCTBaseTextInputShadowView.h */, + 075FCEEF9548E5D0153233C7A55D489D /* RCTBaseTextInputView.h */, + 9327F9C7E8982E0CE3C75DE507864913 /* RCTBaseTextInputViewManager.h */, + E62636EB54EBAC8FFAAD4C44CF3B71D7 /* RCTInputAccessoryShadowView.h */, + D9B8B92F24A47BEF9C95B210D292BA64 /* RCTInputAccessoryView.h */, + C6047C5622988513A77CF76E8BE0CD9F /* RCTInputAccessoryViewContent.h */, + 90C7C147085C240CCCF67AB7DD43F1AD /* RCTInputAccessoryViewManager.h */, + 1B218D186F54EF65DEED555A468AC649 /* RCTTextSelection.h */, + F359CB836A39AD8FA351F634C8FFC0AB /* Multiline */, + 8CA6E9AD93919F4231A819BECD1E257E /* Singleline */, + ); + name = TextInput; + path = Libraries/Text/TextInput; + sourceTree = ""; + }; + 7B2BB809FDDECF64E64B0B8EFAA482BB /* Configuration */ = { + isa = PBXGroup; + children = ( + AE894CCD5487DD70504F6EFA69532ADF /* BSGConfigurationBuilder.h */, + 414D87E844AD74314047F1E73E041E3B /* BSGConfigurationBuilder.m */, + B3DDF3E68ACB1EB42C9B28FEFE55CD1A /* BugsnagConfiguration.m */, + 8658DD24119E5EAE6FFA7E2582255C55 /* BugsnagConfiguration+Private.h */, + B374D73EA1612B85750D61AE6F16271F /* BugsnagEndpointConfiguration.m */, + 916E3D76B71C70231A1C7B52E8287F82 /* BugsnagErrorTypes.m */, + ); + name = Configuration; + path = Configuration; + sourceTree = ""; + }; + 7C4DBEA389F45BA24C85310F8D437E9A /* Pod */ = { + isa = PBXGroup; + children = ( + 8CDE84785C27C0FF357553A775D1308A /* LICENSE */, + 9C9D12209F331BCF7D802934F1175076 /* README.md */, + 3BB254896ACC06AF2DEF34F612C19B71 /* RNCPicker.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 7C558593C891C3E79B36EA23172BA0B4 /* BaseText */ = { + isa = PBXGroup; + children = ( + E2631F974453177DD607E7B3C7AFD9A2 /* RCTBaseTextShadowView.h */, + 66F0D8BBD14EFB8EA9197CDCE644FAB0 /* RCTBaseTextViewManager.h */, + ); + name = BaseText; + path = Libraries/Text/BaseText; + sourceTree = ""; + }; + 7D2BD92025B51DA60BB351BB9BAEC931 /* FBDefines */ = { + isa = PBXGroup; + children = ( + 5CEEAEB3328E9D73020B5EB925D69D19 /* FBDefines.h */, + ); + name = FBDefines; + sourceTree = ""; + }; + 7DD3CC43754B8BB4344595E9E8F9DE9F /* EXImageLoader */ = { + isa = PBXGroup; + children = ( + 26E421091A9BB8C1DB5E4CA5715FF029 /* EXImageLoader.h */, + 2BE952648F93797D468722B37002481C /* EXImageLoader.m */, + 9D565FDAA5E52962D5D1A74FE2740313 /* Pod */, + 091C7C2E680ABBE8944BB4E230A85B4E /* Support Files */, + ); + name = EXImageLoader; + path = "../../node_modules/expo-image-loader/ios"; + sourceTree = ""; + }; + 7F28349F29E87A971A2165D82AF74199 /* Support Files */ = { + isa = PBXGroup; + children = ( + BF1E0BB7752D56C6845E112D9F00FF21 /* react-native-simple-crypto.modulemap */, + 86F6DE72AF784651FC53232D648747AE /* react-native-simple-crypto-dummy.m */, + 84EEFE25DC085D62DA57C42255443BB3 /* react-native-simple-crypto-prefix.pch */, + E6F8E4122200E27EF9E2B713BD332D98 /* react-native-simple-crypto-umbrella.h */, + A193D813D8C5A0B8CF41715AD34A8F01 /* react-native-simple-crypto.debug.xcconfig */, + 220F7A02C50FD642BCE587FFBF9649EF /* react-native-simple-crypto.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-simple-crypto"; + sourceTree = ""; + }; + 7F3A7EA895F0566C5548469737EF00DD /* KSCrash */ = { + isa = PBXGroup; + children = ( + 6E327E9A663C056D21BD068F8AAB5979 /* Recording */, + 25D598A75FCE674C4B80EAA48F9E6C06 /* Reporting */, + ); + name = KSCrash; + path = KSCrash; + sourceTree = ""; + }; + 7F3B210349E9AB3E3EADD2AB592D867D /* Support Files */ = { + isa = PBXGroup; + children = ( + 592DD183E51F970BE56CF088A5393452 /* React-CoreModules-dummy.m */, + 39CC6CCD7E3BAB1F4F89F8E146204926 /* React-CoreModules-prefix.pch */, + D2943406FA1878F07097E101AE75878A /* React-CoreModules.debug.xcconfig */, + 0434113888E997B21B28150CC3620C44 /* React-CoreModules.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-CoreModules"; + sourceTree = ""; + }; + 7F464A4DA76C89FA2F27058CD6700BB0 /* Drivers */ = { + isa = PBXGroup; + children = ( + 6D04BB5E40BA5D8B5192C6EEBBD84FE1 /* RCTDecayAnimation.m */, + 6319E115C683CD8817790D3D6A945E4D /* RCTEventAnimation.m */, + BFB833A212D11C1F41AC5557EFFF34D4 /* RCTFrameAnimation.m */, + 9F53199A8BA2FDC86956E4B0A37BDC5C /* RCTSpringAnimation.m */, + ); + name = Drivers; + path = Drivers; + sourceTree = ""; + }; + 80E4CCAFD5FF95805C8836B2EF70A567 /* React-jsiexecutor */ = { + isa = PBXGroup; + children = ( + E61AF1CB17B0CA8E7D4A8158361F4DF4 /* JSIExecutor.cpp */, + D2BAFB5712B5C8FFFE439BE7B8832975 /* JSIExecutor.h */, + 923755E9F99621CC05524BE00627817C /* JSINativeModules.cpp */, + 27E7AC1CF68C839CBE82198DC24EFFB0 /* JSINativeModules.h */, + ED889B6CD4E18E37D68E3AC6D21D9DF3 /* Pod */, + 43E56E8FC0D1FD1417476BC28E3F73D1 /* Support Files */, + ); + name = "React-jsiexecutor"; + path = "../../node_modules/react-native/ReactCommon/jsiexecutor"; + sourceTree = ""; + }; + 80F18FC30D1168F50A8F5773FDBE16A6 /* RNVectorIcons */ = { + isa = PBXGroup; + children = ( + B6BB9D8F6BE1944E983E7AA3816B439C /* AntDesign.ttf */, + 4B0034E6E9FECAB0B4DC477735148373 /* Entypo.ttf */, + A0239A64DC167652EC09D68A2ADCAF84 /* EvilIcons.ttf */, + 90BBC45C00FF7D9C89021A4AE0CF792B /* Feather.ttf */, + EDCAAAC9AAC0652F4DBF8DA542199E4B /* FontAwesome.ttf */, + 8CEC25A51E15793898FD4217D0D0CF0B /* FontAwesome5_Brands.ttf */, + 6FC75FAFE2C0BD318AD7EAE187B8AE0F /* FontAwesome5_Regular.ttf */, + 41855C855146AEE29E3AD4431CB64A27 /* FontAwesome5_Solid.ttf */, + CA04D0CCECD5149348E432A7532FD6F2 /* Fontisto.ttf */, + 0A15D754AC491E925BECDFAEEEFDF7B4 /* Foundation.ttf */, + 14CE686504FDFCC39519FA7D086BA1ED /* Ionicons.ttf */, + A8CFEE93B9F8FEA5EF794D45484A1B61 /* MaterialCommunityIcons.ttf */, + 7F89B97D7C9697721F4789BEAEA2E875 /* MaterialIcons.ttf */, + B54848B8630496BE379E72B317F1C472 /* Octicons.ttf */, + 611AE1380C322873C05FF482BC9482F7 /* RNVectorIconsManager.h */, + 6F0154D8ACB77B410E5B940FAA48A9FE /* RNVectorIconsManager.m */, + 475F5E2ABC28DCE812339550EE14A300 /* SimpleLineIcons.ttf */, + 9EBBFD227451F1DC3B489BF474AD54A2 /* Zocial.ttf */, + F7E4F3702F4A4EBB7AB5AD0518729F1A /* Pod */, + B8F99F34AAD023195BE9917C547423DB /* Support Files */, + ); + name = RNVectorIcons; + path = "../../node_modules/react-native-vector-icons"; + sourceTree = ""; + }; + 814E8E7E091098CC83DD495C815F1AF3 /* Support Files */ = { + isa = PBXGroup; + children = ( + 10D3CBD349DDBEDD8BC29FF16094AFD1 /* GoogleUtilities-dummy.m */, + 6ABC70D8E3CD1011B90A77C789F11198 /* GoogleUtilities.debug.xcconfig */, + E34AB18BAA4A47BB7C41BBCFCB2261F2 /* GoogleUtilities.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/GoogleUtilities"; + sourceTree = ""; + }; + 82350E5B841E516E40D653D2AB5544C3 /* RNDeviceInfo */ = { + isa = PBXGroup; + children = ( + 7CA405638D48DB19A0E0CFF3F8B4738F /* DeviceUID.h */, + BFB871EFCC026E0E1B2229CA8B6C8679 /* DeviceUID.m */, + EB8DD2A0419BC72BF274073FC1A56A06 /* EnvironmentUtil.h */, + 9D3481C77D8830B0B3647B64636CAFB1 /* EnvironmentUtil.m */, + 218D3AFA6E45B878589B1C721E75F5CA /* RNDeviceInfo.h */, + 3C12747050F11EA2EA2A16FFF839DC61 /* RNDeviceInfo.m */, + 8F4C90FB99E53B9B60D9F2F00BA23EE5 /* Pod */, + BEBBCA05E2B21F81BA65B32551D96384 /* Support Files */, + ); + name = RNDeviceInfo; + path = "../../node_modules/react-native-device-info"; + sourceTree = ""; + }; + 84E40C32042BC4E376079790C363EBBC /* KSCrash */ = { + isa = PBXGroup; + children = ( + 173F16F614C99F1F2EBB2FE4639688D3 /* Source */, + ); + name = KSCrash; + path = KSCrash; + sourceTree = ""; + }; + 861B805BFF1794D2F3879FD37E1AC9EB /* UMReactNativeAdapter */ = { + isa = PBXGroup; + children = ( + 21ECF7AE502B94FDB7E0B8BD862E867A /* UMBridgeModule.h */, + F27CE71A7A35E5EDF4829C02CD2D6ADA /* Pod */, + 40F5C52C1A0E439D528F17D8BB7F5429 /* Services */, + 111AAA3ABE57A743F5849CC9525371AC /* Support Files */, + 87DBD37B152012978A749BF622E1B171 /* UMModuleRegistryAdapter */, + FDE890A9DD1A908FEA61A28EE5AC18C0 /* UMNativeModulesProxy */, + 02189358DA22899E52E53CE4299E2518 /* UMViewManagerAdapter */, + ); + name = UMReactNativeAdapter; + path = "../../node_modules/@unimodules/react-native-adapter/ios"; + sourceTree = ""; + }; + 862F7B0A41DD6B161675A6E6B7B61144 /* RNConfigReader.xcodeproj */ = { + isa = PBXGroup; + children = ( + C184B7335460D0CE1CA51D5B2D27A070 /* project.pbxproj */, + ); + name = RNConfigReader.xcodeproj; + path = ios/RNConfigReader.xcodeproj; + sourceTree = ""; + }; + 864CF10D742C3C6D7902FAD8E8271F0B /* React-RCTActionSheet */ = { + isa = PBXGroup; + children = ( + E049964354328A2EA1287F2BEE1CF2D3 /* Pod */, + F2AD59A18562376746A8C194B5A64512 /* Support Files */, + ); + name = "React-RCTActionSheet"; + path = "../../node_modules/react-native/Libraries/ActionSheetIOS"; + sourceTree = ""; + }; + 86677D26A3179FEF358A0284BC61F3AE /* MethodSwizzler */ = { + isa = PBXGroup; + children = ( + A7F777A235BC6BD096853867E94D2332 /* GULOriginalIMPConvenienceMacros.h */, + A1BF68D59DC67100D469927A60889975 /* GULSwizzler.h */, + 073A0F73F0D948124331D5ED633FED78 /* GULSwizzler.m */, + ); + name = MethodSwizzler; + sourceTree = ""; + }; + 8695F1D0F9358BD43DDBE79E5CF98BAB /* Pod */ = { + isa = PBXGroup; + children = ( + 7500E3E1B45B0BEE182E458B83EC4818 /* UMPermissionsInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 869B4074E5995282377E90FFCC5FAE96 /* React-RCTNetwork */ = { + isa = PBXGroup; + children = ( + BFF2B93582DD82BCA452AC0DBA5D0647 /* RCTDataRequestHandler.mm */, + 6F1A6CB5AD58A8B648B42C549671774B /* RCTFileRequestHandler.mm */, + DFE622CE288FAC9F6429A57296A9C7DA /* RCTHTTPRequestHandler.mm */, + A4B57CE6698F52AC38D62EEC7933FC7E /* RCTNetworking.mm */, + 785EDE9EB6D9A2635C20A40E0D42021D /* RCTNetworkPlugins.mm */, + 411C5D3090597F745A84709D99C44A6B /* RCTNetworkTask.mm */, + D74EFFE0E92A52A7E890826465132A73 /* Pod */, + 2B45685CBA4FA71A1D076B8BEC8EB450 /* Support Files */, + ); + name = "React-RCTNetwork"; + path = "../../node_modules/react-native/Libraries/Network"; + sourceTree = ""; + }; + 8752AE4BE961C8B8A3881C16D383B796 /* Pod */ = { + isa = PBXGroup; + children = ( + 62317B39353F9FFF8355EEB75F3F34A5 /* EXHaptics.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 878EAAEFA33FFD1622DBCF1CA2AAA4A4 /* Pod */ = { + isa = PBXGroup; + children = ( + B227BFF053D18A02145168DAB7EF0D3D /* KeyCommands.podspec */, + ED035C750CEB17C74F2277A208C6E663 /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + 87DBD37B152012978A749BF622E1B171 /* UMModuleRegistryAdapter */ = { + isa = PBXGroup; + children = ( + A1761F12273ABDA4063CBDC302557BC3 /* UMModuleRegistryAdapter.h */, + EFD07F0983ABE92891B7D4414B44854B /* UMModuleRegistryAdapter.m */, + C4BF2CCBBF5CE374288FBFF0D54C7ADF /* UMModuleRegistryHolderReactModule.h */, + 3CF2196A1EE0D95E00B03D669456756F /* UMModuleRegistryHolderReactModule.m */, + 16E471A27712CE9EB296524FB0C8DBB3 /* UMViewManagerAdapterClassesRegistry.h */, + 00C2884BADE0F97B775E97637AA0FA78 /* UMViewManagerAdapterClassesRegistry.m */, + ); + name = UMModuleRegistryAdapter; + path = UMReactNativeAdapter/UMModuleRegistryAdapter; + sourceTree = ""; + }; + 87F3EDAC30D04251943D20AACBAECDFB /* Support Files */ = { + isa = PBXGroup; + children = ( + C15118AF7B06E7AA8617780010187407 /* EXKeepAwake-dummy.m */, + 4559436A7956CE8D06BFF9273BCC41CB /* EXKeepAwake-prefix.pch */, + E3A23A2CAFD9B49866258805E564EE65 /* EXKeepAwake.debug.xcconfig */, + 4F3DBDE414164598AA85AF34D969F89D /* EXKeepAwake.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXKeepAwake"; + sourceTree = ""; + }; + 882258EDA3057FBDBA54EAF0089FA8F1 /* FirebaseInstallations */ = { + isa = PBXGroup; + children = ( + 7343CA8A9C7528DFE57EC1F85F33C409 /* FIRAppInternal.h */, + FFDB251CDA064A494DD8DE2607DC5A3A /* FIRComponent.h */, + 62349CEF1BEF279D189F7115CFD85FD1 /* FIRComponentContainer.h */, + BC06AD0CDFCDE2EBDF8C53D6CA3E097A /* FIRComponentType.h */, + 942912A1EA0A7436F2FDD973903DF116 /* FIRCoreDiagnosticsConnector.h */, + F77B5FF434ABB196616C9FDD68A45DBA /* FIRDependency.h */, + 02E08451045D001829AD93FC5DDDC2FE /* FirebaseCoreInternal.h */, + F2384F9FCDC8C8E4F8092212A51E69BE /* FirebaseInstallations.h */, + 91F251357B1B861D6BECB35B97540576 /* FirebaseInstallationsInternal.h */, + 867B29A1250B07A84E8BC281E2916F23 /* FIRErrorCode.h */, + 67D5F573B6CFD6FF0723A26620D16C35 /* FIRErrors.h */, + 7D7EFA14CEAB378BAE4FD09AA6B5FDF1 /* FIRHeartbeatInfo.h */, + 0B32040CFCC394F3ABA8903C6AD30C71 /* FIRInstallations.h */, + 808157E8035BB54AD67EED203B4A8AD8 /* FIRInstallations.m */, + C2C0E90FEA77DD0E5EFF604B618FDA96 /* FIRInstallationsAPIService.h */, + A92471AA2B82BDB11D3DB2938A92C154 /* FIRInstallationsAPIService.m */, + D492EF8863AEA098B6A3F3255B3F8CB9 /* FIRInstallationsAuthTokenResult.h */, + 18571F19C03D63DC9FA1F9030B6EA0B9 /* FIRInstallationsAuthTokenResult.m */, + 3B930A32F432993FA5735ED7FFD3E125 /* FIRInstallationsAuthTokenResultInternal.h */, + 0799A00B1DC38572550D734432304845 /* FIRInstallationsErrors.h */, + 416D359A4FC7BB38FDA1EF50B2C9654C /* FIRInstallationsErrorUtil.h */, + 07B23753CEF78E886235745063A4B131 /* FIRInstallationsErrorUtil.m */, + 1CD4739532193BEA6F2B46CE2CAC3A2A /* FIRInstallationsHTTPError.h */, + 82CD836887898CD56425D5AE3E6F3813 /* FIRInstallationsHTTPError.m */, + 00D323FBBD73EFACF837D4D6D25372A0 /* FIRInstallationsIDController.h */, + 5ED3A731B84B5126546C42978C09FCD0 /* FIRInstallationsIDController.m */, + 7ED107C7D265D1E13894AC662AE1149C /* FIRInstallationsIIDStore.h */, + CD72FF4935D9AD07EEF34CDEC0AFC91F /* FIRInstallationsIIDStore.m */, + D9BD28134A368C0AFA8B5E2C29BC4702 /* FIRInstallationsIIDTokenStore.h */, + C335481D064FA5535D3CC9FB9822A2BF /* FIRInstallationsIIDTokenStore.m */, + 3EF4E581C7EAB7D5EBD1377F06CA0214 /* FIRInstallationsItem.h */, + 171E2F7335FA3822401B90809CDF31D2 /* FIRInstallationsItem.m */, + C20492402F9EA7E3B8AD53A1D41FC5D2 /* FIRInstallationsItem+RegisterInstallationAPI.h */, + CB8D1B05F7691BAED8591CFF2B187C65 /* FIRInstallationsItem+RegisterInstallationAPI.m */, + E240658062D7BD715785CFECCEAF544C /* FIRInstallationsLogger.h */, + 3146EE7F2F7253CE4A19AE42577E2750 /* FIRInstallationsLogger.m */, + 56EA0A0FE0344C01612010C4CCF72387 /* FIRInstallationsSingleOperationPromiseCache.h */, + 487D1690697E71AB3608BBB1B971C59D /* FIRInstallationsSingleOperationPromiseCache.m */, + 13D532F8576952B1731BD9017ABEF549 /* FIRInstallationsStatus.h */, + 07DF80C3CCE5F07D6160CBD62078D66D /* FIRInstallationsStore.h */, + 38DBC4FE53A7D3A0516B8339987659B6 /* FIRInstallationsStore.m */, + CD0A3443C6A7213D97CFC3BE33030908 /* FIRInstallationsStoredAuthToken.h */, + C2A38FCFC0C7CBF5FB62C446C28158CD /* FIRInstallationsStoredAuthToken.m */, + 9141094EE1ED49F64CDFCC8C60B96156 /* FIRInstallationsStoredItem.h */, + CA53479D1F7EC6FB3472EFF20F157B6C /* FIRInstallationsStoredItem.m */, + 9DB1D8FE765BE7361DB47698214C8827 /* FIRInstallationsVersion.h */, + D4A2BE8CFED384AE4AC4EC33BB298903 /* FIRInstallationsVersion.m */, + 6B6AF267F4A7C6DE4A649FA84CE33D1D /* FIRLibrary.h */, + 80313E41FC783BC7ACFB49F771393302 /* FIRLogger.h */, + B66CDF20D4E34DD68D5EEBC0BAE954FD /* FIROptionsInternal.h */, + 3ADA24494E344DDAD822C6DA6B4EF030 /* GULAppEnvironmentUtil.h */, + 41FA13DF57954BD5E585AB26E68DE195 /* GULHeartbeatDateStorage.h */, + E7D565D7D6C306053C2BDFCF2E18FB85 /* GULKeychainStorage.h */, + 14833B7595C20284FE302A11D245BE8D /* GULKeychainUtils.h */, + 2A052AC762DA5E58222E584F38CB2FF1 /* GULSecureCoding.h */, + 960AFA97C6DCB819D930DEC1EA15BF49 /* GULUserDefaults.h */, + 09F60EF4922F0B81EC1E179E66BCF4B3 /* Support Files */, + ); + name = FirebaseInstallations; + path = FirebaseInstallations; + sourceTree = ""; + }; + 8873D04DE1D823D5C51BAC6BC6789EA1 /* Pod */ = { + isa = PBXGroup; + children = ( + 9A50EA4CF7F6CC29ED52C30E2B562A6A /* UMAppLoader.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 88D72EAE58E7FF54C41C9AE90D614DE4 /* React-RCTText */ = { + isa = PBXGroup; + children = ( + 1090A8F0485EF829EB52414930011E85 /* RCTConvert+Text.m */, + 37E96A7AD6E875A29E6DCE288196CCA0 /* RCTTextAttributes.m */, + 4B889D187A787995BC1E3E8B5153BC28 /* BaseText */, + EA13FE3EB3903AF08222DB3356F442A7 /* Pod */, + 28231AF484C698273669847C1DD7ABBA /* RawText */, + 162A0E35DD751790684EC0010D116703 /* Support Files */, + FA160BD1B56736D317D96A56C8D7C8ED /* Text */, + 5CA4B72893C3AC4BE6781F0CEB5FFC5F /* TextInput */, + 4B5D8ADF78472A169FC25BD72175E0DB /* VirtualText */, + ); + name = "React-RCTText"; + path = "../../node_modules/react-native/Libraries/Text"; + sourceTree = ""; + }; + 89E42526F9DFE07C60CA8658D8ED2506 /* Pod */ = { + isa = PBXGroup; + children = ( + BC00DF5048BAF76589CBE6DDC1D7F994 /* react-native-slider.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 89E9DE362B0DA8851E0A2A3EDC9F8C0F /* Payload */ = { + isa = PBXGroup; + children = ( + 86E61A981CF42C4B23BAB5518A622CB0 /* BugsnagApp.m */, + CC8FAA1C912262D8FB04EABEE005863E /* BugsnagApp+Private.h */, + 0433A26CA9AB21D0ECDE15D53044AC50 /* BugsnagAppWithState.m */, + 93C39DD0F16BF1BE85C726C64342D0CA /* BugsnagAppWithState+Private.h */, + 4B96ADDB9FD90F50AE207FA323FF1978 /* BugsnagBreadcrumb.m */, + 73C84770ED47B977C24E8DC125B6EC1B /* BugsnagBreadcrumb+Private.h */, + 0B2BF373E5089F4C67C4A01143AC410A /* BugsnagDevice.m */, + FD082006079338D62D08663C33A48A59 /* BugsnagDevice+Private.h */, + 7A52E65AEAC493527C07E619FAACD214 /* BugsnagDeviceWithState.m */, + CA138AF36FD6DF96FF7BC56831E4DBF0 /* BugsnagDeviceWithState+Private.h */, + CEA3B35EB09CCF2BD8C1C215046FBDBC /* BugsnagError.m */, + E80DD25952CCAFAE57F3977CEC976B49 /* BugsnagError+Private.h */, + 63C45641EB5DB3C16645B6FADBA569B7 /* BugsnagEvent.m */, + 00F410D95A943CF72FF7F8650F7719CF /* BugsnagEvent+Private.h */, + FF4FBD82B67BC08F0D6292D2D201F97D /* BugsnagHandledState.h */, + 5C31E2A1FFF7C0019D735887896DF06A /* BugsnagHandledState.m */, + F20E738D3A69438E1C122F9A0597DA9A /* BugsnagNotifier.h */, + F0F1A127EAB2FFE1F6FA20CA11630AA4 /* BugsnagNotifier.m */, + 0E3C403950789D25A935DB168DD8426B /* BugsnagSession.m */, + A87D058A90DAB0C942B4AAC56C56B15C /* BugsnagSession+Private.h */, + 8B8B3AB8E994E97D8D8B5A5956B0383F /* BugsnagSessionTrackingPayload.h */, + 4E3D0BB48FDDCBE29E682D48D2261735 /* BugsnagSessionTrackingPayload.m */, + E05EC65CB6F61CB2A94A6FA66F5CBEBC /* BugsnagStackframe.m */, + C7A634C0809C6C8B3F48DAA06217C421 /* BugsnagStackframe+Private.h */, + E1BED444528B620E58346B09FA9CED47 /* BugsnagStacktrace.h */, + 6810FE9C38430A012054DCA1F480FCA3 /* BugsnagStacktrace.m */, + F1D45A2B71EC9AA7167B5151A6B1F0D2 /* BugsnagStateEvent.h */, + 0E588F486C0468F453CA323CCA1D6C38 /* BugsnagStateEvent.m */, + 581DB7D061A947F37F56A814CD0A96F3 /* BugsnagThread.m */, + 784506C0C4C013F8ABF39538C9B3BB10 /* BugsnagThread+Private.h */, + 259DFDEAE65227AFC9022670B9B73495 /* BugsnagUser.m */, + B50E418173626EB95A687FAA9F1361ED /* BugsnagUser+Private.h */, + ); + name = Payload; + path = Payload; + sourceTree = ""; + }; + 89F3BCF1FE4AF51C65B00C90266890A0 /* FBLazyVector */ = { + isa = PBXGroup; + children = ( + 550BFE8F5C79E6486A299B4A4E4C78DF /* FBLazyIterator.h */, + 75EFBDB34FBBB2FE216E35ED156B3113 /* FBLazyVector.h */, + CBFA2D6BA426C9FD78F78F78295C0C63 /* Pod */, + D5C4A0DE852AD3ECBBD511124ECEF0E8 /* Support Files */, + ); + name = FBLazyVector; + path = "../../node_modules/react-native/Libraries/FBLazyVector"; + sourceTree = ""; + }; + 8A051C8D312B3BC1040314A153ACB79F /* Pod */ = { + isa = PBXGroup; + children = ( + C6BCD75A89838F565A9A4B789D2A4598 /* LICENSE */, + 995FB2978F4C016731E2A206E0EB8447 /* README.md */, + 97AD5CA8E943FBEDCED81FAA61E6D950 /* RNFastImage.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 8A398024DCC655930DBEA867FA2BF127 /* UMPermissionsInterface */ = { + isa = PBXGroup; + children = ( + 1A1F19A586D4C0D63EA88B6ECDC690E2 /* UMPermissionsInterface.h */, + 471436C5FCF70211E89590CF81E793B6 /* UMPermissionsMethodsDelegate.h */, + A353F7E086D2B4C0BCD3F3CF28DF872F /* UMPermissionsMethodsDelegate.m */, + 58817D2F48C0FC9AF0AB1D02CBEE1801 /* UMUserNotificationCenterProxyInterface.h */, + 8695F1D0F9358BD43DDBE79E5CF98BAB /* Pod */, + 2DCA09607972EF02C6DC33BC3DE26927 /* Support Files */, + ); + name = UMPermissionsInterface; + path = "../../node_modules/unimodules-permissions-interface/ios"; + sourceTree = ""; + }; + 8A6EAA35821CBEC3697C77A447F0A1D9 /* Plugins */ = { + isa = PBXGroup; + children = ( + 94D9587D0AA314F54749BAC8F4AD0D86 /* BugsnagPluginClient.h */, + C7D2C8A889B69DBFF16BE95AB81BB04C /* BugsnagPluginClient.m */, + ); + name = Plugins; + path = Plugins; + sourceTree = ""; + }; + 8B11D6802FC09C19066A17235A404BA7 /* core */ = { + isa = PBXGroup; + children = ( + C50B2DC7B1D03CFFCDFC983C705BB30E /* platform */, + 662EB4D1C14F8AA2C5837B9A29621ED1 /* ReactCommon */, + ); + name = core; + sourceTree = ""; + }; + 8B842BB44F8224928F375A7E2EB8FBE5 /* Pod */ = { + isa = PBXGroup; + children = ( + A3C360852FD0472C6619B4C887EB5796 /* LICENSE.md */, + 0BE000220127DEB6910FDC7390249D2C /* README.md */, + 7B2FFA910A38768736885FE35A5CF89B /* RNDateTimePicker.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 8BE1167B2B8A3E0BD71765D5B993230B /* Support Files */ = { + isa = PBXGroup; + children = ( + EFF316F1C4228437B26E8ADBDF40A0F0 /* react-native-webview-dummy.m */, + C6BD62929306BF4418698C2A220A1675 /* react-native-webview-prefix.pch */, + CD8B8724B348C3772D9565D61F8A3846 /* react-native-webview.debug.xcconfig */, + CAF267891123E2841781DC5673196785 /* react-native-webview.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-webview"; + sourceTree = ""; + }; + 8CA6E9AD93919F4231A819BECD1E257E /* Singleline */ = { + isa = PBXGroup; + children = ( + E213DA801612E3BBF9E1C0B2821BD9CA /* RCTSinglelineTextInputView.h */, + E60B63962F0015EBE01DA39997A2EC56 /* RCTSinglelineTextInputViewManager.h */, + 5ACE5409F7D0811D41E16155430497AC /* RCTUITextField.h */, + ); + name = Singleline; + path = Singleline; + sourceTree = ""; + }; + 8CCDE0C1317BAD85D95C2EE070994A16 /* react-native-webview */ = { + isa = PBXGroup; + children = ( + 39494CE5C6E65BE2867714886194D196 /* RNCWebView.h */, + 5621347BF283A428BFA1DECDA7C75631 /* RNCWebView.m */, + 58BEA1567C200E7F5F6B279975DF007C /* RNCWebViewManager.h */, + 7505D90D2C884C300D75B003B59BB35E /* RNCWebViewManager.m */, + DA0734961EB066403A23D40DD5CB7F39 /* RNCWKProcessPoolManager.h */, + EDCEE072649FFB5B0DD762223223B843 /* RNCWKProcessPoolManager.m */, + 9E1A7244B70573A31111DF9E6084F55A /* Pod */, + 8BE1167B2B8A3E0BD71765D5B993230B /* Support Files */, + ); + name = "react-native-webview"; + path = "../../node_modules/react-native-webview"; + sourceTree = ""; + }; + 8D1C566FFF4721FE4113138C0C3A9B01 /* React-RCTAnimation */ = { + isa = PBXGroup; + children = ( + 05DDF222C3236A930FA1D2041D5FB6DF /* RCTAnimationPlugins.mm */, + 2A3F22FAC952E5430A805F4537973541 /* RCTAnimationUtils.m */, + 6CADFA2A40FBABA870ABD822D9B135E7 /* RCTNativeAnimatedModule.mm */, + 85E37AF30AB738B8B5EFA1D488C0E827 /* RCTNativeAnimatedNodesManager.m */, + E65DF580CDF8C63ECECC8CD73F27ABBF /* RCTNativeAnimatedTurboModule.mm */, + 7F464A4DA76C89FA2F27058CD6700BB0 /* Drivers */, + 06254E569651D28305BFE2D742C32E4F /* Nodes */, + A3C8E6D48394621B1A1DF7473CDE20E2 /* Pod */, + 25E311ECE3341C0A076F3113BF6D46A2 /* Support Files */, + ); + name = "React-RCTAnimation"; + path = "../../node_modules/react-native/Libraries/NativeAnimation"; sourceTree = ""; }; 8E3B9973267DC0A13BA8F6ED59216B83 /* OpenSSL-Universal */ = { @@ -19089,48 +19638,69 @@ path = "OpenSSL-Universal"; sourceTree = ""; }; - 8F13E1E3A5CDD478758C84399C855DBE /* Source */ = { + 8E5A32E3DE7F8BBF28366A1F99BCFEA5 /* Metadata */ = { isa = PBXGroup; children = ( - 307BD94642C75D44547CC1A0B7A6A44A /* KSCrash */, + D50DC825479EC74D8D93ED11C4676228 /* BugsnagMetadata.m */, + CB4CB6D66748FA47C30357F2544B39B2 /* BugsnagMetadata+Private.h */, ); - name = Source; - path = Source; + name = Metadata; + path = Metadata; sourceTree = ""; }; - 902D5787558EAD024A9B8A02BFA047FD /* Support Files */ = { + 8F4C90FB99E53B9B60D9F2F00BA23EE5 /* Pod */ = { isa = PBXGroup; children = ( - D3CE76F3A02E877482F1A9980ECEC0FC /* React-jsinspector-dummy.m */, - 6BD7928662171E9A101EEB078942B3DD /* React-jsinspector-prefix.pch */, - F00899E66E34485DE0A2299A6085CADF /* React-jsinspector.debug.xcconfig */, - 94D1D16999BD3D586617610D38C1ABE4 /* React-jsinspector.release.xcconfig */, + 012F7D3D195DCD3E5316D4D1A7C43311 /* LICENSE */, + E118F6858BCEB19DF7DC045DC499869C /* README.md */, + 174DD3D3F2A5FB69D295E69B39EFB6B5 /* RNDeviceInfo.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 8FCF92E88EA049BECAD6F86AFBFF76E0 /* UMAppLoader */ = { + isa = PBXGroup; + children = ( + 8CAFCFDEAC634A6E70497DD50AFA9962 /* UMAppLoaderProvider.h */, + 042CB045CACE7AFFA4B656B882496E4A /* UMAppLoaderProvider.m */, + DC7BC3BFF6BD1DE54E68E50885C12FE6 /* Interfaces */, + 8873D04DE1D823D5C51BAC6BC6789EA1 /* Pod */, + 2082BB99107B3B538C2E9FFC0E7A5C1A /* Support Files */, + ); + name = UMAppLoader; + path = "../../node_modules/unimodules-app-loader/ios"; + sourceTree = ""; + }; + 90847C147529FEF4F28E023947EEBBB2 /* Pod */ = { + isa = PBXGroup; + children = ( + 3747165E54B4A958F377DCBB8451B514 /* LICENSE */, + 0CC82E01F851714C90267C7A7995661C /* README.md */, + CFDAAEEE30F471C4329F59C88696B0DA /* RNFBAnalytics.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 90CF9D6D768FDE2512049DD1C5E5A451 /* Support Files */ = { + isa = PBXGroup; + children = ( + 467A1C2E44EBBD5913A8C578602C5AAE /* EXVideoThumbnails-dummy.m */, + F57E1E3DCF37995386576E9CD9D1DCE9 /* EXVideoThumbnails-prefix.pch */, + 1407654FC107F76BB7A3E5B2DD9081B5 /* EXVideoThumbnails.debug.xcconfig */, + 236AF881401FAE128FAAC3B0FA3F256F /* EXVideoThumbnails.release.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsinspector"; + path = "../../../ios/Pods/Target Support Files/EXVideoThumbnails"; sourceTree = ""; }; - 904B6044DFA1666B83826CC9326BE41B /* EXLocalAuthentication */ = { + 910422524195BA4E7726E48984121CCA /* Pod */ = { isa = PBXGroup; children = ( - 05C66A3D5FC990AAA07F76097B5D73B7 /* EXLocalAuthentication.h */, - 48FE8DD4BFEB046D5CAE3925E26CB412 /* EXLocalAuthentication.m */, - E6838F4C773399736265118E29E6DDFD /* Pod */, - 6270032C442E8859A785FCEB6E4E74C8 /* Support Files */, + 58963096519D6C779211460CABBD94E7 /* LICENSE */, + B199080EDD3C366AAB586045837DF903 /* react-native-blur.podspec */, + 651A8F3131951CB6910C3BC1B587DEA4 /* README.md */, ); - name = EXLocalAuthentication; - path = "../../node_modules/expo-local-authentication/ios"; - sourceTree = ""; - }; - 90E377E67D5E46E74FE4A6B6906C2757 /* UMModuleRegistry */ = { - isa = PBXGroup; - children = ( - 01FCDDB5C09C127AAA859258FFA2F7EC /* UMModuleRegistry.h */, - 143E389C23923EC6E2542B364C169BF0 /* UMModuleRegistry.m */, - BC55492F67F7B349D7F6491C001E6415 /* UMModuleRegistryDelegate.h */, - ); - name = UMModuleRegistry; - path = UMCore/UMModuleRegistry; + name = Pod; sourceTree = ""; }; 922BB6498D6D5011745AD9FBB7727AF4 /* FirebaseCore */ = { @@ -19185,34 +19755,135 @@ path = FirebaseCore; sourceTree = ""; }; - 93140FB97E50958277BAE079523879CC /* Support Files */ = { + 929F25571593985667AC183E1D7A61D9 /* SurfaceHostingView */ = { isa = PBXGroup; children = ( - 3FC16B5822CD807AF238E1A6F803F523 /* UMFileSystemInterface.debug.xcconfig */, - 3887FE44B2700E96BB40055055196F7A /* UMFileSystemInterface.release.xcconfig */, + 6F7DD3947C6404858F17C6C80EC228E4 /* RCTSurfaceHostingProxyRootView.h */, + FB66E981678899432AAEE22D2D1F4B7F /* RCTSurfaceHostingProxyRootView.mm */, + D8E85493FCB78658F657C88B19877EB1 /* RCTSurfaceHostingView.h */, + 940D3485BDD3CAB77D10FE84E6AEE696 /* RCTSurfaceHostingView.mm */, + BDCD4150CA90CA54D93291168F2D3975 /* RCTSurfaceSizeMeasureMode.h */, + 1DE1EF90DC2BBDA0ABA8208EFED815A0 /* RCTSurfaceSizeMeasureMode.mm */, + ); + name = SurfaceHostingView; + path = SurfaceHostingView; + sourceTree = ""; + }; + 9383F13425AE7D54C5688CD630FFD090 /* Profiler */ = { + isa = PBXGroup; + children = ( + 168E250D320FDE86CCB24E146A6487D0 /* RCTMacros.h */, + E5D28F0A61F7D7F137B1FB7DCFDA4210 /* RCTProfile.h */, + BF6A49E6A21E30BB62BAC2885B08D2F2 /* RCTProfile.m */, + 2714A8AFC726F79408724707E031F80F /* RCTProfileTrampoline-arm.S */, + C23E608D6ECDE8DAF3600B13F5FD8ABC /* RCTProfileTrampoline-arm64.S */, + 2A8F95830D3F54E598653D2A822A45C8 /* RCTProfileTrampoline-i386.S */, + 04CEC819B28EEF081FB1A60A969A8641 /* RCTProfileTrampoline-x86_64.S */, + ); + name = Profiler; + path = React/Profiler; + sourceTree = ""; + }; + 939B385E714B3CFFB1E4B4E720A6D295 /* Base */ = { + isa = PBXGroup; + children = ( + 7EECDBA9C2689D8B2D852984061BAE5C /* RCTAssert.h */, + 441502CC4AA123448A17A4F45A9351DD /* RCTAssert.m */, + 761D2449B1CD7B8FA9187B26166B2AC4 /* RCTBridge.h */, + D4962E415A146278EC19A739E2A05AA7 /* RCTBridge.m */, + F9DD0BC61611D57C9D11D949E99F4721 /* RCTBridge+Private.h */, + 0158C3C5F6B59D4937DE62B2199DE0AA /* RCTBridgeDelegate.h */, + 759E76BF4E0BCEEDF0710C73EE7060A9 /* RCTBridgeMethod.h */, + 03ABA597EB18982DC357D7D005E5E3B1 /* RCTBridgeModule.h */, + DFBC3A559DA99D3C1938A7085FF679F6 /* RCTBundleURLProvider.h */, + 7656DD83199B7D21A2A2AFE76A975118 /* RCTBundleURLProvider.mm */, + 23292AEFC97696E4FD1368554942AD87 /* RCTComponentEvent.h */, + E73576E4DD271746E8BF6040262BEDEA /* RCTComponentEvent.m */, + 0DF7D4E5C52A9D6120E9A575058D3F6A /* RCTConstants.h */, + 99E3822B579F39D825E4D810F4C4351F /* RCTConstants.m */, + A2284343BA5188575777B171B3DF19A5 /* RCTConvert.h */, + 8F14D03B87A58FC1FBE0393BB896B286 /* RCTConvert.m */, + 5478710FAB2D5DE952BA4AE4F25FEC57 /* RCTCxxConvert.h */, + 9DBBB127A1D2B1415678647D1AF3E00C /* RCTCxxConvert.m */, + 0EDA77D1B8F449421DC2532D38292393 /* RCTDefines.h */, + 79BFEF1825847DD28E26539EE299B92B /* RCTDisplayLink.h */, + 60FC3B7F56EDDDD84C2E753CD47A7FAE /* RCTDisplayLink.m */, + 3F8F686F684238FD8D654AA6C5D5B1DA /* RCTErrorCustomizer.h */, + DA75C4879252CC32645B3BD2E5E3AFD2 /* RCTErrorInfo.h */, + C572FF6900F516C43191EAD1DD36F938 /* RCTErrorInfo.m */, + E4111FAF4E1B43ADB06B9376F8FA80E8 /* RCTEventDispatcher.m */, + BED751D1A47742D040BC09C13B8E004A /* RCTEventDispatcherProtocol.h */, + 08C0C37735B43D597197AEF6D2CDE1C9 /* RCTFrameUpdate.h */, + 1555779B195006E8667B063A0B6672BF /* RCTFrameUpdate.m */, + 226310A8D5AB574DE177101E74A1DE17 /* RCTImageSource.h */, + F317354C786766822DD67A7E191EA343 /* RCTImageSource.m */, + B2A940E26A5A7DA164A5F39A2B057952 /* RCTInvalidating.h */, + 89D1E92791BD83D34D81B52060907553 /* RCTJavaScriptExecutor.h */, + 9CFA170F05C3C601903D7C2A7A727F25 /* RCTJavaScriptLoader.h */, + 68C9E6D3EB09E903470E81DBF85202E6 /* RCTJavaScriptLoader.mm */, + 11F4D1232243030A9C086F45393EDA6A /* RCTJSInvokerModule.h */, + 8DC86699D7FF06D9AC2D7824184FFD21 /* RCTJSScriptLoaderModule.h */, + 60914E3939A0BE01C52CB41770FDFB11 /* RCTJSStackFrame.h */, + 4F49D2F2C2B99010A57070BFAB8D543D /* RCTJSStackFrame.m */, + 992DD574BFA6E0642113BB1C117173AB /* RCTKeyCommands.h */, + 614947D4527A86D0737DD42B9A20A26A /* RCTKeyCommands.m */, + D900AC4A16FB055481C7D4BB42394972 /* RCTLog.h */, + 3D16741B2FF5CADCB83B655457C3DF69 /* RCTLog.mm */, + 07A9DC99CB96BC7EB1CBC7EFF6B4718A /* RCTManagedPointer.h */, + 8AD0F0D4592049D910132658A22E08AB /* RCTManagedPointer.mm */, + B2AD51EBD6D9EED1E920D3576E9CD20B /* RCTModuleData.h */, + 9F7C36C1C750664D152408323FD6AE48 /* RCTModuleData.mm */, + EA449C581CDD206DD064779B64A3A908 /* RCTModuleMethod.h */, + FA40170E5CE0A56BEF48BE0B6D7955AA /* RCTModuleMethod.mm */, + 735F9214AF5AF9C5F1500BB498DBDC15 /* RCTMultipartDataTask.h */, + C637D5D18B465F42A4FE037A2B898D4C /* RCTMultipartDataTask.m */, + 6E00A3B55B15D71B2CD3B55336524196 /* RCTMultipartStreamReader.h */, + EF976FDB7A999CA6E88171129823FFF7 /* RCTMultipartStreamReader.m */, + 146111A52CB56AEC590C1C250424F771 /* RCTNullability.h */, + C1E1432BBE969A04A27A1692A1197129 /* RCTParserUtils.h */, + DC3AB289AEEAE80022BC8C183E917049 /* RCTParserUtils.m */, + A8D24D469956C8F6DAEE7C47B001D415 /* RCTPerformanceLogger.h */, + 76DC70ECDB4F06A59740A2EF006983BE /* RCTPerformanceLogger.m */, + 82205CE222B6E04489CA0E4B9CB5DABD /* RCTRedBoxSetEnabled.h */, + 2DFFAD9F41C6A92527EED93D7F1EB23C /* RCTRedBoxSetEnabled.m */, + 67B0B5C0025E7B120F21C60622927C4C /* RCTReloadCommand.h */, + 84EC04911BB9E6D9B7856568B9938009 /* RCTReloadCommand.m */, + B6D4F2FE824E43B1277BA6B136BEC7B6 /* RCTRootContentView.h */, + A762AC50A28DDAF26213B122E713022B /* RCTRootContentView.m */, + 2A9DA7B3DEEF2490D3AFF80D02558599 /* RCTRootView.h */, + 8040A7E3C4F4E92E5B9FC6E74CD3B7B0 /* RCTRootView.m */, + F22CCC95CE1E45D47814E4D6F87F62FD /* RCTRootViewDelegate.h */, + DC257BCEEAB24E409CAE1A8E70D2C27C /* RCTRootViewInternal.h */, + B50DE8C8F2A19864483D8FC8DD07475B /* RCTTouchEvent.h */, + 617B784FD1DFF9097BAFE1E2344EB943 /* RCTTouchEvent.m */, + 237391D445AE6C2688DAFAFABEDE9202 /* RCTTouchHandler.h */, + 40C245091BB61392A5C0FEFAF15BF406 /* RCTTouchHandler.m */, + B315AC002517DB5B0E4BB7730C693375 /* RCTURLRequestDelegate.h */, + F5C24A28F7BE299202A4BE137E4D7B83 /* RCTURLRequestHandler.h */, + 6FFAD7ACA0EE339C6FAE4005EA9B3FC7 /* RCTUtils.h */, + E4A6BA210B4EFD203AABF20E4E4B840D /* RCTUtils.m */, + 1B21BCAB8E12847B8E6F62ADC277BB13 /* RCTUtilsUIOverride.h */, + A968324B0784C8F950C8F9ED1FEECC6C /* RCTUtilsUIOverride.m */, + B3DCE9A7714DB904FBF656639EC14D50 /* RCTVersion.h */, + 9227C3987BC3C6437A9CA0B0FE0DC784 /* RCTVersion.m */, + ED30428981B0CC60BB4328E0F7C7F14A /* RCTWeakProxy.h */, + A1A2C8C7FD4B43B1CCE15E34F066D5BD /* RCTWeakProxy.m */, + 1735DB7DC7AEF560880AFDB0920B82DE /* Surface */, + ); + name = Base; + path = React/Base; + sourceTree = ""; + }; + 9401049CC091D20F3E832BE0538542FF /* Support Files */ = { + isa = PBXGroup; + children = ( + 2787A45A8735757BF89DF8998E247CF0 /* RNCAsyncStorage-dummy.m */, + AD2FF0BAAA560F5B8DBBE1906D7FD106 /* RNCAsyncStorage-prefix.pch */, + BAB84396E1439CFE9B9D46D2E892FB4F /* RNCAsyncStorage.debug.xcconfig */, + 4A764BEE14BC35267D9FD25C78F6BB89 /* RNCAsyncStorage.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; - sourceTree = ""; - }; - 947ECF290A4ACF80E01A9C3892530837 /* Filters */ = { - isa = PBXGroup; - children = ( - B9F268B576CA5D1D929CE9A592F8E017 /* BSG_KSCrashReportFilter.h */, - 720A0875F70D1778F0D2AAA94D3AFD34 /* BSG_KSCrashReportFilterCompletion.h */, - ); - name = Filters; - path = Filters; - sourceTree = ""; - }; - 94AF627A010DF435275439EB61B0A46A /* Pod */ = { - isa = PBXGroup; - children = ( - 33B010E5309147E701A211739B553C01 /* LICENSE */, - CB181C4A3E95186CA8DD5CAADB017AC8 /* react-native-cookies.podspec */, - 9D043E27E48AB8652E91B80E8D2524AB /* README.md */, - ); - name = Pod; + path = "../../../ios/Pods/Target Support Files/RNCAsyncStorage"; sourceTree = ""; }; 953F7986D74856987774973FCCB9DA59 /* Support Files */ = { @@ -19226,14 +19897,13 @@ path = "../Target Support Files/FirebaseCore"; sourceTree = ""; }; - 95525B4B010E0FCD540BBADF631F07AD /* Support Files */ = { + 9551023A9ABE6695D0ACF46D95AD29DE /* vendor */ = { isa = PBXGroup; children = ( - C5C049906CCD97A7AFF4F522471EB6F7 /* React-runtimeexecutor.debug.xcconfig */, - EF055E5FCB222583430BE1F56A5645BB /* React-runtimeexecutor.release.xcconfig */, + 34530DD0B832E4C99BD44D019F8225FC /* bugsnag-cocoa */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-runtimeexecutor"; + name = vendor; + path = ios/vendor; sourceTree = ""; }; 95C2B1AB6A1E297FCF2D154CE0138FEC /* MMKVCore */ = { @@ -19305,28 +19975,30 @@ path = MMKVCore; sourceTree = ""; }; - 9696557A33BC5493F42BCFE5C0F3D61A /* UMFaceDetectorInterface */ = { + 980EAE587987D45F974EF3986B1DB46F /* Modules */ = { isa = PBXGroup; children = ( - E0BE94408271627FF9673CFDA53CF690 /* UMFaceDetectorManager.h */, - 8DE187ED16CAF294C0AF77385CBB0D28 /* UMFaceDetectorManagerProvider.h */, - 1B6E6B8C1802C573934739FE35FCB945 /* Pod */, - CB2DDA8F9817C102433CCD630DBF73EC /* Support Files */, + 9942BE296BDC9338E1E5B26D1CFF0853 /* RCTEventEmitter.h */, + EA885519C9B954A79F80E54872CB9A51 /* RCTEventEmitter.m */, + 355D6578FE6CE7A9FFF81C56C9A18088 /* RCTI18nUtil.h */, + 9BFF8F1D045AC3CDC40AF33C85E5F676 /* RCTI18nUtil.m */, + 550F4A1CB3049209E177D33601E9B7C0 /* RCTLayoutAnimation.h */, + DACBA26AE500A3366C8A944D81FB5518 /* RCTLayoutAnimation.m */, + E2E3E7B7F4020EE3A3F8B639ACC00310 /* RCTLayoutAnimationGroup.h */, + 077BEFF3805136F3DA0C317B2C868616 /* RCTLayoutAnimationGroup.m */, + D6BB52881A2A5900E7C1260BC6523D0A /* RCTRedBoxExtraDataViewController.h */, + 1F19CC5C35BF909ABD4BC370AB26FF49 /* RCTRedBoxExtraDataViewController.m */, + EA8A071B5F6B8CB45234079D7A7C9042 /* RCTSurfacePresenterStub.h */, + CC799336E05389500EC88E957FB42160 /* RCTSurfacePresenterStub.m */, + 781C339E09C3A84606F79E7D18E333E6 /* RCTUIManager.h */, + DE10C5B336D195F78AE3691779E4C990 /* RCTUIManager.m */, + C7A950D965978616E154B786E20C04CE /* RCTUIManagerObserverCoordinator.h */, + CA5B2F76C7122E579D86F19EDCFF9E89 /* RCTUIManagerObserverCoordinator.mm */, + 9F347E42EA64B7AFE343CE9A4E497834 /* RCTUIManagerUtils.h */, + 31D0FBC843D7D2564E682644B2AA4E9C /* RCTUIManagerUtils.m */, ); - name = UMFaceDetectorInterface; - path = "../../node_modules/unimodules-face-detector-interface/ios"; - sourceTree = ""; - }; - 96997EFEA14B213BCCAC932FE24DAA2A /* RNRootView */ = { - isa = PBXGroup; - children = ( - EAE2B81DBA120D7E747A5AD6AA066AFE /* RootView.h */, - 1E6F67CA2E68EFFC32D7EE11D61642A2 /* RootView.m */, - 28D3EEF9DCFF9823CD9F4B165B703235 /* Pod */, - BE3F1DEAEE3185292D9A5B79EC701EFF /* Support Files */, - ); - name = RNRootView; - path = "../../node_modules/rn-root-view"; + name = Modules; + path = React/Modules; sourceTree = ""; }; 98686B7ADD52CE21AF3F1261B62CFA12 /* FlipperKitNetworkPlugin */ = { @@ -19348,86 +20020,63 @@ name = FlipperKitNetworkPlugin; sourceTree = ""; }; - 98751AAEA77B004C9FCBEE66C8906B39 /* Pod */ = { + 995F9E2F0B69506652E782FC65C4A6C6 /* EXVideoThumbnails */ = { isa = PBXGroup; children = ( - 85BE3D93383E5DF47337EFEDF0B147CE /* React-RCTVibration.podspec */, + 55D1B6B22130A6906F858A24EBA49AC0 /* EXVideoThumbnailsModule.h */, + 3F633FC9A4ECFED62A7161EF40385593 /* EXVideoThumbnailsModule.m */, + A625D0C50CDB5C67B97EE9FB239AEF77 /* Pod */, + 90CF9D6D768FDE2512049DD1C5E5A451 /* Support Files */, ); - name = Pod; + name = EXVideoThumbnails; + path = "../../node_modules/expo-video-thumbnails/ios"; sourceTree = ""; }; - 98DE8E107643BC2A03ADDB69A01C6C4A /* RNVectorIcons */ = { + 99E18A6BC79341D155808C49D93EDFA4 /* inspector */ = { isa = PBXGroup; children = ( - 80B975273860E25E1DAB2C561454F27C /* AntDesign.ttf */, - C0AB65C664ED1814B7A1E5B08C291225 /* Entypo.ttf */, - 76FD7112207DB1C9B17F1193EA7E776A /* EvilIcons.ttf */, - 3346FF67145C187B9491C33D8E1FAA88 /* Feather.ttf */, - 9515691705DAF49B870456AFFCB1D00A /* FontAwesome.ttf */, - FD28A8882BD06CC87979E71078B83948 /* FontAwesome5_Brands.ttf */, - E805D63EBA71446C6BECDF52461B8C20 /* FontAwesome5_Regular.ttf */, - 2B58B7448722BED0C6800E8187B513A2 /* FontAwesome5_Solid.ttf */, - E04BE28D2027980BC4DC353A469EBC47 /* Fontisto.ttf */, - A7F3511723A12A9CDC899D1E9BB1BECE /* Foundation.ttf */, - F09808FC292CB23AD7C070784D52E2BC /* Ionicons.ttf */, - 04BA2269E354705B8524EFE2844A48E4 /* MaterialCommunityIcons.ttf */, - 0ABF89FF080EE282ED4B7A859AECEE96 /* MaterialIcons.ttf */, - A536E114B563FA7AE1B7C5A311F93CF7 /* Octicons.ttf */, - C01B27188AFF10B82D920091FF802AB1 /* RNVectorIconsManager.h */, - 4424569666BFAAF9BAFA2791F9CB4300 /* RNVectorIconsManager.m */, - 5016BD9FE0F8CC633BB29FD109481A3C /* SimpleLineIcons.ttf */, - 6DB5AC5E0BDFD084B5EC2322AD4CCB7A /* Zocial.ttf */, - E16D5F778A349FF6788C198C928DB8B4 /* Pod */, - ABD17C2453FE3A315572C79FAA5B5CB2 /* Support Files */, + 17B2D7D6EB299F30ECB668D48EFFC693 /* AsyncPauseState.h */, + 55294EC3E504C8BA006BB2B2EBA6DAC8 /* Exceptions.h */, + CCE6F0D85D54A00E182C45B6F5C344B2 /* Inspector.cpp */, + 16CE48BF7953C0C2AE3725FB0BA0A62C /* Inspector.h */, + 8D4C7E239FF2B59CAAB77967C86A9E05 /* InspectorState.cpp */, + F2A83070D76D4896271A32C9846E7EAC /* InspectorState.h */, + 74DB06B63902EA9FEA6180E8CEF465B4 /* RuntimeAdapter.cpp */, + 2EB2ED7BBB8478C051F527DDEF79EC6F /* RuntimeAdapter.h */, + 6222957EB3ADCA91D72DBFA80FDDCD9F /* chrome */, + DBCB00A3035149DC0C19D83FDDD1B3B1 /* detail */, ); - name = RNVectorIcons; - path = "../../node_modules/react-native-vector-icons"; + name = inspector; + path = ReactCommon/hermes/inspector; sourceTree = ""; }; - 98EFA8A17728C26B959353FB6E53CC69 /* RNFBAnalytics */ = { + 9A31E10A47336F778AC987F4BED75802 /* DevSupport */ = { isa = PBXGroup; children = ( - E6BEB6A913EA1B4BB2719C94086407B4 /* RNFBAnalyticsModule.h */, - 0F8EE3835CE05DB6F767B7E0664CEB0E /* RNFBAnalyticsModule.m */, - 7CF3F60D68841FCC7BF9E1F954CFCF3C /* Pod */, - 881CCDE37D7C7D569598D96164DBB326 /* Support Files */, + 8DF9154B625CDF64054C782A8A018631 /* RCTDevLoadingViewProtocol.h */, + BCABB017733DA167CDCE49C71D027269 /* RCTDevLoadingViewSetEnabled.h */, + 9CB068C3C1090FBC4AC6414F186E9BE8 /* RCTDevLoadingViewSetEnabled.m */, + DD6B376F981D957E30F8608A3BD3C449 /* RCTInspectorDevServerHelper.h */, + 3A45D48E274BFCE3C858D392D9F949CA /* RCTInspectorDevServerHelper.mm */, + 95C952DEB1AD9F4915CC2757BC264465 /* RCTPackagerClient.h */, + E884679A003053FDD31145859496BA59 /* RCTPackagerClient.m */, + 26DD49E2C4934CD535EFBBAABC571FE2 /* RCTPackagerConnection.h */, + 31E6E9ED526B2A75CD508972807E3085 /* RCTPackagerConnection.mm */, ); - name = RNFBAnalytics; - path = "../../node_modules/@react-native-firebase/analytics"; + name = DevSupport; + path = React/DevSupport; sourceTree = ""; }; - 990FB92901F318BD008341889694D453 /* Text */ = { + 9BD031E9FB115C1968702E67B4DD73A4 /* executor */ = { isa = PBXGroup; children = ( - 91261588DD3C14ABC2E32BA0750BE0D3 /* NSTextStorage+FontScaling.h */, - 800CE32E685228077687AEA7CCFBF170 /* RCTTextShadowView.h */, - 2C2FAC6E43FF96D09BBA247F341B74A6 /* RCTTextView.h */, - 84DDBC06ABC89E2CF6270F907F76C137 /* RCTTextViewManager.h */, + 4D2FBE8FEFA4D8FD974BDC25702872C8 /* HermesExecutorFactory.cpp */, + D746FBE13B9C27EC693E1F439D3AB800 /* HermesExecutorFactory.h */, + BC2640F7778BB7204E46524DA5B3D0EF /* JSITracing.cpp */, + E4B78EBBF959C2EAF87A2DCF877BD136 /* JSITracing.h */, ); - name = Text; - path = Libraries/Text/Text; - sourceTree = ""; - }; - 997659BFDF2A512C5D668B02C752DBFC /* Support Files */ = { - isa = PBXGroup; - children = ( - AAC39A35C4F61ABBF1F785F94861DC58 /* UMConstantsInterface.debug.xcconfig */, - D1214846299FF4548EC7F5C4E9AB3EE8 /* UMConstantsInterface.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; - sourceTree = ""; - }; - 9B523D9745F3E1900B6814463500F74D /* Support Files */ = { - isa = PBXGroup; - children = ( - 513D5AC29B8F51346C2508D16D5F2395 /* RNDateTimePicker-dummy.m */, - A79690253C217899156BDB7F1AAAF81A /* RNDateTimePicker-prefix.pch */, - 3781095AE9AEBCB5543EED223C80F128 /* RNDateTimePicker.debug.xcconfig */, - 1C994F4FA89A2345018D4D4F28B741BB /* RNDateTimePicker.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNDateTimePicker"; + name = executor; + path = ReactCommon/hermes/executor; sourceTree = ""; }; 9C8094292F690C3ABB1610D9E52A3976 /* mux */ = { @@ -19444,188 +20093,50 @@ name = mux; sourceTree = ""; }; - 9D76CB98E0F65FF231AD600B41DBC7D1 /* Pod */ = { + 9CE3319E4DFE9ACAC08AC72447E6FD5B /* Pods-defaults-ShareRocketChatRN */ = { isa = PBXGroup; children = ( - 095DF16A4B973E69F2285E16AE5EFA6D /* LICENSE */, - 5CE89E55A272534E50ECB568DA41EA28 /* README.md */, - 4362EF020BB9A08D93EC9E4761DE2237 /* RNBootSplash.podspec */, + 96A1B13CFB04DAA12DE0D1E20735CAC2 /* Pods-defaults-ShareRocketChatRN.modulemap */, + 23184605EDB0FADD68E38564BD9EFDE2 /* Pods-defaults-ShareRocketChatRN-acknowledgements.markdown */, + BB8773C73020DE6FA186648CE2DA3F3A /* Pods-defaults-ShareRocketChatRN-acknowledgements.plist */, + 2FF5404F59DB9379D3ECCB28F24BAFA3 /* Pods-defaults-ShareRocketChatRN-dummy.m */, + 79FF51D4FDAC160E28C8A3F34D2E45C7 /* Pods-defaults-ShareRocketChatRN-resources.sh */, + 8DA65FEB8FD5849A062819A27B8A4586 /* Pods-defaults-ShareRocketChatRN-umbrella.h */, + 41ED38A68DA467AB533D7CF924B6A63F /* Pods-defaults-ShareRocketChatRN.debug.xcconfig */, + 96E43DC63C396465E31AA7FE8FC7A14B /* Pods-defaults-ShareRocketChatRN.release.xcconfig */, + ); + name = "Pods-defaults-ShareRocketChatRN"; + path = "Target Support Files/Pods-defaults-ShareRocketChatRN"; + sourceTree = ""; + }; + 9D565FDAA5E52962D5D1A74FE2740313 /* Pod */ = { + isa = PBXGroup; + children = ( + 6CBD09F71E3B527302EF7324C4215788 /* EXImageLoader.podspec */, ); name = Pod; sourceTree = ""; }; - 9D91796F48A98E8E7CD4B9582AB71BA9 /* Pod */ = { + 9E1A7244B70573A31111DF9E6084F55A /* Pod */ = { isa = PBXGroup; children = ( - 48B3E535497202325EB89BD41651A560 /* BugsnagReactNative.podspec */, - F973876B2813A1AFAEECA1082BB53619 /* LICENSE.txt */, - 566DB4CA0926FF5EA43B7B86012DDEB2 /* README.md */, + 6CF745EDA739D9C3E1176587CBC2416F /* LICENSE */, + 52F252E0F0B192B8B9210D9400720D55 /* react-native-webview.podspec */, + A05F3C56018FFF610BB63324E31E4CD3 /* README.md */, ); name = Pod; sourceTree = ""; }; - 9DB0D3C44A982CC7D6085AEB75D4069E /* Pods-ShareRocketChatRN */ = { + 9EAD96B268B16ABA0F5D8AF18F58FA65 /* UMFileSystemInterface */ = { isa = PBXGroup; children = ( - 7125FF740077098B59A78E66EB1F40FE /* Pods-ShareRocketChatRN.modulemap */, - 2B361608B34C96A6FAB5E98FCEA3A462 /* Pods-ShareRocketChatRN-acknowledgements.markdown */, - F32A0F7045702BDFBAB9059CAD1938C9 /* Pods-ShareRocketChatRN-acknowledgements.plist */, - 81ABB69299E6F3BB892E995CFDCECD7A /* Pods-ShareRocketChatRN-dummy.m */, - 949B140FBE75F86A22077BDC59663BF9 /* Pods-ShareRocketChatRN-resources.sh */, - BAED847E8A22919EDDB894F3B4C38BFF /* Pods-ShareRocketChatRN-umbrella.h */, - EEA4CC9B97D8B1DF863F7448D02747DE /* Pods-ShareRocketChatRN.debug.xcconfig */, - 29A522F564C45BAC1C908C4FA821DD3F /* Pods-ShareRocketChatRN.release.xcconfig */, + 10C29F3BD62122762F636FC1949D2026 /* UMFilePermissionModuleInterface.h */, + 96E4461D9DEA1D2C1CFFB0E9C5177F3B /* UMFileSystemInterface.h */, + BF3FDAC75B9F0DE02856F730C991254F /* Pod */, + 2F90513627F8CF41BECF52C115FB80D9 /* Support Files */, ); - name = "Pods-ShareRocketChatRN"; - path = "Target Support Files/Pods-ShareRocketChatRN"; - sourceTree = ""; - }; - 9E19E2F9348DFD9849B48564552A2757 /* Nodes */ = { - isa = PBXGroup; - children = ( - 7EC13516487926C6336696A51BE2741A /* REAAlwaysNode.h */, - 2434FAD41DFD69B08F8BEC37D4395522 /* REAAlwaysNode.m */, - EC1B6DCFFEA7A4FBF89EB283030251E8 /* REABezierNode.h */, - 312B441FFA6CC93EC133D032A44193E6 /* REABezierNode.m */, - 687E451D04769F753593715A51175ED7 /* REABlockNode.h */, - A024CC3B6B45680CB9404A3D412D21C7 /* REABlockNode.m */, - 6D199D416CB2EE9DF1C8EF4CB6B39AB8 /* REACallFuncNode.h */, - 9B997DCAF1F85412031CF6D4A3BD25D8 /* REACallFuncNode.m */, - 5766F4C74896E331137F2B2E94327B16 /* REAClockNodes.h */, - 1A10BAAA40C57253F593D49C3AD3E930 /* REAClockNodes.m */, - 0F9AB49BA775BC43E5CA501055D065B2 /* REAConcatNode.h */, - CA189323956E570F83670B48623CCB15 /* REAConcatNode.m */, - 68008AE029AA078C70913264227235C1 /* REACondNode.h */, - 79B26C58D06F6696F397C92BF8100E69 /* REACondNode.m */, - B8FBDA93C17934D9703B0468BB9788D8 /* READebugNode.h */, - BC6BEFA45EDA3A3659513A430B566461 /* READebugNode.m */, - 2472208C7EBAD82FE276343C838083B6 /* REAEventNode.h */, - 9AD51F3BD4B05027FEAB1550BB1E9136 /* REAEventNode.m */, - 70D36F7A072F0C872A6C09963F61A777 /* REAFunctionNode.h */, - 1176AA790D76EF871DF55AE6BA8692B0 /* REAFunctionNode.m */, - 2B754C3879846382CAEE216F479D3A81 /* REAJSCallNode.h */, - EA165F94CE279A9A67907B1CAF2847A0 /* REAJSCallNode.m */, - C27A27CBF104DBA4F618D595E00CDEB1 /* REANode.h */, - 974A272B4732005D116BD3E0A4F87873 /* REANode.m */, - 738197BA72E5EF123592C722CA7206FD /* REAOperatorNode.h */, - E1710A20C2C59F20C511135C1A95C503 /* REAOperatorNode.m */, - D898729243217BAEFDBE528BE2FD1605 /* REAParamNode.h */, - D9A71EB31966DA877E7047FB95DC2E9D /* REAParamNode.m */, - 31F09DA1D85F78B3EC755EABF4A0442E /* REAPropsNode.h */, - 46863C2F43604E20A65950938765D26B /* REAPropsNode.m */, - AF6FA799535FC9D7416AB0DAB4B8D253 /* REASetNode.h */, - 47E86F3C39AFA523236DE69000D99039 /* REASetNode.m */, - CC2E2316D9B46A4AFE64A3079C8523B7 /* REAStyleNode.h */, - 88F21242C0569DF77EC652CB7E45B984 /* REAStyleNode.m */, - 07B15FE024C9E7893EADC20A970C1118 /* REATransformNode.h */, - 212CF5559DCE659E3DA99B08DDCD4DF5 /* REATransformNode.m */, - 8ADBF4015F18DAC6EFEB1C77982055D7 /* REAValueNode.h */, - 64AF78F1D3EAA55B4FB07910063FCB39 /* REAValueNode.m */, - ); - name = Nodes; - path = ios/Nodes; - sourceTree = ""; - }; - 9E56DF00BFEC83E14B493CF337DBC260 /* Base */ = { - isa = PBXGroup; - children = ( - 4DB4056F368C6E1AC8C74F2FD94324CB /* RCTAssert.h */, - 824CAF3A35BC6BD51DB86FA0F25AF6CE /* RCTAssert.m */, - 85EFD9F3442332557D08D6F064A12543 /* RCTBridge.h */, - A7A9522E1E7B0B0C275E740A2408C915 /* RCTBridge.m */, - 793356BA3841923C3ACCC6E6566E9430 /* RCTBridge+Private.h */, - 8E61AF000568669A5DFC17B3D86DFB08 /* RCTBridgeDelegate.h */, - 3CCB552BE9C6ECDBB89B41EDE178BAAB /* RCTBridgeMethod.h */, - 2979DA3846E886A4084515E8DA2D76C7 /* RCTBridgeModule.h */, - 353DF073CC553032BE78A83B80FC753B /* RCTBundleURLProvider.h */, - 78D716DADEB39698A894597E74CFAFA7 /* RCTBundleURLProvider.mm */, - 3501A0E8858D7CA4FFF44669F44ABF9D /* RCTComponentEvent.h */, - AC3C3D8DBAF302326DE669BA3ABAE32E /* RCTComponentEvent.m */, - 1E584945219F2EB096D01C32679825BA /* RCTConstants.h */, - 21388477A56F552239D112322AC081BB /* RCTConstants.m */, - CCEEA28921CC882E7F2C4CD6B212EA3A /* RCTConvert.h */, - 82420E82EA187A1162875A5F912F175A /* RCTConvert.m */, - C153E83D4524A1906529FBE5394FE0E0 /* RCTCxxConvert.h */, - E3165A86725B1DA8D972E6E700065F37 /* RCTCxxConvert.m */, - C237AB20768CC69CD759CAAD92D7AB9E /* RCTDefines.h */, - 0EA959CEA308ED06E8959B9FFBCDAC17 /* RCTDisplayLink.h */, - CD542ADD828F6AEDC04180B6A7B34DF2 /* RCTDisplayLink.m */, - 297D994A28C40381F01D04E1A3214B05 /* RCTErrorCustomizer.h */, - C04327EB36D86E879F8C07676C4A3C0A /* RCTErrorInfo.h */, - 7CF6E3597138D19F6B45E31897D0DD4B /* RCTErrorInfo.m */, - 93DAA541CC6780D4B35C40AEE7CC080B /* RCTEventDispatcher.m */, - 384B421008057686598A7C179F7362BA /* RCTEventDispatcherProtocol.h */, - D93972543FAD83E00B61839C320B2369 /* RCTFrameUpdate.h */, - A0551E48E92BD6576A199ED5EB441D53 /* RCTFrameUpdate.m */, - 2C95F26847F307E7DCEB16772ED927A1 /* RCTImageSource.h */, - 0D94AAAB58755734FE0BBD60EB354D4E /* RCTImageSource.m */, - 5E9036CFB2799E65E288D45785C8D208 /* RCTInvalidating.h */, - 34634161DA346CAB6C7B657B670CBFAA /* RCTJavaScriptExecutor.h */, - 5EDAEF49F6BF9D3DA5503E36236593FD /* RCTJavaScriptLoader.h */, - 3CBF266631DC8FAE9338AB776552C3E2 /* RCTJavaScriptLoader.mm */, - 25070A437821F373BFD985C4F1F101FC /* RCTJSInvokerModule.h */, - 64F83F66DCCD6256DEE11988E3EADB11 /* RCTJSScriptLoaderModule.h */, - 5F669730EEE8E6B98C2C7F778D951E3C /* RCTJSStackFrame.h */, - 4C7A72327D475A8B2D86CB2E11B72B13 /* RCTJSStackFrame.m */, - 2BD87FC771BB04231CE2D088E7AA9AA1 /* RCTKeyCommands.h */, - C409ECF3326345D59B43852F76F6CB08 /* RCTKeyCommands.m */, - 090A1EA6900D26D1A431D93BA3F93FF7 /* RCTLog.h */, - 34AE617DAB12D0E38735A72FED407BE4 /* RCTLog.mm */, - 4F840D78C1614BED3C1CE73DA8088F55 /* RCTManagedPointer.h */, - 0AEA24A30B4761E52D38C1A32368E428 /* RCTManagedPointer.mm */, - 73E3623C7BA84609B7F9153744E6C7A6 /* RCTModuleData.h */, - 04CC4CF8166CF2871073943A661DC262 /* RCTModuleData.mm */, - 78565C447D42AA93B9742D7D0974078B /* RCTModuleMethod.h */, - A2F936255FEB6E23D6C4AC199858E081 /* RCTModuleMethod.mm */, - 695FAE585C90D54BF4B116FF4A349829 /* RCTMultipartDataTask.h */, - D93D19030EFC176E09F964D68B313EC1 /* RCTMultipartDataTask.m */, - DEC90F3138BE411B0E1CF8C2770700AD /* RCTMultipartStreamReader.h */, - 1B2891362EEAF617C7B3E48B7AA33E1B /* RCTMultipartStreamReader.m */, - FEDAF5ACD87B214AAEA697830ACF7991 /* RCTNullability.h */, - 53270434087F128640352E5B81C521F5 /* RCTParserUtils.h */, - 83F4BA4B5A456BDCFC98937D539B9D13 /* RCTParserUtils.m */, - 9C1BE94B78666F93E3483BC08C0CD380 /* RCTPerformanceLogger.h */, - 1CEA61F99AC3AB4F84E9BEEC43AF8B8D /* RCTPerformanceLogger.m */, - CCF7C18A0DF37BFD395D66412992153B /* RCTRedBoxSetEnabled.h */, - 3BACC82935E1E9692F2F8809B0DB218F /* RCTRedBoxSetEnabled.m */, - 981EA095E7BCB9C0D4215303F6BB5A4D /* RCTReloadCommand.h */, - 5D1D2EF99CA87FA22276B9092E0609BE /* RCTReloadCommand.m */, - 2E238C762DDC2AD8C15960A05BAA2352 /* RCTRootContentView.h */, - 499211ABA58F4E4365B47BFD78181E5A /* RCTRootContentView.m */, - F163C1A8578037F53699769179CE37AE /* RCTRootView.h */, - 50D1A7BC406CD4E0A549A7972B5922C6 /* RCTRootView.m */, - EC4AE357CC4E7284F37A440FA1D22CF9 /* RCTRootViewDelegate.h */, - 01730D3643EF7DB9F11DD5CEE761D216 /* RCTRootViewInternal.h */, - 620F7BDC04D8C8FC48B1A38DDDA2EE0E /* RCTTouchEvent.h */, - 53B773CFD42773126DAEF28C9EC03409 /* RCTTouchEvent.m */, - C45E5EA84CC055C1FF0BA19EF79B73F8 /* RCTTouchHandler.h */, - 3AF1EDF54E00844F994A82D1B8E59CA5 /* RCTTouchHandler.m */, - 5C1AD67E8F8D80A069E55A5F294A72CD /* RCTURLRequestDelegate.h */, - A5E733117F32B2D1EF037F065EED83AC /* RCTURLRequestHandler.h */, - 4075B0E596DBA2515CC363B4E72837F6 /* RCTUtils.h */, - 802CB453B0BAF36161876899B9C007B5 /* RCTUtils.m */, - 660AEFAFDDB0EDC43EFB550CFB6D835E /* RCTUtilsUIOverride.h */, - 3439454C3088C0170A716389B9D5053D /* RCTUtilsUIOverride.m */, - 86A0D72A3E8E03D802DF437E0C04E8B5 /* RCTVersion.h */, - D44C3D070F917B2053F649C0103F83C7 /* RCTVersion.m */, - 431C91E68C9AE179C2CAFD56C3051B9C /* RCTWeakProxy.h */, - D11EE89D4DD215758F2381A96E377092 /* RCTWeakProxy.m */, - E2CF06BBE35C98E70ABC5AD0AA8A6556 /* Surface */, - ); - name = Base; - path = React/Base; - sourceTree = ""; - }; - 9ED59123529EAE6B2B06F6A284998B4F /* Support Files */ = { - isa = PBXGroup; - children = ( - D8889511B0D210574C8248000184E1E0 /* react-native-orientation-locker-dummy.m */, - 7787B315AF1E178579D9ADAD6A1CA017 /* react-native-orientation-locker-prefix.pch */, - 2D92C9C68EB84BBA051D7858C34F4BF8 /* react-native-orientation-locker.debug.xcconfig */, - 9E02BF9172C3F2F8D7FCDD59FEEEE3C4 /* react-native-orientation-locker.release.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; + name = UMFileSystemInterface; + path = "../../node_modules/unimodules-file-system-interface/ios"; sourceTree = ""; }; 9EDC4943333AC93B4B0A6E28BAECFEB2 /* SDWebImage */ = { @@ -19638,153 +20149,110 @@ path = SDWebImage; sourceTree = ""; }; - 9FE2CF6AD3CBF99D85757CEC02F1204D /* Pod */ = { + 9F36383D72DBF777DCB4FF1C7E4D0CA0 /* DevSupport */ = { isa = PBXGroup; children = ( - 40E720BA850671C501E267E326B391AF /* UMReactNativeAdapter.podspec */, + 9A31E10A47336F778AC987F4BED75802 /* DevSupport */, + 4C499D2B639960FBADB21694E1737622 /* Inspector */, + ); + name = DevSupport; + sourceTree = ""; + }; + 9FB1FC23DE15AFE2E73510A47F631002 /* RCTTypeSafety */ = { + isa = PBXGroup; + children = ( + 6CFF6339FBEA769B1F8F933E9BB6D49B /* RCTConvertHelpers.h */, + FAC8A167DF1A7C0901FE50F1DE77AB71 /* RCTConvertHelpers.mm */, + 0B5104E51CBBF3CC7204A871489BF7FA /* RCTTypedModuleConstants.h */, + 7AF194825F5D1BAADE276FBE93BA8106 /* RCTTypedModuleConstants.mm */, + 6FE9633002568CCB9846A275B09257DF /* Pod */, + 7B037C312B641BA61D9AF131E99A7022 /* Support Files */, + ); + name = RCTTypeSafety; + path = "../../node_modules/react-native/Libraries/TypeSafety"; + sourceTree = ""; + }; + A2EA80D2B861D24F3C4EFFFF75D4A028 /* Default */ = { + isa = PBXGroup; + children = ( + 939B385E714B3CFFB1E4B4E720A6D295 /* Base */, + E77ACC032464D4DCFBB99639A09F92AD /* CxxBridge */, + 2A13D72527B64620BD3DDE11B8E77759 /* CxxModule */, + 5BDB10A43998C1AAB312B64D6D1F2091 /* CxxUtils */, + 980EAE587987D45F974EF3986B1DB46F /* Modules */, + 9383F13425AE7D54C5688CD630FFD090 /* Profiler */, + 291EA66C178E664FC9E1C62C71796E21 /* UIUtils */, + ACE1251AEA98FFF9B51A0825EC78AA44 /* Views */, + ); + name = Default; + sourceTree = ""; + }; + A31D5AD00EAE5341E2F862C116937B96 /* rn-extensions-share */ = { + isa = PBXGroup; + children = ( + 3DD200BF5701502D7B4E9ACFF160CDC1 /* ReactNativeShareExtension.h */, + 6E0611FB660329A962544FF42EC9A319 /* ReactNativeShareExtension.m */, + 0C72D09103A95D8FF37F9A28510E4133 /* Pod */, + 3A51952E40338BFA1F012325F35C9B92 /* Support Files */, + ); + name = "rn-extensions-share"; + path = "../../node_modules/rn-extensions-share"; + sourceTree = ""; + }; + A3C6F98DF7B23B0632926F167871EBB2 /* React-RCTImage */ = { + isa = PBXGroup; + children = ( + 4FE1D3B427082E6E61CC0FE1559311CE /* RCTAnimatedImage.m */, + 193324800AD3DBFE52C49B3E1428D6D4 /* RCTDisplayWeakRefreshable.m */, + 8BEA84648DD179648D9C23A7512E5D32 /* RCTGIFImageDecoder.mm */, + 581B0AD8D2AF95FB3BA0D971E4BE811A /* RCTImageBlurUtils.m */, + C19F872B607A5D258F69243BA87A938D /* RCTImageCache.m */, + E93BF2785F1FCD510171B2995196D697 /* RCTImageEditingManager.mm */, + 827B56C1E939D2F8F150F08DF0948799 /* RCTImageLoader.mm */, + E3FBC406B7914F6D0D0800690D849E54 /* RCTImagePlugins.mm */, + 15D83FE08FADE0344CE2715E708B14D5 /* RCTImageShadowView.m */, + 34AB4B3088C51FCD93965DF27C55C21E /* RCTImageStoreManager.mm */, + F23AD8558F75A3F91F8721E980114C00 /* RCTImageURLLoaderWithAttribution.mm */, + 939CB389DABA0DEE02F6290050EF69F1 /* RCTImageUtils.m */, + 7887E907B8FD1216406FF6C50AD5A66F /* RCTImageView.mm */, + B69F271A5C44B69E65EC9A06D5CF0CA2 /* RCTImageViewManager.mm */, + A296FCCEBB73CBA5F8831A307C3B5D91 /* RCTLocalAssetImageLoader.mm */, + 607B3D72F1D65F0541F6A67178F50A0C /* RCTResizeMode.m */, + 63A78931AA61F6FBBB499A3DEE605446 /* RCTUIImageViewAnimated.m */, + CE15F0ED35AE8D19B52658CA1C0E0D05 /* Pod */, + F641105844363762CA3BBBE07CC08592 /* Support Files */, + ); + name = "React-RCTImage"; + path = "../../node_modules/react-native/Libraries/Image"; + sourceTree = ""; + }; + A3C8E6D48394621B1A1DF7473CDE20E2 /* Pod */ = { + isa = PBXGroup; + children = ( + 3951F28E64B23BE8624297CEEC5690AE /* React-RCTAnimation.podspec */, ); name = Pod; sourceTree = ""; }; - A0985094C3F57D957A06B8DDC8531465 /* Source */ = { + A46028F3C2BF9F9250B1A76C28F447EF /* EXFileSystem */ = { isa = PBXGroup; children = ( - 1698515CD39D5A53E60FAA9E67334E4A /* BSG_KSCrashReportWriter.h */, - 7FB196E790FA568772298C408B335F2E /* BSGConnectivity.h */, - A57A73E6AB00DCA8C0ABA980BE56D3BB /* BSGConnectivity.m */, - 050B7C53220A4001AA3979B6682F4D9C /* BSGOutOfMemoryWatchdog.h */, - 55EACC7566C50B68BA32129DFB49768F /* BSGOutOfMemoryWatchdog.m */, - AE637C50AF3036DAB1F1A4E16FE0CA9D /* BSGSerialization.h */, - B522D15381A52DFEA720761C7E15BB22 /* BSGSerialization.m */, - CF785611FFEAC5B926BCBEB77DC2215A /* Bugsnag.h */, - 7EEB715F7479DC38EE5268AD369FB045 /* Bugsnag.m */, - 4E47B9632C6D7E9318BAA491685EC3DC /* BugsnagApiClient.h */, - 27050B5D12D0FB5C8520C9A4D51377CF /* BugsnagApiClient.m */, - 24ADE51FB900B21561EDDA6C87068860 /* BugsnagBreadcrumb.h */, - E1E25A8A3B994036C24CE93E17563EF3 /* BugsnagBreadcrumb.m */, - 9F404DC7C83384B3C730716C42F2FF4D /* BugsnagCollections.h */, - D04D2B4497FF26DC6A3E500C1A921B86 /* BugsnagCollections.m */, - CDCA6A0235B5F65867C4FA3B8F76C5C1 /* BugsnagConfiguration.h */, - 8D35528CEE3134F3FC43F729A9AD5F01 /* BugsnagConfiguration.m */, - CFB0120437DBF02A9931E932317AF9F7 /* BugsnagCrashReport.h */, - 262A342626B00C10D2647A70E9D7E86B /* BugsnagCrashReport.m */, - B5A4BA67B1548EB00B151EBEDCB2EDD8 /* BugsnagCrashSentry.h */, - 4204176EF5A4030028F636FFD1E8A41B /* BugsnagCrashSentry.m */, - 2FE2345DFF9467DC1D23782D9AA4FFEA /* BugsnagErrorReportApiClient.h */, - 61C3A2D07C40B6FEDB9157CF5121EDB3 /* BugsnagErrorReportApiClient.m */, - 71615F7EFCD256976D549E99131A859E /* BugsnagFileStore.h */, - 0E123675A7D65EE9029D3D4A939EE70B /* BugsnagFileStore.m */, - 682D1DDFE6604C66DC56A6904F4A0CFA /* BugsnagHandledState.h */, - 99D7200E4ABF689DF78C94B4A6B70A6C /* BugsnagHandledState.m */, - CD632382C1D553D44B7141BA22CF18CC /* BugsnagKeys.h */, - 2DF06812AE678B08CA60D0A615011B6D /* BugsnagKSCrashSysInfoParser.h */, - E0B9C3A64724A88E20523B3711864E4E /* BugsnagKSCrashSysInfoParser.m */, - D3D7448B3740B1272A823C4768266D7F /* BugsnagLogger.h */, - 1CAB94F5343E60DDEBA8B5150AECF7DC /* BugsnagMetaData.h */, - 38A55BC79E7DFA2240BE41A0764D2E17 /* BugsnagMetaData.m */, - 222044B638A335E8264C585BF2EB541C /* BugsnagNotifier.h */, - 340844A16372EB83F9981812977C0570 /* BugsnagNotifier.m */, - 502B24EF1B75489596F123D9A8BDFB7D /* BugsnagPlugin.h */, - 4ABF947D7DE03BD959BAC26A2E9A7FF8 /* BugsnagSession.h */, - 7DB9CD724A87ED3DB923BB48DADA5884 /* BugsnagSession.m */, - 0DA5A99E2912A30539AFF1F629597D6D /* BugsnagSessionFileStore.h */, - 6D27A3C49C11A184F74D0B9BA233D1CF /* BugsnagSessionFileStore.m */, - 1FCA87F84C5711AAB753CFA47A5DE767 /* BugsnagSessionTracker.h */, - 5645C0927BAD2436C33746C8ABCF0237 /* BugsnagSessionTracker.m */, - AF1C1CB0C0D24F40BE887B236FE0EF0D /* BugsnagSessionTrackingApiClient.h */, - 1A0D8220010F4F4C83B5717B055D0DC1 /* BugsnagSessionTrackingApiClient.m */, - B0DFF74EA344E7E6E1B9A7FA9EDF17D8 /* BugsnagSessionTrackingPayload.h */, - 85A2BAA8D45A771F937588ADB880E6B0 /* BugsnagSessionTrackingPayload.m */, - B66F8C2463B69255E12FF8E84CF5148E /* BugsnagSink.h */, - 7E01BF33F859C8BA6324FC306CB52D2B /* BugsnagSink.m */, - 95851AA130AB2C88B78B61EDEC8AC6D3 /* BugsnagUser.h */, - 575F76368DC8C6F29C0A90086379CC3A /* BugsnagUser.m */, - B37E56A6518D4FD9F770434400B57F30 /* Private.h */, - E69700020322D375C3BA9C66E63BA505 /* KSCrash */, + 6397ABA682F826ECC4ADD5A6A5140726 /* EXFilePermissionModule.h */, + A9357393A4888576CA047A140A767760 /* EXFilePermissionModule.m */, + 10639F022D17F4276CF9139CD9340027 /* EXFileSystem.h */, + FDD2686C962849789E028510F6F2B0A6 /* EXFileSystem.m */, + 0D76CCB0098127BEAEB1754CFB47C021 /* EXFileSystemAssetLibraryHandler.h */, + 4DA85919DC6C929D42B9C85978020E39 /* EXFileSystemAssetLibraryHandler.m */, + 79D0F4BEC16414280B347604DB4E25E4 /* EXFileSystemLocalFileHandler.h */, + 70A8EB919807F827463064A126AD186A /* EXFileSystemLocalFileHandler.m */, + 0846ECB42999CAB007D3A70379B7B14A /* NSData+EXFileSystem.h */, + 29DCEFBF38171CEEA0288A959C33AA72 /* NSData+EXFileSystem.m */, + 5D3EFC620D95BE6B9AC68EF209E77490 /* EXSessionTasks */, + D7BB50B092A36558115E67927BEA60A0 /* Pod */, + EE843BA057C1DB41EB47843B96406822 /* Support Files */, ); - name = Source; - path = Source; - sourceTree = ""; - }; - A11B4C6C8952F23DD4C8FB2460995015 /* CxxBridge */ = { - isa = PBXGroup; - children = ( - ADC8C6139ED601CD7DDF5D227EC03D8C /* JSCExecutorFactory.h */, - 58680E8D1775DE8E7BC44584389F8E53 /* JSCExecutorFactory.mm */, - 40213F7ED9829D61A078FF57E8BFA506 /* NSDataBigString.h */, - 88B2FF6B7A7D12447B6E80EF8AEB892A /* NSDataBigString.mm */, - 51B5F94B663EA1729F3E6763EA3C5C8E /* RCTCxxBridge.mm */, - 244400CF8D1E8B78B81B69A6F6764C81 /* RCTCxxBridgeDelegate.h */, - 31434764D137A55B9F46647ACC703C8F /* RCTJSIExecutorRuntimeInstaller.h */, - BA39ED03ED9990D0E5CA13D415FB2A34 /* RCTJSIExecutorRuntimeInstaller.mm */, - 170F73120ABD10627FB4ED4DA9672A2B /* RCTMessageThread.h */, - 57222C714B5A15ED10F130985E02E6AA /* RCTMessageThread.mm */, - 18932164C6B3C1F75CA390CF9F1D4F16 /* RCTObjcExecutor.h */, - 9AFBFF50E2E566604FDF32D5D2F1CD7B /* RCTObjcExecutor.mm */, - ); - name = CxxBridge; - path = React/CxxBridge; - sourceTree = ""; - }; - A14BB7B44E87FED08FE74669285FFCD1 /* EXHaptics */ = { - isa = PBXGroup; - children = ( - 9AFEA62D8AC734CEDFAB8C2360CA6080 /* EXHapticsModule.h */, - 1AEF49ACB5EF2D4ABA32ECFCB4869D26 /* EXHapticsModule.m */, - DDE8E5A98325CC2478E0C25D81EFF392 /* Pod */, - DD7DF15BC6B578293BC25412AECA59BD /* Support Files */, - ); - name = EXHaptics; - path = "../../node_modules/expo-haptics/ios"; - sourceTree = ""; - }; - A1FFE96A7AFFF38816B2819CBD0DEC1C /* Support Files */ = { - isa = PBXGroup; - children = ( - CE111B675538B7F9D052CCC0722E9AC9 /* RNScreens-dummy.m */, - B4221AD9C3E75B4020D52ED2775A4F71 /* RNScreens-prefix.pch */, - 888C52782E96EDD715D39EDD4C53314A /* RNScreens.debug.xcconfig */, - 8DE2C6528E77DA83D88356DB38EE9956 /* RNScreens.release.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNScreens"; - sourceTree = ""; - }; - A2B8A333B0263BFF0F85FF136F09030C /* UMTaskManagerInterface */ = { - isa = PBXGroup; - children = ( - 37D32DF5CAFB7A578D99EEEFF6C50DB9 /* UMTaskConsumerInterface.h */, - 2B0390D6B81009013AA751E358DFD433 /* UMTaskInterface.h */, - AC0EC7A14831413DE4E84DCDE1E6F507 /* UMTaskLaunchReason.h */, - E2EE57E00C6D206E412459F942BDD88F /* UMTaskManagerInterface.h */, - B300AD2B985ED1DF826E56296D2EF806 /* UMTaskServiceInterface.h */, - 194264DC44A195F374A14C851C269CDD /* Pod */, - 4822F6A0D9F7776FEF529C014567DC77 /* Support Files */, - ); - name = UMTaskManagerInterface; - path = "../../node_modules/unimodules-task-manager-interface/ios"; - sourceTree = ""; - }; - A37E3C31DD81ED7894987F0E6189C019 /* Support Files */ = { - isa = PBXGroup; - children = ( - B39BBB56791DB7A6202AF7BD7CFDF4A1 /* React-RCTBlob-dummy.m */, - D5202EC64D1C8D82630E04392F548113 /* React-RCTBlob-prefix.pch */, - B4408FD92C5D3CB1DC878DEA92A18057 /* React-RCTBlob.debug.xcconfig */, - 60ABBF8A4B9F566D966A46A31D8C9A11 /* React-RCTBlob.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTBlob"; - sourceTree = ""; - }; - A4DF39314E4BD1A175A414ACE8DAD530 /* Pod */ = { - isa = PBXGroup; - children = ( - A99B272D4985EFCFCB0042D360D383E4 /* LICENSE */, - 90CC474C775301AF947C3A2488C63168 /* react-native-restart.podspec */, - 07B04BD6D46260446EB6A2312E0BF8A1 /* README.md */, - ); - name = Pod; + name = EXFileSystem; + path = "../../node_modules/expo-file-system/ios"; sourceTree = ""; }; A4F60CE43829EECCB340AA01D73F151A /* NSData+zlib */ = { @@ -19797,142 +20265,113 @@ name = "NSData+zlib"; sourceTree = ""; }; - A5C9D0506E0FDEAEAC92974CBBA8D5B5 /* Support Files */ = { + A560EFE2C83F48343706CFC874A6696A /* EXKeepAwake */ = { isa = PBXGroup; children = ( - 7F6ED1F6766EF8EB9CAD8BB243639756 /* RNCAsyncStorage-dummy.m */, - DD0B6D994E8F1124DF536E2BB125E4FA /* RNCAsyncStorage-prefix.pch */, - 0DFC5C3D54351AF2BC93C38A54D556AC /* RNCAsyncStorage.debug.xcconfig */, - 785A3246CFACBDE37FE258ADD1B952B5 /* RNCAsyncStorage.release.xcconfig */, + CEEE463F217CBE6145E587648B5C4980 /* EXKeepAwake.h */, + 442D2F71BDC5E59CA5DF4FA8490BFFD9 /* EXKeepAwake.m */, + 3A37A5E90C6C412F4E0BA775B67E249F /* Pod */, + 87F3EDAC30D04251943D20AACBAECDFB /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNCAsyncStorage"; + name = EXKeepAwake; + path = "../../node_modules/expo-keep-awake/ios"; sourceTree = ""; }; - A62BB50A38F0C550DEEA6807F90B1D96 /* UMPermissionsInterface */ = { + A587B4C02F87F1060C117A378428DFB5 /* React-runtimeexecutor */ = { isa = PBXGroup; children = ( - 57E758D75B96F7F59C307EFF1E38FA75 /* UMPermissionsInterface.h */, - B430AED966FDB4631652A1DD9247A3FC /* UMPermissionsMethodsDelegate.h */, - 2ECF1E41A70CE52DB2CC8C252468307E /* UMPermissionsMethodsDelegate.m */, - 823342DC31FD6486EE7CBDC785774403 /* UMUserNotificationCenterProxyInterface.h */, - F7EA4CC6288DAD16798FB3B0176F91AA /* Pod */, - 22140368671B2F922FE690C705501000 /* Support Files */, + CD3AC61CFAD2B9EF698313B94B268FF3 /* RuntimeExecutor.h */, + BFBEE6D9669A86D9E7E49186F83EC7C1 /* Pod */, + F518BFDFEDFDC9F567770B50F2224D0F /* Support Files */, ); - name = UMPermissionsInterface; - path = "../../node_modules/unimodules-permissions-interface/ios"; + name = "React-runtimeexecutor"; + path = "../../node_modules/react-native/ReactCommon/runtimeexecutor"; sourceTree = ""; }; - A661AC243E6E5199CF57B2727BB34A1F /* Pod */ = { + A58FB0DC3EEEF0A80F13C0D7CAC969AD /* safearea */ = { isa = PBXGroup; children = ( - 8BF5265048C519B0DADD791A7D0EF1A5 /* LICENSE */, - 67BF755F9D7AAF2B6B7788A8DC0103FC /* README.md */, - 10F3F3FC7084183167C38158EB033FC6 /* rn-extensions-share.podspec */, + 2F85A36A7DF29262707FF6EAC03F1745 /* SafeAreaManager.h */, + B46F85E40519FA5AB0A27F10596B9823 /* SafeAreaManager.m */, + 589DC083B14AD4EC32A765ECD809C693 /* SafeAreaSpacerShadowView.h */, + F2D103493A4E5E2BFF321613C9284ED7 /* SafeAreaSpacerShadowView.m */, + F26E8EE3627DD007995E38872AAFA34A /* SafeAreaSpacerView.h */, + C19F8470C15F18F4285BAA5A9A8A8BF5 /* SafeAreaSpacerView.m */, + F328B6D74BBFF9B06C0F13B48B5952DA /* SafeAreaSpacerViewLocalData.h */, + 853DA4003B234224D0BEF3F4ABD94970 /* SafeAreaSpacerViewLocalData.m */, + 9A52031D01DDD2FCD2A068151409B973 /* SafeAreaSpacerViewManager.h */, + 9FA635843704EF8F520FAF3EEA7C13FB /* SafeAreaSpacerViewManager.m */, + ); + name = safearea; + path = ios/reactnativeuilib/safearea; + sourceTree = ""; + }; + A625D0C50CDB5C67B97EE9FB239AEF77 /* Pod */ = { + isa = PBXGroup; + children = ( + 1C4098C080880C9902B332954C09E608 /* EXVideoThumbnails.podspec */, ); name = Pod; sourceTree = ""; }; - A67A44E872FAAAB9A8C187CBC14FB177 /* RNLocalize */ = { + A727D37490E5DBB66524C3364AD892D9 /* Pod */ = { isa = PBXGroup; children = ( - 53F1C5AC523F842CC2FBF625C56A25DA /* RNLocalize.h */, - DEC7BD859FF11D42838748D649E7EEEA /* RNLocalize.m */, - 2A32B24871EBC47C2DBEAA247464D04C /* Pod */, - 7F005AA6F3A2E7AADC1B2BF1E773836D /* Support Files */, + AE7EB057D8B7F41692CE68C832C174E7 /* LICENSE */, + E5A50A19568EFE63722FB4084BE8F624 /* react-native-orientation-locker.podspec */, + 37A7CDF7E561955A0C02FCF2279AB34E /* README.md */, ); - name = RNLocalize; - path = "../../node_modules/react-native-localize"; + name = Pod; sourceTree = ""; }; - A67A573FD46FA07B161CCCC8EFE7C944 /* Support Files */ = { + A7FBF5AF7B30EDB3E42DB0782927BFF6 /* event */ = { isa = PBXGroup; children = ( - 87C229F1F692C5339612090BC827C2C8 /* EXKeepAwake-dummy.m */, - 1118FA3E8AE2F5F3FF8284AF84FB58AF /* EXKeepAwake-prefix.pch */, - 46B5C746991BB21AB345F113FDD64D59 /* EXKeepAwake.debug.xcconfig */, - 92C78AF2D2103A7BB04B8C6C45187F0D /* EXKeepAwake.release.xcconfig */, + 9F2555743479256A7A6B651E39603366 /* event.cpp */, + ADD183449DEFDDF51E3C7BBCAB364AE6 /* event.h */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXKeepAwake"; + name = event; + path = yoga/event; sourceTree = ""; }; - A6BB66046AA91A0A325D90888121165E /* EXAV */ = { + A840C4EEDEFE30A7526204C1CD1C063F /* react-native-notifications */ = { isa = PBXGroup; children = ( - 0FD6C64DACC2AEF625B83C48FB2D4325 /* EXAudioRecordingPermissionRequester.h */, - A229442A403928C44178EF3336326E06 /* EXAudioRecordingPermissionRequester.m */, - 635EDD101CFD063AB290BAD6A17A7E7D /* EXAudioSessionManager.h */, - B5F5D314E31E7F95E9256E46FC96B037 /* EXAudioSessionManager.m */, - E37AD28B47DFE4FBECFB65FFD94DE155 /* EXAV.h */, - 9B827111813C069F8F6955AFD74F4A1F /* EXAV.m */, - B8179EF985F6BF8C7BC3EF81ED1DED35 /* EXAVObject.h */, - 897DFBE6E915403BED169E59A27B41CE /* EXAVPlayerData.h */, - 95E0C7FCF12FCDB434C7EF04710EB0E3 /* EXAVPlayerData.m */, - 77721A49F15F221B69BC8D4889A5C23A /* Pod */, - 677683BC5CCE1FBCE8EB8219E09E9B2A /* Support Files */, - E1B78955514ADC125D050D325ACD746E /* Video */, + CBCA6480660BBE935E0D88687BB059A0 /* RCTConvert+RNNotifications.h */, + ADC19C5F25BC45B39BBB809E36798BF8 /* RCTConvert+RNNotifications.m */, + E1F1FF326CB1EAE4FF47CAA50C53DD6E /* RNBridgeModule.h */, + E649690720DE207C55AEC9762403EB41 /* RNBridgeModule.m */, + 8E049A2A502254569AAD1E846716AAF6 /* RNCommandsHandler.h */, + 996F677F0C4D75E0BA8139D2D0B4FF19 /* RNCommandsHandler.m */, + 7283EB23F32AC740B558D0C30B95E95C /* RNEventEmitter.h */, + EA4C93D56FE5D85A1A138AC0E69C8862 /* RNEventEmitter.m */, + 389CD7741351AB924E728EC4798FC86B /* RNNotificationCenter.h */, + D5C9EB3DD6251F36240159CAB9F95695 /* RNNotificationCenter.m */, + 660AB5C7E94D9F3FEF94F33259865B5F /* RNNotificationCenterListener.h */, + D25EC3A6EE178FA0BB33279376E6666B /* RNNotificationCenterListener.m */, + 50E9BC19608F331299520F4A34F93BD0 /* RNNotificationCenterMulticast.h */, + A25214D7DAAEF582BA04DF499825DF44 /* RNNotificationCenterMulticast.m */, + D548161C546809C36062E8F56DB53607 /* RNNotificationEventHandler.h */, + 55EDE0BD7CB5DAA7AD533C74F9DEF1AD /* RNNotificationEventHandler.m */, + 1B981C23504E6D05D84784151C16C344 /* RNNotificationParser.h */, + 3243616DB85F9A421BA274E17024AB10 /* RNNotificationParser.m */, + E8A17AD3EF22B3EDE7BC6C2E0715F83F /* RNNotifications.h */, + 84F81D9B45FDBD78B5ACB07C50EBCCB6 /* RNNotifications.m */, + 65931E231ED87291782F00320FD5E79D /* RNNotificationsStore.h */, + 26205161AA50954D082DD6F48826695F /* RNNotificationsStore.m */, + 312650FE7FD503D2EC40D1882CCEA092 /* RNNotificationUtils.h */, + 54DFF4FA1AFD8A70E0EE2531B28728BA /* RNNotificationUtils.m */, + 6FA0AD66C02F21425433DDB9366CD22F /* RNPushKit.h */, + AF88246064A0F24D2BEA1AAA4535D82C /* RNPushKit.m */, + F6999E1FA5D1118E99918E215C000A6E /* RNPushKitEventHandler.h */, + 737C47ACA6A64D7767636BBE62E6B723 /* RNPushKitEventHandler.m */, + 6057631DB1CAF97943B1AA60672D95C2 /* RNPushKitEventListener.h */, + 9284728F7EFB51C94FA364446012C888 /* RNPushKitEventListener.m */, + 1DA63BF698EFFC4138BF51C8BC58CC1D /* Pod */, + EB013329492B71E5972D2BFF6598ACE6 /* Support Files */, ); - name = EXAV; - path = "../../node_modules/expo-av/ios"; - sourceTree = ""; - }; - A8016EA95ACBFB0D0256FE435B57D3C7 /* RNGestureHandler */ = { - isa = PBXGroup; - children = ( - 38EAEB2D222B886728E65358EA8E3B4E /* RNGestureHandler.h */, - D1CD08E515A799E10916C90CF8CE577B /* RNGestureHandler.m */, - 7789E06A53820A1024B786F2143645B1 /* RNGestureHandlerButton.h */, - EB92F93CABB8184449DC444F506BAADD /* RNGestureHandlerButton.m */, - 78881ECD93FBC810CDA088B42407607C /* RNGestureHandlerDirection.h */, - A79C9668BB0052F80C33C8775C800F7C /* RNGestureHandlerEvents.h */, - 0A15423DEFF3841394DA8BE3321D59F9 /* RNGestureHandlerEvents.m */, - 960E6CB59CE9718F259B725D0F6285C0 /* RNGestureHandlerManager.h */, - 4CB932C0999124835D917A5C6280C289 /* RNGestureHandlerManager.m */, - CD9430423AFF44F6C793267B68DD5C2B /* RNGestureHandlerModule.h */, - 111DD6FA99BB64D5C0632FE249834302 /* RNGestureHandlerModule.m */, - 3EA951621CD10F5E6E3B6F7D75726431 /* RNGestureHandlerRegistry.h */, - C801F07D5D9D36FECABCC66165F6AB63 /* RNGestureHandlerRegistry.m */, - CF6347AF1735ED878746DADA13233FA0 /* RNGestureHandlerState.h */, - 98DADDEB2F514FB1D31D46C80DB26DE7 /* RNRootViewGestureRecognizer.h */, - D1B55BC8607F3986709C701664C14828 /* RNRootViewGestureRecognizer.m */, - D0AA7062F768AFA08634458224825A19 /* Handlers */, - C25D8BDA963961E072FC247850470BD5 /* Pod */, - 807158F78E05C20A88CA104FFDB1FBFD /* Support Files */, - ); - name = RNGestureHandler; - path = "../../node_modules/react-native-gesture-handler"; - sourceTree = ""; - }; - A84C028093E7C31BC84C9AD128D9EA30 /* keyboardinput */ = { - isa = PBXGroup; - children = ( - 7998E1D06FEFEBA4A32563E9107B5808 /* lninterpolation */, - C64ED88509329B3D5F94ABB23AE1D5C4 /* rctcustomInputcontroller */, - ); - name = keyboardinput; - path = ios/reactnativeuilib/keyboardinput; - sourceTree = ""; - }; - A86CA985ECC61C4031438707E15404FC /* UMCameraInterface */ = { - isa = PBXGroup; - children = ( - B2FB3ADC39B1FC7A94AB0109021D6960 /* UMCameraInterface.h */, - 0A36BC12B7FEFF81A3E8ED25C9DFFA08 /* Pod */, - 6459923B45B06E12D2F9680358ACA54C /* Support Files */, - ); - name = UMCameraInterface; - path = "../../node_modules/unimodules-camera-interface/ios"; - sourceTree = ""; - }; - A8E862B746E20FCB9ADB08ADD91AA19C /* RNFetchBlob */ = { - isa = PBXGroup; - children = ( - 5BDA7FF7370A980A82E2384DA1A3D7EA /* RNFetchBlob.h */, - 74E5795989677BD11D84DD618F6B1C27 /* RNFetchBlob.m */, - ); - name = RNFetchBlob; - path = ios/RNFetchBlob; + name = "react-native-notifications"; + path = "../../node_modules/react-native-notifications"; sourceTree = ""; }; A9146119A42942F30E1D9115B834BF8A /* GoogleDataTransport */ = { @@ -19985,136 +20424,186 @@ path = GoogleDataTransport; sourceTree = ""; }; - AA3011AA51E2595D480533C4D9B83B82 /* CoreModulesHeaders */ = { + A9546D3813381F9B6AFCFF80EEED1090 /* Pod */ = { isa = PBXGroup; children = ( - F06D98D4A530C5BD768F9D2B5E839142 /* CoreModulesPlugins.h */, - 3B70ADDF52FB2A4D4C1C68671828F811 /* RCTAccessibilityManager.h */, - A79AC20226EF07587CB7DBA9DBE433D2 /* RCTActionSheetManager.h */, - 10B3B2EC3A593F723837AB6318CA9779 /* RCTAlertController.h */, - 31C8C92AF9AED29D2EA5BC405702CCC6 /* RCTAlertManager.h */, - 4AB7D4BA2082ECB9E8FE8EEEAC815A5A /* RCTAppearance.h */, - CC0A7AB220D618527B2C89D825C275EB /* RCTAppState.h */, - E7B1ED010F5FB8F7BF57C832EE1BD779 /* RCTAsyncLocalStorage.h */, - FA2E8E55C0D5B46E3138211167244CD4 /* RCTClipboard.h */, - 3D25AF5D38442FA4C8DB14BFD53FFA49 /* RCTDeviceInfo.h */, - 2488B905A75D33D2A73E6BC7E0767FD1 /* RCTDevLoadingView.h */, - 7DC1F0B6DA7032667B72AE5ACDE4227C /* RCTDevMenu.h */, - 8EB24A0BECEC37C36E9BC8A90082BA70 /* RCTDevSettings.h */, - E9D57147F19420CEA94900C5A71CDE73 /* RCTDevSplitBundleLoader.h */, - 5856DF3456105DB470C5E270C33CBAD7 /* RCTEventDispatcher.h */, - 78B1D287D193C79CB46C20485CFBF225 /* RCTExceptionsManager.h */, - AB5655D27E440FB2B7DF81BF20113BD6 /* RCTFPSGraph.h */, - 8BE6963548902B3345CE6319C1EFC46D /* RCTI18nManager.h */, - 3ECD30BAF89FB6DDEF50CD85F2E4AAB7 /* RCTKeyboardObserver.h */, - 35CA625B987F4DE5A24455A8C15791F8 /* RCTLogBox.h */, - 61BEFA697114506898F5EF0F02F44C7C /* RCTLogBoxView.h */, - 6A601E3CC5D26B3989370CF7C479F9C8 /* RCTPlatform.h */, - 1897A301B36279D4D8AE2201B6A5DEC7 /* RCTRedBox.h */, - 9ACD9FC40D3DCAD6A8D1F238D62B668F /* RCTSourceCode.h */, - 995123302D746D255CA852321EFDA0FC /* RCTStatusBarManager.h */, - BB8DEF007D6F3DFB76354786468882AC /* RCTTiming.h */, - 816AC9450EEDFF23FDB4EB8A859EF22A /* RCTWebSocketExecutor.h */, - 135895A7201CC52C36384057684FB856 /* RCTWebSocketModule.h */, + 785695B3B7894BAD50ED54CC9BE52491 /* React-jsinspector.podspec */, ); - name = CoreModulesHeaders; + name = Pod; sourceTree = ""; }; - AA538CE8E8652C54CC24BE7862BC58B6 /* react-native-slider */ = { + A9E23F86758D4CF67081D5B50EFFFE5B /* lib */ = { isa = PBXGroup; children = ( - 9B0409D58538128F1D6632234387E1AB /* RNCSlider.h */, - 1FAC915F5B8ABD2A2423DC0F82E68945 /* RNCSlider.m */, - 9631C808EC1FCCDB5A6359AEBEF0CEC5 /* RNCSliderManager.h */, - A56CBA5C6CDAF60FAE82D2E1A30B6864 /* RNCSliderManager.m */, - 328261A6471157D1378147EDC7F30D0A /* Pod */, - 384ABF970008CA4AB08882FC66003997 /* Support Files */, + 24A3417FE1B047417425727CDF0DA377 /* Aes.h */, + 6EC653EE003D3BA9DA51B6784B49E387 /* Aes.m */, + 7350AC9E8B2BC0D2157BBD0C505BCEB7 /* Hmac.h */, + FF9C3D5930CF0F4DF3E43D8EC1FD1858 /* Hmac.m */, + 8EACE304750D1CAA3FD4150AB0A736B1 /* Pbkdf2.h */, + 5959A814B9579DC7EF9000E11F7FE3D0 /* Pbkdf2.m */, + DDA8E082D0DF3E4233CC86CFC94A7648 /* Rsa.h */, + 2A11218245C003EDA9A0CB086BF522E4 /* Rsa.m */, + 50E1A35CCEA1D5F6736BC55A46B04A86 /* RsaFormatter.h */, + 4158D7C8F9D15F608EA072E56C9C5029 /* RsaFormatter.m */, + C79C9B6348AE626037636647482DFC5E /* Sha.h */, + AB12C6E2A0D5BC8A894FCE32AE68E684 /* Sha.m */, + 53119D11FE6E6BB4AE2A001EE20671DB /* Shared.h */, + 9BF3A3327FE1B27155736ADEAAC66603 /* Shared.m */, ); - name = "react-native-slider"; - path = "../../node_modules/@react-native-community/slider"; + name = lib; + path = ios/RCTCrypto/lib; sourceTree = ""; }; - AB35868BD2737D00E0CA58E8F223F823 /* UMFileSystemInterface */ = { + AB7F6355C86DFC7E91B9EAC52F07B85F /* RNFastImage */ = { isa = PBXGroup; children = ( - 71D7089B2132E929ACA848DA82D1A2E3 /* UMFilePermissionModuleInterface.h */, - CA7F68136B513B090A4BF7978E9810E3 /* UMFileSystemInterface.h */, - C939B4B4C314D315EF8A7BA7CB21977E /* Pod */, - 93140FB97E50958277BAE079523879CC /* Support Files */, + 8373F8F5AA7C5023F46D1F4436A71193 /* FFFastImageSource.h */, + 340F84EFB61AC1E0D0E05C5702D390AE /* FFFastImageSource.m */, + A7BE38DF3D2C4B8BFB184F5F4F3B0276 /* FFFastImageView.h */, + AF14A4D82AF1821431DB8664A697F559 /* FFFastImageView.m */, + 345FF1F313D26A85327F53FEF66D5C49 /* FFFastImageViewManager.h */, + A930981C438F317DEF84316287E3A808 /* FFFastImageViewManager.m */, + D34F0718894EB8BF26A6311E5213A124 /* RCTConvert+FFFastImage.h */, + 18BE84982E8F142FE9CDCC750B190D31 /* RCTConvert+FFFastImage.m */, + 8A051C8D312B3BC1040314A153ACB79F /* Pod */, + 1BB3134D8F6E3A3586510F3F466926CF /* Support Files */, ); - name = UMFileSystemInterface; - path = "../../node_modules/unimodules-file-system-interface/ios"; + name = RNFastImage; + path = "../../node_modules/@rocket.chat/react-native-fast-image"; sourceTree = ""; }; - AB5AB23ED2F7714B3ABBC2F7E6E887BF /* platform */ = { + AC3FACD0A5A73FFF1253989A85A746E3 /* Pod */ = { isa = PBXGroup; children = ( - 76391DDB23FF07DE2B28D75DBD7F4A66 /* ios */, + 93BA17DDE6DD075837649508F5724300 /* React-jsi.podspec */, ); - name = platform; - path = react/nativemodule/core/platform; + name = Pod; sourceTree = ""; }; - ABCFF1BCA5336033B4BEAEF0C5C06DC3 /* Support Files */ = { + ACE1251AEA98FFF9B51A0825EC78AA44 /* Views */ = { isa = PBXGroup; children = ( - F9B9F8C09CB15EFED44B788E6C48F6F0 /* UMSensorsInterface.debug.xcconfig */, - 29DF7DD9DE07AFF99EE4C902EC84AFA7 /* UMSensorsInterface.release.xcconfig */, + 1215CA56CB2009D56FA56A842354661A /* RCTActivityIndicatorView.h */, + 0B7EED2877664F3483849BEAA627B0CA /* RCTActivityIndicatorView.m */, + FFFB3400D9B937F709EDAA8E0F84A585 /* RCTActivityIndicatorViewManager.h */, + D0D88DE9238F87B08F5FA4F0049515F4 /* RCTActivityIndicatorViewManager.m */, + 60D1A26443E475C946E7CBB625FC3318 /* RCTAnimationType.h */, + 6298AE3E0AD6B0EB0E8FA035BC850A15 /* RCTAutoInsetsProtocol.h */, + 730CBBDFDEB767F625E342CD591BCFBD /* RCTBorderDrawing.h */, + 6525E5BC4FA81595E90608B5DC99A111 /* RCTBorderDrawing.m */, + A442BB7FDC24744FFABDB77D2DC980A9 /* RCTBorderStyle.h */, + 3991D9E8935C272F2BEBD8F363AF3305 /* RCTComponent.h */, + D8B03F145549407E02F672A812CBA01E /* RCTComponentData.h */, + 8BE1EDF4BEF9F1060858A53C96B4DFD3 /* RCTComponentData.m */, + A01A966EA9B80F740CA05FDAE563EFD8 /* RCTConvert+CoreLocation.h */, + 229996EBA18541FD5A6EABDF119E951D /* RCTConvert+CoreLocation.m */, + 50CEE436DC02365678F6BE65F5CB4CA0 /* RCTConvert+Transform.h */, + 48FF49A5736D3E0E27EEF1C0B1B69DEE /* RCTConvert+Transform.m */, + 6D7916C3FADB90D716EC5DFF41BB3D99 /* RCTDatePicker.h */, + 3E21C45B397F5E0D718972EB9A1AA3BD /* RCTDatePicker.m */, + 8579EF0DCAD00BFCB49994109AB73B0D /* RCTDatePickerManager.h */, + 27E98DA502B46B1061E58261CCB42964 /* RCTDatePickerManager.m */, + 81191814B978606260CA5B4EC460E41E /* RCTFont.h */, + 7516BE3DA685CEDF74312C0C1CA78095 /* RCTFont.mm */, + DA9882DBA3E80B8310FB0D89D0130D4B /* RCTLayout.h */, + 94F84EA98D279AB2D0F27FD2F47507A5 /* RCTLayout.m */, + 920E913BF836AE4C356DD271D480E02C /* RCTMaskedView.h */, + 0FC97E9950E503E79D263EADAE92167A /* RCTMaskedView.m */, + EB5AE6725DBDBA72012A0E3EDB522345 /* RCTMaskedViewManager.h */, + F19FBB1C6850FD0D010A5CE4BEA22D3D /* RCTMaskedViewManager.m */, + 3553D4C544A3BEDF55E4F169FB3755E3 /* RCTModalHostView.h */, + DF6110689FAD371694B43752C553C769 /* RCTModalHostView.m */, + 8D0A6E6852DDB2645E8D6F3F1EE778C7 /* RCTModalHostViewController.h */, + DBC5AB500EC382238A41629F473B0C66 /* RCTModalHostViewController.m */, + DE76F127E42557B9BD2B3676495F1E2F /* RCTModalHostViewManager.h */, + BB425AA1BAB6D0A9A235C609336095DA /* RCTModalHostViewManager.m */, + 5E14FCE40864E45913A2C969C0B2D7A1 /* RCTModalManager.h */, + F27BB7B44D3D4D6F369D067EAC8C428F /* RCTModalManager.m */, + AD585F5C53DCFDAFFB4294C34CF88D09 /* RCTPicker.h */, + 9EF4F1EDCD4553A3703C9FCDACB61264 /* RCTPicker.m */, + 6A49593F09314002179F647E3B3F9781 /* RCTPickerManager.h */, + 2877506D87948E011C9FBF18BDAB9E75 /* RCTPickerManager.m */, + 34B6A22FA44252C9AB9425D730AB19FD /* RCTPointerEvents.h */, + 60816C0E7B00326FCAD09074D41D8E75 /* RCTProgressViewManager.h */, + 0935676F54EB3972A0752F9B8008D1CC /* RCTProgressViewManager.m */, + 744A8C51F58F8778C55BA80C9470047A /* RCTRootShadowView.h */, + F619F6E9441077F0E51EB483160227A3 /* RCTRootShadowView.m */, + ED50B52E1E0AF213DCD66EE91D277AA9 /* RCTSegmentedControl.h */, + 37027DF918D6FE52D89F88CB601858ED /* RCTSegmentedControl.m */, + 2BD45D297B804D133CC7BF454757DF21 /* RCTSegmentedControlManager.h */, + 9C139F30664C2AC9E917F2E99A29FE32 /* RCTSegmentedControlManager.m */, + 507D17D398B3DB183218F5B94245D41A /* RCTShadowView.h */, + AC415482470B49FA58A52B81A346C781 /* RCTShadowView.m */, + 7C0A0A6CB3381FB125B7DB0B51F1D7DC /* RCTShadowView+Internal.h */, + 9DFE6F4142248275D50E279C9D26E398 /* RCTShadowView+Internal.m */, + 8F3D2E2F139A91C05083EABCCFB6A079 /* RCTShadowView+Layout.h */, + F7E66212CF7771A3C2BB41F23B4A3798 /* RCTShadowView+Layout.m */, + D53862AF54CF2656B4120C75EA8B3C4B /* RCTSlider.h */, + A81CB8F7CCCAFF5C081E6D88856ABE8C /* RCTSlider.m */, + 1594760C53DFE83CD8366904004212D3 /* RCTSliderManager.h */, + 9D638D4F4487C7E2904849EB50E2914D /* RCTSliderManager.m */, + DA75C6D163FC79F2CB585CA01FA60FE5 /* RCTSwitch.h */, + FCAF45D355DD370C372A77984C10FA2C /* RCTSwitch.m */, + 803652DA292561BA0F2B796EB01CC231 /* RCTSwitchManager.h */, + AFE9F1D8D32C245F4D11F96848D588CB /* RCTSwitchManager.m */, + ED45D171CC848818FB692BD38CF0737E /* RCTTextDecorationLineType.h */, + 567132C080CB36CCAE683AD8A7F396F3 /* RCTView.h */, + 7A039AC3AF9B6A4E8EC9068BFFB63CDE /* RCTView.m */, + 3E9BC6BA0472A721C157966D72DC29E8 /* RCTViewManager.h */, + 275A1C7F93D8659DCE761FDF9A9267C4 /* RCTViewManager.m */, + 492C2F67A9C418ADE27FE61B3781B974 /* RCTWrapperViewController.h */, + D64EC9825D8C6C4D2EE46C9A5061CA48 /* RCTWrapperViewController.m */, + B319FBAEAC3E1E7C2A80BB51E7C7F421 /* UIView+Private.h */, + 9E74F12D027EC60353BA18DC9C8F057C /* UIView+React.h */, + 0DDBD5E783F16003D79827A5B335C2E9 /* UIView+React.m */, + F26BD41726D721693FD89A61BD4F4304 /* RefreshControl */, + 4A1EFD2802870441B25F49F44AA2EB92 /* SafeAreaView */, + 65C804B3D3E763DD20ED81980F817FB1 /* ScrollView */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; + name = Views; + path = React/Views; sourceTree = ""; }; - ABD17C2453FE3A315572C79FAA5B5CB2 /* Support Files */ = { + ADC0180113BDF314524896A2DC7468BA /* RCTTextHeaders */ = { isa = PBXGroup; children = ( - 48789930FD5480441AD35F9EAD9A1F61 /* RNVectorIcons-dummy.m */, - 07BA796F54F81B2594B5E0FCA4AE0933 /* RNVectorIcons-prefix.pch */, - 56792528CABA3BF6C5F8953B66E97235 /* RNVectorIcons.debug.xcconfig */, - 65B0799628CA4546DA0AA234AF4B0251 /* RNVectorIcons.release.xcconfig */, + 99B7A76C5FDAC071619973B54DEF69DE /* RCTConvert+Text.h */, + CBE1616AF656630B81600BEF0C1320C4 /* RCTTextAttributes.h */, + 6471F18D06F32C511636C48B2D479CCC /* RCTTextTransform.h */, + 7C558593C891C3E79B36EA23172BA0B4 /* BaseText */, + 799233F0A73C201D006B13B7F6BE1B0D /* RawText */, + B608AE0B629A21F0BB0E28CD23CAA013 /* Text */, + 7B07C752853171258EA3AE8E5D78D812 /* TextInput */, + 3CF6EBCA1E9E52895E565BD6FB14FA5B /* VirtualText */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNVectorIcons"; + name = RCTTextHeaders; sourceTree = ""; }; - AD02DD025F239F3610E92987E62F78BF /* Support Files */ = { + AF3CB75A79A4B74B34F3BB35441AD173 /* RNGestureHandler */ = { isa = PBXGroup; children = ( - DF983FE232C29D3473CCB5405CB82922 /* React-RCTText-dummy.m */, - FE6978C1BFD7A6FC08CA45C6F0EA4A4B /* React-RCTText-prefix.pch */, - 1B9BFE7844B1041FF8668DD421BD4957 /* React-RCTText.debug.xcconfig */, - 0D5DE226EBA71BDE93577F69BD3209A3 /* React-RCTText.release.xcconfig */, + C0F3BA7F568A29FDD4CE4A27DD46EF52 /* RNGestureHandler.h */, + B651F536139C25C10C31A34A85FEFB3B /* RNGestureHandler.m */, + 85782E5A0FDBD520761C5860C266BA68 /* RNGestureHandlerButton.h */, + 4931A8E8445EAB969B58E1A2F8890A80 /* RNGestureHandlerButton.m */, + 1E688FE81B06A10237ADB57140A2DC8C /* RNGestureHandlerDirection.h */, + F784B594BAB762A38CFE432CC18FE196 /* RNGestureHandlerEvents.h */, + 70C686F8D4EC9EA5ED579895B57B2716 /* RNGestureHandlerEvents.m */, + 9B679B86B635682E764C49E591251FBD /* RNGestureHandlerManager.h */, + 42961159B1D3A64B02FE53F5D5921D7B /* RNGestureHandlerManager.m */, + FBCB658A9A1C862C5CC585CCE43230B6 /* RNGestureHandlerModule.h */, + 258482B084569DC0C1112CA43660CA3A /* RNGestureHandlerModule.m */, + 50046DFFDEC7605D743CF83B7EB9EB5B /* RNGestureHandlerRegistry.h */, + 34BBD5BBCA8379CE3AC869AF69F13FA2 /* RNGestureHandlerRegistry.m */, + A0B884808F87BC14E17E0C76EDF5FFA4 /* RNGestureHandlerState.h */, + 144360F619B1568C4D6288B0C0FB58B8 /* RNRootViewGestureRecognizer.h */, + 4B98073CFC9C25D3AC7C10F3E831926B /* RNRootViewGestureRecognizer.m */, + 3F8260685653CC7D726E07C5C6BBC587 /* Handlers */, + 0EC07F7CFED2E62168EAF9271FDC23A1 /* Pod */, + BDA097E7859EC488E598280848CC0060 /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTText"; - sourceTree = ""; - }; - AE0A03AD1301D329DDE75905255F457C /* UMSensorsInterface */ = { - isa = PBXGroup; - children = ( - 04D45E851562CC52694A7E561CCBA0F7 /* UMAccelerometerInterface.h */, - 91D6D95996D2BB96B8997BFA6E3FCD69 /* UMBarometerInterface.h */, - A632408A7DCE249D6B5C0E255E8DC86B /* UMDeviceMotionInterface.h */, - D9ED408ADC7E5147E2CC70F2D4D5B351 /* UMGyroscopeInterface.h */, - D3AF329653C99705EC49BCA6F87701BA /* UMMagnetometerInterface.h */, - 188164D0CE75DA8B913C150432BA8CC2 /* UMMagnetometerUncalibratedInterface.h */, - 21FBA913ECB76F42E2175ADBEFF3F46F /* Pod */, - ABCFF1BCA5336033B4BEAEF0C5C06DC3 /* Support Files */, - ); - name = UMSensorsInterface; - path = "../../node_modules/unimodules-sensors-interface/ios"; - sourceTree = ""; - }; - AED78549EB3E35E7031B7C76C413DACA /* EXKeepAwake */ = { - isa = PBXGroup; - children = ( - 99C00ABE78361BEB9CC0C172FD927951 /* EXKeepAwake.h */, - 5361CB0935DE75BF4954CC589C697F5C /* EXKeepAwake.m */, - 0E17BDF10EF6BEC1BA37417DC8E09C31 /* Pod */, - A67A573FD46FA07B161CCCC8EFE7C944 /* Support Files */, - ); - name = EXKeepAwake; - path = "../../node_modules/expo-keep-awake/ios"; + name = RNGestureHandler; + path = "../../node_modules/react-native-gesture-handler"; sourceTree = ""; }; AFC41DCED6C84C0E3D3864337005B4FF /* FirebaseCrashlytics */ = { @@ -20331,28 +20820,77 @@ path = FirebaseCrashlytics; sourceTree = ""; }; - B08F14349379DFC42C8B1345F29ECC17 /* Support Files */ = { + B05B78FEB2F3E120F651327A9F49C5BC /* Nodes */ = { isa = PBXGroup; children = ( - BC6FFA3EB74673D139D1282043B812D9 /* FBReactNativeSpec-dummy.m */, - 0F3520989374CC11C863BEA987AF8C99 /* FBReactNativeSpec-prefix.pch */, - 88F4E05408849735CE9E7F092A7B555E /* FBReactNativeSpec.debug.xcconfig */, - BD0A4AF6EDEDB7A9D18E65FAFF8247B9 /* FBReactNativeSpec.release.xcconfig */, + ED625D5A21C9F1B61CFF7642D677FE07 /* REAAlwaysNode.h */, + C9B967E1CE6B4A87E51F75B5187C594A /* REAAlwaysNode.m */, + 9A7DC932EBFEA8EAD11B91E04EC2CE30 /* REABezierNode.h */, + BC1DFE2FED2A0B13126963E15601113B /* REABezierNode.m */, + C9513ADBC8F5FD588932B568C8D26DDB /* REABlockNode.h */, + 51932962389B22CF23FD8BB7939CDE28 /* REABlockNode.m */, + 95409ABF25D42C8C7A43CEB383BB217A /* REACallFuncNode.h */, + 41BEDDA58A460F4905BC985C1FDBC27D /* REACallFuncNode.m */, + 867184BCA9B2D56CB73DAE176DC85425 /* REAClockNodes.h */, + E02E32A237431173E06EC82446A1EB12 /* REAClockNodes.m */, + B8D8BFEBC605F5B2FC3A82710426E43C /* REAConcatNode.h */, + F028259E27D1417958999A7A7A1310D2 /* REAConcatNode.m */, + C60C273209D11C25647302AA4EE459C7 /* REACondNode.h */, + 93BBACFC282DB3608E7443B4F8F92F19 /* REACondNode.m */, + 6DE49ECD736F3A64C331F6A1E4F30C4E /* READebugNode.h */, + 9505DA46341E16895E696AA8B1B082ED /* READebugNode.m */, + DD57B527F7CD29DAD0193178373998AA /* REAEventNode.h */, + 93FC45CC18820A048275DA3BBE31FD89 /* REAEventNode.m */, + 3E6D248CD28BE41F933CC681EACB82F8 /* REAFunctionNode.h */, + 45CA01141554D9AC3DBB8776F286FFEC /* REAFunctionNode.m */, + A40D35B3E223EE3A59C70211AF70DD57 /* REAJSCallNode.h */, + E1E10551E1BA25B796460E47DC1ED197 /* REAJSCallNode.m */, + F09E3CE4EFFEADA4D5525E7AC223798F /* REANode.h */, + F42A2624F056C94D80F5503354B73FFC /* REANode.m */, + D5D99E68D42DB1FFA29F7AD244CD2F3C /* REAOperatorNode.h */, + 13204C62D0A43D74E6AA57C8A4CDD9AC /* REAOperatorNode.m */, + DC66BC4DB4CD3441B632CC2F80B5ADB5 /* REAParamNode.h */, + 95E467C2CA3EAB1FECEF9E2AD4F9B632 /* REAParamNode.m */, + 3B52C25E241A136F30D3AFEA155BECF7 /* REAPropsNode.h */, + 6A3F39F545F907AF8B49B170FBE2599D /* REAPropsNode.m */, + 098C33BAFFF906D6D3AF3583C8832657 /* REASetNode.h */, + D560D51D8AE4A5857AA12820C4EE5243 /* REASetNode.m */, + 463FD6CE5E4650310F45D38D814546AB /* REAStyleNode.h */, + 20D29AC790079739A24F54BE9F434E94 /* REAStyleNode.m */, + 4C9FD89B38C20D172047C1DFFA6CFCC8 /* REATransformNode.h */, + E366B66C03DB791740DF2536692620C1 /* REATransformNode.m */, + 82ED9F1782E3FD8F7E0CB9DA88B7D1C7 /* REAValueNode.h */, + 8EF4B26C6D38B2DF9388C95BAED0C0C0 /* REAValueNode.m */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/FBReactNativeSpec"; + name = Nodes; + path = ios/Nodes; sourceTree = ""; }; - B148E65231C5992A80C3754AF7F76D28 /* Support Files */ = { + B0F213CEE2ABCC56288FC244E24CE662 /* Support Files */ = { isa = PBXGroup; children = ( - 83A0F06909DE94E788633152B76B7A4B /* React-RCTNetwork-dummy.m */, - 39914936282CE677961F04971C0FA22A /* React-RCTNetwork-prefix.pch */, - 6190629C5E04AF8D24FDEF0CE9F3E25A /* React-RCTNetwork.debug.xcconfig */, - 517009B16A91BB6A60658D78B01D767B /* React-RCTNetwork.release.xcconfig */, + 76335C94BC3A1B44E3DF023ABC327CFA /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */, + 44747932CB8EA27D3A71CBE61CC868EB /* RNImageCropPicker-dummy.m */, + FB382A9A31F060BB77B2CC16756C177A /* RNImageCropPicker-prefix.pch */, + 6DF61E1E4E09C55C34D232E606DAEC35 /* RNImageCropPicker.debug.xcconfig */, + 33C451B5E70DB04A4D69D8018EFC491A /* RNImageCropPicker.release.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTNetwork"; + path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; + sourceTree = ""; + }; + B16EB19843469B10D649ED357705821C /* keyboardtrackingview */ = { + isa = PBXGroup; + children = ( + 05C1523679D85B2912D83941C003FF06 /* KeyboardTrackingViewTempManager.h */, + C8BDECB59759E467E4BA207CDA35DA99 /* KeyboardTrackingViewTempManager.m */, + B4874D1CB2474417B8C726895842F734 /* ObservingInputAccessoryViewTemp.h */, + F0E2A3B05B70177D3701F3E365014AB2 /* ObservingInputAccessoryViewTemp.m */, + 3DA24849CCBBC6DD9C7740C89655776A /* UIResponder+FirstResponderTemp.h */, + E32F0ADDAD67DE6FFAEA3592A5620057 /* UIResponder+FirstResponderTemp.m */, + ); + name = keyboardtrackingview; + path = ios/reactnativeuilib/keyboardtrackingview; sourceTree = ""; }; B171E99FAD968B67BB3F30E399327AEF /* Support Files */ = { @@ -20367,103 +20905,45 @@ path = "../Target Support Files/libevent"; sourceTree = ""; }; - B239FED2162B5D28E8B0F31DD29753B5 /* Pod */ = { + B4725EF2517297DCB97F2B6A02170E04 /* Pod */ = { isa = PBXGroup; children = ( - B9AB7A09CC19EEA7400B31ABAF7C2220 /* EXConstants.podspec */, + B38EFFCE50312E2914CA7E5325427451 /* EXAppleAuthentication.podspec */, ); name = Pod; sourceTree = ""; }; - B2C5912E7C2A9594A77C368F40E5EF6E /* Modules */ = { + B572E39F5023CA0D41271F4F8E929B5B /* Support Files */ = { isa = PBXGroup; children = ( - 9221E41E3B641E3AFDCAE327FA325982 /* RCTEventEmitter.h */, - 80EF4E07C284504EABFCEB8CA96D7CEC /* RCTEventEmitter.m */, - CC96A4E83DA3ACB87D0FC09C180D57FA /* RCTI18nUtil.h */, - 9377E2FB9CED876BBFEDBB223F080BD8 /* RCTI18nUtil.m */, - B5EB34D7CFAE513CC4DC0CB1BF38A8F4 /* RCTLayoutAnimation.h */, - 638E4D6A72441CCAD608D5F691C34053 /* RCTLayoutAnimation.m */, - 38E4ABBA0ABBBDBB24FA3BD3D40CA755 /* RCTLayoutAnimationGroup.h */, - 102B924AF0ED7E083BCD625DE71BC18D /* RCTLayoutAnimationGroup.m */, - 103B5823E7A0D36680625CA1F503B01B /* RCTRedBoxExtraDataViewController.h */, - 6430379ECF72CFBE46FBAD269394ABC1 /* RCTRedBoxExtraDataViewController.m */, - 1425036E1E70E9B6A854C3FF2021A238 /* RCTSurfacePresenterStub.h */, - B1365A8800228D7EE62CD060F5699BFA /* RCTSurfacePresenterStub.m */, - 35042220C6CA8DB45EBC39D294E7A366 /* RCTUIManager.h */, - B61FD505D133FEF2FA10674B51D14C7F /* RCTUIManager.m */, - 2DFD8F11B45492A110007D80A1313453 /* RCTUIManagerObserverCoordinator.h */, - D52739B653AAA586594BE4673FB03B8B /* RCTUIManagerObserverCoordinator.mm */, - 1C174DFFB5EBB89E69CB861B5E3CC4B2 /* RCTUIManagerUtils.h */, - 608CD4F8E082098759CAC66864BF63FA /* RCTUIManagerUtils.m */, + C00C64F14C3A18BFFF5DCDBD56C60169 /* ReactNativeART-dummy.m */, + CC46805A90E29C92F294FA16CC350C72 /* ReactNativeART-prefix.pch */, + FA187242EBEDD3399949F29771D88BC5 /* ReactNativeART.debug.xcconfig */, + 121B1E4C86111FD774FABC537B3F82D9 /* ReactNativeART.release.xcconfig */, ); - name = Modules; - path = React/Modules; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/ReactNativeART"; sourceTree = ""; }; - B2CAFAE126CE9CA9CCE3531899CB9EE1 /* RNCPicker */ = { + B5B617E1CC9C786733CB42BD157F5536 /* Pod */ = { isa = PBXGroup; children = ( - 9E4CBFB32FB416C48B81BD39DED125B8 /* RNCPicker.h */, - 809E57C2926BEB5289728A671F93A914 /* RNCPicker.m */, - B53D379AC1EAAE80F7B75CCFA8E19102 /* RNCPickerManager.h */, - 2346A82F92324792A2DC137D68FD3D87 /* RNCPickerManager.m */, - 74D02E598381E7E544C42ED00424E20E /* Pod */, - D6BF7BB768641720FE2E02185FFE59A0 /* Support Files */, + 15EA616B395326914B4C56438DE7AC06 /* README.md */, + D37B65DEDF478FA183504D83B5AFE43C /* RNCMaskedView.podspec */, ); - name = RNCPicker; - path = "../../node_modules/@react-native-community/picker"; + name = Pod; sourceTree = ""; }; - B5686206381D005C40677D8F80E2ED80 /* Yoga */ = { + B5C94B22866D0D81496F56267E46A91B /* react-native-restart */ = { isa = PBXGroup; children = ( - A04A93F8CDEA87F765B1BFC853A4AA40 /* BitUtils.h */, - F357C42D8F67194A251ED42AC4325922 /* CompactValue.h */, - 976CE262CF7500DF35A437CCAF94472A /* log.cpp */, - 0B2773FD64759289EFA4B48050EC0948 /* log.h */, - 9F7C807E552CD7F0ED57B38326EDB5C7 /* Utils.cpp */, - 5A619E7C5BEDBD8FF75CC6FB98249386 /* Utils.h */, - 354708D78F468148EEEE76491942439B /* YGConfig.cpp */, - 1E2572FDC01A536DEB900645D6705743 /* YGConfig.h */, - 6D77E7395968BFCF421B518C6BB9797B /* YGEnums.cpp */, - E4C2AB318AA3CCF501BBB492DC62B5BD /* YGEnums.h */, - 5EB11152E396D621E3766B2CF8AF5A3B /* YGFloatOptional.h */, - 66B29694F66CA2A9B64C6C6276003DB6 /* YGLayout.cpp */, - CD8D77D9D33820ECDB7C6A012B062E79 /* YGLayout.h */, - 00EEA1483806636CBFBC40852FB14F41 /* YGMacros.h */, - 2AE905F5C8BC97A988CFA795EBE3D363 /* YGNode.cpp */, - 1062EA23D0B4F9409F464565F3FC0F62 /* YGNode.h */, - 594A47DA5B2376EB909943CA3A7AED04 /* YGNodePrint.cpp */, - 692604FFEA1609303AF1A54694CA2ABF /* YGNodePrint.h */, - 1A944C7B5220B25C71845EE68969C16A /* YGStyle.cpp */, - DDD88E60312C8EAF026BB69E518FE5C7 /* YGStyle.h */, - 81C90EF8F95DD7867ED3541AD3996752 /* YGValue.cpp */, - 469F3F63EC4D8CF348CA1DE498F5FB0C /* YGValue.h */, - 87A9DF17D8AC30F800D695E7C1CE49DF /* Yoga.cpp */, - 18A89B3F6A55C38801D3BAAB8BFD0D9C /* Yoga.h */, - D7349198E27959B9FF48EA1F610E901F /* Yoga-internal.h */, - 4FCE380E17CDEBFC2B286EF8DAAFAF99 /* event */, - 2C60965C4B8A7C8664E05C85ED268B5F /* internal */, - 1D8537AB1BFFEDD1BF6FCD0CCF06A9D3 /* Pod */, - 5793C18134BCE7F8417505A6D77B5B02 /* Support Files */, + 2F063F42597664A28DB5D13D0BAD4FE9 /* Restart.h */, + 85E941E45C8BA1C7C836427904213DD1 /* Restart.m */, + CB3CDC510C88B70F6A1C208DD6B15F79 /* Pod */, + 416E8EF9EBB0C2E5A393C3CE6DFBD1B3 /* Support Files */, ); - name = Yoga; - path = "../../node_modules/react-native/ReactCommon/yoga"; - sourceTree = ""; - }; - B5CF079FFDF3437CA5E2CFDAA1A1A9B4 /* ReactNativeUiLib */ = { - isa = PBXGroup; - children = ( - 6280EF73765DCE17C36B7F4759F0D701 /* highlighterview */, - A84C028093E7C31BC84C9AD128D9EA30 /* keyboardinput */, - 68C958A342B52A6AC757775B56733AF6 /* keyboardtrackingview */, - 8459A5920258336A8C818512F7D04160 /* Pod */, - 46926FD9AAFE0B07E0DAE089AD2986AA /* safearea */, - BE7B95F48AC401A99194EDAC88CF2888 /* Support Files */, - ); - name = ReactNativeUiLib; - path = "../../node_modules/react-native-ui-lib/lib"; + name = "react-native-restart"; + path = "../../node_modules/react-native-restart"; sourceTree = ""; }; B5EF057EE7503CD37F7E87B234D21753 /* Support Files */ = { @@ -20478,6 +20958,30 @@ path = "../Target Support Files/Flipper-Folly"; sourceTree = ""; }; + B608AE0B629A21F0BB0E28CD23CAA013 /* Text */ = { + isa = PBXGroup; + children = ( + 4C2EDAD5ABAACBC7C7EDE94447778269 /* NSTextStorage+FontScaling.h */, + 73E46AB944E91B060A550C4C5605837C /* RCTTextShadowView.h */, + 6C42293110E4BFCD51D38CDFD8A3C674 /* RCTTextView.h */, + D3F24519187C0062D2335EF4A06B631F /* RCTTextViewManager.h */, + ); + name = Text; + path = Libraries/Text/Text; + sourceTree = ""; + }; + B611CE5D5941E6EC93FB041A5D1CC251 /* RNBootSplash */ = { + isa = PBXGroup; + children = ( + E8407F7D051C127800BA923758D2BCDF /* RNBootSplash.h */, + 9BEC1860957320D1CF2C90CF1F9595DB /* RNBootSplash.m */, + 417E190998E86BEA8DCFFEFE376B3B3E /* Pod */, + 5AF3EE885CBFFC9FBC554903D7A4C41C /* Support Files */, + ); + name = RNBootSplash; + path = "../../node_modules/react-native-bootsplash"; + sourceTree = ""; + }; B61A56661EF0A5EC24AF28A604FEC43D /* FlipperKit */ = { isa = PBXGroup; children = ( @@ -20499,44 +21003,44 @@ path = FlipperKit; sourceTree = ""; }; - B667211B3FCCCA9741A39610C7E7EA8E /* Pod */ = { + B628BCAA909571D11C0055D68DA9C910 /* Pod */ = { isa = PBXGroup; children = ( - 1509EBB808BBE07981CA661B356CAB7E /* UMCore.podspec */, + B4732D765306D8AD1EEA3CE1FB3C3263 /* UMFontInterface.podspec */, ); name = Pod; sourceTree = ""; }; - B8095FCDEB378CC998D94F16EE2708B1 /* RawText */ = { + B7B238CE50E038117537D10FDBB462C7 /* Pod */ = { isa = PBXGroup; children = ( - 2424F8AE03455AE0AD4A1E5A7493D364 /* RCTRawTextShadowView.h */, - B40F1F64B26A5BC6C96BF54AB2B955BA /* RCTRawTextViewManager.h */, - ); - name = RawText; - path = Libraries/Text/RawText; - sourceTree = ""; - }; - B8F99C18DCE72342F89499168592A304 /* Pod */ = { - isa = PBXGroup; - children = ( - 34A86EE39FC721812E150ADDC0285835 /* React-RCTText.podspec */, + 11B51F34AD31D04ECDEA6D348278AF7D /* EXLocalAuthentication.podspec */, ); name = Pod; sourceTree = ""; }; - B940B19540CFB6704B2787E54A9F9E33 /* RCTTypeSafety */ = { + B864EE777F6E3ED39E767110907AB296 /* Support Files */ = { isa = PBXGroup; children = ( - 2821FFDF8BCC296FAA8C2F7CFD2C3BF5 /* RCTConvertHelpers.h */, - 6687502C2231BC03919355A6C7410E2D /* RCTConvertHelpers.mm */, - 7AB4410136A763B5B97A1CB08BD038DF /* RCTTypedModuleConstants.h */, - 7C51B7072F6C7CE2E0CCE2E4A012C53C /* RCTTypedModuleConstants.mm */, - 39A131E286162E6DA10FF152F1A36768 /* Pod */, - D1F8E18A61606D64AA0D8E46FA7B9167 /* Support Files */, + 02DA98992F84389AAB8E5B6036D0F305 /* react-native-blur-dummy.m */, + C0F4D931F564B9208DE178D639DE0CC1 /* react-native-blur-prefix.pch */, + 2D34C1E13A0B82E82411A8B80CF5E46E /* react-native-blur.debug.xcconfig */, + 589EFF994DF8E0A93512C85DE371D6DD /* react-native-blur.release.xcconfig */, ); - name = RCTTypeSafety; - path = "../../node_modules/react-native/Libraries/TypeSafety"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/react-native-blur"; + sourceTree = ""; + }; + B8F99F34AAD023195BE9917C547423DB /* Support Files */ = { + isa = PBXGroup; + children = ( + 831F2BE7509E960A2247F8069F11035A /* RNVectorIcons-dummy.m */, + 20D5664A86207CE161CEA323A6300292 /* RNVectorIcons-prefix.pch */, + B63229FD73062316E617CD530F989313 /* RNVectorIcons.debug.xcconfig */, + 61A4BB49B9D906AC2985AD80CF88A646 /* RNVectorIcons.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNVectorIcons"; sourceTree = ""; }; B9811984AFAD42C4FBA4991F41A2AEC8 /* encode */ = { @@ -20546,25 +21050,6 @@ name = encode; sourceTree = ""; }; - BA6688891CC720AC21D81DDFBABAB04F /* Pod */ = { - isa = PBXGroup; - children = ( - C904BDF6A065A29A89B8C4A13014D7EC /* EXImageLoader.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - BAD1D0C5EF201F8233E4B8920E1B8C23 /* Multiline */ = { - isa = PBXGroup; - children = ( - 7947BD29451A52BD502A1B3010C36A0C /* RCTMultilineTextInputView.m */, - F6403C9B3737BF0A8227211F0D7E766A /* RCTMultilineTextInputViewManager.m */, - A5DCFDB86CD8D180B15DDB0B01F95122 /* RCTUITextView.m */, - ); - name = Multiline; - path = Multiline; - sourceTree = ""; - }; BAD71722BBC8434CD53F97DB4A5FEFCC /* GoogleDataTransportCCTSupport */ = { isa = PBXGroup; children = ( @@ -20586,114 +21071,247 @@ path = GoogleDataTransportCCTSupport; sourceTree = ""; }; - BB039AD66D6DB5EBF0EC438045215BA2 /* RawText */ = { + BB9FF11C4412FB2EBC8E2587466E69A1 /* keyboardinput */ = { isa = PBXGroup; children = ( - F54D738D337896E6486097BA312D1F72 /* RCTRawTextShadowView.m */, - C99BEAAE170C7F5ADA4D4DBDE7A9D96A /* RCTRawTextViewManager.m */, + 54644E6F3A8F864DD4E2393312366EF8 /* lninterpolation */, + F93ECDB377FFD54E677EC59801E4DA9B /* rctcustomInputcontroller */, ); - name = RawText; - path = RawText; + name = keyboardinput; + path = ios/reactnativeuilib/keyboardinput; sourceTree = ""; }; - BB56111288A408A22C6AD90F22007528 /* UMViewManagerAdapter */ = { + BBB3D4826FC68C411A951E9AB063DC5E /* Pod */ = { isa = PBXGroup; children = ( - CB623EA6491F7CAF7CDD9F052245936C /* UMViewManagerAdapter.h */, - A344BD42BC4A0A7A1F5EC360C82007A9 /* UMViewManagerAdapter.m */, - ); - name = UMViewManagerAdapter; - path = UMReactNativeAdapter/UMViewManagerAdapter; - sourceTree = ""; - }; - BB8DDB70C9005F59D3EE5829D83FFEB2 /* Pod */ = { - isa = PBXGroup; - children = ( - 3F051AEDE91D4957C0C3F84E70C68181 /* UMBarCodeScannerInterface.podspec */, + 0838CF8772F2CC870DF0D5BF82E230A3 /* LICENSE */, + 2895825EEFCDE8C55ADB08F03392972E /* react-native-simple-crypto.podspec */, + 14E8FC1E63C33E1D4CFF79F2255BE340 /* README.md */, ); name = Pod; sourceTree = ""; }; - BDBD70BA4ED618FAA00BBC6D2ACE797B /* EXWebBrowser */ = { + BBCD12B2F494819405331A6F6C59B9DC /* Pod */ = { isa = PBXGroup; children = ( - D1F307EB2FDDF4F6254BBE363533761D /* EXWebBrowser.h */, - 639BDD55C6A351931E7B5962D40BF504 /* EXWebBrowser.m */, - 5277176DB311DCAB0527969F72F55598 /* Pod */, - 07E49D0620CF13E4330DF2FC26F45F12 /* Support Files */, - ); - name = EXWebBrowser; - path = "../../node_modules/expo-web-browser/ios"; - sourceTree = ""; - }; - BE3F1DEAEE3185292D9A5B79EC701EFF /* Support Files */ = { - isa = PBXGroup; - children = ( - 82FE8D534BF2AFBFA6988C6E000FB2D5 /* RNRootView-dummy.m */, - B4702434A0A335EFD4EA389FF6AD9DE9 /* RNRootView-prefix.pch */, - 316347958B816CA26656E7CA31F4EE08 /* RNRootView.debug.xcconfig */, - 0B14E29BC571D6BC0A7F519621032085 /* RNRootView.release.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNRootView"; - sourceTree = ""; - }; - BE7B95F48AC401A99194EDAC88CF2888 /* Support Files */ = { - isa = PBXGroup; - children = ( - 476A06F8FF3F0291E4E7579E63037F9F /* ReactNativeUiLib-dummy.m */, - 8489282849C955E49516A3FB5FCC01A7 /* ReactNativeUiLib-prefix.pch */, - 91703D44BBF8ADD79C29397A227C61E1 /* ReactNativeUiLib.debug.xcconfig */, - 407416942DB174729AF480B0485E62CC /* ReactNativeUiLib.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/ReactNativeUiLib"; - sourceTree = ""; - }; - BE9DEB22C8F36168648A0EDA294219F9 /* Support Files */ = { - isa = PBXGroup; - children = ( - FBF5EF33427EB1021979F026356D1E44 /* React-RCTImage-dummy.m */, - FBAD02DEE06C8AA685D1ECAF3C517369 /* React-RCTImage-prefix.pch */, - B741D44A1AF957ABBBDBDB5B8B746C0F /* React-RCTImage.debug.xcconfig */, - 7D60683732997EED066EC0AB0345CC3F /* React-RCTImage.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTImage"; - sourceTree = ""; - }; - BECA427D890683D3DF13CB8980C8B73F /* Interfaces */ = { - isa = PBXGroup; - children = ( - 8205F5FE7761128F3F68F5C115896879 /* UMAppLoaderInterface.h */, - 3687848C4EC6E4E90F824D15E4A2D4E3 /* UMAppRecordInterface.h */, - ); - name = Interfaces; - path = UMAppLoader/Interfaces; - sourceTree = ""; - }; - C0BE6C0D1A7283FABB0856AE969EFDD9 /* Support Files */ = { - isa = PBXGroup; - children = ( - ADE027B1B380A6AEF629544CB54C2721 /* RNFastImage-dummy.m */, - 8386D6C82BF5872E4E7790B6602841E6 /* RNFastImage-prefix.pch */, - AED24E7E15A398FD2C86ADF7B3966EF0 /* RNFastImage.debug.xcconfig */, - 3538A94DC5B3E4A351A04D08B566C024 /* RNFastImage.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNFastImage"; - sourceTree = ""; - }; - C25D8BDA963961E072FC247850470BD5 /* Pod */ = { - isa = PBXGroup; - children = ( - 5CCA2B6B419C8CD92F127D2EDF5AD457 /* LICENSE */, - CEAF8556BFBA1D1E6EE7C1F298275E9F /* README.md */, - D0A27415CB009E5CDA722E846BFE067A /* RNGestureHandler.podspec */, + 8C02F3C11B8B542603922016BFECE1B3 /* RCTRequired.podspec */, ); name = Pod; sourceTree = ""; }; + BBEA79C48F83498C265AE187467CA896 /* EXPermissions */ = { + isa = PBXGroup; + children = ( + 55D918DA09C748DE14493F55B5EF6DFB /* EXPermissions.h */, + 274876894F46385888D92B5FF70E18B5 /* EXPermissions.m */, + B36D2A2E934218455F4CFB5C60922B9A /* EXReactNativeUserNotificationCenterProxy.h */, + 952F961F3F5395DE74B427AED838B647 /* EXReactNativeUserNotificationCenterProxy.m */, + 2086F8EB8E1E136B1E3FCC567017A038 /* Pod */, + 0B691A079711499CB39AA67B7945F227 /* Support Files */, + ); + name = EXPermissions; + path = "../../node_modules/expo-permissions/ios"; + sourceTree = ""; + }; + BC01994F5346B655A7EF2DBB8A594621 /* React-RCTVibration */ = { + isa = PBXGroup; + children = ( + 1B7A5687EC3FECBF2152FC845F27CF0C /* RCTVibration.mm */, + E62A1F105A07C4476D9363A56E5BBAA8 /* RCTVibrationPlugins.mm */, + 67BC0A4C87FEC2C6F4858B1AD83570AE /* Pod */, + 1021CBFA06415F01DCAA687139697296 /* Support Files */, + ); + name = "React-RCTVibration"; + path = "../../node_modules/react-native/Libraries/Vibration"; + sourceTree = ""; + }; + BC8AD7436858385576E3D4D83284830B /* react-native-cameraroll */ = { + isa = PBXGroup; + children = ( + 68F5A2D99D26FA53F6F483CE78272FCB /* RNCAssetsLibraryRequestHandler.h */, + 7039C0FCA8DD90A20EE87615ECC66BC8 /* RNCAssetsLibraryRequestHandler.m */, + B8F219340A061E4C9BCAE205A836076D /* RNCCameraRollManager.h */, + 91509E398C1544A50BA682D970B0C426 /* RNCCameraRollManager.m */, + 60C1BED468D2F0A107DD88511A88F613 /* Pod */, + C9E832C01470FF3A2471A2395831F24B /* Support Files */, + ); + name = "react-native-cameraroll"; + path = "../../node_modules/@react-native-community/cameraroll"; + sourceTree = ""; + }; + BCBF9DB2D24F27DAFBA9B681F1BA2629 /* Support Files */ = { + isa = PBXGroup; + children = ( + 97EEA106B8FDE670E90842205BDC5135 /* react-native-netinfo-dummy.m */, + DC4BE8CF568ED744029CDF35B870724F /* react-native-netinfo-prefix.pch */, + 726E49399B5063C9D4B8A919C8DC332A /* react-native-netinfo.debug.xcconfig */, + AAEB5F0A5261B6D7B056ED1D75CC3CCF /* react-native-netinfo.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/react-native-netinfo"; + sourceTree = ""; + }; + BD687DC53AA49DA999739481B90EE88C /* Support Files */ = { + isa = PBXGroup; + children = ( + B2239967123C25EBE50C9AE997EBA3B2 /* rn-fetch-blob-dummy.m */, + D6BB074FFB236F462289D831184046B2 /* rn-fetch-blob-prefix.pch */, + A6F768252ED54153A55922B20E00C66D /* rn-fetch-blob.debug.xcconfig */, + 0CA6A8600BC7313FDE798B2FEB55E2D6 /* rn-fetch-blob.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/rn-fetch-blob"; + sourceTree = ""; + }; + BDA097E7859EC488E598280848CC0060 /* Support Files */ = { + isa = PBXGroup; + children = ( + E9A7FD5F85D4E9397A1DFCA59AA21099 /* RNGestureHandler-dummy.m */, + 4068B8AF1FED71038AE3FE70D82055F0 /* RNGestureHandler-prefix.pch */, + C8D74669E35EE408A4DE3CEE1FEF52A8 /* RNGestureHandler.debug.xcconfig */, + A013671F5CF9AF26EE93AA8DB5192186 /* RNGestureHandler.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNGestureHandler"; + sourceTree = ""; + }; + BE78E2A6C9710F8E92C2B7B9145E5D12 /* React-jsinspector */ = { + isa = PBXGroup; + children = ( + 3C0E6135E6AF4241D0A7A7B3239C76BD /* InspectorInterfaces.cpp */, + F4158AE7E59BBE121CFE1EC34EF5D4B8 /* InspectorInterfaces.h */, + A9546D3813381F9B6AFCFF80EEED1090 /* Pod */, + C466B75DDB430321CFBB1D3915B47FF4 /* Support Files */, + ); + name = "React-jsinspector"; + path = "../../node_modules/react-native/ReactCommon/jsinspector"; + sourceTree = ""; + }; + BEBBCA05E2B21F81BA65B32551D96384 /* Support Files */ = { + isa = PBXGroup; + children = ( + 52056FC19AE5CE79FA448C8CD56E2440 /* RNDeviceInfo-dummy.m */, + 59C26B81DF6371141DB47D218E5792DA /* RNDeviceInfo-prefix.pch */, + 7752D2A9B047C5C829174949116FD9D8 /* RNDeviceInfo.debug.xcconfig */, + 6DCC0C7F66B675D989796CA6C01D6D6D /* RNDeviceInfo.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; + sourceTree = ""; + }; + BECDB209CC9E861AD21DCC762D862C4D /* Pod */ = { + isa = PBXGroup; + children = ( + 58F641A2244B06835BA45E03ED2D38D6 /* EXAV.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + BF0FA41607BD73699FF511D72C0D6DB7 /* UMTaskManagerInterface */ = { + isa = PBXGroup; + children = ( + 759323202EFD7C39295D2C7CCDC547E7 /* UMTaskConsumerInterface.h */, + 57F145D7F0B28F41789BDD4674BC470E /* UMTaskInterface.h */, + A94FCD9AAF25D7B2B66A4B98CD68586B /* UMTaskLaunchReason.h */, + 2225BB6BB6B2D4F5898831945D3BB4BC /* UMTaskManagerInterface.h */, + FB39E988EB8A89967A85BB29D55C89AE /* UMTaskServiceInterface.h */, + E3BAA685845B495FA3B69CF45A0E1B10 /* Pod */, + 5B611A6E0141478AD75DC5BE14FDE545 /* Support Files */, + ); + name = UMTaskManagerInterface; + path = "../../node_modules/unimodules-task-manager-interface/ios"; + sourceTree = ""; + }; + BF3FDAC75B9F0DE02856F730C991254F /* Pod */ = { + isa = PBXGroup; + children = ( + 80F694FBCE9A3D4733A7A20AEBD4C67A /* UMFileSystemInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + BFBEE6D9669A86D9E7E49186F83EC7C1 /* Pod */ = { + isa = PBXGroup; + children = ( + A7EEF6408FDB5FF81ACAD6D54CBF7D1D /* React-runtimeexecutor.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + BFE7B99AFC0F2FC332FF51BB451AB5F6 /* Support Files */ = { + isa = PBXGroup; + children = ( + D39EE2ECB1DCDBE29E86E36789934FD5 /* EXHaptics-dummy.m */, + ED57072DCCF9248D12FAA58064DA33AC /* EXHaptics-prefix.pch */, + 5358A11D087A13F0F9BAADB9C6044558 /* EXHaptics.debug.xcconfig */, + 27119F2A6238A2FC86DAFDE84A691EB4 /* EXHaptics.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXHaptics"; + sourceTree = ""; + }; + C0FC3DA25325B253DEA3F31467C0C1AF /* Yoga */ = { + isa = PBXGroup; + children = ( + 7ED7E10E5234C551A746021EEC0D7E11 /* BitUtils.h */, + 43FE0A52F652BCA6541CD75F6855A028 /* CompactValue.h */, + 20A5C47A270AF6321ACE7FF6B82E0F0F /* log.cpp */, + 3FA35B251233E0CD2A62A22DE7413B9E /* log.h */, + 786DC84CE97474698A7E3B5134CC6EB1 /* Utils.cpp */, + D48E7AE778250FC2EF3E2A77AB216EB9 /* Utils.h */, + 60048274722CA6F80CC4A99152E981E4 /* YGConfig.cpp */, + E3BEF7877F768148E3E79A624A08A9FF /* YGConfig.h */, + 8431F6CE5B1B0F548F4F3EB21BC2AE40 /* YGEnums.cpp */, + BD92A024E058A1F1ACA50D8C9EA59838 /* YGEnums.h */, + 6CD2507059F1C896B0B80005FEC8F1CC /* YGFloatOptional.h */, + 0D2CC58B4BCB1C4FF563AF13F3F12026 /* YGLayout.cpp */, + B575DF54154C3EFCDB5A1FF18BDE48A3 /* YGLayout.h */, + 7580B58FA5ADD47A6A8B642F8F19CB50 /* YGMacros.h */, + 35092844B0028488DE18CCC8D155D32B /* YGNode.cpp */, + 2EFE75415A489ABB03321806F54AB213 /* YGNode.h */, + 603131F97BAA207E67383A8A998042A4 /* YGNodePrint.cpp */, + AFA925ABF9B55E902B2FC9DB241E3192 /* YGNodePrint.h */, + A5A8A6223D3018087503ED099D20C803 /* YGStyle.cpp */, + E36DAA2644DEBB87D9DAF5D9B3E3637D /* YGStyle.h */, + 1886BD93D7B131F8DBADECC1AA9B654F /* YGValue.cpp */, + 040D2C66F76925DFE2827DAF8892434C /* YGValue.h */, + 0D5DAD0301106C54829D77F89B127853 /* Yoga.cpp */, + B21A11DD91D2D39B41DAC66618429CFE /* Yoga.h */, + 04925E4C65CD37F4F5BCEA972570D447 /* Yoga-internal.h */, + A7FBF5AF7B30EDB3E42DB0782927BFF6 /* event */, + E082050E5CBF98E49AF14FD88750E6FA /* internal */, + F5C468E2C8EB29A22C73F934983E7DCB /* Pod */, + 291031A305B371D4AEE4F1DA066ACD4E /* Support Files */, + ); + name = Yoga; + path = "../../node_modules/react-native/ReactCommon/yoga"; + sourceTree = ""; + }; + C2550707A5AC3D8A3EF4CB8AC0F7536A /* UMSensorsInterface */ = { + isa = PBXGroup; + children = ( + DEA2D806E5C15B459D214AD5626635F9 /* UMAccelerometerInterface.h */, + 0DE687D9E5000F208A06330A2DE48445 /* UMBarometerInterface.h */, + 85358689783C24A98EC1C4B280D8640B /* UMDeviceMotionInterface.h */, + BF8EAF9B12CBD7900A74B8D532A0C961 /* UMGyroscopeInterface.h */, + BBDEB7A5A1D274B0349AF930BC82FA55 /* UMMagnetometerInterface.h */, + 9FD8D72D506FB7BB9779A6A4738FD3A3 /* UMMagnetometerUncalibratedInterface.h */, + F71F4191E78D842BDE7853052CE116BA /* Pod */, + 69D3D961AC07C97B931878E118178A61 /* Support Files */, + ); + name = UMSensorsInterface; + path = "../../node_modules/unimodules-sensors-interface/ios"; + sourceTree = ""; + }; + C2A30B7BC14C869EC1C303D971779223 /* RCTLinkingHeaders */ = { + isa = PBXGroup; + children = ( + 603DE106673E866A530CB5FBA50E0F94 /* RCTLinkingManager.h */, + 3F078F39E28D25346F07A1C58BABEFCD /* RCTLinkingPlugins.h */, + ); + name = RCTLinkingHeaders; + sourceTree = ""; + }; C352AEE6829F5084C03F1E6270581225 /* Support Files */ = { isa = PBXGroup; children = ( @@ -20704,66 +21322,62 @@ path = "../Target Support Files/FirebaseAnalytics"; sourceTree = ""; }; - C5408299CF2DDC5003D97EE48B3A8446 /* Drivers */ = { + C4399765432138CF731F49C11D818658 /* Support Files */ = { isa = PBXGroup; children = ( - 3C56BFF9530285D0BE157F0826D01C7F /* RCTDecayAnimation.m */, - B12861CBED9CCA065F175446A2800D98 /* RCTEventAnimation.m */, - 309A2E7348A8D74A03AAF190CF5D9F4D /* RCTFrameAnimation.m */, - B75D8EA9B4C056AF9CB67C12DB2B04E4 /* RCTSpringAnimation.m */, + 17845CAD6F547C1EDF098F0E862265FE /* react-native-slider-dummy.m */, + F7A188639F1627BFE03D870F23213D40 /* react-native-slider-prefix.pch */, + B622CF7B7190C737864DAF48DBAD79FD /* react-native-slider.debug.xcconfig */, + 0E9D744742CD8F87F0ACEF7E6DC60ADD /* react-native-slider.release.xcconfig */, ); - name = Drivers; - path = Drivers; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/react-native-slider"; sourceTree = ""; }; - C568FB8111C5FD68EFECF811FE0FA315 /* RNConfigReader.xcodeproj */ = { + C466B75DDB430321CFBB1D3915B47FF4 /* Support Files */ = { isa = PBXGroup; children = ( - EB722064956A2C065476D34F14303583 /* project.pbxproj */, + 1849D9626394B1D952A744349A6634B7 /* React-jsinspector-dummy.m */, + 394476E4469983424DC3D7A08FF9FD34 /* React-jsinspector-prefix.pch */, + 10357CA40184FA064FBB734CE3ECABC8 /* React-jsinspector.debug.xcconfig */, + B9ADA132BEE432456C1FEB59C840BF3D /* React-jsinspector.release.xcconfig */, ); - name = RNConfigReader.xcodeproj; - path = ios/RNConfigReader.xcodeproj; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-jsinspector"; sourceTree = ""; }; - C5C7FF1D4FB2E576212F7738AE527ED4 /* DevSupport */ = { + C50B2DC7B1D03CFFCDFC983C705BB30E /* platform */ = { isa = PBXGroup; children = ( - DB913D5A0F6724EBE0C9FB020E595E3F /* RCTDevLoadingViewProtocol.h */, - 173016ACD0D682A252A2E1BC67C390D4 /* RCTDevLoadingViewSetEnabled.h */, - 2078F51123D0A8E7CD3B49B2B0AE322E /* RCTDevLoadingViewSetEnabled.m */, - 942FA1F71D2B417268A86A4432668C5A /* RCTInspectorDevServerHelper.h */, - A6F24723A44CF8363D5E898D085C6FAA /* RCTInspectorDevServerHelper.mm */, - 8BAA87E670DEE936E5745F8F7A840F85 /* RCTPackagerClient.h */, - 0CCCBE1567A458789814668277F3F434 /* RCTPackagerClient.m */, - 4472B00AC0D4D8655D54A55A0A190E06 /* RCTPackagerConnection.h */, - 9672E302D45285CA795587F44D6DB174 /* RCTPackagerConnection.mm */, + F44E47364DE167325BBAC8AFB37A73EF /* ios */, ); - name = DevSupport; - path = React/DevSupport; + name = platform; + path = react/nativemodule/core/platform; sourceTree = ""; }; - C5CB8E93CE7AC00486BE0747C77EAC4C /* react-native-cookies */ = { + C556E6A80675BF73DEC959223199473A /* react-native-jitsi-meet */ = { isa = PBXGroup; children = ( - EAB3FDB2FE2D5A5728226A4C79578087 /* RNCookieManagerIOS.h */, - B748CB872ABC5F7BE457CDBB34AFAA97 /* RNCookieManagerIOS.m */, - 94AF627A010DF435275439EB61B0A46A /* Pod */, - 8C905B5F17BC751A01ACDF0EAD37D295 /* Support Files */, + 46F8E31A46FEC6CF9983BA7069B34C96 /* RNJitsiMeetView.h */, + 30CB0B977F5A73E7AFE59076D674E06D /* RNJitsiMeetView.m */, + 98E57AADE4A8D369C30FBB97722F8FB5 /* RNJitsiMeetViewManager.h */, + 753AAAB7744B065CE8CE50EB04D985B3 /* RNJitsiMeetViewManager.m */, + DBFF449F8FD0105F372819BBCAC1D3F7 /* Pod */, + 5D2D5CA4A6F95D76729EA7568BB10504 /* Support Files */, ); - name = "react-native-cookies"; - path = "../../node_modules/@react-native-cookies/cookies"; + name = "react-native-jitsi-meet"; + path = "../../node_modules/react-native-jitsi-meet"; sourceTree = ""; }; - C64ED88509329B3D5F94ABB23AE1D5C4 /* rctcustomInputcontroller */ = { + C5F15D6DBC185E120658917AE5C9B8E3 /* UMConstantsInterface */ = { isa = PBXGroup; children = ( - 96541F00E230E1C55C513E2FBEE5AE99 /* RCTCustomInputControllerTemp.h */, - 460ACBD9D5F38F734A4148F9B6A2FD86 /* RCTCustomInputControllerTemp.m */, - 5BD6848DDEF9209E9B81397B5A1F9AF5 /* RCTCustomKeyboardViewControllerTemp.h */, - 916D3FB53683467EB945DF91372A3978 /* RCTCustomKeyboardViewControllerTemp.m */, + 4B5D6AC6CE950516BB23A83FB1478C92 /* UMConstantsInterface.h */, + 719E02D3C4FC8F494174E6D5C0CAA682 /* Pod */, + D81D332C912164717FB625DE697A156D /* Support Files */, ); - name = rctcustomInputcontroller; - path = rctcustomInputcontroller; + name = UMConstantsInterface; + path = "../../node_modules/unimodules-constants-interface/ios"; sourceTree = ""; }; C6C82D686F18C4ACF88623AB9D347067 /* CppBridge */ = { @@ -20773,14 +21387,6 @@ name = CppBridge; sourceTree = ""; }; - C6D6FCD54F098617F40974E6011417A2 /* Pod */ = { - isa = PBXGroup; - children = ( - 6A2AF247FC31D3D4EC1388A44719EF39 /* React-RCTImage.podspec */, - ); - name = Pod; - sourceTree = ""; - }; C8A8E855EDDC87385228AF9B4F73D7ED /* Flipper */ = { isa = PBXGroup; children = ( @@ -20818,10 +21424,10 @@ path = Flipper; sourceTree = ""; }; - C939B4B4C314D315EF8A7BA7CB21977E /* Pod */ = { + C92D2063B50D3797E0D045BB8BEDC2AB /* Pod */ = { isa = PBXGroup; children = ( - 169F2CBDD4ABBC6B9C928FAC80A5F106 /* UMFileSystemInterface.podspec */, + 14432B86EFD027ED726F147359E42916 /* React-callinvoker.podspec */, ); name = Pod; sourceTree = ""; @@ -20837,120 +21443,172 @@ path = "../Target Support Files/FirebaseCoreDiagnostics"; sourceTree = ""; }; - CB2DDA8F9817C102433CCD630DBF73EC /* Support Files */ = { + C9E832C01470FF3A2471A2395831F24B /* Support Files */ = { isa = PBXGroup; children = ( - 826924820A89CCD41EAFFDFF5C397862 /* UMFaceDetectorInterface.debug.xcconfig */, - 584D1E9388E75686B93B35E2FC543999 /* UMFaceDetectorInterface.release.xcconfig */, + E5E64F267161CCD740E6E399862D33D0 /* react-native-cameraroll-dummy.m */, + 08E90EAC02328C836CD7F4397639F4A1 /* react-native-cameraroll-prefix.pch */, + E9F8ED4171EE1BF4C32DAD3F2AC794BF /* react-native-cameraroll.debug.xcconfig */, + 67FC132B2BFBA61E75482AE535AD2BCB /* react-native-cameraroll.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; + path = "../../../ios/Pods/Target Support Files/react-native-cameraroll"; sourceTree = ""; }; - CB45A8B7A877F2E5397CED1AC384B1EF /* Support Files */ = { + CB3CDC510C88B70F6A1C208DD6B15F79 /* Pod */ = { isa = PBXGroup; children = ( - 3CEF157F7B039B08A56ECFFA6E9E220F /* React-RCTVibration-dummy.m */, - 5B3170EE2F9508AC106F091EE78E7CF3 /* React-RCTVibration-prefix.pch */, - 14977B368D2972368DF311C460A6313D /* React-RCTVibration.debug.xcconfig */, - E3E671D3E3C942C616A47A8AE0504FF5 /* React-RCTVibration.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTVibration"; - sourceTree = ""; - }; - CB81D6769D983ECD436EB6AF80319976 /* bugsnag-cocoa */ = { - isa = PBXGroup; - children = ( - A0985094C3F57D957A06B8DDC8531465 /* Source */, - ); - name = "bugsnag-cocoa"; - path = "bugsnag-cocoa"; - sourceTree = ""; - }; - CBD31E3FC5A9279A38C8C0760FC0AA04 /* react-native-orientation-locker */ = { - isa = PBXGroup; - children = ( - CC4F11947211DFCAFF2C712A29E3F797 /* Orientation.h */, - 0DEE1A43A104C13CFC47380A969848F8 /* Orientation.m */, - 244A97C2239766766E4C9DC7A0D9B6EE /* Pod */, - 9ED59123529EAE6B2B06F6A284998B4F /* Support Files */, - ); - name = "react-native-orientation-locker"; - path = "../../node_modules/react-native-orientation-locker"; - sourceTree = ""; - }; - CD7792505F9443D79FA8CA5AF64F26ED /* Pod */ = { - isa = PBXGroup; - children = ( - 59CF888CFAFFFA6819FEC7C84676F0C2 /* React-RCTLinking.podspec */, + 42734B3C6C2639A8757DAB59B6F974E4 /* LICENSE */, + 0B6D05B848280DC9B65AF5FC24F1F294 /* react-native-restart.podspec */, + 721EFFEAF7FEF462064ADAE255C90DED /* README.md */, ); name = Pod; sourceTree = ""; }; - CE36421284D4B03C15B3320F96CC5441 /* EXConstants */ = { + CB9661D71BCD7348E4BC7B92F1AD56D0 /* Pod */ = { isa = PBXGroup; children = ( - 30666158D35862E7FD3B905412A31D0B /* EXConstants.h */, - 343678FC9AEFDE8EE70E7430AB1C0E23 /* EXConstants.m */, - 385A49109272834E21E7E49A478041CB /* EXConstantsService.h */, - B7198677D9634621B1E589E131CAEE47 /* EXConstantsService.m */, - B239FED2162B5D28E8B0F31DD29753B5 /* Pod */, - 69FF7C6E49DC5EF28BA2CFC27CA19AB8 /* Support Files */, + 7B191C0582A1D295552BE54AB1442E8E /* EXConstants.podspec */, ); - name = EXConstants; - path = "../../node_modules/expo-constants/ios"; + name = Pod; sourceTree = ""; }; - CE5A5B2F5138F8818ACC45DC5E2EB92C /* react-native-background-timer */ = { + CBFA2D6BA426C9FD78F78F78295C0C63 /* Pod */ = { isa = PBXGroup; children = ( - F524BACD8B4939A2E07564D7F55F5BA5 /* RNBackgroundTimer.h */, - 9903834EFC5CC8654040685802619723 /* RNBackgroundTimer.m */, - 669BDCEBCE1471603467DC7FD8413596 /* Pod */, - 05DDC1AF8253CA2D88EB4BAC905C065D /* Support Files */, + 8D9321406BF7CDEAA9D3F9279CB455A8 /* FBLazyVector.podspec */, ); - name = "react-native-background-timer"; - path = "../../node_modules/react-native-background-timer"; + name = Pod; + sourceTree = ""; + }; + CDCC2CFFA9150AFCBED6BFF8DF9001C3 /* UMModuleRegistry */ = { + isa = PBXGroup; + children = ( + 6810A6ED3034CA85E3808DA46E080054 /* UMModuleRegistry.h */, + 32D34E1C373307BDCED0A4343DFDA2C3 /* UMModuleRegistry.m */, + ED75D8954D22516560576D647EF26B78 /* UMModuleRegistryDelegate.h */, + ); + name = UMModuleRegistry; + path = UMCore/UMModuleRegistry; + sourceTree = ""; + }; + CDEA12D8150F0166590FD46EEE7CA305 /* Pod */ = { + isa = PBXGroup; + children = ( + 75D2A5E2501562326163271A71C6F178 /* React-Core.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + CE15F0ED35AE8D19B52658CA1C0E0D05 /* Pod */ = { + isa = PBXGroup; + children = ( + 7E005D68E62F981E2203A551D6EA372D /* React-RCTImage.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + CE5E6925FFFB8A005BE06E012D5ECF63 /* Pod */ = { + isa = PBXGroup; + children = ( + 5273FC4E408E37E58B7C8FD18FE41F20 /* LICENSE */, + AC285F19833FF6C501FF2EFFBEE5F876 /* README.md */, + 750A0AA43A23732D2135BFC9A2BC39A5 /* RNFBApp.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + CEED4DC9EE9C33EE5D7640838EBF8A41 /* Tools */ = { + isa = PBXGroup; + children = ( + 72A91CE4609B0AF92D06577F1DD39A0F /* BSG_KSArchSpecific.h */, + 66E95A42F0A22197DC0CC828955BCA58 /* BSG_KSBacktrace.c */, + ABD11CDC541F63D4559316516DA9F8BE /* BSG_KSBacktrace.h */, + 7BA63D71EF3A6A046A72FA153D8D8971 /* BSG_KSBacktrace_Private.h */, + F576BCC4172904927F23B98D1F64E741 /* BSG_KSDynamicLinker.c */, + 0B87A5BBA8FA573F708551CD582ECB53 /* BSG_KSDynamicLinker.h */, + FA91F551FEA0B48AF49F7EDFF5C38E56 /* BSG_KSFileUtils.c */, + 330CD7BDA80EE0DACB19C7498C4FDF00 /* BSG_KSFileUtils.h */, + 7975AC71361D847C020289BF2CE5BBB9 /* BSG_KSJSONCodec.c */, + D79ECBAD9D023B23590DA3F9860C4878 /* BSG_KSJSONCodec.h */, + 0F1AF0D76254361FAB87C8DBA8DF7440 /* BSG_KSJSONCodecObjC.h */, + E9C9B3A573476303618E7B4B8707A48D /* BSG_KSJSONCodecObjC.m */, + 0EAC3F88A630AB3DF219B13A70581EEB /* BSG_KSLogger.h */, + BBE9C3596335651D37543687ED4457F1 /* BSG_KSLogger.m */, + FC83FB36E6881FC37B06AB32B3F37279 /* BSG_KSMach.c */, + 4A791F484CACBA763C26A0655365C583 /* BSG_KSMach.h */, + 0916BB36DF829DD5FD4D51AA3D725A7B /* BSG_KSMach_Arm.c */, + 00B98116A9CCF0A918097FB180D34F09 /* BSG_KSMach_Arm64.c */, + 95886B2AC7494B540A28ECCD92E6914D /* BSG_KSMach_x86_32.c */, + 3BE5E4F1B8D8EEEACB8C8E1EBE765069 /* BSG_KSMach_x86_64.c */, + 9F3324150D838B5A79EFFA3B7990E404 /* BSG_KSMachApple.h */, + AB69548D24BE673DDA52B188807B39E6 /* BSG_KSMachHeaders.c */, + CADCD6AC0A44BC12DF3E31CFFCB2A47D /* BSG_KSMachHeaders.h */, + 880C9C45607A70557E9BA69E0F44E00D /* BSG_KSObjC.c */, + E2B5FC28C6329188208C5332F782776C /* BSG_KSObjC.h */, + A7F3286AAEC755CDF16E674143494868 /* BSG_KSObjCApple.h */, + 5215B67020579C32FA153F00EE4FBC8D /* BSG_KSSignalInfo.c */, + 9C0A981168E1E4D33DE99B228E8298F7 /* BSG_KSSignalInfo.h */, + F426EC127A24804A5AF0A94BBCFFD9E3 /* BSG_KSString.c */, + 308C47CE2D3A09406168330B0D50A90F /* BSG_KSString.h */, + 5A73746A235A5F24EC13651F3F434619 /* BSG_KSSysCtl.c */, + 7F78273B44B4DA42DBE6141598922D84 /* BSG_KSSysCtl.h */, + 87EF8DAC74FFF7785C03693CE6ED7236 /* NSError+BSG_SimpleConstructor.h */, + 6250AE0BC5C931BC2D8257FEA03EC40D /* NSError+BSG_SimpleConstructor.m */, + ); + name = Tools; + path = Tools; sourceTree = ""; }; CF1408CF629C7361332E53B88F7BD30C = { isa = PBXGroup; children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, - DC62DE453EDD3B6F11647ACA09C783AE /* Development Pods */, + 1B335148B93033657E20AC9E4B039735 /* Development Pods */, D89477F20FB1DE18A04690586D7808C4 /* Frameworks */, 120C1FBC82BE1BC7AE0D71BD6C462DD0 /* Pods */, - 8BCDA242335B32DDD47E0EF491D17437 /* Products */, - 57C9E2EC2DF45CDE277B0C080BA1D71E /* Targets Support Files */, + 4F324F96B78624E3B6F2EDE9CF6B621A /* Products */, + 560117F122F5EAE4590F0BBE856382C5 /* Targets Support Files */, ); sourceTree = ""; }; - CFA8A97DFF17C5FB086D48D519974F0A /* RNFBApp */ = { + CF3E8839112DE2F8209103C6AD5FE610 /* Support Files */ = { isa = PBXGroup; children = ( - 1ED20F861A8E664E639B42BFF8598BE6 /* RCTConvert+FIRApp.h */, - 643C284C788DFDDA64CE7315DE23C92D /* RCTConvert+FIRApp.m */, - 122737EA5AE2080E027AFC52CB8BAEEF /* RCTConvert+FIROptions.h */, - E7BC5D722F2B2E81A4AEB2E20E18DCC0 /* RCTConvert+FIROptions.m */, - BCBD15405D042D8A8F4FFB0D2457382D /* RNFBAppModule.h */, - 09D76C81D7B4BB1B8B59C71D43891582 /* RNFBAppModule.m */, - 6A4AF1326E421028E60AF99BCF020020 /* RNFBJSON.h */, - 7B8F97C229DB76EA48CE693024FC5BE1 /* RNFBJSON.m */, - 618CEA2056B333277B5FDB6C9A335161 /* RNFBMeta.h */, - 7BED3E9E4BF7DC3DC2B504642ACAAE18 /* RNFBMeta.m */, - FA437AE1A5188A2FB5942F77DEEE86A1 /* RNFBPreferences.h */, - 33B1D2967436E2AACBDD00065D25DDDE /* RNFBPreferences.m */, - 577EABC9E9CB6E84A24FED8B74000D09 /* RNFBRCTEventEmitter.h */, - E16016F95B6491DB66C0EAF47372B708 /* RNFBRCTEventEmitter.m */, - EA648D6458C99285810BE94E0A081CC1 /* RNFBSharedUtils.h */, - EA9F3A781591A98C0215C292BCED8C5C /* RNFBSharedUtils.m */, - E0832E339DA9B9BD8D53C61E368C8471 /* RNFBUtilsModule.h */, - A15F026963BAE73C359F1DFA620736CA /* RNFBUtilsModule.m */, - C04103D32BA694191D9D739DCC7149D9 /* RNFBVersion.h */, - 98D4659209D7A8E6E0AED3B955D2C667 /* RNFBVersion.m */, - 512B51AAB4B8C485B0EEC2915F1537CA /* Pod */, - 10C25D8017B2D3306720EC99B681838D /* Support Files */, + 93A57444DDE85F66B2D236FA286C7281 /* EXAV-dummy.m */, + 54E444AF140E6610ABEB65A9939202F1 /* EXAV-prefix.pch */, + 654A312852DD07D4EC6DC4D1DF016102 /* EXAV.debug.xcconfig */, + E201E516C29C03E985F33F4B984DC851 /* EXAV.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXAV"; + sourceTree = ""; + }; + CF47CCB4B0D7AE3C64A1E8209912222A /* RNFBApp */ = { + isa = PBXGroup; + children = ( + B4B0CDEF0F319F78ECA60005B35D15D0 /* RCTConvert+FIRApp.h */, + C38A463A289BDC39E11BEFD5870CA52C /* RCTConvert+FIRApp.m */, + A00C340A4B1A226F54946F261788FB14 /* RCTConvert+FIROptions.h */, + 003CEEB7A99455C56D1CC82459FFC621 /* RCTConvert+FIROptions.m */, + 64272172F300480AAB5564037E52F9C2 /* RNFBAppModule.h */, + B98CDF7AE9D73022D3C6DAAA3A63DBE7 /* RNFBAppModule.m */, + 68D9357F6B530E418ECB4089AF8372A5 /* RNFBJSON.h */, + 2A8048665A94723F5E7236C65B4D80F5 /* RNFBJSON.m */, + CA557537137B6A0D183A619E100A10F7 /* RNFBMeta.h */, + 16D3F3AAD051C0568C7766CD69007D0A /* RNFBMeta.m */, + D86615BEDC991166E3F53C91B920E5FC /* RNFBPreferences.h */, + EBA6F0DD4A3B953CD39A34A3970D8304 /* RNFBPreferences.m */, + BD56CEF8B6BCD247C23E4101C7DD84AC /* RNFBRCTEventEmitter.h */, + 992A830F43307EFD1D876DEB3FA56EB6 /* RNFBRCTEventEmitter.m */, + 4BDD0D0B1D3BA5FD4C57167273A37400 /* RNFBSharedUtils.h */, + 7B8AF369F25FF411A049E73F240EF7F1 /* RNFBSharedUtils.m */, + BA6458BF22C37B2D7D59E6DEA84BBD75 /* RNFBUtilsModule.h */, + 306FDD037C73399B0B0783FC8DF4D453 /* RNFBUtilsModule.m */, + D9D89707F1744A3D93B48B799E2D5D7C /* RNFBVersion.h */, + 8AAD0CD25566C3DF95A09CE18005BFDD /* RNFBVersion.m */, + CE5E6925FFFB8A005BE06E012D5ECF63 /* Pod */, + 65656180EE78A49100F9F87B921283FA /* Support Files */, ); name = RNFBApp; path = "../../node_modules/@react-native-firebase/app"; @@ -20968,59 +21626,12 @@ path = "../Target Support Files/MMKVCore"; sourceTree = ""; }; - CFF0FC652EA8A07BFFA1E9F0C4E1DAB0 /* React-RCTVibration */ = { + D06623C9D46AC971A9EC0B8EBE0104FF /* Pod */ = { isa = PBXGroup; children = ( - 7873F2160F8B4C80F734A499A5C9FF82 /* RCTVibration.mm */, - 2468288ADCF7AA8E3E71292644C5676D /* RCTVibrationPlugins.mm */, - 98751AAEA77B004C9FCBEE66C8906B39 /* Pod */, - CB45A8B7A877F2E5397CED1AC384B1EF /* Support Files */, + 16CE7502F04D98AC3B1C93CFAA52DBDA /* UMCameraInterface.podspec */, ); - name = "React-RCTVibration"; - path = "../../node_modules/react-native/Libraries/Vibration"; - sourceTree = ""; - }; - D02B7C31EC3D953DA77F512C1F62F7A2 /* UMModuleRegistryProvider */ = { - isa = PBXGroup; - children = ( - FE8D276AB3AA5B533C5AC77559727651 /* UMModuleRegistryProvider.h */, - E52898767AEDB031A12CA583EDBCF540 /* UMModuleRegistryProvider.m */, - ); - name = UMModuleRegistryProvider; - path = UMCore/UMModuleRegistryProvider; - sourceTree = ""; - }; - D0AA7062F768AFA08634458224825A19 /* Handlers */ = { - isa = PBXGroup; - children = ( - E4BE2ADD23760C1229060FC4383D9BFE /* RNFlingHandler.h */, - E0D016825E2950654D7D8820F83BF0F5 /* RNFlingHandler.m */, - 35E173582E3662734807B5B30E6F3E6D /* RNForceTouchHandler.h */, - D308492D39E0D7290B25F9D7770673D3 /* RNForceTouchHandler.m */, - D58D963BC135A918E6889B448E86F66F /* RNLongPressHandler.h */, - 8E79086D0495C334263EF5E5BA0E6674 /* RNLongPressHandler.m */, - 926F89BC8EBC38421D981C9C7D4EBBE3 /* RNNativeViewHandler.h */, - 614E4058F18C064D420942BA82412734 /* RNNativeViewHandler.m */, - 04A72F1A35F3AF83F8CF67BF995DB8DF /* RNPanHandler.h */, - 3AE5122ACA6D6C851A41F6A84E1ADD37 /* RNPanHandler.m */, - 9E86909CA16AF80D052FF852C0CF0F7A /* RNPinchHandler.h */, - 57D92B45F84540F338A1EEA5DB2FB194 /* RNPinchHandler.m */, - 081B0863F7FD9952F66E3F13F2E7749E /* RNRotationHandler.h */, - 28210BC2AA287948C474FC4DE7C13526 /* RNRotationHandler.m */, - E2232A7ED9E7A87AAC256EF00377BE25 /* RNTapHandler.h */, - CC2792273F68555D6B5495E4A1F950DB /* RNTapHandler.m */, - ); - name = Handlers; - path = ios/Handlers; - sourceTree = ""; - }; - D0BA31A1AA07BA93AD9B5DEDBA07AD4C /* vendor */ = { - isa = PBXGroup; - children = ( - CB81D6769D983ECD436EB6AF80319976 /* bugsnag-cocoa */, - ); - name = vendor; - path = cocoa/vendor; + name = Pod; sourceTree = ""; }; D0E11B09D36C3939B7FD43A42B866D1E /* Frameworks */ = { @@ -21031,82 +21642,85 @@ name = Frameworks; sourceTree = ""; }; - D0F1A11F0EFBCF7EEF5BEFC51B1C1438 /* executor */ = { + D0E71086ADCF2FEA20D803FBBECBA339 /* RCTRequired */ = { isa = PBXGroup; children = ( - 34EDD220DA25B2D07F5487518908B99E /* HermesExecutorFactory.cpp */, - ACF4D2F029752CBF4A1A59669F8AAEBA /* HermesExecutorFactory.h */, - 0D3AE6610FC7E51C20F57435DCADF9EB /* JSITracing.cpp */, - 1B1C9F71987AC60FCAFC42E3641B09FF /* JSITracing.h */, + 4546ECEAF10646D27459F8AFDD145330 /* RCTRequired.h */, + BBCD12B2F494819405331A6F6C59B9DC /* Pod */, + 5B2BE19CC4C4E3840DD03936DFB689E9 /* Support Files */, ); - name = executor; - path = ReactCommon/hermes/executor; + name = RCTRequired; + path = "../../node_modules/react-native/Libraries/RCTRequired"; sourceTree = ""; }; - D1F8E18A61606D64AA0D8E46FA7B9167 /* Support Files */ = { + D15ED738D87DD497D46022FF9F0E37B8 /* EXAV */ = { isa = PBXGroup; children = ( - DFC955866A61B9DFFF9F32837718B5DD /* RCTTypeSafety-dummy.m */, - AA1707EEE5CB263C6AD99EAFBC420648 /* RCTTypeSafety-prefix.pch */, - 1C6FC7D8F1E1F3DF9608C971D2CF5C8C /* RCTTypeSafety.debug.xcconfig */, - 4EE245DA9365F9EC3928AB3C32356084 /* RCTTypeSafety.release.xcconfig */, + AA115C6C6F3591F70233C194A5D280DA /* EXAudioRecordingPermissionRequester.h */, + 40D6B8422E3644B47E48FEDC7A277629 /* EXAudioRecordingPermissionRequester.m */, + 9ED419A662981D7AE5D0F29FA5445E7C /* EXAudioSessionManager.h */, + F8D50667E4ED06A26937DE3CB1093BF5 /* EXAudioSessionManager.m */, + F52F4AA3524EB137E5E1FCD4279DD068 /* EXAV.h */, + FA857FDABCDE1F76E178BF9A5E3828C2 /* EXAV.m */, + 9EDAFE445CC359519665AD447C4AF68D /* EXAVObject.h */, + 304FE7BE8CD5D7068F8DDD996E27BD76 /* EXAVPlayerData.h */, + C7C2268BCC9BE5C1853C9EEE1432E4DB /* EXAVPlayerData.m */, + BECDB209CC9E861AD21DCC762D862C4D /* Pod */, + CF3E8839112DE2F8209103C6AD5FE610 /* Support Files */, + EDE6635783718043F3AC5D37203B7564 /* Video */, + ); + name = EXAV; + path = "../../node_modules/expo-av/ios"; + sourceTree = ""; + }; + D28D229C5EE87F7BAB47AF2F689FFA65 /* FBReactNativeSpec */ = { + isa = PBXGroup; + children = ( + 9363660B9A66C416940A5ED430891623 /* FBReactNativeSpec.h */, + F68A5EB0647CE6880D14B79F96C6735C /* FBReactNativeSpec-generated.mm */, + 5FEAEB799AFFB038C3392FC4909A3995 /* Pod */, + 3C14BBE5A6DFBD07A3BFC1B457383596 /* Support Files */, + ); + name = FBReactNativeSpec; + path = "../../node_modules/react-native/React/FBReactNativeSpec"; + sourceTree = ""; + }; + D3D565AD0273ADAF1182FCDB041402D1 /* RNReanimated */ = { + isa = PBXGroup; + children = ( + D0BFF27AF933BF8DFC29BAD4589847E5 /* REAModule.h */, + 20A19B867E87A3F15E66D9D7C0D9DE34 /* REAModule.m */, + A8DC685D979E2B8BDE1E93424E8F30FA /* REANodesManager.h */, + D700921BD027F1AA96650E3B71E9DC89 /* REANodesManager.m */, + 872D2FCB86AC74686DC67A7EE65FA3A1 /* REAUtils.h */, + B05B78FEB2F3E120F651327A9F49C5BC /* Nodes */, + 759853FBE6212AD6A2ABD36D16024E1F /* Pod */, + FC3E1E1924F8AB032732197B8BD6606B /* Support Files */, + 580748C24A4AD51F62DCE59388D39488 /* Transitioning */, + ); + name = RNReanimated; + path = "../../node_modules/react-native-reanimated"; + sourceTree = ""; + }; + D40748F6423A8A1669F834DA2CCA7E6F /* UMImageLoaderInterface */ = { + isa = PBXGroup; + children = ( + ACDBFAED8F715B67451411AA0A54F83B /* UMImageLoaderInterface.h */, + F4832F0C1B0722230AACED41CB08F65F /* Pod */, + 797588B8BF534279FFAF1D3FE1861607 /* Support Files */, + ); + name = UMImageLoaderInterface; + path = "../../node_modules/unimodules-image-loader-interface/ios"; + sourceTree = ""; + }; + D5C4A0DE852AD3ECBBD511124ECEF0E8 /* Support Files */ = { + isa = PBXGroup; + children = ( + D725CF596A4AFE33281DA292DE582717 /* FBLazyVector.debug.xcconfig */, + D31F5C04F4B11BAF9893FCEEBF4FCAF5 /* FBLazyVector.release.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/RCTTypeSafety"; - sourceTree = ""; - }; - D304724A3AD7AD1DC6D3E3BABC3F1AFD /* RNCAsyncStorage */ = { - isa = PBXGroup; - children = ( - 9CE85127C8E2DED72D8DC220F45D2B15 /* RNCAsyncStorage.h */, - 93F2F98EDE5CA6504A7B88517DEF1728 /* RNCAsyncStorage.m */, - 5DEBC1BAF574AFBE0A240EC4B92B9222 /* RNCAsyncStorageDelegate.h */, - 0435F8374CA9EE6E75CAC2B60B667D38 /* Pod */, - A5C9D0506E0FDEAEAC92974CBBA8D5B5 /* Support Files */, - ); - name = RNCAsyncStorage; - path = "../../node_modules/@react-native-community/async-storage"; - sourceTree = ""; - }; - D449AA2702C39DC6BD338C0435115392 /* Pod */ = { - isa = PBXGroup; - children = ( - 65F449F2C0D676302A7D3EFECD8DDEE8 /* EXFileSystem.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - D474787070F91FD07E3F8C20862DF0D0 /* Text */ = { - isa = PBXGroup; - children = ( - 2C28ABA6300CC963452E2F6BE818AC67 /* NSTextStorage+FontScaling.m */, - 08EA6725AF069CFBC31F57266BD61BF8 /* RCTTextShadowView.m */, - 6F0521569B50C41F5CA8E4871C6533CA /* RCTTextView.m */, - C3D5796E9FD6BC56A11C3C5D7232A58D /* RCTTextViewManager.m */, - ); - name = Text; - path = Text; - sourceTree = ""; - }; - D54F8C43C26463759E0B73BC6E1E9880 /* Nodes */ = { - isa = PBXGroup; - children = ( - 7DBE8F496AE84BF950116DBAD4643801 /* RCTAdditionAnimatedNode.m */, - EF68EF03EB2FA1B4700C17BB2CF59E25 /* RCTAnimatedNode.m */, - A7DA6B66535191FCC9E4277512AFBC6A /* RCTDiffClampAnimatedNode.m */, - 25FD3A857C816DC2411312CF09FB956D /* RCTDivisionAnimatedNode.m */, - 0B277106741CBB0E9DC8F0991A8506F0 /* RCTInterpolationAnimatedNode.m */, - 0B6373BD860EF985B4AE6B20F830A699 /* RCTModuloAnimatedNode.m */, - 8AD99CC42EA871973374320DEAAC03B2 /* RCTMultiplicationAnimatedNode.m */, - 16E00F5ECD281A63DC53A6EC3228722E /* RCTPropsAnimatedNode.m */, - 8D95A4792658552AC3DAC799FFAFD857 /* RCTStyleAnimatedNode.m */, - 9B2EACCC7B9C09E722346AD67F4A8713 /* RCTSubtractionAnimatedNode.m */, - 781BC3B3D61FB739D337D760CCCFD103 /* RCTTrackingAnimatedNode.m */, - A633E0CA8CB3074AE2B42AE8864C4D0F /* RCTTransformAnimatedNode.m */, - 1C55B76191027707AA39FB793E942FA5 /* RCTValueAnimatedNode.m */, - ); - name = Nodes; - path = Nodes; + path = "../../../../ios/Pods/Target Support Files/FBLazyVector"; sourceTree = ""; }; D5D5A8EE09B0A91BDC986E578C5DD8B3 /* Core */ = { @@ -21257,87 +21871,36 @@ name = Core; sourceTree = ""; }; - D6134A9E97BDE741C54C5E675CC25981 /* Singleline */ = { + D5F0CA470DA4BE6B46050DA749D431CB /* highlighterview */ = { isa = PBXGroup; children = ( - C6C40EC25C3A800F0125B8E785DFA33D /* RCTSinglelineTextInputView.m */, - 7E01591617629535D184939E51F17771 /* RCTSinglelineTextInputViewManager.m */, - FD1EF5716FFC8DCFEF86FFAB9C756377 /* RCTUITextField.m */, + B4EE1F2A065F2CF26B2C1EB0F8CFB0F7 /* HighlighterView.h */, + 29D8C493EAE7FD366C03A3D9A1E33139 /* HighlighterView.m */, + B7BC91B67A80E1AB170A8F6E59819C61 /* HighlighterViewManager.h */, + 4881DB0D5458E784FDA1D1DB2C6C66BD /* HighlighterViewManager.m */, ); - name = Singleline; - path = Singleline; + name = highlighterview; + path = ios/reactnativeuilib/highlighterview; sourceTree = ""; }; - D68616456CDF0E7EE1DEEC9549D1DFFE /* Pod */ = { + D66284598A6DA33D69CE93DBC9B03E96 /* UMFontInterface */ = { isa = PBXGroup; children = ( - B378EC06F0CDD0BA76B2B7730AB5EB9F /* React-runtimeexecutor.podspec */, + A77C5D2282D9A9D640536AD0C814D836 /* UMFontManagerInterface.h */, + 6A110C638AB89D801A638CD5BE920798 /* UMFontProcessorInterface.h */, + 8E50D0CC014192D8FC11063BA0F86F38 /* UMFontScalerInterface.h */, + 2C8E879CBAB5F3D69BF50A13AD39F50C /* UMFontScalersManagerInterface.h */, + B628BCAA909571D11C0055D68DA9C910 /* Pod */, + EDB227344D35FD0215E5CA6788E10FAD /* Support Files */, ); - name = Pod; + name = UMFontInterface; + path = "../../node_modules/unimodules-font-interface/ios"; sourceTree = ""; }; - D6A9FD2B03550383EC5202DF25E6FA63 /* ReactNativeART */ = { + D74EFFE0E92A52A7E890826465132A73 /* Pod */ = { isa = PBXGroup; children = ( - 3923DC048D6AC93BBF04AF619D5D1A8C /* ARTCGFloatArray.h */, - DE2532D8E1BF64E23FC5BBACE14E87F8 /* ARTContainer.h */, - 1E20DE55FBDC168CFCAC3481AAE0AE96 /* ARTGroup.h */, - 237C663D9AB664CA0DCC2E4C41D2EA60 /* ARTGroup.m */, - 571A7705686EE4EB6614EADDD6412C1B /* ARTNode.h */, - E92B17745BEDC6F2E61FC46B5A44A20A /* ARTNode.m */, - 33F8FFA62D1612F7A046EB3870FF7036 /* ARTRenderable.h */, - E0577486E915045CDD02736A660C2F7F /* ARTRenderable.m */, - E7981AA33A978B0FAAF656BAABE1D59A /* ARTShadow.h */, - CA7DA89021CABC1A3CCE8AD5AEBD8BDA /* ARTShape.h */, - C82538BEE14D28F610D55B44664CE4A7 /* ARTShape.m */, - 6F2FF19D8BFD77A700EB6457E8DD9F0D /* ARTSurfaceView.h */, - 6E89F29E71CAEEC86A9612DEEA4D8DC5 /* ARTSurfaceView.m */, - A83BD1F97D7CD373957C3D179FB9308D /* ARTText.h */, - 4FAFD314E99B5803919A7E4EDC60258E /* ARTText.m */, - F4D7F8A621A168F0A2BD6A18433DAC6B /* ARTTextFrame.h */, - 9782BA2C2185A904892BA6E666886CC7 /* RCTConvert+ART.h */, - B779A2E0BA8CD2969170D30344306604 /* RCTConvert+ART.m */, - 836F70AFCF5B87FD9322F83023C9EA0F /* Brushes */, - 51E82E8924532F142F47998A951F2BCF /* Pod */, - 272789F849F426A81268690001E4FFA7 /* Support Files */, - 720EA738486CB5A5187B419CCEBCD6E6 /* ViewManagers */, - ); - name = ReactNativeART; - path = "../../node_modules/@react-native-community/art"; - sourceTree = ""; - }; - D6BF7BB768641720FE2E02185FFE59A0 /* Support Files */ = { - isa = PBXGroup; - children = ( - BE75A7226F3962DC3F1ABEF524466230 /* RNCPicker-dummy.m */, - D69931D9F869BC3B1C7FAAD424D500CD /* RNCPicker-prefix.pch */, - 529381D173E147F70AEF56A658BB161C /* RNCPicker.debug.xcconfig */, - 7116D28EDA6E4AD76321FE8FB9D10C3E /* RNCPicker.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNCPicker"; - sourceTree = ""; - }; - D6DB593ECD7CE708D883B00FBC602011 /* KeyCommands */ = { - isa = PBXGroup; - children = ( - 187BDA455038E811AA40EF65B502C8FF /* RCTKeyCommandConstants.h */, - 552ACAC9BE797A8DEFA174D0C04DE191 /* RCTKeyCommandConstants.m */, - 7161FAB61D36A7B10B627AC4876AEDA5 /* RCTKeyCommandsManager.h */, - D24933DDC5F3B81257C2F4F169E9F5E6 /* RCTKeyCommandsManager.m */, - 608B0E9402A9F472376F26A96A621E8A /* Pod */, - 7244B1D14F7C8D418FDE04020A68A780 /* Support Files */, - ); - name = KeyCommands; - path = "../../node_modules/react-native-keycommands"; - sourceTree = ""; - }; - D748446A2BDCE4280D5FF1A3F4DF96C3 /* Pod */ = { - isa = PBXGroup; - children = ( - 488E883A1668AD27DE02DA6C8B1166EB /* LICENSE.md */, - 38CCBAE1DA43B6128ACC21C7FF1A7712 /* react-native-document-picker.podspec */, - F7596430F9704FDF1F9AFF41AEB6B95C /* README.md */, + 784DEF566EEE9ED8B16D39E08CBC534A /* React-RCTNetwork.podspec */, ); name = Pod; sourceTree = ""; @@ -21375,6 +21938,45 @@ name = Resources; sourceTree = ""; }; + D7BB50B092A36558115E67927BEA60A0 /* Pod */ = { + isa = PBXGroup; + children = ( + 55191A8A5AD6909B4F06BF8902C0A36E /* EXFileSystem.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + D8096B7AEC97A59C7C7D5A5E93C22202 /* Hermes */ = { + isa = PBXGroup; + children = ( + 9BD031E9FB115C1968702E67B4DD73A4 /* executor */, + 99E18A6BC79341D155808C49D93EDFA4 /* inspector */, + ); + name = Hermes; + sourceTree = ""; + }; + D81D332C912164717FB625DE697A156D /* Support Files */ = { + isa = PBXGroup; + children = ( + 33BC57FD8C3AF3FCF4BE94CC00476321 /* UMConstantsInterface.debug.xcconfig */, + EF66E1865FB77B1C24A04F48399DC43D /* UMConstantsInterface.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; + sourceTree = ""; + }; + D83D43E1AE745172DA695D03C2BE1296 /* Support Files */ = { + isa = PBXGroup; + children = ( + 4D978CC181C344845AC6FDCFAE716AC1 /* ReactCommon-dummy.m */, + C5BA21FE6230E9775ACB8D055FFFB703 /* ReactCommon-prefix.pch */, + 4DA79D93AE2E4975346F958D50E1974B /* ReactCommon.debug.xcconfig */, + 2DC979E4C53D61D48A37D92D822E0464 /* ReactCommon.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/ReactCommon"; + sourceTree = ""; + }; D89477F20FB1DE18A04690586D7808C4 /* Frameworks */ = { isa = PBXGroup; children = ( @@ -21382,15 +21984,6 @@ name = Frameworks; sourceTree = ""; }; - D8C79E7331D4D6A7A90899D44EFC9CA6 /* core */ = { - isa = PBXGroup; - children = ( - AB5AB23ED2F7714B3ABBC2F7E6E887BF /* platform */, - 1AC56EB3837AE01DA46D3EDB634A7544 /* ReactCommon */, - ); - name = core; - sourceTree = ""; - }; D8E8B0BA35328310950576D70F36C2C5 /* YogaKit */ = { isa = PBXGroup; children = ( @@ -21406,56 +21999,6 @@ path = YogaKit; sourceTree = ""; }; - D93AE74BC60380A53AB4E5B562EF4724 /* Services */ = { - isa = PBXGroup; - children = ( - 08559A024003E127EC0CC129D72EE27C /* UMReactFontManager.h */, - FA38DF5A10384F7C38F6713D7579E2F7 /* UMReactFontManager.m */, - 87313FD28D8E6BA857907A1617E2E4F1 /* UMReactLogHandler.h */, - B78B318FBBAB55DEB6EA709E9B47506A /* UMReactLogHandler.m */, - 77D46E0618613F508E55962FFBD13DFE /* UMReactNativeAdapter.h */, - 234DFB6C65D79446F64AC817870B9DC0 /* UMReactNativeAdapter.m */, - BF0D57DEFC9F3C893CD0AED0670CB410 /* UMReactNativeEventEmitter.h */, - 4EA5CA7ED8EB6661AEE63F650BAB984B /* UMReactNativeEventEmitter.m */, - ); - name = Services; - path = UMReactNativeAdapter/Services; - sourceTree = ""; - }; - D9A5EBA44539396AB49EF6B38CC7A344 /* Support Files */ = { - isa = PBXGroup; - children = ( - B8968D530ABEFF71757BB9BE16BF12EA /* BugsnagReactNative-dummy.m */, - C63E9486192BD56B2F5ECE77BA6B22D7 /* BugsnagReactNative-prefix.pch */, - 01756E118E93517E177C2CA477C8EC6C /* BugsnagReactNative.debug.xcconfig */, - 983CD0BB0F40B6ACB4F5C9A11C3186E1 /* BugsnagReactNative.release.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/BugsnagReactNative"; - sourceTree = ""; - }; - DABB77B4211E186F420B82DC0883B35B /* RNConfigReader */ = { - isa = PBXGroup; - children = ( - 52230AEE9F74A43553D0178D37C7F4CE /* RNConfigReader.h */, - 2C1A980BB59E9E1BCA25A52550BC0B17 /* RNConfigReader.m */, - 0857DFDC630843C9C35E787B439C1887 /* Pod */, - C568FB8111C5FD68EFECF811FE0FA315 /* RNConfigReader.xcodeproj */, - 79C12B539B377E792AE43E40F6A26B0A /* RNConfigReader.xcworkspace */, - 4BEDF040D0F41C5B0898AF4815E9F735 /* Support Files */, - ); - name = RNConfigReader; - path = "../../node_modules/react-native-config-reader"; - sourceTree = ""; - }; - DAD606A1CD527C1B59A01BE1195067E6 /* Pod */ = { - isa = PBXGroup; - children = ( - 4C7B91DC57EEC61DEFC6109C4F44BCA6 /* React-RCTSettings.podspec */, - ); - name = Pod; - sourceTree = ""; - }; DAFDB040B96E734BFBF205CF24CFE6B6 /* FlipperKitUserDefaultsPlugin */ = { isa = PBXGroup; children = ( @@ -21476,117 +22019,115 @@ name = FlipperKitReactPlugin; sourceTree = ""; }; - DC62DE453EDD3B6F11647ACA09C783AE /* Development Pods */ = { + DBCB00A3035149DC0C19D83FDDD1B3B1 /* detail */ = { isa = PBXGroup; children = ( - 2D8C873B2B18EE881666782A90CDF863 /* BugsnagReactNative */, - 391842083B9523E0FCB384EA4AB46739 /* EXAppleAuthentication */, - A6BB66046AA91A0A325D90888121165E /* EXAV */, - CE36421284D4B03C15B3320F96CC5441 /* EXConstants */, - F5ED2F47A83F3F74CBAC43DAB8638159 /* EXFileSystem */, - A14BB7B44E87FED08FE74669285FFCD1 /* EXHaptics */, - 13AA1D534BA062C5DE501009364BAAF4 /* EXImageLoader */, - AED78549EB3E35E7031B7C76C413DACA /* EXKeepAwake */, - 904B6044DFA1666B83826CC9326BE41B /* EXLocalAuthentication */, - 5663CD0AB0BE77D5328F03323168944F /* EXPermissions */, - 8BE19DA5A659428A18C7C14E37E63EB8 /* EXVideoThumbnails */, - BDBD70BA4ED618FAA00BBC6D2ACE797B /* EXWebBrowser */, - 2008EAA124DB15A9226362FC74769A7C /* FBLazyVector */, - 777FAF3E4219548EB47F87B320943205 /* FBReactNativeSpec */, - D6DB593ECD7CE708D883B00FBC602011 /* KeyCommands */, - 23580CF2E1858984F720AB6078F72D4A /* RCTRequired */, - B940B19540CFB6704B2787E54A9F9E33 /* RCTTypeSafety */, - 39A7C1656200AA487AF2901A8090E2B6 /* React */, - 2F4A2D47B9E22A17202C02B15B77608A /* React-callinvoker */, - 658A794353EA0E36F2034AEDFDB76DEE /* React-Core */, - 60C7683AFE4FC3E21E69E161B2083723 /* React-CoreModules */, - 49667244C353B2AD37F042DA3082B6D2 /* React-cxxreact */, - E560F91945BC0A58ABB1571FC2940209 /* React-jsi */, - 639A4CA0BD00F52C66463C1BAC6272CD /* React-jsiexecutor */, - 3DED171A6D710B9FDF00DAE753FCFE58 /* React-jsinspector */, - 4E883F3E34D16722F36E5510D0FD0274 /* react-native-appearance */, - CE5A5B2F5138F8818ACC45DC5E2EB92C /* react-native-background-timer */, - 0CD81BEE4E22A03B88757DA1E031B673 /* react-native-blur */, - 858C1481B644FD8A10FCCF31E1EAF34C /* react-native-cameraroll */, - C5CB8E93CE7AC00486BE0747C77EAC4C /* react-native-cookies */, - 4BE734D8520280AC6A91DED13794A305 /* react-native-document-picker */, - 269982BC1C644060553D51ABF1EB0630 /* react-native-jitsi-meet */, - 6A5DEAA3D01641A84DE4658C3120AD67 /* react-native-mmkv-storage */, - F9D432BAD32ACC5AF660992FC88495F5 /* react-native-netinfo */, - 0C72DC48C28463999EB35AEE75E6DA6A /* react-native-notifications */, - CBD31E3FC5A9279A38C8C0760FC0AA04 /* react-native-orientation-locker */, - F8CFA59F3C6C8FE6EB8E21A43325F8BC /* react-native-restart */, - 818B37BAEA74DEBA43F341269C8492A9 /* react-native-safe-area-context */, - 77308058297620F913D6186D6AC3C901 /* react-native-simple-crypto */, - AA538CE8E8652C54CC24BE7862BC58B6 /* react-native-slider */, - EFA021E9A6D531FF1BB6816F608156BE /* react-native-webview */, - 80272AF7E17ADE664906FFA66255D0C3 /* React-perflogger */, - 6E1D2D28332E926CED02D52CDA76D1C6 /* React-RCTActionSheet */, - 7874709E42B00BB9CBAE4C6787D6E098 /* React-RCTAnimation */, - 7502DB4C00735C2AA6AA23F29585A2C4 /* React-RCTBlob */, - 801EC80B2E6A8D947B0DAD3B62445817 /* React-RCTImage */, - E16A368EF46FBC92122D3320F48788DD /* React-RCTLinking */, - 5DCAABDA712B41166B24A73444C38107 /* React-RCTNetwork */, - 6CBEED11550663CF61700B15E188830A /* React-RCTSettings */, - 560722CF1773D900E73EAD2F26E65C5A /* React-RCTText */, - CFF0FC652EA8A07BFFA1E9F0C4E1DAB0 /* React-RCTVibration */, - 8BB8C1C0E99F1B18F499877ED39B98D9 /* React-runtimeexecutor */, - 25E7ADB05B60B7B50E64781139F82C79 /* ReactCommon */, - D6A9FD2B03550383EC5202DF25E6FA63 /* ReactNativeART */, - B5CF079FFDF3437CA5E2CFDAA1A1A9B4 /* ReactNativeUiLib */, - 16A19C444DABDE840CCB705DDA94775C /* rn-extensions-share */, - 7C42AACEC9058818A5ADB3B57C501FD6 /* rn-fetch-blob */, - 272D08B0355B79469259FF89FCFE74BA /* RNBootSplash */, - D304724A3AD7AD1DC6D3E3BABC3F1AFD /* RNCAsyncStorage */, - 6130AF967341BBDA37AE7F4DAEB045EB /* RNCMaskedView */, - DABB77B4211E186F420B82DC0883B35B /* RNConfigReader */, - B2CAFAE126CE9CA9CCE3531899CB9EE1 /* RNCPicker */, - 7EEBB5EB2B4D6429CEE7E5ACA20958D3 /* RNDateTimePicker */, - 35367DA4EF9E8AE580AE4A00EC6223F7 /* RNDeviceInfo */, - 454E4FEF6319133EE1CF43D904B286E5 /* RNFastImage */, - 98EFA8A17728C26B959353FB6E53CC69 /* RNFBAnalytics */, - CFA8A97DFF17C5FB086D48D519974F0A /* RNFBApp */, - 63B400A3F939F6C05F6A1A8B0C8DE75A /* RNFBCrashlytics */, - A8016EA95ACBFB0D0256FE435B57D3C7 /* RNGestureHandler */, - 08B3A9DDE7FB769634DFB4D9DB78A7A1 /* RNImageCropPicker */, - A67A44E872FAAAB9A8C187CBC14FB177 /* RNLocalize */, - 34ED28AF93568072AD00438A1EE89219 /* RNReanimated */, - 96997EFEA14B213BCCAC932FE24DAA2A /* RNRootView */, - 426E6D26BFE8FBCE5247FA85865C9268 /* RNScreens */, - 98DE8E107643BC2A03ADDB69A01C6C4A /* RNVectorIcons */, - 0DBC32DB481BD8B45EF0CA95FE91FEBE /* UMAppLoader */, - 6DADB688616C096BE15B0C82561460AF /* UMBarCodeScannerInterface */, - A86CA985ECC61C4031438707E15404FC /* UMCameraInterface */, - 1C0729B146796103CB8F59D704B39DD8 /* UMConstantsInterface */, - 348908CE6CC0A595682AF4AC5032BBE6 /* UMCore */, - 9696557A33BC5493F42BCFE5C0F3D61A /* UMFaceDetectorInterface */, - AB35868BD2737D00E0CA58E8F223F823 /* UMFileSystemInterface */, - EF36AA74E2FB31DE2B4C56C6BF6E611E /* UMFontInterface */, - 16A22961A94620137F49C05B4BDB02B3 /* UMImageLoaderInterface */, - A62BB50A38F0C550DEEA6807F90B1D96 /* UMPermissionsInterface */, - DF063563FE64D087179CEA84D24F4354 /* UMReactNativeAdapter */, - AE0A03AD1301D329DDE75905255F457C /* UMSensorsInterface */, - A2B8A333B0263BFF0F85FF136F09030C /* UMTaskManagerInterface */, - B5686206381D005C40677D8F80E2ED80 /* Yoga */, + 52032420A8153D9845D314223D4F5169 /* CallbackOStream.cpp */, + EF987966C8243A6D7B2997CCB6DEBF19 /* CallbackOStream.h */, + 565C98C0F87D64F187F1425AEA777E05 /* SerialExecutor.cpp */, + CBC7720687E8A53CEA1A579059D11CFD /* SerialExecutor.h */, + 3956A43D3DF53657C5F1C8AB141FCA72 /* Thread.cpp */, + 17FB77BE527E85166F4699810C508556 /* Thread.h */, ); - name = "Development Pods"; + name = detail; + path = detail; sourceTree = ""; }; - DCF729858FDF504C4745080236525B43 /* Pod */ = { + DBE62A767FAC06B7576C596C16323417 /* UMCore */ = { isa = PBXGroup; children = ( - F2733ECD3866A158F6165C347BF9E101 /* advancedIos.md */, - C0507891ECDC071089BFC383DFB3C384 /* installation.md */, - 9F79BCB088CE8C23E9EAA6B478812AFB /* LICENSE */, - 8EE6376C8941BDF52B1F7B783FEE0632 /* localNotifications.md */, - 8C235F93DCD2E0ACA5D8543E5D889AB1 /* notificationsEvents.md */, - 20AE78BD34683B7EF4CD578BFBE2766C /* react-native-notifications.podspec */, - E8E51EA70AC46B491EC6BDCD4B9EB270 /* README.md */, - 1B928B8F75FD8467EF6D7ED0979DC3C1 /* subscription.md */, + B1E53AC7BC87F814F9DFAFF685664566 /* UMAppDelegateWrapper.h */, + F7C40C88F5C3C5FE1938B1CEC0B1179C /* UMAppDelegateWrapper.m */, + 06C5D22E47F15524A4FB15097A215F42 /* UMDefines.h */, + 85EBAEA75FFA7DD5F1973B6C687C2441 /* UMErrorCodes.h */, + E2C20142D7302B9F6BD186560877B9BF /* UMErrorCodes.m */, + 73ECF13767B57DEF145AD8A4E935C77C /* UMExportedModule.h */, + B775B43D0D55C6186D1F81AACAC574A6 /* UMExportedModule.m */, + F4BA021EFDD407D4A27AEF8D47D838CA /* UMSingletonModule.h */, + BF1A76C52BB358B20970029ABBCE6EB5 /* UMSingletonModule.m */, + 7D20DEEC7640A7E26DE4F76A033D9641 /* UMUtilities.h */, + DECCCE09E7F014EABBD87DC1B1B5C2B0 /* UMUtilities.m */, + 8A53EC9FB8607A9EC1BD5F88AE6F883E /* UMViewManager.h */, + EA6CA669DB11D03491E655AF46257689 /* UMViewManager.m */, + 381949ED43D1CDA5910C97837B136DE6 /* Pod */, + 1B31FDA752685D2F5B5D0C1C9D81877D /* Protocols */, + E32492162322518062051E44A13E7529 /* Services */, + FEAEFE596F6C49D66F8ABD8E16AEF529 /* Support Files */, + CDCC2CFFA9150AFCBED6BFF8DF9001C3 /* UMModuleRegistry */, + 192A2D7E57C30857F88797D9326B7047 /* UMModuleRegistryProvider */, + ); + name = UMCore; + path = "../../node_modules/@unimodules/core/ios"; + sourceTree = ""; + }; + DBFF449F8FD0105F372819BBCAC1D3F7 /* Pod */ = { + isa = PBXGroup; + children = ( + DEBBF54F56A219AE3EAD4D0D55B46B95 /* LICENSE */, + 92BF5CC7B1AC56ADD518B6BBE1ECE380 /* react-native-jitsi-meet.podspec */, + 03F06431100E4402DBCBF45CF4BFC6C6 /* README.md */, ); name = Pod; sourceTree = ""; }; + DC7BC3BFF6BD1DE54E68E50885C12FE6 /* Interfaces */ = { + isa = PBXGroup; + children = ( + 3996EDD823280D882ED08A7C542F9AD8 /* UMAppLoaderInterface.h */, + 4C4AB3BD3F116A129775D8C459F218F9 /* UMAppRecordInterface.h */, + ); + name = Interfaces; + path = UMAppLoader/Interfaces; + sourceTree = ""; + }; + DCEC7379A961D5631CF2252F29FA5EA6 /* EXLocalAuthentication */ = { + isa = PBXGroup; + children = ( + A4193D9F18881BC00CADFFE156D0A4E8 /* EXLocalAuthentication.h */, + 7C2765C0E9ACB7E4846FB7A43CA21755 /* EXLocalAuthentication.m */, + B7B238CE50E038117537D10FDBB462C7 /* Pod */, + 4E043185C96E22A32248074EBD1E03B8 /* Support Files */, + ); + name = EXLocalAuthentication; + path = "../../node_modules/expo-local-authentication/ios"; + sourceTree = ""; + }; + DD448CFE54899E8214FC0DE261C125B5 /* rn-fetch-blob */ = { + isa = PBXGroup; + children = ( + C25717694583716545F087E9F69CADB0 /* IOS7Polyfill.h */, + 17C4A2EBA9F786833C9E659FC731CFD7 /* RNFetchBlobConst.h */, + 542B769074BF2AB509D9DC76111A3546 /* RNFetchBlobConst.m */, + 7BC33DE4C5189CC11594CC9726C5E670 /* RNFetchBlobFS.h */, + F1A2D374367175141CF15B034A500836 /* RNFetchBlobFS.m */, + F2E3027F493B38842E9FDBD22E957D27 /* RNFetchBlobNetwork.h */, + 8B7051532588B84E1D86679E3355DAE6 /* RNFetchBlobNetwork.m */, + 021802B622F23E1BF04496EDA30089F5 /* RNFetchBlobProgress.h */, + 659AF947B8078759249913E120B5CC48 /* RNFetchBlobProgress.m */, + 8AC9189025B8BE1B454FF175813E2356 /* RNFetchBlobReqBuilder.h */, + DF395A5AE875959199CDB011ADB83A79 /* RNFetchBlobReqBuilder.m */, + D73244402DD95F9ACCC241FA741963AD /* RNFetchBlobRequest.h */, + 463EAB7F09AAE5365F3A56A8C90295A1 /* RNFetchBlobRequest.m */, + FB8E1FC8A4EEFA7710F4B5D50CB00F42 /* Pod */, + 2B3A3D161EE9A83388601D1B21185E62 /* RNFetchBlob */, + BD687DC53AA49DA999739481B90EE88C /* Support Files */, + ); + name = "rn-fetch-blob"; + path = "../../node_modules/rn-fetch-blob"; + sourceTree = ""; + }; + DD6AF4948EC7F51B326A53CE0EE46600 /* Support Files */ = { + isa = PBXGroup; + children = ( + DB014116AB6D8DA1BB2E892E70011113 /* React-RCTSettings-dummy.m */, + 0864B6FE4C4AD67DAF5C6DE9C9DCA1EE /* React-RCTSettings-prefix.pch */, + 8F35897AB268E19269869EBC5812DBE8 /* React-RCTSettings.debug.xcconfig */, + 678C3CA52E8662BB138C894265599275 /* React-RCTSettings.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTSettings"; + sourceTree = ""; + }; DD78A7C1E8AB03582FCA970B8837ACF7 /* Frameworks */ = { isa = PBXGroup; children = ( @@ -21596,36 +22137,6 @@ name = Frameworks; sourceTree = ""; }; - DD7DF15BC6B578293BC25412AECA59BD /* Support Files */ = { - isa = PBXGroup; - children = ( - 12EC2264621AAF733A18C9CFA87D4513 /* EXHaptics-dummy.m */, - B2211BB8A0759B63037E2BEA6B0D7BD2 /* EXHaptics-prefix.pch */, - C7829CE358722270F5AF0F77A6F2DBCC /* EXHaptics.debug.xcconfig */, - AE8AA051572EF613B4252ED5DFE2FA95 /* EXHaptics.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXHaptics"; - sourceTree = ""; - }; - DDE8E5A98325CC2478E0C25D81EFF392 /* Pod */ = { - isa = PBXGroup; - children = ( - FAABF30F9DD73BF9BD603CBCA3A7CC40 /* EXHaptics.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - DE53470C2AEE4CC8E60E3361B61CCC9C /* Pod */ = { - isa = PBXGroup; - children = ( - B5407FE99A4E13F6574E3DAE8499B6CB /* LICENSE */, - 56FE541BF406645C5E5F86CB57A9D70A /* README.md */, - 8BB0E9E60732C9652D4DD7158C0B974A /* RNImageCropPicker.podspec */, - ); - name = Pod; - sourceTree = ""; - }; DE69EEF3E4308F8C93489B04B112E51B /* Flipper-DoubleConversion */ = { isa = PBXGroup; children = ( @@ -21702,86 +22213,45 @@ path = PromisesObjC; sourceTree = ""; }; - DF063563FE64D087179CEA84D24F4354 /* UMReactNativeAdapter */ = { + E049964354328A2EA1287F2BEE1CF2D3 /* Pod */ = { isa = PBXGroup; children = ( - 7EF223ED0444B6177C34995C03F7833F /* UMBridgeModule.h */, - 9FE2CF6AD3CBF99D85757CEC02F1204D /* Pod */, - D93AE74BC60380A53AB4E5B562EF4724 /* Services */, - 2597C2D1A54D734FBC93E0C0B8E2F574 /* Support Files */, - 79F9C5DC46EEA76AF12DC1ED8C16CB41 /* UMModuleRegistryAdapter */, - 6182A0C4054C7A1CC2D4EBCF002D6FB0 /* UMNativeModulesProxy */, - BB56111288A408A22C6AD90F22007528 /* UMViewManagerAdapter */, - ); - name = UMReactNativeAdapter; - path = "../../node_modules/@unimodules/react-native-adapter/ios"; - sourceTree = ""; - }; - DF9B101D0D312F6D42E194A1DB28EEB6 /* Pod */ = { - isa = PBXGroup; - children = ( - 544FE78DB48D93D01555D36D6D7D71A8 /* UMConstantsInterface.podspec */, + 787FE093039C112C0D403D31F56C367B /* React-RCTActionSheet.podspec */, ); name = Pod; sourceTree = ""; }; - E0F37EFEED6A52339AE62242427E93CE /* Support Files */ = { + E082050E5CBF98E49AF14FD88750E6FA /* internal */ = { isa = PBXGroup; children = ( - C81CA3387A07325C1264D2294AA18213 /* UMAppLoader-dummy.m */, - 62D1922830D1CAFE025EA04917AFA751 /* UMAppLoader-prefix.pch */, - 56894362FD30EFFECBB287DD509BF51B /* UMAppLoader.debug.xcconfig */, - 6FDED32CB264782EC40E218658D69CC3 /* UMAppLoader.release.xcconfig */, + 14AA7A8B170D786D4D560A3331126720 /* experiments.cpp */, + A72F4F01C82EB2FEF9C866D788AA26ED /* experiments.h */, + 9D14E9A01BCC594A2A85D381466E888B /* experiments-inl.h */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMAppLoader"; + name = internal; + path = yoga/internal; sourceTree = ""; }; - E1340116A55BC2789767D505C903ED39 /* BaseText */ = { + E1D4BF5E99E0AF9736EEFC1DCB8D0688 /* react-native-mmkv-storage */ = { isa = PBXGroup; children = ( - 16E2A7ADA0EBFE30CC6290D890A31F92 /* RCTBaseTextShadowView.h */, - A6137257B711159FD4012D79C20BD1F9 /* RCTBaseTextViewManager.h */, + A8F437656C3AF0F0D47F9C9E340C3D0B /* IDStore.h */, + 32CA8CF10AFF6284DDC6E0B008D3FF2F /* IDStore.m */, + B558A1DF0DF86EF02FB44FA2DBAE46B7 /* MMKVStorage.h */, + 6C8504725868A39F09E3FFF4D0A5E3DC /* MMKVStorage.m */, + F15808387AB6C7A111FF6C455A1A6FE9 /* SecureStorage.h */, + 0F72487A94BB4E252CC7309942D924D3 /* SecureStorage.m */, + DCF019AC633D3837A65275E1E41BEBD5 /* StorageGetters.h */, + 67C0A615EC5CE05FBDFF23BFEF29B103 /* StorageGetters.m */, + 0AAB951C7E48D6D0976BFBBFE23D2F04 /* StorageIndexer.h */, + E930EFE217233CB3748BF3259CC7C4C4 /* StorageIndexer.m */, + C36FF5D1A5B1A0456D961B26047AFBF3 /* StorageSetters.h */, + 7EE4C717F5E2017DF21EF0ED8ED107E1 /* StorageSetters.m */, + 60A569A3267557CAD6D1AACC49427736 /* Pod */, + 49744E113C4C3F1B442B605185725E55 /* Support Files */, ); - name = BaseText; - path = Libraries/Text/BaseText; - sourceTree = ""; - }; - E16A368EF46FBC92122D3320F48788DD /* React-RCTLinking */ = { - isa = PBXGroup; - children = ( - 43786C2D8AFD12763D9DC05696BC9EC0 /* RCTLinkingManager.mm */, - 5F5208C843EA6C6D04890C6B59961C9C /* RCTLinkingPlugins.mm */, - CD7792505F9443D79FA8CA5AF64F26ED /* Pod */, - 2A0B8AC7B6EF780190A954D33CF2BAF0 /* Support Files */, - ); - name = "React-RCTLinking"; - path = "../../node_modules/react-native/Libraries/LinkingIOS"; - sourceTree = ""; - }; - E16D5F778A349FF6788C198C928DB8B4 /* Pod */ = { - isa = PBXGroup; - children = ( - BFFA86C7ADE2F4F757BC7347135B59B4 /* LICENSE */, - 3C1839DCE564E713EDD0551FFADF6311 /* README.md */, - 9DE9D6492CC1075438ADFD931ADCDE47 /* RNVectorIcons.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - E1B78955514ADC125D050D325ACD746E /* Video */ = { - isa = PBXGroup; - children = ( - 7C5657A0501FD0E478C4F29DA1F9C27B /* EXVideoManager.h */, - C68AE5A211322F449FB9B9AD3849EED0 /* EXVideoManager.m */, - 33C537641F51D2CABD273135E4CC8707 /* EXVideoPlayerViewController.h */, - 1EEF95A4D33D57DB987173F263D9DC6B /* EXVideoPlayerViewController.m */, - A8235E32E6D0D30643155F9C2C6E2183 /* EXVideoPlayerViewControllerDelegate.h */, - 7F5D97D6C4DC63D8F34EBDB1C3D242AC /* EXVideoView.h */, - DDBCFAA5E98675C9AD5056516FBA1DCE /* EXVideoView.m */, - ); - name = Video; - path = EXAV/Video; + name = "react-native-mmkv-storage"; + path = "../../node_modules/react-native-mmkv-storage"; sourceTree = ""; }; E22808753F009160E31EDC41DEE07E60 /* FBCxxFollyDynamicConvert */ = { @@ -21793,54 +22263,73 @@ name = FBCxxFollyDynamicConvert; sourceTree = ""; }; - E25F5F8733CA55BF7E3AA7B06CE0CBE7 /* SurfaceHostingView */ = { + E32492162322518062051E44A13E7529 /* Services */ = { isa = PBXGroup; children = ( - 1D6B5306D96B23FCD664055914201266 /* RCTSurfaceHostingProxyRootView.h */, - E17FD458C86F4EF0292E673908AEDEAE /* RCTSurfaceHostingProxyRootView.mm */, - 8C3E8B06E49C353852A8F06C8D386711 /* RCTSurfaceHostingView.h */, - E20EED0B1AAB0CFFCBB04D7C9B2BE920 /* RCTSurfaceHostingView.mm */, - 3DADA606B8C057ADEBCB5E9445786FB7 /* RCTSurfaceSizeMeasureMode.h */, - A63C3F723B6B51537AEFDFE55BC57EBA /* RCTSurfaceSizeMeasureMode.mm */, + 92E81D540171FAD8E231E1AF4066DB6B /* UMLogManager.h */, + 1FEC121FD23728582B9C1DF5E28A277B /* UMLogManager.m */, ); - name = SurfaceHostingView; - path = SurfaceHostingView; + name = Services; + path = UMCore/Services; sourceTree = ""; }; - E2CF06BBE35C98E70ABC5AD0AA8A6556 /* Surface */ = { + E39145EAD6394D4B8D24AEF743F4F5E9 /* RNScreens */ = { isa = PBXGroup; children = ( - 80049D4E1624B165BD88D111C95A490D /* RCTSurface.h */, - 0383F1CD0B209346494C1EF992A090CB /* RCTSurface.mm */, - E635A2CE00D16501AC3FA4A98D680951 /* RCTSurfaceDelegate.h */, - 7F8B17942D5B94E95453AD5DB71A89E3 /* RCTSurfaceProtocol.h */, - 3A73954671D5807ABB421650C558B1C4 /* RCTSurfaceRootShadowView.h */, - B5D9F322EAC1576F0B62D4E517EC9CD5 /* RCTSurfaceRootShadowView.m */, - 01FAD5197205D0AFD8FD1F2FC8C37E24 /* RCTSurfaceRootShadowViewDelegate.h */, - 70FB10EA9B7A302F1ECE8BCEBC616991 /* RCTSurfaceRootView.h */, - 540C71FA6147E61EEA6143AD758CB705 /* RCTSurfaceRootView.mm */, - 2581CD6267645E5B2A0298DC41C71DFF /* RCTSurfaceStage.h */, - B410AD520404835C8EBA3DA78F004D54 /* RCTSurfaceStage.m */, - 1AF174DE0B9C8BBF130307FE01ABE32F /* RCTSurfaceView.h */, - 221D46BED18BA4A887C727B565B3F9B3 /* RCTSurfaceView.mm */, - 8479AF02B317D9F048384BDC21418898 /* RCTSurfaceView+Internal.h */, - E25F5F8733CA55BF7E3AA7B06CE0CBE7 /* SurfaceHostingView */, + 478A05532884A912CEC3CE2A3FBFBDAB /* RNSScreen.h */, + AB37EFF737ECCA2E5C39C1BB53DB1638 /* RNSScreen.m */, + 52FA215B0AABD63CF4160AC620BF6AF6 /* RNSScreenContainer.h */, + 885E67E45CB9292D54C7AE825D2CC130 /* RNSScreenContainer.m */, + A157D526C4A9B116FFA877831071C982 /* RNSScreenStack.h */, + A77AADE54BAD99ECC1C2D6DFE43F452A /* RNSScreenStack.m */, + 034507F582A52D986314724EA30140A2 /* RNSScreenStackHeaderConfig.h */, + 5D404758C9F5D8AB79A1DF5B3E7D2E32 /* RNSScreenStackHeaderConfig.m */, + 6250D92290A9FAFD0257B5CC6B025E7D /* Pod */, + 68402E3A17BC67549AEFCE91A61BF371 /* Support Files */, ); - name = Surface; - path = Surface; + name = RNScreens; + path = "../../node_modules/react-native-screens"; sourceTree = ""; }; - E560F91945BC0A58ABB1571FC2940209 /* React-jsi */ = { + E3BAA685845B495FA3B69CF45A0E1B10 /* Pod */ = { isa = PBXGroup; children = ( - F3827BB984B7ABC0434A322609F43FF3 /* JSCRuntime.cpp */, - FEECD65FAC38562FFB6C5E0FF2168B3C /* JSCRuntime.h */, - 3953A3359EC915AF526149B37A60DD5B /* jsi */, - F67E2B71999655ACC3F291B1ECD8852C /* Pod */, - 69D5069E75F3B1A0B543E66EBF8B1BD2 /* Support Files */, + 2A14879F164852C742D96B8144D456A4 /* UMTaskManagerInterface.podspec */, ); - name = "React-jsi"; - path = "../../node_modules/react-native/ReactCommon/jsi"; + name = Pod; + sourceTree = ""; + }; + E56E332379FE878AB5E0769D330B80DE /* Pods-defaults-RocketChatRN */ = { + isa = PBXGroup; + children = ( + A6804E4CEF7BB32A0140E82063002DC0 /* Pods-defaults-RocketChatRN.modulemap */, + 0C34F4CB52587916128DE4043A184BA5 /* Pods-defaults-RocketChatRN-acknowledgements.markdown */, + 6B581AF2E83EF6009140B64543AC95C1 /* Pods-defaults-RocketChatRN-acknowledgements.plist */, + F34314642ABA673A54A96879E876F970 /* Pods-defaults-RocketChatRN-dummy.m */, + 0E1C4B02C564187199628178F5FBF2F2 /* Pods-defaults-RocketChatRN-frameworks.sh */, + 867F1FFA3E6F115C3382FC63FA4E2B27 /* Pods-defaults-RocketChatRN-resources.sh */, + C5348F32CD8BDAB800034CB7AC0423B7 /* Pods-defaults-RocketChatRN-umbrella.h */, + EDB333FCF70BA300550BD5E01174F9BC /* Pods-defaults-RocketChatRN.debug.xcconfig */, + 4BFEB680FE6D71C038B32F3068431F9B /* Pods-defaults-RocketChatRN.release.xcconfig */, + ); + name = "Pods-defaults-RocketChatRN"; + path = "Target Support Files/Pods-defaults-RocketChatRN"; + sourceTree = ""; + }; + E59FEF70BFF6740CC25625B0B26D0730 /* react-native-appearance */ = { + isa = PBXGroup; + children = ( + F081E4DF5CFA79D41D16C87B19AD63DB /* RNCAppearance.h */, + 7E357F7D22698AB72EC4DED0CB3475B8 /* RNCAppearance.m */, + 04804CCF30D5C8B761937C80FB88841A /* RNCAppearanceProvider.h */, + 2B4BC89835F0B426BA24544643826522 /* RNCAppearanceProvider.m */, + 38DE4B91225B3BFBA01EE2221CA2B29E /* RNCAppearanceProviderManager.h */, + 6C038D726C9B5961986DC385A924ED87 /* RNCAppearanceProviderManager.m */, + 438FB989D257A5781B3F2133C4867DF2 /* Pod */, + 400A0006842DBA7536C33ED4D5829FEB /* Support Files */, + ); + name = "react-native-appearance"; + path = "../../node_modules/react-native-appearance"; sourceTree = ""; }; E5D00CEC67D46E5680117553520ECE11 /* Support Files */ = { @@ -21853,50 +22342,85 @@ path = "../Target Support Files/boost-for-react-native"; sourceTree = ""; }; - E66930F9B3DDD5B811B995D1649F9D61 /* Support Files */ = { + E77ACC032464D4DCFBB99639A09F92AD /* CxxBridge */ = { isa = PBXGroup; children = ( - CEE182B391F292975C9C32DFC07250FE /* RNBootSplash-dummy.m */, - 97FC0E86A82E771EF813BED9D547B22A /* RNBootSplash-prefix.pch */, - 4EFC0B2FFA3861FC2E19D0BE530CB5CD /* RNBootSplash.debug.xcconfig */, - F75AEC7C349CCF5C83AE233BA364B853 /* RNBootSplash.release.xcconfig */, + 04977148DE9C9EE89321F0AA165BDE05 /* JSCExecutorFactory.h */, + 6D15A2BDD2DD1DDE07F55DA3ED1F6D2A /* JSCExecutorFactory.mm */, + 01F2D0B018A8C0602D50AE13EB355AD0 /* NSDataBigString.h */, + 027210AF12960DA75E0E13687A8B0A07 /* NSDataBigString.mm */, + 8698DF0DE08A137A8C816089106F8DA6 /* RCTCxxBridge.mm */, + 26172BF87BFBC776186999961DEE3E6A /* RCTCxxBridgeDelegate.h */, + E623D939ADE2AE10BEAA3C1B7D16981B /* RCTJSIExecutorRuntimeInstaller.h */, + 233D8B94F298076784E62FDA89226294 /* RCTJSIExecutorRuntimeInstaller.mm */, + 91F4CDD7DFE9FE5BC9DB09A0AF6C5080 /* RCTMessageThread.h */, + 4138CC76BD93E8D27D33B1DC80BFD1A7 /* RCTMessageThread.mm */, + B1F760470CBA775E2C937B689C311319 /* RCTObjcExecutor.h */, + C70B44F70601F2E891612366843D044B /* RCTObjcExecutor.mm */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNBootSplash"; + name = CxxBridge; + path = React/CxxBridge; sourceTree = ""; }; - E6838F4C773399736265118E29E6DDFD /* Pod */ = { + E934F12F18782FA5B7B698BDE78CDB0F /* RNCPicker */ = { isa = PBXGroup; children = ( - 4D98749A9EFF189033922C43BCA2F51A /* EXLocalAuthentication.podspec */, + E99CEF4EEC42A2629D3B68DA23D0046B /* RNCPicker.h */, + 08383837DC6D5400661DBAEDFAC174C8 /* RNCPicker.m */, + 319D4C18691771677FE83CCAF8807DBC /* RNCPickerManager.h */, + 7085CC1C2C2A9C58F7099F2ADC7F4AE6 /* RNCPickerManager.m */, + 7C4DBEA389F45BA24C85310F8D437E9A /* Pod */, + EEEBEEFCEAC879E964264A9B2B6A72E5 /* Support Files */, + ); + name = RNCPicker; + path = "../../node_modules/@react-native-community/picker"; + sourceTree = ""; + }; + E94FB031F791D1DED308D8442EA23A97 /* Pod */ = { + isa = PBXGroup; + children = ( + 2922BDAB21DB02CBEE4EF0EAD5C083B1 /* LICENSE */, + 4B0C7D63BAB6C5746676851CD455CC6C /* react-native-background-timer.podspec */, + 6340CF85ACC147112B0CF70EF2FE49DA /* README.md */, ); name = Pod; sourceTree = ""; }; - E69700020322D375C3BA9C66E63BA505 /* KSCrash */ = { + E9A4E43ED98092B712DD6E93E04C7C30 /* Sentry */ = { isa = PBXGroup; children = ( - 8F13E1E3A5CDD478758C84399C855DBE /* Source */, + 4F26628CAEF27009D5B48EE73606060B /* BSG_KSCrashSentry.c */, + 4D6D624CF810AD92E2B2562C0562C073 /* BSG_KSCrashSentry.h */, + 0A8FD8A2B5ADA3C0135616C5DB527628 /* BSG_KSCrashSentry_CPPException.h */, + E3BBE7A4CE823D2C68A59F6AA015FA1C /* BSG_KSCrashSentry_CPPException.mm */, + E4B494359C9B23346165C652A401B302 /* BSG_KSCrashSentry_MachException.c */, + 1AF4330BD6DD0F1AAC8EAA362E56F1F4 /* BSG_KSCrashSentry_MachException.h */, + 435AE9BC5C9E3CF7503A8F43DB6123FC /* BSG_KSCrashSentry_NSException.h */, + EA4C94D30D9F5FC1CCCEB7C2FFEA5CEF /* BSG_KSCrashSentry_NSException.m */, + 02EEEB11E2FA732C018BCB28638DAAB8 /* BSG_KSCrashSentry_Private.h */, + 54491F5B3AE4721132EE26759F4E88F4 /* BSG_KSCrashSentry_Signal.c */, + CDF16ECD50D0280EC60B6417A2282ABA /* BSG_KSCrashSentry_Signal.h */, ); - name = KSCrash; - path = KSCrash; + name = Sentry; + path = Sentry; sourceTree = ""; }; - E9FB88CE0FF0036C3952A316877EE424 /* RCTBlobHeaders */ = { + E9C7468296CF3D854A6FE3CCDCE8AC5E /* react-native-orientation-locker */ = { isa = PBXGroup; children = ( - 62378A8F43173332A123B8CB04B4DA3C /* RCTBlobManager.h */, - B471D9F4E3A99D0C4ECD0EAC118A4C34 /* RCTFileReaderModule.h */, + 94BE9A0B11F10DD46B5AEFD4178E116F /* Orientation.h */, + 00A8005D412C799A8395E4C8BA76C5D6 /* Orientation.m */, + A727D37490E5DBB66524C3364AD892D9 /* Pod */, + 13EC029082B3E3E2E6E3AB5D12656686 /* Support Files */, ); - name = RCTBlobHeaders; + name = "react-native-orientation-locker"; + path = "../../node_modules/react-native-orientation-locker"; sourceTree = ""; }; - EA79E37A33083A0B4A560C871C2B8B42 /* Pod */ = { + EA13FE3EB3903AF08222DB3356F442A7 /* Pod */ = { isa = PBXGroup; children = ( - 932FEC745BF2AE9B428890FAEFD77D4A /* LICENSE */, - A584F7813425F5322B28A4010DBD2014 /* README.md */, - 72C7F8D7DB334764864941C2C0562C4C /* RNDeviceInfo.podspec */, + AA2A808F6CF64F7216D304333B12D1EA /* React-RCTText.podspec */, ); name = Pod; sourceTree = ""; @@ -21918,51 +22442,16 @@ name = SKIOSNetworkPlugin; sourceTree = ""; }; - EB2656FAB4E57F2E24AF6A041F0C2D95 /* Tools */ = { + EB013329492B71E5972D2BFF6598ACE6 /* Support Files */ = { isa = PBXGroup; children = ( - 2AB2287C1FDD8A383794D79D3C811B59 /* BSG_KSArchSpecific.h */, - D217320973674B8E59AECC75D4D826C3 /* BSG_KSBacktrace.c */, - A1044899B60620CB2144EF54C230E323 /* BSG_KSBacktrace.h */, - 07F0FF6F24B47DE6248CD0B162ADDC90 /* BSG_KSBacktrace_Private.h */, - BA865FA56CDB16D28CB593E4E0ABC765 /* BSG_KSCrashCallCompletion.h */, - 81FA991C2212606567952D4A3B8044DE /* BSG_KSCrashCallCompletion.m */, - BEF046C7A436920433923355E43D95C5 /* BSG_KSDynamicLinker.c */, - 953C90A9AFB9B9CC191BAE4EBC118C45 /* BSG_KSDynamicLinker.h */, - EB52B3B698412DAD086667FF340E0B6B /* BSG_KSFileUtils.c */, - 805EAA504AB5F67C0D94AC7A74F09827 /* BSG_KSFileUtils.h */, - A12F2DE1DDBC9445537ED768FBF095C9 /* BSG_KSJSONCodec.c */, - 0EF2A8C8073C07569D01C689D9D294EC /* BSG_KSJSONCodec.h */, - 3203C31776CA4DA3C1D69B0E9386215B /* BSG_KSJSONCodecObjC.h */, - C4BE8D653EE12AA7F06AD08C458C07DC /* BSG_KSJSONCodecObjC.m */, - 7180F959DA402FDFF49C58E1FCE63552 /* BSG_KSLogger.h */, - CA245AF31F2F671A9F300EE5ABE66DAC /* BSG_KSLogger.m */, - 90189586E807F5E730636B5D27A4592B /* BSG_KSMach.c */, - 83001033CA399D8268EC5116EBCDC01E /* BSG_KSMach.h */, - 309DA7B93B5E0A0EF006A0404ED94E73 /* BSG_KSMach_Arm.c */, - C03E3ABE77F72388E1A5BC90DD96108C /* BSG_KSMach_Arm64.c */, - 8BCB4BDAF4E9D1B93951E3D14688C2B8 /* BSG_KSMach_x86_32.c */, - 872EC1213FBF861ADC6E190A6D144C06 /* BSG_KSMach_x86_64.c */, - C1EF21453BB3EE1B930F1DE3D18CEDA7 /* BSG_KSMachApple.h */, - 90AC79A681674230B298009835678FF5 /* BSG_KSMachHeaders.h */, - 0F02E024C09230DF9E2BEAA09CC8986E /* BSG_KSMachHeaders.m */, - 4129090DE76D1CBEFAACA23CC3C75113 /* BSG_KSObjC.c */, - C8A5CB9496F5C78AB8DC3CDF14BDEE04 /* BSG_KSObjC.h */, - FC59398D9683C51FA1488722D3DF0DD9 /* BSG_KSObjCApple.h */, - FF3D02A21C520585BF57DDADFDB4EAD1 /* BSG_KSSignalInfo.c */, - 249322B797E52A0120B0A474CDBC1391 /* BSG_KSSignalInfo.h */, - 2E7ADCD71BB9688CCDFA43D505366187 /* BSG_KSSingleton.h */, - 63A5C562EC8E993C5AC57AB81FEBC9B3 /* BSG_KSString.c */, - 776E5E49840078C2F45821AFA4A09A05 /* BSG_KSString.h */, - 0B8A807A3234E9592B16DAF7F1EC8444 /* BSG_KSSysCtl.c */, - 9F5C23727738AD16DEAFEE50EF7F3466 /* BSG_KSSysCtl.h */, - C04C5E73467787F3BD45611703B4287A /* BSG_RFC3339DateTool.h */, - 53CB9FC0A93CFCA2AC3CDECC6CA02107 /* BSG_RFC3339DateTool.m */, - E80A0ED35C68DBE90A4BF5CBF22639D9 /* NSError+BSG_SimpleConstructor.h */, - CDE6BAF237DD904B663DEC444E60D228 /* NSError+BSG_SimpleConstructor.m */, + A79E6B0FA53228F0C22FDAE97E39A414 /* react-native-notifications-dummy.m */, + 12F1146556FC034F2D1F79B76D12016C /* react-native-notifications-prefix.pch */, + B7BBE31EBE16FD2D7953E7902D4D8227 /* react-native-notifications.debug.xcconfig */, + DECD7F61EE2634B152C7B32EF629DCEB /* react-native-notifications.release.xcconfig */, ); - name = Tools; - path = Tools; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-notifications"; sourceTree = ""; }; EC490A32C6CF61E09B0AAC527BA6CE84 /* libwebp */ = { @@ -21977,31 +22466,75 @@ path = libwebp; sourceTree = ""; }; - ECAA5596BFAD6127B2BAE784D186D37D /* Support Files */ = { + ED6F5ECD9E4977BB3242B6DCBAEA7DB2 /* react-native-simple-crypto */ = { isa = PBXGroup; children = ( - E4812FF48A336ACD6F87BD77BBE8FE4F /* React-RCTSettings-dummy.m */, - 3BF064715DAE81E62551C5B6FCE360E0 /* React-RCTSettings-prefix.pch */, - DB81BE1173E2D71B6736D3F7935F1593 /* React-RCTSettings.debug.xcconfig */, - 9769A729D5A7D6BA48AB95C69FF68B2D /* React-RCTSettings.release.xcconfig */, + E361178BFF0F0A5AC12C76B6300B8268 /* RCTAes.h */, + 8EC04E43DE6799F166D0E055BB69C5F7 /* RCTAes.m */, + AC997D5A6CE46D81B2A9839825070905 /* RCTCrypto-Bridging-Header.h */, + 41CD4FE0B9F16B00300218C0DC70ABF9 /* RCTHmac.h */, + 519F01F1D80CFDFC7A49BCA212123ABB /* RCTHmac.m */, + 2AED415BF2CA0F102E482E3B33CF499C /* RCTPbkdf2.h */, + 6E567830E7845629D2196E6C4E1652B9 /* RCTPbkdf2.m */, + 44849A07404CF4A3B58A4DA314A75331 /* RCTRsa.h */, + 9C2FF72F433B5B816D4642C6E2EEAB91 /* RCTRsa.m */, + C70CAFDE76103EF6F4BE78422776CD56 /* RCTRsaUtils.m */, + 712977A45BF435F5FBBB354F1236B801 /* RCTRsaUtils.swift */, + 838CB3AD58AAF778C3820188C89DEAE7 /* RCTSha.h */, + 7547F8E6B74F348AA102F489A03E09D9 /* RCTSha.m */, + 0ABF1EC3358A7E3827364D165457E312 /* RNRandomBytes.h */, + 27871E35046D797BDFC6AB677CBFE34B /* RNRandomBytes.m */, + A9E23F86758D4CF67081D5B50EFFFE5B /* lib */, + BBB3D4826FC68C411A951E9AB063DC5E /* Pod */, + 7F28349F29E87A971A2165D82AF74199 /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTSettings"; + name = "react-native-simple-crypto"; + path = "../../node_modules/react-native-simple-crypto"; sourceTree = ""; }; - ED0E73A0A708B8CFBE99678FC397DD37 /* Profiler */ = { + ED889B6CD4E18E37D68E3AC6D21D9DF3 /* Pod */ = { isa = PBXGroup; children = ( - 68CC8BB57B703D782276E083F73451FC /* RCTMacros.h */, - 1BC67473A06331BDC8686DC7ECFC9729 /* RCTProfile.h */, - E4A6DCCB88C533D35743285ED879ED94 /* RCTProfile.m */, - 68B62AE30242F2428DF3825991AFC489 /* RCTProfileTrampoline-arm.S */, - 2535B9E06F9982A035BE9900CD2ACDDE /* RCTProfileTrampoline-arm64.S */, - C71D16A15E61A8A791682BBDE639A660 /* RCTProfileTrampoline-i386.S */, - 502DF41673D24551D1053C75EA17F96D /* RCTProfileTrampoline-x86_64.S */, + EBDC1ACBB829C220D69159D036999F34 /* React-jsiexecutor.podspec */, ); - name = Profiler; - path = React/Profiler; + name = Pod; + sourceTree = ""; + }; + EDB227344D35FD0215E5CA6788E10FAD /* Support Files */ = { + isa = PBXGroup; + children = ( + 6889C8BC615C521EE2FB3D13B4AAA3A0 /* UMFontInterface.debug.xcconfig */, + 52A81437D376AA16FFEF16706FC8287F /* UMFontInterface.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFontInterface"; + sourceTree = ""; + }; + EDE6635783718043F3AC5D37203B7564 /* Video */ = { + isa = PBXGroup; + children = ( + A439185E722B36F1A8B1BEE7BDC71514 /* EXVideoManager.h */, + 2845AE37505E17E13FB2C18225966C08 /* EXVideoManager.m */, + 563880E140BAE9F0CD6A507B16D921F3 /* EXVideoPlayerViewController.h */, + B0B5D9B71A83EC9F23FB5432F6A776D9 /* EXVideoPlayerViewController.m */, + F5B377F6105317F97F4A000A3DDB28B5 /* EXVideoPlayerViewControllerDelegate.h */, + 1349DA30B40712C2BCB6BB6A3EEFFB69 /* EXVideoView.h */, + ECF30685940A43B4A6F919BCADA28019 /* EXVideoView.m */, + ); + name = Video; + path = EXAV/Video; + sourceTree = ""; + }; + EE843BA057C1DB41EB47843B96406822 /* Support Files */ = { + isa = PBXGroup; + children = ( + 40192D0027FE3F73F92FFE2B8AF7A78F /* EXFileSystem-dummy.m */, + 30243E7519676662464862B25AAD7BCC /* EXFileSystem-prefix.pch */, + BCB188AF9D06035BEC1720D50031039E /* EXFileSystem.debug.xcconfig */, + 89E93430F71A71DBFADC0D1285DF7A14 /* EXFileSystem.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXFileSystem"; sourceTree = ""; }; EEC72927606E0CC1947DF352C60A3014 /* GoogleUtilities */ = { @@ -22187,64 +22720,24 @@ path = "Flipper-RSocket"; sourceTree = ""; }; - EF36AA74E2FB31DE2B4C56C6BF6E611E /* UMFontInterface */ = { + EEEBEEFCEAC879E964264A9B2B6A72E5 /* Support Files */ = { isa = PBXGroup; children = ( - F434DB3EE2B06E0B657E9BD8CD2DF5B3 /* UMFontManagerInterface.h */, - 3AC5DF238A917E53E15A45FF4472DA7A /* UMFontProcessorInterface.h */, - DC1FEA73469B51E60B03E4932515AA33 /* UMFontScalerInterface.h */, - 55BAE6DFEA798F7DA014A1CB4C27FB5D /* UMFontScalersManagerInterface.h */, - 0FA3157352496AAE48E6AE3C85870B98 /* Pod */, - FB9325F7E5F47BB5DF22AF072665CB56 /* Support Files */, + 60D442A392DA9A7A6DD57F6D01D72702 /* RNCPicker-dummy.m */, + D025A744BC6CB86BDC6E7478D67C5018 /* RNCPicker-prefix.pch */, + 3C74F4DCE22AD32551BC8F409F540F4C /* RNCPicker.debug.xcconfig */, + 91E76A46D4AB33E0DEF355E7518F45FE /* RNCPicker.release.xcconfig */, ); - name = UMFontInterface; - path = "../../node_modules/unimodules-font-interface/ios"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNCPicker"; sourceTree = ""; }; - EFA021E9A6D531FF1BB6816F608156BE /* react-native-webview */ = { + F01DECD75D599D9E0F21175BA00634B7 /* Pod */ = { isa = PBXGroup; children = ( - 5FC40ED6C98F0824A871FF77F70F8337 /* RNCWebView.h */, - 5474AC1721D19B83CDFBB3FB8A4B4337 /* RNCWebView.m */, - CD9F3D9947D8925A9C81F1B9A1B7E759 /* RNCWebViewManager.h */, - 24E9FC4AB6089379891FD3D5620904B9 /* RNCWebViewManager.m */, - 9D0EA0C2FB3CE4658DD0BEA5791E77A9 /* RNCWKProcessPoolManager.h */, - AA629192EDB38E1CDE92A5C8C618EFCF /* RNCWKProcessPoolManager.m */, - 1CDB49C5FDE2E4A2F7F5A5F24A536904 /* Pod */, - 6A839F81917E956A0A65218982D33B68 /* Support Files */, + F61ACA5C6F1C50F250EAC26D616F95AE /* React-perflogger.podspec */, ); - name = "react-native-webview"; - path = "../../node_modules/react-native-webview"; - sourceTree = ""; - }; - EFC5F81762CC2C35573244B061EFF52E /* CxxModule */ = { - isa = PBXGroup; - children = ( - C05C2D3F63CDA77628DCA3FBE92D33BC /* DispatchMessageQueueThread.h */, - A170A8E7C8F80324CE523D47AD3BAE7D /* RCTCxxMethod.h */, - 4D3155513AAFB39104552D310A857A30 /* RCTCxxMethod.mm */, - B4390896020B6A75E90AB1D8E8F668D9 /* RCTCxxModule.h */, - D9590654F13406E98FECBCBDC8FAEBB3 /* RCTCxxModule.mm */, - E738E13503F37112DFBF1804F7416C8F /* RCTCxxUtils.h */, - FEBBC62ADEBFA775C90FDF0872C45C81 /* RCTCxxUtils.mm */, - 4CEFD888BCEC574EF8DCF820C4CD47A4 /* RCTNativeModule.h */, - 72152681489C95FEFD1601ECDAC422FF /* RCTNativeModule.mm */, - ); - name = CxxModule; - path = React/CxxModule; - sourceTree = ""; - }; - F0CCC55DD0058427099E03C43F2D436F /* RCTNetworkHeaders */ = { - isa = PBXGroup; - children = ( - F202CEE75EAE78ED24C2B9892843DBE9 /* RCTDataRequestHandler.h */, - 6B04D802C155AFC7BFE192BEA8530F96 /* RCTFileRequestHandler.h */, - 1CB7AC735F132CEDC3BE002987E90B2F /* RCTHTTPRequestHandler.h */, - AA8958BB286E0C29D2F0EA92528B5BEC /* RCTNetworking.h */, - 917C78FCEB2E4F1F066CA0F230EA38EB /* RCTNetworkPlugins.h */, - 853C1CF66632CEC2D68C7EFC135B6D39 /* RCTNetworkTask.h */, - ); - name = RCTNetworkHeaders; + name = Pod; sourceTree = ""; }; F1780DF17F8F254B4E8C6DC421BAE976 /* Futures */ = { @@ -22435,16 +22928,66 @@ name = Futures; sourceTree = ""; }; - F1E79BAFCFF0EC57C8AB55F6171CE0A3 /* Support Files */ = { + F26BD41726D721693FD89A61BD4F4304 /* RefreshControl */ = { isa = PBXGroup; children = ( - E5EB482843E177EE3F24ABB05A060587 /* react-native-cameraroll-dummy.m */, - 470C415D050AECE5E1CF430D95758BF7 /* react-native-cameraroll-prefix.pch */, - 875DED61A06CE318AEE1294518695660 /* react-native-cameraroll.debug.xcconfig */, - A9551C6D40C0505505A9E0FB78DC88F1 /* react-native-cameraroll.release.xcconfig */, + 1F26C9949B8C13255F0D9E2BF80025C9 /* RCTRefreshableProtocol.h */, + 960B662DBF07CC6F9D678776B42D2D22 /* RCTRefreshControl.h */, + EFBF0F66DD05093A50745A956B265F83 /* RCTRefreshControl.m */, + 304AD9DD746227D7CFF1D49EE52759C2 /* RCTRefreshControlManager.h */, + 534C4979DAEE0F420291383A100BED53 /* RCTRefreshControlManager.m */, + ); + name = RefreshControl; + path = RefreshControl; + sourceTree = ""; + }; + F27CE71A7A35E5EDF4829C02CD2D6ADA /* Pod */ = { + isa = PBXGroup; + children = ( + F7D554F5ED674572E6525FC97E60D179 /* UMReactNativeAdapter.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + F2AD59A18562376746A8C194B5A64512 /* Support Files */ = { + isa = PBXGroup; + children = ( + 6F202CC58071BB662983E064EB4D8F0C /* React-RCTActionSheet.debug.xcconfig */, + DED15C1208E208890C8166DEFA7CCCF0 /* React-RCTActionSheet.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/react-native-cameraroll"; + path = "../../../../ios/Pods/Target Support Files/React-RCTActionSheet"; + sourceTree = ""; + }; + F2D81CCA0762A4A03BCFC78CE0764E76 /* Pod */ = { + isa = PBXGroup; + children = ( + B2E0119137ABBA5AA5D171159172945D /* React-RCTSettings.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + F359CB836A39AD8FA351F634C8FFC0AB /* Multiline */ = { + isa = PBXGroup; + children = ( + 0FE5ED29CEF5FAFC8F13E402F3E4412C /* RCTMultilineTextInputView.h */, + 395A42BD9767360C5A6BF5EB5CDB1A2E /* RCTMultilineTextInputViewManager.h */, + C8644BEA899187C9860C8C5A4BCE9404 /* RCTUITextView.h */, + ); + name = Multiline; + path = Multiline; + sourceTree = ""; + }; + F44E47364DE167325BBAC8AFB37A73EF /* ios */ = { + isa = PBXGroup; + children = ( + 02A07C2CF210CB58858459A1FB92D628 /* RCTTurboModule.h */, + EA880D94604F3BDF76B355942BB36599 /* RCTTurboModule.mm */, + 9CA6E8C4E777904A2FD84541C7D45F8D /* RCTTurboModuleManager.h */, + C63DD0A29BA912799F564DF84CD28550 /* RCTTurboModuleManager.mm */, + ); + name = ios; + path = ios; sourceTree = ""; }; F45F99239F8D620BA75E45AC10FCBE50 /* FirebaseAnalytics */ = { @@ -22457,35 +23000,53 @@ path = FirebaseAnalytics; sourceTree = ""; }; - F54DCF5FB223C79DA92E0A11A5BF50AB /* Support Files */ = { + F4832F0C1B0722230AACED41CB08F65F /* Pod */ = { isa = PBXGroup; children = ( - 24419A3720DD6A543EDA5C339C6F95A7 /* UMImageLoaderInterface.debug.xcconfig */, - AD1D738F3D061DB73D092B289BF79AB4 /* UMImageLoaderInterface.release.xcconfig */, + 45CBAD2BE825C521ABDEF3571C99DFF1 /* UMImageLoaderInterface.podspec */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; + name = Pod; sourceTree = ""; }; - F5ED2F47A83F3F74CBAC43DAB8638159 /* EXFileSystem */ = { + F518BFDFEDFDC9F567770B50F2224D0F /* Support Files */ = { isa = PBXGroup; children = ( - A398171E79904AF49DBDE4FE4BFC44C2 /* EXFilePermissionModule.h */, - 7DFA9D4608861726508384EDDE3CEA62 /* EXFilePermissionModule.m */, - 72B1E8C766EEEBA806779AA73EB8A200 /* EXFileSystem.h */, - 5467384670BB5E3280C55165AC5655CC /* EXFileSystem.m */, - 4788C60996B972D1306C2CFEDC6D0F40 /* EXFileSystemAssetLibraryHandler.h */, - F7C3AFBD9437924674CF0B2832C89AD1 /* EXFileSystemAssetLibraryHandler.m */, - 6D241D128FCBB15F4E45464434335482 /* EXFileSystemLocalFileHandler.h */, - D804ECB383E4EC6DD4B4382CB05E6D1F /* EXFileSystemLocalFileHandler.m */, - 1A86FA87365372CC6DA358E1D7AA4E89 /* NSData+EXFileSystem.h */, - 56F935D771C7BAE38583B64FE84C10A5 /* NSData+EXFileSystem.m */, - 783420C69E4B3095E8760143CC22683A /* EXSessionTasks */, - D449AA2702C39DC6BD338C0435115392 /* Pod */, - 7E5997F63A4EA05E1FDB3A2F0AFB4458 /* Support Files */, + 5EAE9196962CE4F1B28D093A73FEFB1D /* React-runtimeexecutor.debug.xcconfig */, + 245ECF7B29C53EB3D624AA79946C00A8 /* React-runtimeexecutor.release.xcconfig */, ); - name = EXFileSystem; - path = "../../node_modules/expo-file-system/ios"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-runtimeexecutor"; + sourceTree = ""; + }; + F5C468E2C8EB29A22C73F934983E7DCB /* Pod */ = { + isa = PBXGroup; + children = ( + 5F3837B4B558F144062895D604B49077 /* Yoga.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + F641105844363762CA3BBBE07CC08592 /* Support Files */ = { + isa = PBXGroup; + children = ( + 1B354C853DA1F53692CF84A3B1ABC877 /* React-RCTImage-dummy.m */, + F51458ED217868C4E220100B51E3EFC2 /* React-RCTImage-prefix.pch */, + E38C1AE8DEA5B9BE757563C6DE252B33 /* React-RCTImage.debug.xcconfig */, + 9F9C7917EDBBA65B57AA90AF42B42EFA /* React-RCTImage.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTImage"; + sourceTree = ""; + }; + F665DD37085CF39892F6815455739FCF /* Pod */ = { + isa = PBXGroup; + children = ( + 70DFB992E5E5E1CB0CC34C34C8BECFB8 /* api.md */, + 73E578732206D30A3DD14484BEE74608 /* LICENSE */, + 4E060D1DC000ED351BF7F2053F8B242D /* ReactNativeART.podspec */, + F975E93D0FA1578E1A6F12A2B7879ABE /* README.md */, + ); + name = Pod; sourceTree = ""; }; F67429E53CEB7D36B9F6BCCB4BEA01BB /* Support Files */ = { @@ -22502,10 +23063,10 @@ path = "../Target Support Files/FlipperKit"; sourceTree = ""; }; - F67E2B71999655ACC3F291B1ECD8852C /* Pod */ = { + F71F4191E78D842BDE7853052CE116BA /* Pod */ = { isa = PBXGroup; children = ( - 354A8E18E1212F7DCDA9DADC44D7F5A0 /* React-jsi.podspec */, + 98F5638F8036BD901269E11FB8559946 /* UMSensorsInterface.podspec */, ); name = Pod; sourceTree = ""; @@ -22524,56 +23085,54 @@ path = "../Target Support Files/YogaKit"; sourceTree = ""; }; - F784AB8FB199515944D756391F2F70C0 /* Recording */ = { + F7CA8A6EC0BBAEED2EF6838FD4356737 /* react-native-safe-area-context */ = { isa = PBXGroup; children = ( - 827446B595DC3D7EE069CAA8799A49CC /* BSG_KSCrash.h */, - 4BC5A4A6BDAEACD8A00C4CC082D99FC7 /* BSG_KSCrash.m */, - 21D81F699EFB0D3D63D07F3C1B01AD12 /* BSG_KSCrashAdvanced.h */, - 6ADCBB00B64226BA363D0D887DCBD9E4 /* BSG_KSCrashC.c */, - 19CC548808E20874D79C5F6D3ADA9594 /* BSG_KSCrashC.h */, - B668CB219669071E5D6FA7BD68FB01E0 /* BSG_KSCrashContext.h */, - D78EA4DA9FA869EDDF789405925CED85 /* BSG_KSCrashDoctor.h */, - 75EE89527E4349B46208645D63B85BFA /* BSG_KSCrashDoctor.m */, - E64F288F7706CDB32BFF386459BACA40 /* BSG_KSCrashIdentifier.h */, - 6EF097E2388755E1D73D9DF2E6C84190 /* BSG_KSCrashIdentifier.m */, - A1CB03637D36B3CD105FD6F5A272ACBC /* BSG_KSCrashReport.c */, - ED7A1F17BCAA8D766D00DBE4D833C822 /* BSG_KSCrashReport.h */, - F138F0A62BD7A37837818CF8A8B3F102 /* BSG_KSCrashReportFields.h */, - 4C09B299EC7EBF1CD2B386507D0ABF6A /* BSG_KSCrashReportStore.h */, - 161F522101C06DF780455CE87AE079A5 /* BSG_KSCrashReportStore.m */, - DD3E08C7595DAB127F78E8014DF858C0 /* BSG_KSCrashReportVersion.h */, - 5DB4BF71ED971EDCB9BE4DACF1F70251 /* BSG_KSCrashState.h */, - 9D38E4F9E92A99FEA2A7CC00574A1EC5 /* BSG_KSCrashState.m */, - 3B83F3A3E88B252222C7A6898F2C16DF /* BSG_KSCrashType.c */, - 6DC7A00F522AFE9858ECA2B4700FDC85 /* BSG_KSCrashType.h */, - 2DBD6394E03686C6B6746D6D05F1E81E /* BSG_KSSystemCapabilities.h */, - 139918A0AE10661514932B9C5D50DA23 /* BSG_KSSystemInfo.h */, - 5B1DBBE9203BCBA001D885ACA16BE0F5 /* BSG_KSSystemInfo.m */, - 2E1F6476DD080549DFFF6FAA0034A183 /* BSG_KSSystemInfoC.h */, - 47646E301BC23233AB064FFF3EF7F303 /* Sentry */, - EB2656FAB4E57F2E24AF6A041F0C2D95 /* Tools */, + B40DF7C2CDE03744D98968D0D2ACF035 /* RCTView+SafeAreaCompat.h */, + EE1629DBC0F2312E94B2E5DA2A46C3D9 /* RCTView+SafeAreaCompat.m */, + 78947469984D2FD1BB8948C883C719B0 /* RNCSafeAreaProvider.h */, + 0FDB50B420BB773426F9F40E91C07B38 /* RNCSafeAreaProvider.m */, + 27CAEC8C4FCBBA856272D59A8F1440A9 /* RNCSafeAreaProviderManager.h */, + F12F35269850391E9FAF0153A7CE2C48 /* RNCSafeAreaProviderManager.m */, + 5B7929894D1887234B31F855496F5AC9 /* RNCSafeAreaShadowView.h */, + FCA58601E5C7F004185388335C86AF23 /* RNCSafeAreaShadowView.m */, + 85F0409B00976E265E97759FCCD27E57 /* RNCSafeAreaView.h */, + DFFB7BE862EB42E833249ED655B2CAC7 /* RNCSafeAreaView.m */, + EE7B1FD6B52A6B8F1A82A3DAA4B1FBA0 /* RNCSafeAreaViewEdges.h */, + A6B53E018BB1410AE17A0898B3DB1F13 /* RNCSafeAreaViewEdges.m */, + B2B1577097A380C5EFC177FF78557FF4 /* RNCSafeAreaViewLocalData.h */, + A8FE5B5DF100160357515A6D5DE374A9 /* RNCSafeAreaViewLocalData.m */, + ED66C4774C8544D1E55121F478A0810D /* RNCSafeAreaViewManager.h */, + 00669D5EABDCDD0B6F93F1605C253F1C /* RNCSafeAreaViewManager.m */, + 50380A13EC2534D9286401EBD03FB7FF /* RNCSafeAreaViewMode.h */, + 9D9709598D5DB757633AC6B35AA28861 /* RNCSafeAreaViewMode.m */, + 0E1EF7FD04745BCA08893FF3D93320FB /* Pod */, + 2EF25E51A7D9B87C4E7E327310CEAACE /* Support Files */, ); - name = Recording; - path = Recording; + name = "react-native-safe-area-context"; + path = "../../node_modules/react-native-safe-area-context"; sourceTree = ""; }; - F7EA4CC6288DAD16798FB3B0176F91AA /* Pod */ = { + F7E4F3702F4A4EBB7AB5AD0518729F1A /* Pod */ = { isa = PBXGroup; children = ( - FC0FDFB86CAAC3C697EE3DA169ACF6BB /* UMPermissionsInterface.podspec */, + 3F65646ECC691E18D39339948A9A1F33 /* LICENSE */, + D3DE53BFB30AD316FAD57081454D1606 /* README.md */, + 0E43C7D6E8A94BC0C9E6999D4CF2CF04 /* RNVectorIcons.podspec */, ); name = Pod; sourceTree = ""; }; - F8322387D707C07D51963FBAAA4C2973 /* Pod */ = { + F8263D86AEC7E8A3F873201850FC131A /* Support Files */ = { isa = PBXGroup; children = ( - B8EBB3E361DD9CBCB8E24FD693F40C77 /* LICENSE */, - 4928000D5821F6CD15D68D7CF809D66E /* README.md */, - BD4206D792237C115AC614FEC3BBC11D /* RNFastImage.podspec */, + 1FE7C4C0DA60ED2DAB89FD5B20737950 /* RNLocalize-dummy.m */, + 8ACE9792D970512C40AB945A7A2B9C24 /* RNLocalize-prefix.pch */, + 44122EACFF785CC25F182DF7C765E7E3 /* RNLocalize.debug.xcconfig */, + 454A520F2F73FC2B2E8C35BC65566A9B /* RNLocalize.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNLocalize"; sourceTree = ""; }; F842F6F89CA701E4254C809E1592B182 /* Support Files */ = { @@ -22588,26 +23147,16 @@ path = "../Target Support Files/SDWebImageWebPCoder"; sourceTree = ""; }; - F8CFA59F3C6C8FE6EB8E21A43325F8BC /* react-native-restart */ = { + F93ECDB377FFD54E677EC59801E4DA9B /* rctcustomInputcontroller */ = { isa = PBXGroup; children = ( - F94A29581BCCA01F862FDA6E66D05EB9 /* Restart.h */, - E23CF948153595DC8E7526D7942981E4 /* Restart.m */, - A4DF39314E4BD1A175A414ACE8DAD530 /* Pod */, - 359D530BB9522BC3BA1437D9625A044E /* Support Files */, + C191067ED21FA9A8C57AE29B73488327 /* RCTCustomInputControllerTemp.h */, + 1BE007A3B2DCB6601D82C16DCA04FC1C /* RCTCustomInputControllerTemp.m */, + 568E4B473F5892180E742DDA535A93AE /* RCTCustomKeyboardViewControllerTemp.h */, + B59BA6E9E92F0A289F145CF2CEF05F1D /* RCTCustomKeyboardViewControllerTemp.m */, ); - name = "react-native-restart"; - path = "../../node_modules/react-native-restart"; - sourceTree = ""; - }; - F97FD3B8A09E948F23BD13562A68FFC7 /* VirtualText */ = { - isa = PBXGroup; - children = ( - F6A2F9F88877D6888B03E4A85A7EC47F /* RCTVirtualTextShadowView.m */, - B1752A0E44965AE4FF13FEF2603B4F52 /* RCTVirtualTextViewManager.m */, - ); - name = VirtualText; - path = VirtualText; + name = rctcustomInputcontroller; + path = rctcustomInputcontroller; sourceTree = ""; }; F9B45698BD58555FD6D0225DD72AF051 /* hermes-engine */ = { @@ -22642,70 +23191,85 @@ path = "hermes-engine"; sourceTree = ""; }; - F9D432BAD32ACC5AF660992FC88495F5 /* react-native-netinfo */ = { + FA03BA6B3DBC87C9DA543B61A41D2B04 /* Support Files */ = { isa = PBXGroup; children = ( - D750816AE5A882794EDAB55CEE923C47 /* RNCConnectionState.h */, - E0FBE26D631B71D807952689A5AE797C /* RNCConnectionState.m */, - EC5913ADB7DF01BE0265EFDD87FB0281 /* RNCConnectionStateWatcher.h */, - 7A483D34E4942951688DEC7E921B8540 /* RNCConnectionStateWatcher.m */, - 0D283985C085552CDF47FA81D3178BE6 /* RNCNetInfo.h */, - 60182C824BDFDB45B28B9510884D115A /* RNCNetInfo.m */, - 54955FCDD01B50FA7572289414848690 /* Pod */, - 6689E492CC7E71304823C2E38E1D87EB /* Support Files */, - ); - name = "react-native-netinfo"; - path = "../../node_modules/@react-native-community/netinfo"; - sourceTree = ""; - }; - FA6266F4407B3B2B2181C402AF0AEFD4 /* Support Files */ = { - isa = PBXGroup; - children = ( - 66CA7A79D16A8E49C9E8D0BF80631C67 /* rn-extensions-share-dummy.m */, - D332CF4DEC01E04D3E9E6C36C3935A62 /* rn-extensions-share-prefix.pch */, - 4037513116F425CCFC4AB7FE140F8F63 /* rn-extensions-share.debug.xcconfig */, - 3506CCA22F9C280673DF4C145292274D /* rn-extensions-share.release.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/rn-extensions-share"; - sourceTree = ""; - }; - FA806DA2033D93920AA0E5C58AC34EBB /* Support Files */ = { - isa = PBXGroup; - children = ( - E6A21A31FE37E9BAAC23ECB027320313 /* react-native-document-picker-dummy.m */, - 1E738D6AF6390CC87F29C7E097C88731 /* react-native-document-picker-prefix.pch */, - CE5D9BDFD0262F6E868A3D07FAE897D9 /* react-native-document-picker.debug.xcconfig */, - EED42A95AAF354958AB6CC0252CFCBDB /* react-native-document-picker.release.xcconfig */, + BE8085DDE5007490C571E6E464198B33 /* react-native-document-picker-dummy.m */, + 5318214869ED3135FF6216D2E0BBE0A1 /* react-native-document-picker-prefix.pch */, + E6BB15D5AAC1A14C30DCEFA63C6121DC /* react-native-document-picker.debug.xcconfig */, + 3B335D891353EDABF098FC898DC8073B /* react-native-document-picker.release.xcconfig */, ); name = "Support Files"; path = "../../ios/Pods/Target Support Files/react-native-document-picker"; sourceTree = ""; }; - FB06D3D0A84BE80A0C56EFA3D76851B2 /* Pod */ = { + FA160BD1B56736D317D96A56C8D7C8ED /* Text */ = { isa = PBXGroup; children = ( - 0F9117F168B2B781348BD3F871C5C06B /* React-Core.podspec */, + 15565FCA1BC916623C1F71E4B5EDA377 /* NSTextStorage+FontScaling.m */, + FE11B48849D25AB2247070F9E98D8372 /* RCTTextShadowView.m */, + 1D723EE26569B7CC5274D4FDAAC06E73 /* RCTTextView.m */, + DF281B7C5E8720EB7DC9F94FAA8F7B42 /* RCTTextViewManager.m */, + ); + name = Text; + path = Text; + sourceTree = ""; + }; + FA808CFB40F601FBA98ACB56E8260884 /* RCTBlobHeaders */ = { + isa = PBXGroup; + children = ( + CE720B80740482075792A51EC72C64FF /* RCTBlobManager.h */, + 26870246B6A46B10CD4C9299DE8C3D25 /* RCTFileReaderModule.h */, + ); + name = RCTBlobHeaders; + sourceTree = ""; + }; + FB8E1FC8A4EEFA7710F4B5D50CB00F42 /* Pod */ = { + isa = PBXGroup; + children = ( + 510B5BA406387F705CE66C95EAD96005 /* LICENSE */, + D5076B2B02335290CFEE9635052C0FE6 /* README.md */, + 75CF82490FC7DFB75FE21312B7DBDCA5 /* rn-fetch-blob.podspec */, ); name = Pod; sourceTree = ""; }; - FB9325F7E5F47BB5DF22AF072665CB56 /* Support Files */ = { + FC3E1E1924F8AB032732197B8BD6606B /* Support Files */ = { isa = PBXGroup; children = ( - A3EF24ACC5671A90547261D983A69777 /* UMFontInterface.debug.xcconfig */, - 09E287F942E9D704CBEB762C9FEAB884 /* UMFontInterface.release.xcconfig */, + E495647157E078E4359FE6D76B770AB8 /* RNReanimated-dummy.m */, + 48ABB4CD1CC777F2F66B8C111701D150 /* RNReanimated-prefix.pch */, + F6D284B7576715CC4396B43BE47D1555 /* RNReanimated.debug.xcconfig */, + DC2B8A3D13C3025E4C71AC6D6C299FD7 /* RNReanimated.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFontInterface"; + path = "../../ios/Pods/Target Support Files/RNReanimated"; sourceTree = ""; }; - FC7FC2D9C77AAC090A66FE185453CC1F /* Pod */ = { + FC9BAE212206265AB6B079A6022BADA8 /* Pod */ = { isa = PBXGroup; children = ( - 81983EC4B579E9EA59E82033CB268BD6 /* LICENSE */, - DF2AE06C9AD52B3571F157A14F38BB28 /* react-native-mmkv-storage.podspec */, - 9C119EBF81B58952DC798DC09A775C6E /* README.md */, + BCA751A5356A57DB945A6CA6FEC74027 /* LICENSE */, + EFE8405103A0E74725C59DC5C99FDB57 /* README.md */, + DB504C02660FF2C2B4C187F3EAA7E482 /* RNFBCrashlytics.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + FCCF69CABCDBA2B92EA18F72B31768A2 /* Pod */ = { + isa = PBXGroup; + children = ( + 7BCED6B3574C45530A644C900F6813F5 /* React-RCTBlob.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + FCEED0EE883829DB1F57C7D6F38DB526 /* Pod */ = { + isa = PBXGroup; + children = ( + 25E6733A321E4C2A277571770B8D5A16 /* LICENSE */, + 91B926ACABA2AE33C652F669C9BF2D8E /* README.md */, + ED64319A152E60F820924678CC660D67 /* RNLocalize.podspec */, ); name = Pod; sourceTree = ""; @@ -22722,6 +23286,18 @@ path = "../Target Support Files/nanopb"; sourceTree = ""; }; + FDC62708DB0A95B2B84A97F1E0E256EB /* Support Files */ = { + isa = PBXGroup; + children = ( + C5BAF70E5AB8A74B2B59C84C0A57DF1A /* EXConstants-dummy.m */, + F28B8D6EE6C68BAEA3DE434FE5F84065 /* EXConstants-prefix.pch */, + 62D27314EB70A5DB01D620B3C7B5AE22 /* EXConstants.debug.xcconfig */, + 45ADF538F25776E64060B02AABA07AF4 /* EXConstants.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXConstants"; + sourceTree = ""; + }; FDE47BDEBDED25E8A133F6315ABBFBA0 /* Support Files */ = { isa = PBXGroup; children = ( @@ -22755,6 +23331,16 @@ path = "Flipper-Glog"; sourceTree = ""; }; + FDE890A9DD1A908FEA61A28EE5AC18C0 /* UMNativeModulesProxy */ = { + isa = PBXGroup; + children = ( + 3D05B428018345AF3E7B23DCC82F3F59 /* UMNativeModulesProxy.h */, + 0AA408A83949F54272C0B48056AB7749 /* UMNativeModulesProxy.m */, + ); + name = UMNativeModulesProxy; + path = UMReactNativeAdapter/UMNativeModulesProxy; + sourceTree = ""; + }; FE3F51365DDF1A171FD76E8F2037DB80 /* Support Files */ = { isa = PBXGroup; children = ( @@ -22767,23 +23353,45 @@ path = "../Target Support Files/SDWebImage"; sourceTree = ""; }; - FF1D676388DF5CC748A62626E9D8912A /* TextInput */ = { + FEAEFE596F6C49D66F8ABD8E16AEF529 /* Support Files */ = { isa = PBXGroup; children = ( - F86CCA2E39E21795B0A4DD98437E0605 /* RCTBackedTextInputDelegateAdapter.m */, - 58CBC1DF083659122FEE54E8664332CC /* RCTBaseTextInputShadowView.m */, - 69581175C16A8A465496D40FA2094F5B /* RCTBaseTextInputView.m */, - D21615D5B7787BF89AC75BFFE8280EDF /* RCTBaseTextInputViewManager.m */, - DC6A8B952BF6086ACD4F792F0EDB4958 /* RCTInputAccessoryShadowView.m */, - DA1B62512085290D3CE646FE4EC056A2 /* RCTInputAccessoryView.m */, - B9E7C0F46BA86AB4C5BB3DE295013623 /* RCTInputAccessoryViewContent.m */, - 9136A8AC5E5A05C022A9E70195FF1DB5 /* RCTInputAccessoryViewManager.m */, - AA7554F551F94D652833E1DD7ED1DDF0 /* RCTTextSelection.m */, - BAD1D0C5EF201F8233E4B8920E1B8C23 /* Multiline */, - D6134A9E97BDE741C54C5E675CC25981 /* Singleline */, + 7A7E94FCC43BD2D48FF40007268678CB /* UMCore-dummy.m */, + 576AD448826523267C1B77104A090AF9 /* UMCore-prefix.pch */, + F68BDB89D6BB3EDD1ADD7F9F18B1F9C2 /* UMCore.debug.xcconfig */, + DF5E666704223D49885200E7A2BC8F94 /* UMCore.release.xcconfig */, ); - name = TextInput; - path = TextInput; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/UMCore"; + sourceTree = ""; + }; + FEDF0F0255067333E30BE5FA68328373 /* Bugsnag */ = { + isa = PBXGroup; + children = ( + 0539C95CC07C94AB1B181AEADF6BE8F3 /* BSG_KSCrashReportWriter.h */, + D1261855BFFA8311D0C7C5B1019EBC88 /* Bugsnag.h */, + B8B04429ED933128C921E875024E3240 /* BugsnagApp.h */, + BB7A5AF8671A1E7E75DC19F1F6616F9F /* BugsnagAppWithState.h */, + 4670D8DA5D87EEFC41A8D2E7E4631AC8 /* BugsnagBreadcrumb.h */, + F14F1528780DEA27C1649BEE79620E7E /* BugsnagClient.h */, + 74C2665FF0FD8E698863719998648C12 /* BugsnagConfiguration.h */, + E1122B8B9816D5222710898DE93C3090 /* BugsnagDevice.h */, + 4206D953AD1F576B3D25AB9DF3998B7E /* BugsnagDeviceWithState.h */, + 9B513B2654AB7DD415E90B2561132369 /* BugsnagEndpointConfiguration.h */, + A6D61B128EC0F6DFF20B04348BA44CDF /* BugsnagError.h */, + 0293E4585956F99026832F6B4E390EDA /* BugsnagErrorTypes.h */, + D59570E752E35C2A399AE364FF6C7326 /* BugsnagEvent.h */, + B0B15E0495BCA939F82E3999573D2DFB /* BugsnagLastRunInfo.h */, + 416922757DBB94A29AA7BA3BE7FD9908 /* BugsnagMetadata.h */, + 6E29334AD715950C356E291A618D2281 /* BugsnagMetadataStore.h */, + F9AF0CE3E531CB7ECF512BA158A835A9 /* BugsnagPlugin.h */, + 31F582B92EDB6EB3FBA239D9BC06A49B /* BugsnagSession.h */, + 74EF1021D13B81EA41A5928C1E898140 /* BugsnagStackframe.h */, + 86A4D1DD994C66B202FFE6800530D499 /* BugsnagThread.h */, + 37CC656B732014A6AD8CB3244611BEEB /* BugsnagUser.h */, + ); + name = Bugsnag; + path = Bugsnag; sourceTree = ""; }; FFF7FD7DB0C75102D60D37EDE2106E99 /* Core */ = { @@ -22817,53 +23425,6 @@ /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ - 0359A74C7C4EF6BC3170FC1792D1C2CC /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 0030976BE1EC04E4A7B1471E03E60365 /* FIRAppInternal.h in Headers */, - EE825EA33470B2C9CD04B18D6E44DD89 /* FIRComponent.h in Headers */, - A5A9A29C5440AF19A4C9D67AE9C2A304 /* FIRComponentContainer.h in Headers */, - 86CAAA5A8D7FBD128A1317DA77CF75FE /* FIRComponentType.h in Headers */, - 1F727F297F3EDAF52CEEE3F3CB2830D2 /* FIRCoreDiagnosticsConnector.h in Headers */, - 7829B7D522B00497BD5269026C6654EB /* FIRDependency.h in Headers */, - 5E0202F6CFAF45A69EE6BD5DF0790378 /* FirebaseCoreInternal.h in Headers */, - 4F236375E72907F17E9D4C4EAE4FA632 /* FirebaseInstallations.h in Headers */, - B60B4BB14F805952E2AEC4096968CDC2 /* FirebaseInstallationsInternal.h in Headers */, - D281F95737C609E9EEC741291FD379EB /* FIRErrorCode.h in Headers */, - 01970A63C0994AAD745E1AF2B206352F /* FIRErrors.h in Headers */, - E6934C012C3EB644E512A0A1478C6B99 /* FIRHeartbeatInfo.h in Headers */, - 7641540275C25F3C40EB8AF1BC2DA128 /* FIRInstallations.h in Headers */, - B9423B6E166474545888E32CCE8BA700 /* FIRInstallationsAPIService.h in Headers */, - 0E3749FBF85802FC247E2FBDDD633E15 /* FIRInstallationsAuthTokenResult.h in Headers */, - 96F9D25CDE261A64D6073D162C99E4BC /* FIRInstallationsAuthTokenResultInternal.h in Headers */, - 6BB0FA27C4C2728332E8F885F3DBCB69 /* FIRInstallationsErrors.h in Headers */, - 80A1B9144F9A47BA9972134E1AA735D7 /* FIRInstallationsErrorUtil.h in Headers */, - 372A2C353A7F89465F8E199E1B76B902 /* FIRInstallationsHTTPError.h in Headers */, - D1E99A81A2ECCFD2EC16C81E0705C213 /* FIRInstallationsIDController.h in Headers */, - E9EDA828765D10062265BB55F66296F7 /* FIRInstallationsIIDStore.h in Headers */, - E4F55C5AE63DD600FB9FEACB1ACA2478 /* FIRInstallationsIIDTokenStore.h in Headers */, - C16208FED98960DEF7807F5A7B7E82A4 /* FIRInstallationsItem+RegisterInstallationAPI.h in Headers */, - 7DB493CFD79BD3C400D7F2CE9EC9B7EB /* FIRInstallationsItem.h in Headers */, - 67EAB573C0DF8A88BB9326311A21CA7C /* FIRInstallationsLogger.h in Headers */, - A3621AFA08B25ED08BAE40F7B67189EC /* FIRInstallationsSingleOperationPromiseCache.h in Headers */, - 0D055DD08681E620B11ED2072BE971F9 /* FIRInstallationsStatus.h in Headers */, - AEDBFA41A35E2AF00D65505FAE8A37EE /* FIRInstallationsStore.h in Headers */, - 73C3675D1DBA2136BA147315FEBC9660 /* FIRInstallationsStoredAuthToken.h in Headers */, - E321DAA163435E871927CCA5ECD93A45 /* FIRInstallationsStoredItem.h in Headers */, - 057D0607602940D1E8964B1C5B64D3F3 /* FIRInstallationsVersion.h in Headers */, - 3B77F14BA7A7AA50C9E62CE0E50ADD72 /* FIRLibrary.h in Headers */, - AA019B1A1ECCA5C7D90EFBFD7A5BC34D /* FIRLogger.h in Headers */, - B9024D009D8E6E07F6D5694ED5E3D194 /* FIROptionsInternal.h in Headers */, - 843EC8AB2FA5FE648B47C3BDA71178CC /* GULAppEnvironmentUtil.h in Headers */, - DF67DB63E2520633BD1403999726214E /* GULHeartbeatDateStorage.h in Headers */, - 169F61231A6051DCB48D912A68945F47 /* GULKeychainStorage.h in Headers */, - 4CD1B4090DAA167B0F7780920FAC5AFD /* GULKeychainUtils.h in Headers */, - 28BBA1A52C4B7AAB6EBF1A6DFB17A0F6 /* GULSecureCoding.h in Headers */, - C2A3436B70E577B9739F31C94BB18D63 /* GULUserDefaults.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 036680653A3165A017658DC466F456CB /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -22873,23 +23434,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 03812168D8D33476705F0CB2DEA4C475 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - EACC003EB0037C02E6B4FCB432F38DCC /* bignum-dtoa.h in Headers */, - FF153745A842C91A12FB173068967391 /* bignum.h in Headers */, - 3B01296FFDDECAD6E361927273755DAB /* cached-powers.h in Headers */, - 0645B0CC8E0E65A2A398EED0A171435E /* diy-fp.h in Headers */, - B1E38EF1F91A1ED1F06ED8319083FE5C /* double-conversion.h in Headers */, - 675F858D6A7BE86A17244960F3422EFA /* fast-dtoa.h in Headers */, - 8259DFDFD3B93BF5248176D9F8B6BC40 /* fixed-dtoa.h in Headers */, - E9148CED13C0C120BD683C2E21F407BB /* ieee.h in Headers */, - 095F93E0AD4C9CF6CDCC4A9CF07CAB8F /* strtod.h in Headers */, - 4833C395BD4D587C0B97D610781C53A5 /* utils.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 04E4ECBEAA9EB0C622354F24DCC6A44F /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -22898,6 +23442,53 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 069574742FF9F45911ACA04BC488AC48 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + C1CEF38AAA3E585D09D4A4A027680D5A /* FIRAppInternal.h in Headers */, + AE16B4E3BDF61432CDEBCC66CCF4F8BA /* FIRComponent.h in Headers */, + AC544C3109A91CDD8920894107B1E23E /* FIRComponentContainer.h in Headers */, + DD2AA1140A7BD95979BE03E8D2686ACA /* FIRComponentType.h in Headers */, + 3A80011D06CE81B3729E6A53F8AEC274 /* FIRCoreDiagnosticsConnector.h in Headers */, + EF6E7BB7625002F41585CBB2162532B8 /* FIRDependency.h in Headers */, + 1DD0AA3319223905443F8D6AC9BA8996 /* FirebaseCoreInternal.h in Headers */, + 40DBCC71D3CB20AF4B6A8D6C4925463A /* FirebaseInstallations.h in Headers */, + E532571B41B3C0C592E16E27057593A0 /* FirebaseInstallationsInternal.h in Headers */, + 5CF0A75C038C22CE06F634627E61E30C /* FIRErrorCode.h in Headers */, + 0CF2B0DB3189A0CC369D43D152544F22 /* FIRErrors.h in Headers */, + 63C76AF781A6666668509F2888403697 /* FIRHeartbeatInfo.h in Headers */, + DCC486E06B438F7952630278E1089691 /* FIRInstallations.h in Headers */, + 73FD7DB1F807452982CA25D94FE3EBFC /* FIRInstallationsAPIService.h in Headers */, + 77FC76296E4C94AF29B95282D0CEB5BD /* FIRInstallationsAuthTokenResult.h in Headers */, + A86B1DA2BDDBBD0C6CD613087B93FB65 /* FIRInstallationsAuthTokenResultInternal.h in Headers */, + DC0803998AE54A4AB8530C7E5B4B513F /* FIRInstallationsErrors.h in Headers */, + 15A8791056730A9BB4BA1A07699A6343 /* FIRInstallationsErrorUtil.h in Headers */, + D9C007F8515910F392AE437FFFB668B7 /* FIRInstallationsHTTPError.h in Headers */, + 6FABF4915BCC69ADE3B3F3F1B82E3FF7 /* FIRInstallationsIDController.h in Headers */, + A5105769B93B9486FA7E8B7EA1A1BADC /* FIRInstallationsIIDStore.h in Headers */, + CD2D9BAD0026BA6D30BFA2A89C346B6C /* FIRInstallationsIIDTokenStore.h in Headers */, + 5D84E4EDC421E22D3E69513DAA0F96FE /* FIRInstallationsItem+RegisterInstallationAPI.h in Headers */, + A15D2CEDFCD3E131001DFF1B971C79A2 /* FIRInstallationsItem.h in Headers */, + 18AA5C3668BDE6115B6B0FBDE761D7AE /* FIRInstallationsLogger.h in Headers */, + 9D5F402198C55E089E900CEED637C489 /* FIRInstallationsSingleOperationPromiseCache.h in Headers */, + B3A9FF3DB1A3DAB8502F509E47036BE4 /* FIRInstallationsStatus.h in Headers */, + E2D6ED674D98986B806DDBEA7B6E5741 /* FIRInstallationsStore.h in Headers */, + B18CCD55A5094A337C7E6F49212AB06F /* FIRInstallationsStoredAuthToken.h in Headers */, + 64A433BECEAE8EE4C0B1E351C2245446 /* FIRInstallationsStoredItem.h in Headers */, + B81DB7CFBD37CAA024A91B555809BF71 /* FIRInstallationsVersion.h in Headers */, + AF9DE104A3F8D40B0B59925CC2F17E8B /* FIRLibrary.h in Headers */, + DC7C5DDFA528B734F5DD2CF9D567E2DB /* FIRLogger.h in Headers */, + 810C9DA3B4AD46B1EFD35806B7599CE9 /* FIROptionsInternal.h in Headers */, + 59DE9E944049E3F8FDF20927F5A182E9 /* GULAppEnvironmentUtil.h in Headers */, + 075085477BB67B9628BCD463435B7425 /* GULHeartbeatDateStorage.h in Headers */, + AFB0357A2827C867FFCA1ED78A9AD5E0 /* GULKeychainStorage.h in Headers */, + DDB186BBB355BAE984A900B3699294F8 /* GULKeychainUtils.h in Headers */, + 93917FF9167C4ADCC440E46FAD552235 /* GULSecureCoding.h in Headers */, + 86B1E7288D9558909F90EB88F53F5916 /* GULUserDefaults.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 06D311E4C83DBF3A6F8D9A4FD8E4A0A9 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -22906,13 +23497,20 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 0D77D143C53C01F27460E6B5F8B6065A /* Headers */ = { + 11D9999534E0F0C2D0E856D26C2380A8 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 088FC53E263BBFEA6D69134BABF9BE32 /* FIRCoreDiagnosticsData.h in Headers */, - D067B1536928CD56A53B4FC47745C6C7 /* FIRCoreDiagnosticsInterop.h in Headers */, - 7718D2430D0763DA5C1C0508D942E71D /* firebasecore.nanopb.h in Headers */, + 9E15132D738425623615DAFB0C2D89E1 /* bignum-dtoa.h in Headers */, + 57A9150670042BDF5454DF3A09F0BF20 /* bignum.h in Headers */, + C84A2013A7C8788C1F6EE1194635FD71 /* cached-powers.h in Headers */, + 5A1BAFF7CF411FC918F477C48C53AA63 /* diy-fp.h in Headers */, + EB607671CA68A5497FB3F4992778BCFF /* double-conversion.h in Headers */, + 0829F9FE8178E4FF1669D596D77B0993 /* fast-dtoa.h in Headers */, + 6CAEBFCA4126D6A6EDCEA9C7F27D9300 /* fixed-dtoa.h in Headers */, + A66A6A6EEDE7043322F4D35299D8F086 /* ieee.h in Headers */, + 9C7D6F99CF240719DB4609D8680EF70F /* strtod.h in Headers */, + 2A8A7784018B5DEE7731FFEE1D3A6C62 /* utils.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -22932,124 +23530,496 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 19DCFF59BF5EEF41F3DBE8D273DFBC24 /* Headers */ = { + 19C46365A35E0C2C9C5299D1ECF73E40 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 3329202ECE86AC24E54E47F2B9E27C91 /* UMAppDelegateWrapper.h in Headers */, - D4E6A1FE753E7C31DD77D3F9178FABA3 /* UMAppLifecycleListener.h in Headers */, - DC79F9E518ECE962C6156DADC52E9FA7 /* UMAppLifecycleService.h in Headers */, - 3DFC6DADF98A78E4F9DC89D03F98DA27 /* UMDefines.h in Headers */, - 202DD68405D394E239842112D8F378CE /* UMErrorCodes.h in Headers */, - 4CFDB053B9919C69783FF629E48C4B32 /* UMEventEmitter.h in Headers */, - C8C5AC2B22074063028A0D3D4974C004 /* UMEventEmitterService.h in Headers */, - 3B066D458410B462F8B91FA92B3B2560 /* UMExportedModule.h in Headers */, - CF661D46F67B05CAA1A98F292AC57F06 /* UMInternalModule.h in Headers */, - 3511E2B1CDD57BACC04AEDEB947E4A12 /* UMJavaScriptContextProvider.h in Headers */, - 695794293BA10DA5178A49D59AA5D851 /* UMKernelService.h in Headers */, - D51730E29AA4D2A594E0BEAF9A214FB9 /* UMLogHandler.h in Headers */, - 78B3DB888CB1E7F1298E088AF5DCDE4B /* UMLogManager.h in Headers */, - 2B57BE7FEDF0012EA08640C02CA2C954 /* UMModuleRegistry.h in Headers */, - 5F65604C1A60625FE0CD33AABD57A3E8 /* UMModuleRegistryConsumer.h in Headers */, - 2896B7E2413316BCB1777BA62AF8DDA3 /* UMModuleRegistryDelegate.h in Headers */, - FDF9B1D5554ECC48F5109613FF449B64 /* UMModuleRegistryProvider.h in Headers */, - 78060729212CA5B4BD59B6C1FE01ADE1 /* UMSingletonModule.h in Headers */, - 6B164E64FE2920D60C6B1CEAE9E073FF /* UMUIManager.h in Headers */, - 52659DA771C1DE0196C6F9082071E325 /* UMUtilities.h in Headers */, - A3E950D3A4D456ED1E7E7C75A7DA9BF6 /* UMUtilitiesInterface.h in Headers */, - 711ADBA7E911F661F8A607CA3FB9475D /* UMViewManager.h in Headers */, + BEDC718C7FCEC1777A0E533CBC49F5BA /* UIView+Yoga.h in Headers */, + 61B194DCD91EF21781CF28D27BA9B2FB /* YGLayout+Private.h in Headers */, + 0975C6685CDEE822B3B40F222F717F78 /* YGLayout.h in Headers */, + FBECF2514DF1D74D6F649DB1ABE31225 /* YogaKit-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1B703D5A0769A7D001E1A07EA821558C /* Headers */ = { + 1E9C2DF63F8DD1D2DFE4FD76AC7384E7 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 9CEF285ED2794B2BF70A267F68893CCC /* log_severity.h in Headers */, - B8DFBEDD1CFB816DDA8113AF5A5E5A38 /* logging.h in Headers */, - B954ACF1E69614F61F8A26359C33C274 /* raw_logging.h in Headers */, - 70AA1112C1D19502F02952ABCDD23D63 /* stl_logging.h in Headers */, - EE83827C2C2FFFE2B3D87F828CAE45D5 /* vlog_is_on.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 1BBD563925F260961FD2E4DDD38C2C84 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 31501863DAAA83FA4F74216657895550 /* NSBezierPath+SDRoundedCorners.h in Headers */, - B11E87712A8225889267799000B56A59 /* NSButton+WebCache.h in Headers */, - BA23B6E7348E9FC9F495CA35710E384B /* NSData+ImageContentType.h in Headers */, - 98DC2729F36BC75E1E918D63E71D3957 /* NSImage+Compatibility.h in Headers */, - BE80076EDDBE03972DAC73594F3D1D9C /* SDAnimatedImage.h in Headers */, - D6798C24A2CB7D6410845A9C432023E3 /* SDAnimatedImagePlayer.h in Headers */, - 99ACD0B16DE561AF95A010CC2437278E /* SDAnimatedImageRep.h in Headers */, - EADD8A2B7FD6BBBBC62018BC42D6CB66 /* SDAnimatedImageView+WebCache.h in Headers */, - D535F8F9E20C7AD76E6DCD0398E04BAD /* SDAnimatedImageView.h in Headers */, - 0655480ED2629B321F809A2453E1465C /* SDAssociatedObject.h in Headers */, - 853E54BF76A353A191896240E43645FA /* SDAsyncBlockOperation.h in Headers */, - 747B6B8513BA09711B3BD6FDCE881C5C /* SDDeviceHelper.h in Headers */, - 957C909D71BC728B4284535ED9040080 /* SDDiskCache.h in Headers */, - 857DF8D89115F9140F7A5EA5409A930F /* SDDisplayLink.h in Headers */, - 193300BD98F56814D7B2F6B06D4F6A00 /* SDFileAttributeHelper.h in Headers */, - 91C95016F2CD73DB321A21CB071D3165 /* SDGraphicsImageRenderer.h in Headers */, - 2641B16A53F838A5F865631A22C5F770 /* SDImageAPNGCoder.h in Headers */, - 5532F12A90C71FADC9F95BBB2CF394B2 /* SDImageAssetManager.h in Headers */, - 025249E331C0206911E92BDB42BB0FF5 /* SDImageCache.h in Headers */, - 141CDDB9199118307A9E41416CBD847F /* SDImageCacheConfig.h in Headers */, - 6E129BA677E2974FA565B36E71C8DA34 /* SDImageCacheDefine.h in Headers */, - 7A6E49F0888AF5707DA748268651BF42 /* SDImageCachesManager.h in Headers */, - 95ECAEC640C4FB56C38963FA5AF5C230 /* SDImageCachesManagerOperation.h in Headers */, - 18DE7ED6AB2EDC7D2F15A21D18FD9311 /* SDImageCoder.h in Headers */, - 547C47E5824F41802EB8109BDF0A8A67 /* SDImageCoderHelper.h in Headers */, - 4765742EAB11F5FFDC299587D3F6FF22 /* SDImageCodersManager.h in Headers */, - CA6BB3B625081AFC8B80169A077DDB81 /* SDImageFrame.h in Headers */, - F632CE0662470B903C80EB4C336DA992 /* SDImageGIFCoder.h in Headers */, - 798841FEA9F8999A270D12E035552955 /* SDImageGraphics.h in Headers */, - B3FF49CAE317F2C80E48806AC81FA15D /* SDImageHEICCoder.h in Headers */, - F8EDFC710E4AB90BD849E53D22DB8C9F /* SDImageHEICCoderInternal.h in Headers */, - 8E4BEC42D8B47DC1B1FD32279885EF10 /* SDImageIOAnimatedCoder.h in Headers */, - B88D97A56140E1170E316B8261A40114 /* SDImageIOAnimatedCoderInternal.h in Headers */, - A827C0267395FAACA0C17A06EA590B44 /* SDImageIOCoder.h in Headers */, - E83C3D2465022D746380CAE2BA0EBD89 /* SDImageLoader.h in Headers */, - DAC40F37997A253C771E98CE0FFD7358 /* SDImageLoadersManager.h in Headers */, - 271B9F7A1028887E8FBA9A9257C9D629 /* SDImageTransformer.h in Headers */, - 7E4303CA5024E44BD81ED6519F0227DA /* SDInternalMacros.h in Headers */, - 5809FBAA42859299F5D31C2EE01F6FF4 /* SDMemoryCache.h in Headers */, - 1CE99636E09A89FDEA13777A315C80DF /* SDmetamacros.h in Headers */, - 4D2531AA47A4C60B4EE2969440295297 /* SDWeakProxy.h in Headers */, - 466C93BFF6920B44261C04497D3B7803 /* SDWebImage.h in Headers */, - 917D30741752F1F7E030DD7C6CE86946 /* SDWebImageCacheKeyFilter.h in Headers */, - C7DCEF74DAA0D4D05A17BF18D376D524 /* SDWebImageCacheSerializer.h in Headers */, - 859CDF5968E158444979D34C8A9D966E /* SDWebImageCompat.h in Headers */, - D511AB9EF6B01E734C9D2AFE1AC460DD /* SDWebImageDefine.h in Headers */, - EDC2707E1DA2A233B49F43EE6BC81DD0 /* SDWebImageDownloader.h in Headers */, - E7F690A79F63222636BBDBEBD8F76F71 /* SDWebImageDownloaderConfig.h in Headers */, - D139A50B1CAC9BAAF88C42F477CB3675 /* SDWebImageDownloaderDecryptor.h in Headers */, - 77013CE88047BB2A5123EF6C546269AC /* SDWebImageDownloaderOperation.h in Headers */, - 3E66988DA7660492A2A31779F2E49357 /* SDWebImageDownloaderRequestModifier.h in Headers */, - 1CCB665019EE37D6B1D42610B4E2DF97 /* SDWebImageDownloaderResponseModifier.h in Headers */, - 4756781BD4FB377EFAB5067053EB4897 /* SDWebImageError.h in Headers */, - E243AEF29FE58D827CC07DD118AC0F1A /* SDWebImageIndicator.h in Headers */, - 457B9CAECC9624F7111B7057005F041E /* SDWebImageManager.h in Headers */, - 4E37E49DB99A1BB2117B31F6A68AEE97 /* SDWebImageOperation.h in Headers */, - 296C43739E5B036D88A8A52006B6466F /* SDWebImageOptionsProcessor.h in Headers */, - A32889AFCC3294134F7196F3E30AF084 /* SDWebImagePrefetcher.h in Headers */, - 7F121A3FBE2FAD2A9EE3897B17D0661E /* SDWebImageTransition.h in Headers */, - 08EFB49D9BBCF7DF2247F5F8A5DF2250 /* SDWebImageTransitionInternal.h in Headers */, - 1C83E9B25DE646A48382604E85598DA5 /* UIButton+WebCache.h in Headers */, - 604CA3CD661E3C1BB085240B514EA9CD /* UIColor+SDHexString.h in Headers */, - 153F9562CAD715E3FCC5F30672333EED /* UIImage+ExtendedCacheData.h in Headers */, - 68BCD343380137134D88C103E2E1334D /* UIImage+ForceDecode.h in Headers */, - 93BB8C33B0A8657E3EEA4CCDE2A26ADD /* UIImage+GIF.h in Headers */, - 5974160A393FD50FB0EDFA464835008B /* UIImage+MemoryCacheCost.h in Headers */, - 61C88353B0E17C6BCF39D17B6E5F63D0 /* UIImage+Metadata.h in Headers */, - B8F11260E7A5F8E716DE12F856D07738 /* UIImage+MultiFormat.h in Headers */, - 16D645AE77D50E1A4962B8053282DACA /* UIImage+Transform.h in Headers */, - 9BC34D381A89F8AC11F9F444FB7BC9DE /* UIImageView+HighlightedWebCache.h in Headers */, - 64D41D21A1BC776B0FF6CA040A2A12EF /* UIImageView+WebCache.h in Headers */, - ECE14DCCC15540630354AF2F832C7EEA /* UIView+WebCache.h in Headers */, - 565745A6A09F99CBEC9E17117B804F96 /* UIView+WebCacheOperation.h in Headers */, + 8C7AF050002526AD3F6E6BC046F6DB2B /* Access.h in Headers */, + 9BF173CE03826AB08A9316384881F05B /* Align.h in Headers */, + 51A4F8CD4AA7BE9D2E696DCA8AE0F874 /* Aligned.h in Headers */, + 07E12D7FCC5284401B91040F1F61E8FD /* ApplyTuple.h in Headers */, + D601647EED2BA32715513D94C6430635 /* Arena-inl.h in Headers */, + 53C44FE753F00DA8FEA2EFCE693BDF2E /* Arena.h in Headers */, + 1B6D73AC966FDB7E917CF13DDA19E5CA /* Array.h in Headers */, + FA885E83C0A511A39AA042E2E0E02467 /* Asm.h in Headers */, + 4B3B08B714505AF5FB0D877B29D5BFBE /* Assume-inl.h in Headers */, + 070DF6CDF8168079D67DD94D4CEB1D2D /* Assume.h in Headers */, + B40825AF99A25154DD5B39CECF6B91EC /* AsymmetricMemoryBarrier.h in Headers */, + FA85A65FD7213D2D1AF43CB59CFE3B88 /* Async.h in Headers */, + 2AA8E34FE6C5BE7FCB0EE28F3412D592 /* AsyncPipe.h in Headers */, + BB2157B9CBD4FC48ECCCACB047F27180 /* AsyncServerSocket.h in Headers */, + 41FD5923DC509DC4130D7310A6C94840 /* AsyncSignalHandler.h in Headers */, + 7E7C215179C583CC74036539DE29F4F3 /* AsyncSocket.h in Headers */, + 7EAB35268C3CC56C21DB094408FEBD84 /* AsyncSocketBase.h in Headers */, + 146120BDF25A741ACB36FBB3F7D423B7 /* AsyncSocketException.h in Headers */, + 932F771CAD81C4422716974440C09370 /* AsyncSSLSocket.h in Headers */, + 30FE7FBDB66FF4147763FD808FF614D5 /* AsyncTimeout.h in Headers */, + 008E846E81F794C720EABB3FF9C1764C /* AsyncTrace.h in Headers */, + AE8E089B1265ED7BBA669E42AAE2C29B /* AsyncTransport.h in Headers */, + 0CB383EBBE7DE8793C3DAE97B376906D /* AsyncTransportCertificate.h in Headers */, + E3C5C6E11CEE73172271A32F56AF9311 /* AsyncUDPServerSocket.h in Headers */, + 9D846344563C09C82E7CAF7A706A80CC /* AsyncUDPSocket.h in Headers */, + 0D1494C60977D90B4EF701937DCA2D41 /* AtFork.h in Headers */, + 19F8A3E15F562BDB3BE4EB669EC0865B /* Atomic.h in Headers */, + E64AF3AEC1364B323D9F70FE52130B72 /* AtomicHashArray-inl.h in Headers */, + C3D701FECC2A441C37B153E09D524DC0 /* AtomicHashArray.h in Headers */, + 95814D79AAAA24FC9B2AF1E7B033D9ED /* AtomicHashMap-inl.h in Headers */, + DFDB8A745CC983AD5A277564FF3B8372 /* AtomicHashMap.h in Headers */, + A40B29DD535C1AAB0BB8FD290362F887 /* AtomicHashUtils.h in Headers */, + B5E656D8C4B4823CB7C772A212B84E2B /* AtomicIntrusiveLinkedList.h in Headers */, + 27EE22789E26A87B574810CE289A90CB /* AtomicLinkedList.h in Headers */, + 77C35194EA7A1C61CAE18FB5B083818F /* AtomicNotification-inl.h in Headers */, + 82F65CF078D09E8C005421B6EDD67F49 /* AtomicNotification.h in Headers */, + 134C462F5E3E91AB6424CDE8FE25D759 /* AtomicReadMostlyMainPtr.h in Headers */, + C2441B05A32F5CCC1A7DB2CBC81756FF /* AtomicRef.h in Headers */, + 66838508E25D2A74B65A800C2E2550BE /* AtomicSharedPtr.h in Headers */, + 74FEA037C0B559D5A6993E80EB2B01AF /* AtomicStruct.h in Headers */, + 92ECB1EA9F733DB78D57CB37AC97F94C /* AtomicUnorderedMap.h in Headers */, + C79DA87A08D4B20BB5BCE3EEB056EB35 /* AtomicUnorderedMapUtils.h in Headers */, + 570E71BFCB10F0D0CC22FE747564297E /* AtomicUtil-inl.h in Headers */, + 6324CEA058C36C2AB3898277F61AF7CA /* AtomicUtil.h in Headers */, + CE80A7D32D993EC9B26559195F7F4F26 /* AtomicUtils.h in Headers */, + 096047FD8389C5BE0B025F398B679E98 /* AutoTimer.h in Headers */, + A0208F37510AA099AECED2795C67D8FD /* Barrier.h in Headers */, + 3C0A4A66954EE859B051995A3CEE4486 /* Base-inl.h in Headers */, + 4A9EEACD394A2527D52BE9FBCD820482 /* Base.h in Headers */, + DD5D2ABF03FE9935FB11BF0F64FE9638 /* BasicTransportCertificate.h in Headers */, + 6EB3C6157C944D0F14B7CDB932F34940 /* Baton.h in Headers */, + 41442FF1B6E0018786917CCB032C0F54 /* Benchmark.h in Headers */, + 33AB5242D543303153929BD24123AE64 /* BitIterator.h in Headers */, + 1F4C86F457D6C516F3065BCC585C247E /* BitIteratorDetail.h in Headers */, + 95DC1F244036A5706D377BEFCC38DA94 /* Bits.h in Headers */, + 94E22A927F0A3998FC7C087A9F6AF8CF /* Bits.h in Headers */, + C2BA117A9770B59539D70AC8CF0B3919 /* Bits.h in Headers */, + D06DFFD00B69AF3A2D1EFF973DE6E084 /* BitVectorCoding.h in Headers */, + 2473B3A11F2AAFD2AEC14066336220B8 /* BlockingQueue.h in Headers */, + DEC474ED66B696D8408365EAB5156FE3 /* Builtins.h in Headers */, + 097954AC10D18CE8B5141F94DF890D16 /* CacheLocality.h in Headers */, + B4251A5F7467E8E98DD197694FE2A21A /* CallOnce.h in Headers */, + E67EAB639865313CF8223FCAA5C0E439 /* CancellationToken-inl.h in Headers */, + 8DF7DC8310894831D8646315D603E511 /* CancellationToken.h in Headers */, + 0E25FC030131787A144DF21878B8B00E /* Cast.h in Headers */, + A29292B06DA79A3685EBB0F9251FBF23 /* CheckedMath.h in Headers */, + 5C79E726C0A10A77C209336D12E21881 /* Checksum.h in Headers */, + 71E1E65FC95FBE0B472944B5FB54DC42 /* ChecksumDetail.h in Headers */, + CDC8CD8304521025E708103ECA714DBF /* Chrono.h in Headers */, + 6236886412510651B07EACD678AC47E4 /* ClockGettimeWrappers.h in Headers */, + 1D3B480205019899A8751D4AE61687D4 /* Codel.h in Headers */, + C9B3319CB6BB4B73DE7650348A98AA88 /* CodingDetail.h in Headers */, + 532419B8F6C92922633064EB3BF4DD29 /* Combine-inl.h in Headers */, + FD1D10004339566EC97E1BE66A754E99 /* Combine.h in Headers */, + 4DF36527D3A7802F9EA507DB401DCCF3 /* ConcurrentBitSet.h in Headers */, + 7BA075AFCDB27316C30CDA198DA823C3 /* ConcurrentHashMap.h in Headers */, + 668A6606B9BE4082AAE3945FD8B2B2DC /* ConcurrentSkipList-inl.h in Headers */, + 497C3B78847A7BADF517C253BA5E71D1 /* ConcurrentSkipList.h in Headers */, + FA49438D6C0BCCC65FCD9C21D2716BA2 /* Config.h in Headers */, + 44BBFC9CC5DCFF37B39640D6AC26FE9D /* Constexpr.h in Headers */, + ECDED650F177962D4CFA65C9DDF3811F /* ConstexprMath.h in Headers */, + 89CC065E38105426D8C34465243945BB /* Conv.h in Headers */, + 3366E76CA4F7EBBE50E98AAD07B05D76 /* Conv.h in Headers */, + 081D3EF79DD7B27C1031948FA9C72D1E /* Core-inl.h in Headers */, + F07AEF86AC6121F76D4FC73E398D9F4C /* Core.h in Headers */, + 8B8EE6BEDB54E7F2E8211F51AFB1E0D2 /* Core.h in Headers */, + 23FD3872340E08901DFBF08C81D0ED3D /* CoreCachedSharedPtr.h in Headers */, + F9B4C40ED3AE5323869D3417BF7DC7A5 /* CPortability.h in Headers */, + C61571D703CD4F1C642EE0DBB8115596 /* CppAttributes.h in Headers */, + A61F13BCBA8D6AFBE20D1AD144404972 /* CpuId.h in Headers */, + C96C23DD35B35085A98FAA492DD88019 /* CPUThreadPoolExecutor.h in Headers */, + 7C2820D4FF4C112DC90A8B3D7B84274D /* CString.h in Headers */, + E7427A2777ABB574E03689696119599E /* Cursor-inl.h in Headers */, + E3231EC68447E270A1CA6E248D40AED6 /* Cursor.h in Headers */, + 25713931BC02A60B534F4C57EBE12C09 /* CustomizationPoint.h in Headers */, + 89E84F8839C0774350C23C68CE2E37D3 /* DecoratedAsyncTransportWrapper.h in Headers */, + 33265A4F09DB8FB51B801C3BA92AD81B /* DefaultKeepAliveExecutor.h in Headers */, + 6419EA620A4327B1CA9F84D9B2B25B3F /* DelayedDestruction.h in Headers */, + 594C24B46B687D9E3DDC9441F8BA2005 /* DelayedDestructionBase.h in Headers */, + F1657CAD67C98E4364AE50501E714606 /* Demangle.h in Headers */, + 9EEAD4B922E38308A370C93A16E612B9 /* Demangle.h in Headers */, + CEE7978CF238C44FA9EED8927B72164E /* DestructorCheck.h in Headers */, + 7372AE251EDE259D667A76E98DDA8952 /* Dirent.h in Headers */, + CC283DD0AD2A7B28AB323189E63F03E1 /* DiscriminatedPtr.h in Headers */, + 208790D70277C3A907BFE89FD71D90F5 /* DiscriminatedPtrDetail.h in Headers */, + 6C5CA627C6773917F08E39A4CD4BA162 /* DistributedMutex-inl.h in Headers */, + 4F3A2790874ECF685CE39EA7AAE03BA4 /* DistributedMutex.h in Headers */, + 0839370ACB3C1AF71FD30BA8119B5C2B /* DistributedMutexSpecializations.h in Headers */, + 98BD3575D637BF290382049544412C01 /* DrivableExecutor.h in Headers */, + 78EC08F36BDA5D40A3686EAF9CD37F3D /* dynamic-inl.h in Headers */, + C0387547532533C56F624CBF18875631 /* dynamic.h in Headers */, + 6B55B4D2D6C4FA9879371F32CDDCFF88 /* DynamicBoundedQueue.h in Headers */, + 2CC81781632EE1FADEEBBBB01AEB41F2 /* DynamicConverter.h in Headers */, + E23A708DCF25B7E9D64B8E5A35C925E5 /* DynamicParser-inl.h in Headers */, + 7D65E22401B87E8D0DAFEF5834CCA3C5 /* DynamicParser.h in Headers */, + 7896A8FE21EE94860B0E96AAC9B61487 /* EDFThreadPoolExecutor.h in Headers */, + 3BE3507396BCD9046119593DA76BA96B /* EliasFanoCoding.h in Headers */, + CDA2371D774ACA93CE19FF42E7153242 /* EnableSharedFromThis.h in Headers */, + E1EC97CD6A2CFBFBEF3A7C1F95357D0E /* Enumerate.h in Headers */, + A90CFB8A65FC740039748C6F0EA9E385 /* EnvUtil.h in Headers */, + 24922AE63038BF9070EEF1A784504CC4 /* Event.h in Headers */, + DE7817AE8DE28073A58E0980D75417D5 /* EventBase.h in Headers */, + E9A6AB521B793BA618431BFD74AFC3FD /* EventBaseBackendBase.h in Headers */, + 658D96DA70C0C5BE84045B487F632D55 /* EventBaseLocal.h in Headers */, + DDC59E287FF049BB667BB0B791D9BDF7 /* EventBaseManager.h in Headers */, + 2C76438416AEE979405D966F2A12A10F /* EventBaseThread.h in Headers */, + 0948B68B74CC84944BBF2F9B3120F86C /* EventCount.h in Headers */, + 568FA58DBDB7030FDAAD0B6F2B520755 /* EventFDWrapper.h in Headers */, + C6558249403AA8AAAE7A66D934535A3D /* EventHandler.h in Headers */, + F417563AE9F7E963923D828B729120FD /* EventUtil.h in Headers */, + 6AFD9A72E1934955857F6D5E8A63C6C7 /* EvictingCacheMap.h in Headers */, + F1DDE8B1ED3759299992830E7CEE480A /* Exception.h in Headers */, + BC9A6B52422C58DE5EDE6E4CE44BD9A0 /* Exception.h in Headers */, + 0205426B1CB4A12EA5EE5707B0E0B23A /* ExceptionString.h in Headers */, + 640B0BE977DF7D94FCD0A4F172FC7218 /* ExceptionWrapper-inl.h in Headers */, + 540F416C28C21D48FAED8BBBFD21572D /* ExceptionWrapper.h in Headers */, + 1FBC28A70C19505EBE72775A2F9405DD /* ExecutionObserver.h in Headers */, + F700728CE6044893606501F341C4D0AB /* Executor.h in Headers */, + 2ADF441F3E38E8BE45201791A19C96B5 /* ExecutorWithPriority-inl.h in Headers */, + 94DE26BC203CCB24065246DC2F5E5241 /* ExecutorWithPriority.h in Headers */, + 7EC66A8857EA461928FA8D0D6E7D5155 /* Expected.h in Headers */, + FCD017F2EF045002D81B4CE631655D98 /* F14Defaults.h in Headers */, + 9B1DBD98BCC78A9847749E8403E3A747 /* F14IntrinsicsAvailability.h in Headers */, + 56CC7F0B9354791C231BE0A4C795482F /* F14Map-fwd.h in Headers */, + 419258E63004A311A862C221B364BA3E /* F14Map.h in Headers */, + E130BDA5A728FB1624154E19747F60D3 /* F14MapFallback.h in Headers */, + 444058A00D921890F65A1912BD982240 /* F14Mask.h in Headers */, + 1876B071407BDA1BC8DC4A9D72D53653 /* F14Policy.h in Headers */, + 1EED76577B9AC7C813A4F04F990FB9FB /* F14Set-fwd.h in Headers */, + 2CD2DCE747D9CD488EBAC0E80EF8D851 /* F14Set.h in Headers */, + 4C7FF52184D2CD05A127020050065426 /* F14SetFallback.h in Headers */, + F3EC25FB83B45B7741D842E9CEA9B424 /* F14Table.h in Headers */, + E1846F7769E342C8CC122EFCFDFFFF49 /* FarmHash.h in Headers */, + DE1C14D01E85896B387B87D2284F4AB3 /* FBString.h in Headers */, + 44164DCF7E00143ACA29DF5D852853D3 /* FBVector.h in Headers */, + 30E3F8C6D0872E7CB330BB479D714084 /* Fcntl.h in Headers */, + EF751BFB54ACCF62AD691C93A1D636D8 /* FiberIOExecutor.h in Headers */, + CFB71CF502F8556C04CDBD00948319A0 /* File-inl.h in Headers */, + AF8453F7B39B8BCC9901A0E7D52BAFC5 /* File.h in Headers */, + 0E9CBDAECA6866FFD03AD07254334712 /* File.h in Headers */, + 80EBA8DD6148D9BB730B02135BF4BBF3 /* FileUtil.h in Headers */, + 7E51F5112CD885712DFA7EDB05CF47B8 /* FileUtilDetail.h in Headers */, + F5ED92DD00217F5B31E36D164EB8FA4E /* Fingerprint.h in Headers */, + D9979D4C0853054CCA71AB8B13AAE6D2 /* FingerprintPolynomial.h in Headers */, + 90C43B022CDB590EAB13056B0DECE6CD /* FixedString.h in Headers */, + 936DAFC95400C8B430D1360E1D55C6A9 /* FlatCombiningPriorityQueue.h in Headers */, + 84B10907D43DD570150B876D985FB33D /* Foreach-inl.h in Headers */, + 9356626D0B8EFBB1DB26262450B668DF /* Foreach.h in Headers */, + 405B90F1820030D31FBB58861E6F805A /* Format-inl.h in Headers */, + 9BE0A66EE0341AE2031B16A946AE7134 /* Format.h in Headers */, + 17ABEC1193D0F191B283A63F529DD88D /* FormatArg.h in Headers */, + 44E4D135C7785F93B9A74EF56125AF81 /* FormatTraits.h in Headers */, + 2092AAC3D67ECC6390654FB817FE0F37 /* Function.h in Headers */, + EB80238017884F125B9784E8A82770E5 /* FunctionScheduler.h in Headers */, + 0182157BF7C1F8A5D720A72DA9371BD4 /* Futex-inl.h in Headers */, + 21BD907A7C18430BFC99924E646FABB6 /* Futex.h in Headers */, + F8143EDA79D6763906F40D9441E20944 /* Future-inl.h in Headers */, + A55AA887E70C89BE11C87C87982C071A /* Future-pre.h in Headers */, + 089B447701AB39595BD258FD7E389B7E /* Future.h in Headers */, + 104BD56C69E46C92CED55268081D3BCE /* FutureDAG.h in Headers */, + 261D98D32F84567AA07152CDE66ACB76 /* FutureExecutor.h in Headers */, + FBF813ACF4E92E8E24F513B35C3617BD /* FutureSplitter.h in Headers */, + 8A5EBC158E3587759189F90128C1E8AF /* GFlags.h in Headers */, + 8292AD15ACEF94D94BC20F700AD9E23A /* GlobalExecutor.h in Headers */, + 35F31B052EB9880575BAFBE21A0C2328 /* GlobalShutdownSocketSet.h in Headers */, + BFAD310B725A5C5BA13A9CE769B4406B /* GlobalThreadPoolList.h in Headers */, + 36FC9E7DA822EB5CC83DA18A93D11F43 /* GLog.h in Headers */, + 8EFC658A04363FD5F4B3429F47DAE731 /* GMock.h in Headers */, + A3337963E345B87DD57F81879C9A8BCC /* GroupVarint.h in Headers */, + F6DD8C63B7B4C00F5466C6FE217FA62E /* GroupVarintDetail.h in Headers */, + 60C79DBEB10D3C91C7B58759D7D0BBA1 /* GTest.h in Headers */, + 7BAEF8B38FF4642539597FAC97925D62 /* Hardware.h in Headers */, + 06B0565E90F2E675B6119EA4CFD9581A /* Hardware.h in Headers */, + 05956957EEDC4C7CB77438B32F3F2A27 /* HardwareConcurrency.h in Headers */, + 4B775E673D081DA2FF9BF0165C923980 /* Hash.h in Headers */, + 827AF42DCA6F6EA709B194DFB836C856 /* Hash.h in Headers */, + A6588D14E11C8EA60BFD863260803D30 /* Hazptr-fwd.h in Headers */, + F4EA0B1497921A488822DE891ABC0448 /* Hazptr.h in Headers */, + AF94C09ED2B735772D41239FA5FD6574 /* HazptrDomain.h in Headers */, + B56D782E3B1A2A5796BABBE1D71783B1 /* HazptrHolder.h in Headers */, + 4AC8E46FE3E049BAFE138C17E5F2F4DF /* HazptrObj.h in Headers */, + 72863FD64CB37488DFCAA34D2E51FC5C /* HazptrObjLinked.h in Headers */, + 306E69A39FD10D6450030E5C403DBC8E /* HazptrRec.h in Headers */, + AA6A169580691D45F4221AB2CDA4A99A /* HazptrThreadPoolExecutor.h in Headers */, + 65BB939302DE362B80705E458570E2A7 /* HazptrThrLocal.h in Headers */, + 06FC02991FEF45A778E94EEF63F75941 /* HazptrUtils.h in Headers */, + 8D2EBBC706AF49A6626065134CA8E728 /* HeterogeneousAccess-fwd.h in Headers */, + DCCA6EF3D161D03493D6CE42AE0C4725 /* HeterogeneousAccess.h in Headers */, + 7ADEA04EA038281DECB855D4D14A7D88 /* HHWheelTimer-fwd.h in Headers */, + 6C7D2A35CA85C3F5E6003C1A7BD3A13E /* HHWheelTimer.h in Headers */, + 619E0AA7123347A2EA0C5DBE38C599E7 /* Indestructible.h in Headers */, + F9E0D81E416FFB96308516C42F708EEF /* IndexedMemPool.h in Headers */, + 9503F20855D4E3A6AC1EAE8E1417E8E9 /* Init.h in Headers */, + 8EEE2C04C3417139A09910CC35AB10D0 /* Init.h in Headers */, + B2F09CE5B6DEC7861DEB857D857359A6 /* InitThreadFactory.h in Headers */, + 087327627D5E0EC8C8012550EBA962EF /* InlineExecutor.h in Headers */, + C2F7D57AEBD6F80C32C61B4B8808F394 /* InlineFunctionRef.h in Headers */, + B212CEACA4D5887073A5682158E1CADA /* Instructions.h in Headers */, + BEBA37988A07D40FBA4A1EFB2A777324 /* IntrusiveList.h in Headers */, + 3EF354A64BF8E943F74D0F1F8B0A522B /* Invoke.h in Headers */, + 2E00C1BC9902D8526F10483B81C8E6B0 /* IOBuf.h in Headers */, + B59E853C035D262E6A0D83F888AC18E4 /* IOBufQueue.h in Headers */, + 52639A0ECD241362B0BD6FCEEBA881E0 /* IOExecutor.h in Headers */, + 01A939FDFDE549EFCEEC007A543C4CC8 /* IOObjectCache.h in Headers */, + DFCE9FC9D7B2760398E849A1405D3783 /* IOThreadPoolExecutor.h in Headers */, + C8E107F9EA155DCF846D2CC4796ACF23 /* IOVec.h in Headers */, + B95952822BE50446EBB4404EB4C8BD77 /* IPAddress.h in Headers */, + 127B5D7A8E53E23D7AC6676E475E9C65 /* IPAddress.h in Headers */, + FF16F8A70236D799CF6C59260437A9E4 /* IPAddressException.h in Headers */, + 0E48D6CF3A56778E613A4D8FA47E7180 /* IPAddressSource.h in Headers */, + 00048DD9E1C1F01D7AA8052B56E7431E /* IPAddressV4.h in Headers */, + B784264D390418B691C769B9EBF482D2 /* IPAddressV6.h in Headers */, + F6BBB5AB6F0FBE1D39BFB1B2E8542B81 /* IStream.h in Headers */, + 156F1DA1AE62E86B8D961301962F189A /* Iterator.h in Headers */, + 764780972CE5CD95C1823F362A677743 /* Iterators.h in Headers */, + B384EC60C20044A64775F3511E0F8741 /* JemallocHugePageAllocator.h in Headers */, + 1446306986CDEAE5C94C1CFE4C38954B /* JemallocNodumpAllocator.h in Headers */, + 609618B919606D5A3B849C9F352F31E0 /* json.h in Headers */, + 362CFCE2FAB3468B2C45FE890D99ADD1 /* json_patch.h in Headers */, + 13E16B44E63706FF0E5C674809061546 /* json_pointer.h in Headers */, + F02C1AC3BB6EACA478292626B862C6AB /* JSONSchema.h in Headers */, + D94DE5C6E9898C501FA251E8465C01A4 /* Launder.h in Headers */, + 134261A7093D03CEB9C7E7A6C544F6A4 /* Lazy.h in Headers */, + E78878CE7EE4B42C7C4346121F3F117B /* Libgen.h in Headers */, + 10D758BBD9D41BC838C1D52EB7667CE4 /* LifoSem.h in Headers */, + 98D3E4C436C835AF5AB4442A209204E8 /* LifoSemMPMCQueue.h in Headers */, + C656765D42B2A46EEFDFFC5BDE9C3A6F /* Likely.h in Headers */, + CD18D05EC7A3744FB5CB0A864892D1F9 /* LockFreeRingBuffer.h in Headers */, + BE77BF5D3D009AA27EA6E3E6B0863A9C /* LockTraits.h in Headers */, + D1F820E1B9CF092DE1DDB26D3B359259 /* MacAddress.h in Headers */, + E5A22EBC18FF7ED857C3242BA10F97BE /* MallctlHelper.h in Headers */, + 589A0FA2BB8D8D82ABEE5BCB8958B23C /* Malloc.h in Headers */, + ABABE611ED362BDA1542225012D4AD12 /* Malloc.h in Headers */, + E3BBD6400CB4849B935042E456D7754B /* MallocImpl.h in Headers */, + 7C1E5969B5C22F5FA5DF8BDF5EA60FDC /* ManualExecutor.h in Headers */, + 5115FF3AD021AE6BF984D9D06CA1F063 /* ManualTimekeeper.h in Headers */, + 9C4F857EE33490DDAF8F64624CB89334 /* MapUtil.h in Headers */, + EB0D803A2824E1D994956F64A7BC4E81 /* MasterPtr.h in Headers */, + F16076BAB6001BD0FED3950911E50C56 /* Math.h in Headers */, + A38ECAF476A0C28A54DCBCA2A616397C /* Math.h in Headers */, + 4A7EEB5555FB4DFBBB51C1985F5198B5 /* Memory.h in Headers */, + D1E586071A86357590A2A4FBDE39BCEF /* Memory.h in Headers */, + C1F5B6C056D7E7B8A752E8F986E7EF6E /* MemoryIdler.h in Headers */, + BC0975A30F8FEEC9A8E5F8798F052344 /* MemoryMapping.h in Headers */, + 3B118620D13197BEF9C2AE1C32953CED /* MemoryResource.h in Headers */, + 171B547454AA62627C47E6CFADF298B3 /* Merge.h in Headers */, + 57B0B7CAAE8B64CB2AF282C5A17ECCE1 /* MicroLock.h in Headers */, + D35C269AED058F51D41E7E3310A0CC15 /* MicroSpinLock.h in Headers */, + 46569C6E31F484EEB4BF76A96E4C292E /* MicroSpinLock.h in Headers */, + 4E42DCB68654CEED81BEBA0848EC23A1 /* MoveWrapper.h in Headers */, + 62947729CE8EDE21EAD5BCFCBEB05599 /* MPMCPipeline.h in Headers */, + 2A00043AE307D261B553E4FC459642A1 /* MPMCPipelineDetail.h in Headers */, + 8377AADFCADC26F754FE60AAE8EE5683 /* MPMCQueue.h in Headers */, + E0D01F18FBF0E7F1BFE86D87EED1B044 /* NamedThreadFactory.h in Headers */, + 53C8034D5914E864883C58EFAFFCD535 /* NestedCommandLineApp.h in Headers */, + F22BD3E903F69569F8C839A08E3DA61B /* NetOps.h in Headers */, + A2EBC94A29EB94DE285B6B97F6DD140F /* NetworkSocket.h in Headers */, + 790C1CBCF10E10C920AC90949460AA22 /* NotificationQueue.h in Headers */, + FA9BA27127C0DB8995D656B16DBE1606 /* OpenSSL.h in Headers */, + F1D6CAB5D35412D70DB5C6F42EDA2BA9 /* OpenSSLCertUtils.h in Headers */, + 5F1AEC8A4A2038A3A647588151ECB571 /* OpenSSLHash.h in Headers */, + 126B230C97A33619996E23DB8D590DCF /* OpenSSLLockTypes.h in Headers */, + 58F91D19BEC6968923335ABE9AAB2D1C /* OpenSSLPtrTypes.h in Headers */, + DB7670CDFE36D5ABD929F278C60440DA /* OpenSSLThreading.h in Headers */, + FE1E96B4DA373D5CACE1872D7729E99B /* OpenSSLUtils.h in Headers */, + 40FCFC031F3028FFEDDAEC94A6DBF84A /* OpenSSLVersionFinder.h in Headers */, + BF4FF9EB6ADAFF86757F337E0621AB1D /* Optional.h in Headers */, + B6E9F5C3D140751D6EC41E094C64D8ED /* Ordering.h in Headers */, + 782C8658CE0707085AD6F1BD666AC343 /* Overload.h in Headers */, + B1CC8805D8F4BD1D5D0FEE58EB4EF70A /* PackedSyncPtr.h in Headers */, + 3BD336E24043640DDAFE96AF385E7B07 /* Padded.h in Headers */, + 1338A8EA0E032F70A0D1A3C362C91AFC /* Parallel-inl.h in Headers */, + 02C03E39B31B42E2FFBF8245C47771B3 /* Parallel.h in Headers */, + 5DAACE5BEAF998A4F0F81F700E9983A0 /* ParallelMap-inl.h in Headers */, + 1CCC7B9B965662ECD1484CF466F4CB24 /* ParallelMap.h in Headers */, + A87955D2F6EC86549EDA9CEC467A55FE /* ParkingLot.h in Headers */, + EEE36BA373727B18FD3B8DEADC356D57 /* Partial.h in Headers */, + 472F79A9320D3E43024073CD0B263DF6 /* PasswordInFile.h in Headers */, + EF7CDFA2C1805CED24ABDC5E5F281A2E /* Phase.h in Headers */, + 0E1CDAD5AD31BADAD35669CA00758F72 /* PicoSpinLock.h in Headers */, + 3EB26E9B057A8FBB27863EC0A60A088A /* Poly-inl.h in Headers */, + 86454D38412005D85921EEF3D75901B2 /* Poly.h in Headers */, + F73A7E6B081017C3B9444BEC325487FD /* PolyDetail.h in Headers */, + 519481BF2A8FD895AFA82E945A8D141E /* PolyException.h in Headers */, + 6C23F08FC3706DE1C3C6378605625257 /* Portability.h in Headers */, + 3905EDAD6B0D8E00081ECB52A04E0CA3 /* Portability.h in Headers */, + BA0F446E1D8F95413391AFC486FF19AD /* Preprocessor.h in Headers */, + F4F60C96F4B74BC9F42ECE082210F3C9 /* Pretty.h in Headers */, + 27D0E2522841DF2944FED2A3D82EC208 /* PriorityLifoSemMPMCQueue.h in Headers */, + 518A7E73E691F8A7EB9865679279CCF6 /* PriorityThreadFactory.h in Headers */, + CED362515D3FA00D4CF4C576A0029C56 /* PriorityUnboundedBlockingQueue.h in Headers */, + DC4D5E9EB8940AF380BDFD5C67A8C252 /* PriorityUnboundedQueueSet.h in Headers */, + 73F2DE2DFEC35D02AFB0C1A7674EDBED /* ProducerConsumerQueue.h in Headers */, + 9DF605AC1E79FDBBEEF14DC2C0F98422 /* ProgramOptions.h in Headers */, + BBD515D6180E71256A0A9CB0BF778447 /* Promise-inl.h in Headers */, + B0336447FA8DB6BA8E36A9A3F043449D /* Promise.h in Headers */, + D5771A96DEDA22780A943A3205E9911E /* PropagateConst.h in Headers */, + 84ABD0A337B65FBFB553EDB51835D8D6 /* ProxyLockable-inl.h in Headers */, + 6ECC16AACFB6BC5FF0B7EFE9C278BB62 /* ProxyLockable.h in Headers */, + 3F9EA02248DF676A9068E2A34DB95F15 /* PThread.h in Headers */, + C80F54D99C2A289E5258B468883E4ABD /* QueuedImmediateExecutor.h in Headers */, + 78DD24A22EAEE029FC0EF5954F72FF8B /* QuotientMultiSet-inl.h in Headers */, + FEE0256EC5380D6EFD6E1AAEC3874D1C /* QuotientMultiSet.h in Headers */, + A3D5109AF9418C4ED1014068A3857A80 /* Random-inl.h in Headers */, + 02118F981B7C0DD618C919479E33B173 /* Random.h in Headers */, + 7C8CA8992291A9A75E8DB854A4CC73BE /* Range.h in Headers */, + 1065FB0A746A628EAB50F5C2F33DAFDC /* RangeCommon.h in Headers */, + 38C58C53984AD093A58AA3C8C2123743 /* RangeSse42.h in Headers */, + 46ECEE66EBB2AB03E6D9E8FDCEF69082 /* Rcu-inl.h in Headers */, + 6D3EF4948D919B5B149404B2F11CED5E /* ReadMostlySharedPtr.h in Headers */, + 36AC42E0DA8E51DC848F18C6518C0B93 /* RecordIO-inl.h in Headers */, + 0B522BA25D8DA45B1F683E2BD478AA3C /* RecordIO.h in Headers */, + 1154566AF79CF1B06B936239C6E36FD4 /* ReentrantAllocator.h in Headers */, + 24EA3B2522D9DF4FB974E36ADBD39160 /* RelaxedConcurrentPriorityQueue.h in Headers */, + 1233C519B19E5A57FD2DA9ABDEBFB400 /* Replaceable.h in Headers */, + D73B7BC25E0A81E82E9A72BBFB787DDD /* Request.h in Headers */, + ED48F81E61659B7183C6AF81E77DD27B /* Retrying.h in Headers */, + 8CEB7B8EBD88672CF65829C3F587814B /* RValueReferenceWrapper.h in Headers */, + C1835068B045C9D229AD59B8EEE34442 /* RWSpinLock.h in Headers */, + E5699989A56C61DD94A9C6A17C253494 /* RWSpinLock.h in Headers */, + 19BF795BEBEBDD5B3FEF1E20160B7B3D /* SafeAssert.h in Headers */, + D2E714CA017CA0D99284441DB9C445EA /* SanitizeLeak.h in Headers */, + 2F689061F70B495C0E7036234947A4A4 /* SanitizeThread.h in Headers */, + E3482831201B92E1A06A0C22936FF637 /* SaturatingSemaphore.h in Headers */, + 8D6C3F1F79AD9E77B35ADA3F3027D678 /* Sched.h in Headers */, + B4262D0FB26F5109D7A33BF8AE598C48 /* ScheduledExecutor.h in Headers */, + C4578E50CF2B8BDF7FD4D24DB5366E0D /* ScopedEventBaseThread.h in Headers */, + 53310C7E51592F35B731482C04256849 /* ScopedTraceSection.h in Headers */, + 576BFE5A753D35D748B26D692B7D23D3 /* ScopeGuard.h in Headers */, + 8ACE8E6D499B1E6DE4E2918E26526832 /* Select64.h in Headers */, + BBC28273B135F97C57377B610C5BDA19 /* Semaphore.h in Headers */, + BE71D068B4CFDF3DADE649849D6A9BE7 /* SequencedExecutor.h in Headers */, + FC2BD403DE14AEC7344CD795921030D8 /* SerialExecutor.h in Headers */, + 924651FEE2C95494D7F5ADBA69D12031 /* SharedMutex.h in Headers */, + B611B30852DB6AAE303158B5B7A716B9 /* SharedPromise-inl.h in Headers */, + AC5F7A2B2353C1264922FB3A3646492A /* SharedPromise.h in Headers */, + B46E92A9BDF530C40112651D07ECD171 /* Shell.h in Headers */, + 3BECADEE8D5E7673C2E6F02336EBA8AA /* ShutdownSocketSet.h in Headers */, + D997D811B799C6F563F7A549E2622A89 /* Singleton-inl.h in Headers */, + A6655A84B7D43672CF9624EBF16C90A9 /* Singleton.h in Headers */, + 12C835F126FBB52066DD4CADEB804178 /* Singleton.h in Headers */, + 826F3B2FB4ECF5FA48963C64000BDB32 /* SingletonRelaxedCounter.h in Headers */, + 8BBD0D34D3880E1B2867AFE0EE22513C /* SingletonStackTrace.h in Headers */, + 1767480F3E2D5657F718A7C093918179 /* SingletonThreadLocal.h in Headers */, + B57D74184B1605395EF887E546B3192A /* SingleWriterFixedHashMap.h in Headers */, + 93319A17DA7B2F1F5C2DD3C79FDCA9B5 /* Sleeper.h in Headers */, + 1A59BF25E00AC27F34D1FFE86F94DA63 /* SlowFingerprint.h in Headers */, + 025FE47C3B60B30BA35774977653BB78 /* small_vector.h in Headers */, + B9E0F2BB25FE380FB287CB60FE2EACFD /* SmallLocks.h in Headers */, + CAE644D7DC0F3CC3A1A3326AD7F1991A /* SocketAddress.h in Headers */, + 781597CBB7FB055B8047F8F6328564E9 /* SocketFastOpen.h in Headers */, + FFD0E17082D51F889FE4684D72B833A4 /* SocketFileDescriptorMap.h in Headers */, + 010D56C7627B65E6EFD47D9261944763 /* SocketOptionMap.h in Headers */, + 2791D2CCA183E84173CDA03EA5D0B031 /* Sockets.h in Headers */, + 8F63D7B66058468FDD54E8BE68B22A79 /* SoftRealTimeExecutor.h in Headers */, + 608C3844EA3A3504918A7E6FDBDEFD6F /* sorted_vector_types.h in Headers */, + FA796C85756A2D3381F95947B0D5F080 /* SparseByteSet.h in Headers */, + A434867A0A2FF3CAAA587EFED4C718B0 /* Spin.h in Headers */, + 4262D06D3600F874667A475ED027E611 /* SpinLock.h in Headers */, + 2E5BE117A10751BBD2F538BF3C95251F /* SpookyHashV1.h in Headers */, + 88FB00DA4C7C599F38772B29B6B39AA8 /* SpookyHashV2.h in Headers */, + B9C785E004C42A3A7870E839436ADB3E /* Sse.h in Headers */, + F69B725D133A0C17F68F1AE4EA9CD309 /* SSLContext.h in Headers */, + FCA1AF98518897B7CC3CEFDF7CB449FE /* SSLErrors.h in Headers */, + 651674CBC6C7A91D1FFC3C055BE72179 /* SSLOptions.h in Headers */, + A5714B3CE67D965BB55C26E18ADD415C /* SSLSession.h in Headers */, + C2A48E4D38C30AEC19ED20923D2B1310 /* SSLSessionImpl.h in Headers */, + 9369E582C7B7E6AEF32D9043CA0C75FC /* StampedPtr.h in Headers */, + D933C1F78DB716F99CA801EAA8AEC422 /* StaticConst.h in Headers */, + CF0E2747232F5A846554C68D23BA09D6 /* StaticSingletonManager.h in Headers */, + 84EFF21EFDB35A95B7022ED715485541 /* StaticTracepoint-ELFx86.h in Headers */, + 519CEB1CF0632BD4CAEC31A5D86E9DA4 /* StaticTracepoint.h in Headers */, + 88C808AB0898EEF8B94E01F1A7CEA8DC /* Stdio.h in Headers */, + AE92AF417DB6D1DA316995270A8DD46C /* Stdlib.h in Headers */, + 99C9141904EB81B6CF2971AB346B5BD2 /* stop_watch.h in Headers */, + 8A7D91895A1BB38D3CFDBB931E0718E7 /* String-inl.h in Headers */, + 4FDFDFFA69D2E1FA2615D2E4F458E3D4 /* String-inl.h in Headers */, + 37A298F5F8D603F694F6D0BB8324AE3C /* String.h in Headers */, + F277AAD3A9C1DF3D27CD5B747DA1BFE0 /* String.h in Headers */, + A73F59A76E54905051967B30487D7F40 /* String.h in Headers */, + E485454502FCAF5D7458D07251E75ED2 /* StringKeyedCommon.h in Headers */, + 99E0CBC11C689E6886E826D3D19162C2 /* StringKeyedMap.h in Headers */, + 85043B05FEE95C701F50E019113AE2BF /* StringKeyedSet.h in Headers */, + 1702671AD26938F98625960823F9ED77 /* StringKeyedUnorderedMap.h in Headers */, + C56A64527F4D082866908640566D58C6 /* StringKeyedUnorderedSet.h in Headers */, + 046CFA6EA2183A2D8EA5270C76CA64CA /* STTimerFDTimeoutManager.h in Headers */, + 4E7BFB414A91A4DE6836A298E608D04C /* Subprocess.h in Headers */, + 5427EC2709C8F7F4AABA09565DF07D2F /* Synchronized.h in Headers */, + E3AB29EC69ADEBED2A8AD3743CE6E97F /* SynchronizedPtr.h in Headers */, + AB5EEADD611551F76B1652F318B4F2A9 /* SysFile.h in Headers */, + 6CCDCDE388B9F1EEFC52F8C273143825 /* Syslog.h in Headers */, + 75FFF39AF07816160B214CEDC0C83CE9 /* SysMembarrier.h in Headers */, + 723F16A71B0E2F9C992B3CDADBC09B65 /* SysMman.h in Headers */, + ACDF1E6F5B939622CFE95CE1AC11EE8C /* SysResource.h in Headers */, + 644033B56B8B2B6392CE033FE82002EA /* SysStat.h in Headers */, + C03C41AB03FEA74D617CECEDBC2FB5D3 /* SysSyscall.h in Headers */, + 3FA2B6E0EA9DD7075A48A390DD99DE32 /* SysTime.h in Headers */, + B352754E405D47A9A18AAD81551C10D6 /* SysTypes.h in Headers */, + E9F140B18AA5E8078FEA649BE33DF599 /* SysUio.h in Headers */, + 1E8116D71068E350AB2A0B8D74ACFAB7 /* Tearable.h in Headers */, + E76A6CD9B0CAA7A92D2CD5FA84F9EB2F /* TestUtil.h in Headers */, + 98D0580987857A7AF9889D71E9361EA3 /* ThreadCachedArena.h in Headers */, + 75AA13A50D482793A956B5C73E50851D /* ThreadCachedInt.h in Headers */, + F389A8E30178964CE0918520E4C63453 /* ThreadCachedInts.h in Headers */, + A8F48D6FDA7DC4F7CD2D730D80338885 /* ThreadCachedLists.h in Headers */, + 585BA85A9E284A84802094B584F65CC1 /* ThreadedExecutor.h in Headers */, + 19BC35952A4222CBA76BFCC510F8C8B4 /* ThreadedRepeatingFunctionRunner.h in Headers */, + EC56E8D37A1EF91594F4F85BBB6CF794 /* ThreadFactory.h in Headers */, + 4E978A17F20DEB0A27FACDDB01A38339 /* ThreadId.h in Headers */, + 0D85A62F967954499B5879445363004F /* ThreadLocal.h in Headers */, + 0DEAE518FDBB5DD5A873E01195A4462E /* ThreadLocalDetail.h in Headers */, + 699B52AA6BA53B58E1B33843917C01C2 /* ThreadName.h in Headers */, + 5A0171736A5F613B8B569D74BBD43F03 /* ThreadPoolExecutor.h in Headers */, + A7AC1BCEB4AEB7843724AE600B5AA6DE /* ThreadWheelTimekeeper.h in Headers */, + 58AF9CCBEEF7E4BCD4301166C851AA06 /* ThreadWheelTimekeeperHighRes.h in Headers */, + 558DE6ADB371227D79637DA212919A67 /* Time.h in Headers */, + 27FE2C33CEA4B00DC5EC0E3F3512E805 /* TimedDrivableExecutor.h in Headers */, + 7DD7714471F9616142A0A440D6447ECB /* TimekeeperScheduledExecutor.h in Headers */, + 730EDA55060A6B6283950D48CDAC5EAC /* TimeoutManager.h in Headers */, + 5E9341355BDD556BA684BB9608900B92 /* TimeoutQueue.h in Headers */, + BEFBD45A13D450C763FF87FB1D1F70CD /* TimerFD.h in Headers */, + C76CFF4115D2E081E952EE6BF2989503 /* TimerFDTimeoutManager.h in Headers */, + CEC9AA9E45792542573CF4B0282DCC83 /* TLRefCount.h in Headers */, + 6B1A5FE6CBE29C4CDAB495164C349C83 /* TLSDefinitions.h in Headers */, + DF5366DCF4A15500578057AC06F9B0B4 /* TokenBucket.h in Headers */, + 7CBC0B786C74863410DA18D1BE7DD73A /* Traits.h in Headers */, + 2CFAC05B6DBD8BFF2BB800BCE09795B8 /* Try-inl.h in Headers */, + 3F49C05C1F38C287BBDBC20C50942AD9 /* Try.h in Headers */, + A243DA45E5E811575BE6D9C8D5D19B0A /* TupleOps.h in Headers */, + 0F7CF5403ADB08D9D9C0EE0A5CEF0194 /* TurnSequencer.h in Headers */, + D0AB34E28BFD9EB328F9B831521843F3 /* TypedIOBuf.h in Headers */, + 0461C37B5061FC3BFC24BA4EBA892F17 /* TypeInfo.h in Headers */, + 74D73E484F36568492DE9CD998056438 /* TypeList.h in Headers */, + 365D26FAE0517554640DE85CCED99E1E /* Types.h in Headers */, + 74C122F86DEE82000A0B2FD0234A2597 /* UnboundedBlockingQueue.h in Headers */, + 234AE68428A5817BAFE963A80FC365AF /* UnboundedQueue.h in Headers */, + 1FC21E84DC59264D219EB20962EC583D /* UncaughtExceptions.h in Headers */, + 470D84054BE68EBCD10DA1B419F5B392 /* Unicode.h in Headers */, + C9605C8430A5D8564D15A04ADC9566D4 /* UninitializedMemoryHacks.h in Headers */, + 34F0DFD8C37DD65D469E3F42AB15B984 /* UniqueInstance.h in Headers */, + DE7DC2A119709F925CFF7C472006F34D /* Unistd.h in Headers */, + 39E6AC4E276515BDB5C7DFD71C6325E8 /* Unit.h in Headers */, + 6031E0502A6786780985A6CB3EDCC7A8 /* Uri-inl.h in Headers */, + F03855329B4AD75B96659D181EA21531 /* Uri.h in Headers */, + 7BE5B56712FD018392367AC45E7CC119 /* UTF8String.h in Headers */, + BD915EF6F0525B2E12C96CF877C5261C /* Util.h in Headers */, + 697560C208A7E78115A5D95D204BE0B9 /* Utility.h in Headers */, + 835772349195398E0BFCC6F418AAA71D /* Utility.h in Headers */, + EB38E6BE25B7A0A918A282060959C00B /* Varint.h in Headers */, + CDE9592C89D6616496AE868975DAA166 /* VirtualEventBase.h in Headers */, + 8A7CA5DBE530728426BE5AA59945F7CE /* VirtualExecutor.h in Headers */, + D0E0C10F5F95F06BEC438F95275F3312 /* WaitOptions.h in Headers */, + 6AAC5DB5BE77AA22690EA241A578EF35 /* Windows.h in Headers */, + 70B3A3692ABB332F42F8D3271F051AA3 /* WriteChainAsyncTransportWrapper.h in Headers */, + 9CFE04F45DC1F039A11B13448B9DC3BB /* WTCallback.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -23128,13 +24098,37 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 2A0148173367380F9952BA24F9D6491C /* Headers */ = { + 29BA8B2C7623C5351C1C8EE6152D3634 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - D32E122C1F2F03E28A234757BE695CD7 /* UMPermissionsInterface.h in Headers */, - B798B1162D284D965922F1F24772B114 /* UMPermissionsMethodsDelegate.h in Headers */, - 26F62DD9CB9A27D172C66F13E5565E81 /* UMUserNotificationCenterProxyInterface.h in Headers */, + 101F0262D022C0B35AF8F8C7B4A91D8A /* AESCrypt.h in Headers */, + BD77429A83C5A96A341E7EFE5CD6D1CE /* Checksum.h in Headers */, + 59B329A3C21EC40388C438F5978C2BD8 /* CodedInputData.h in Headers */, + 500986BB00B0E28339E9B748BF07B6E9 /* CodedInputDataCrypt.h in Headers */, + C603C2ABD8116FEC72AD491A1E031FB6 /* CodedOutputData.h in Headers */, + C851F91C454485DBA39BA50F76DAE48F /* InterProcessLock.h in Headers */, + B6FEA1C2CE452A46C58EE49FEA9A8E07 /* KeyValueHolder.h in Headers */, + 3F7FFA66E3CB2AE4C2C28000B2504EA3 /* MemoryFile.h in Headers */, + F64F96678B2FACF209B69700EAE9879A /* MiniPBCoder.h in Headers */, + A8757210B189373A8F6800E3D648FDC9 /* MMBuffer.h in Headers */, + 8D7EF30110E8C8440594225B49A8BEB1 /* MMKV.h in Headers */, + E4D42E2CAAE1119F464246ABA3B38A6A /* MMKV_IO.h in Headers */, + 05C2E0DB9C8CC79205ED5446A7BA7D72 /* MMKV_OSX.h in Headers */, + 03C2C9D9DE037EB91239D7C7E88BF9D2 /* MMKVLog.h in Headers */, + D6379F6D470211E5CA23A286FD7DECC4 /* MMKVMetaInfo.hpp in Headers */, + 4B8DC3A62E196B5D326951CCDB056524 /* MMKVPredef.h in Headers */, + 3A24567EAA97CA2C452EEE45118017C3 /* openssl_aes.h in Headers */, + 3E05A4A62C97013F053D32CA64C78998 /* openssl_aes_locl.h in Headers */, + 4948379656F73C54C13A405B38039FBB /* openssl_arm_arch.h in Headers */, + B8AC3BD4F6CF70F207FCFF3C2931599D /* openssl_md32_common.h in Headers */, + B0E8850FC59E770D0425EB8638A64101 /* openssl_md5.h in Headers */, + 874B590FD8C3A1294C494CD5F4EA6C7E /* openssl_md5_locl.h in Headers */, + 3953B7589F73A848B0C6A8C0BBE8EE95 /* openssl_opensslconf.h in Headers */, + 93A08BA6808129C1BDE7A3E06F6AD14E /* PBEncodeItem.hpp in Headers */, + 2712B1F4F2358B9B6EA596621350901D /* PBUtility.h in Headers */, + BC1EAA3E5AE771CFB2E8C2F44E3ABF8A /* ScopedLock.hpp in Headers */, + E3081231821B59ADDD2818523005B20C /* ThreadLock.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -23147,6 +24141,32 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 2AB57443CC4E99A143415ECD93076ACD /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 144D114A7DC1DE69000B32118B0A96E6 /* BitUtils.h in Headers */, + 87DF170F86D7B09B7E208D3D667CCE20 /* CompactValue.h in Headers */, + 7527BE9A3C0C5EE41BF46B779B459185 /* event.h in Headers */, + CA240718EEF2AE9F8B429FCD8CB52C0B /* experiments-inl.h in Headers */, + F07D0AE11822588E3F719C7B61A8B80C /* experiments.h in Headers */, + 6A1D8AACE5AC26F3AC7B09CF608BD6D7 /* log.h in Headers */, + 406B29AA1C2DFC085E6C133DAABB7F94 /* Utils.h in Headers */, + CCFA88517B1E1E998517D844FB53B076 /* YGConfig.h in Headers */, + C877547EF57278560C6623670718DC5E /* YGEnums.h in Headers */, + D15946E73D70CB1841EB5B5F5BA8572C /* YGFloatOptional.h in Headers */, + AE8EF360BDF060DE71F36DA2FF79D905 /* YGLayout.h in Headers */, + 87CE2D5341C70A15F3D5CDF03FEB5B8D /* YGMacros.h in Headers */, + 7981C7D4547EC52A33E929A57747F9E0 /* YGNode.h in Headers */, + 184B7378A165D30CF4D897FC088B6A3B /* YGNodePrint.h in Headers */, + 350046EFA57783C5A668ADFB917575FF /* YGStyle.h in Headers */, + 451BFDFAFAE8D8891BD2C57B7F2A03CB /* YGValue.h in Headers */, + 576FAE68D62B75975E61E4306DA51C22 /* Yoga-internal.h in Headers */, + A179F06BD85B96B08B79E6936B455152 /* Yoga-umbrella.h in Headers */, + CC9EE1EA9BEAE99D7BC6F4D5AC0F445D /* Yoga.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 2BAE30A82EC4464A3469ABBF74FE8990 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -23158,15 +24178,12 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 2F3176871B9AC229CDFB289E6AC70D98 /* Headers */ = { + 2F123C27578F21D69D6E5335E49EE008 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 4D109D2D716395794E782C593AA3B52D /* log_severity.h in Headers */, - 0E71BCEC64B7C77F4DD0FC4AB4300ADF /* logging.h in Headers */, - CFF6D2A92EFD32D4EEB15223C98B26A9 /* raw_logging.h in Headers */, - 2830809B17A1130CEEC6187F44688988 /* stl_logging.h in Headers */, - E58B63CDB3B5FF2D1BE80C39E1386695 /* vlog_is_on.h in Headers */, + 6F01B049AB62CE236C245639313F3490 /* BridgeNativeModulePerfLogger.h in Headers */, + D5F415B8677FEAC11CCE89E120FC6E7D /* NativeModulePerfLogger.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -23181,22 +24198,57 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3061C6E23E4532D1501E805F32BF0CFE /* Headers */ = { + 3059B2C06C0C8DA12016159ABC171B1C /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 4C31F5A140C0CB093A90FCB0906FF670 /* BridgeNativeModulePerfLogger.h in Headers */, - 7D6D396798D14E6FF5E43F253556E233 /* NativeModulePerfLogger.h in Headers */, + 0634D6318459F5C1F29408B3FB71DBED /* CxxModule.h in Headers */, + 5A885EA7F6852FC3D4F9A5C4A7A34098 /* CxxNativeModule.h in Headers */, + B8366768FB76A4815B0A90A670780E97 /* ErrorUtils.h in Headers */, + 0C5297F5FF538496FC9F5A4061017320 /* Instance.h in Headers */, + 1BADA32F3E82507B22F7A966F8A4278D /* JsArgumentHelpers-inl.h in Headers */, + 19CE1C2C80280F075781649BA2D1586C /* JsArgumentHelpers.h in Headers */, + 098C6B57113697D5362AFB0B9E7C5834 /* JSBigString.h in Headers */, + 342D1318DCDB772504BB7EACE319F360 /* JSBundleType.h in Headers */, + E64521D3CF0885A1354CC21DFE9C9257 /* JSExecutor.h in Headers */, + 96E23068A9895BEC6FD614D9A55A7C50 /* JSIndexedRAMBundle.h in Headers */, + 35DCAD050BA0BCC1D31C85BC3F5DA2AA /* JSModulesUnbundle.h in Headers */, + DC2C1429201667273E0DDB3D64838FB0 /* MessageQueueThread.h in Headers */, + C15CDAD20752647B75E3142709C89414 /* MethodCall.h in Headers */, + 9648B0E231D355C9D5A583D06D200E8E /* ModuleRegistry.h in Headers */, + CF2226F7606A7188EA83A3592C4B1FAA /* NativeModule.h in Headers */, + AD6B9BBDD9ED6B8402E4100A5A87BA99 /* NativeToJsBridge.h in Headers */, + 2C722B52E7BF530547F3B5F053F2965E /* RAMBundleRegistry.h in Headers */, + 6886805185073E12B2F1C583458CF34D /* ReactMarker.h in Headers */, + A69BB090C0E7390A0A4467F374AC3750 /* ReactNativeVersion.h in Headers */, + E9D9BBF8E856ACD90E0A72F9595434A9 /* RecoverableError.h in Headers */, + EE5F72696C9020B21043E4DB6F811F5A /* SharedProxyCxxModule.h in Headers */, + DDFBC3EFC013D9246025E07C6DACD3E7 /* SystraceSection.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3268BDFF8DD1B57760D2238BB7E0858B /* Headers */ = { + 32CA56678550BDEBCB904E02464BB0BF /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; + 33D4CDB1F7C602C0EF2DE2B86E4E2B88 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + B9FB9E4F14C22337C2184B19BB95A8E1 /* decorator.h in Headers */, + EE72470E02CA36D0B1EF920FA84B4C8E /* instrumentation.h in Headers */, + 34A6F22C9D2DA470407AF6936B1D1610 /* JSCRuntime.h in Headers */, + C0ECD621AE5138605933B8C0EFD6D52B /* jsi-inl.h in Headers */, + C9DB3F6776E8ED6731FC38B3F8CB8B80 /* jsi.h in Headers */, + 30B8AC2B88FED6107EFCA0F48F1D2F50 /* JSIDynamic.h in Headers */, + 2DFD6067CC6E815EF4EEDC04EE964D93 /* jsilib.h in Headers */, + 570E09B1C702A22295002978F51E87D4 /* threadsafe.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 3540484166DBCA3A6B65797A68A81CF1 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -23205,319 +24257,24 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 35609435CEE616A0665549572517E55F /* Headers */ = { + 36A3C02157A0B3883650254BD62849D8 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 25B81646DF134303F8E6A6BE39818636 /* bignum-dtoa.h in Headers */, - B0F787461650B623C4BDD5E6F91F0499 /* bignum.h in Headers */, - B93C83977533A531FCA5D1F8658247FC /* cached-powers.h in Headers */, - C9F7E51C065E930077F465834B70EEE9 /* diy-fp.h in Headers */, - E305AD2343F0D956FA7C26674134F2DB /* double-conversion.h in Headers */, - 9DEE91DDACCF3747AD0D8A29C93CAB02 /* fast-dtoa.h in Headers */, - 52886066D5C6F2E69ED7C071DA7C866A /* fixed-dtoa.h in Headers */, - 610A258BF60E21394E248B1503AD0237 /* ieee.h in Headers */, - 491A9374B3E105E2F119AF1703827E19 /* strtod.h in Headers */, - 5669762CCB3A41D274DD496EE3AFBD9B /* utils.h in Headers */, + D5A0723B8486950B12A5102C4FEFB89E /* Pods-defaults-ShareRocketChatRN-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 35E0DA99DD4BB4A45C8843348FF798EA /* Headers */ = { + 3CEA2DF12B20CE68007F12E6148E43D6 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - C846ED362FE51392351E8309A69BBBA5 /* AsyncPauseState.h in Headers */, - E3C967D8097916E383795485B9F7FC8D /* AutoAttachUtils.h in Headers */, - 22E00BC94995C8427647D458F59727A5 /* CallbackOStream.h in Headers */, - 657AF63B1AA20459B7AC65323C76A222 /* Connection.h in Headers */, - 05280FD32E2555459430F52D27BD516E /* ConnectionDemux.h in Headers */, - 688F6D173742C3798AC014EB1447772F /* CoreModulesPlugins.h in Headers */, - 4DA87F85ECA2A25E969E72669257C53B /* DispatchMessageQueueThread.h in Headers */, - 96092E22BA93DC2E6ED706648D531DB5 /* Exceptions.h in Headers */, - DE01B4FBF2AA159CA5C25A61A3FAD949 /* HermesExecutorFactory.h in Headers */, - 1C1ADB56F87D15803815E7185A907B0C /* Inspector.h in Headers */, - D51BA848FEBF2385B7D00A17192E8125 /* InspectorState.h in Headers */, - 4D38A690B86794AFEDFEE5FEFA595084 /* JSCExecutorFactory.h in Headers */, - DAA0799B6C29AAC2C864FDC8198FD70B /* JSITracing.h in Headers */, - 7675DEAF123920B169E9976FA077F9A3 /* MessageConverters.h in Headers */, - A9CFA1A8987A50912317352353B9057B /* MessageInterfaces.h in Headers */, - 35614A2172236737B323220F43DBC3C7 /* MessageTypes.h in Headers */, - 93E47AE77105328DF3FD6C2938EE9A48 /* MessageTypesInlines.h in Headers */, - 124941F23E2953A46052A68B72738A5B /* NSDataBigString.h in Headers */, - 5AD00F0FCAAF27F1051504820F6C45F5 /* NSTextStorage+FontScaling.h in Headers */, - 65D7BCF2D214E6321B3C1500EDD08839 /* RCTAccessibilityManager.h in Headers */, - A3CA02D12C38B53C89726C77AB8ACD59 /* RCTActionSheetManager.h in Headers */, - 637B1FAC037ED48FCB432B84160EDA7A /* RCTActivityIndicatorView.h in Headers */, - E8FBB70C85AEE24654BED1E56EEFD8CF /* RCTActivityIndicatorViewManager.h in Headers */, - 24D9E5EF4FEB8E02D945073D71C5A709 /* RCTAdditionAnimatedNode.h in Headers */, - 79A4799EAA0DB55203FB7960754CFC7E /* RCTAlertController.h in Headers */, - 6C236D8B6FFA2A6B19DBCA5D8FA3DD92 /* RCTAlertManager.h in Headers */, - 6B2CDFB1E1EE9D192EE6F051E3DEE48B /* RCTAnimatedImage.h in Headers */, - 09DF8B0D21F85FB2888497D2CE59B278 /* RCTAnimatedNode.h in Headers */, - ABF4D290696D3F85BC0626083EF305DC /* RCTAnimationDriver.h in Headers */, - EE82CA3FA6133F983F2921D6AD59FDBC /* RCTAnimationPlugins.h in Headers */, - 2241E383997D40C3AA29B1CC8A4F414A /* RCTAnimationType.h in Headers */, - 85552F3945768C325C46510CFCD23EEE /* RCTAnimationUtils.h in Headers */, - 9A7CC3B6506556A1AFAAF8CE9174F7BD /* RCTAppearance.h in Headers */, - 9F6E028E46974378E99055E53A1FF121 /* RCTAppState.h in Headers */, - 73AA0CB2005A4CE753036EBC9F4D7C6D /* RCTAssert.h in Headers */, - 7213FB9FE043B68FF3F980661A9C2202 /* RCTAsyncLocalStorage.h in Headers */, - EABCEFA2C1BC8309430E837F4EC20122 /* RCTAutoInsetsProtocol.h in Headers */, - 08AF4F521D6883336EFEDBA6BF7C8C45 /* RCTBackedTextInputDelegate.h in Headers */, - 7C5220FBE538D63B915E3B021AAA4F72 /* RCTBackedTextInputDelegateAdapter.h in Headers */, - 928827B0DC25A9FB624D456128C2171B /* RCTBackedTextInputViewProtocol.h in Headers */, - 3203A394C5B01EBF0FB40EF80363BB85 /* RCTBaseTextInputShadowView.h in Headers */, - 1E108C40F994DFEB2D37FB69DCB2CA7D /* RCTBaseTextInputView.h in Headers */, - BF0CC37295C622B2F421D4389EDFD43C /* RCTBaseTextInputViewManager.h in Headers */, - D2C46297E238837283738F57F4FFBD52 /* RCTBaseTextShadowView.h in Headers */, - 09FC09117EA772F49ADC815B15E000C9 /* RCTBaseTextViewManager.h in Headers */, - A744F7F25D1C67057BD969F3E362AEAC /* RCTBlobManager.h in Headers */, - 6846E1FFCAC06F92BA8206CDD4053FAC /* RCTBorderDrawing.h in Headers */, - AB68564001D1FA33244592604530CF21 /* RCTBorderStyle.h in Headers */, - CC60B0C4E3972C7D8E3B86C89D8A020D /* RCTBridge+Private.h in Headers */, - 08901F5E15324C69D35F24E22EDD4101 /* RCTBridge.h in Headers */, - 8EDF1BD1602D1A390A8BCAAA4E7846F3 /* RCTBridgeDelegate.h in Headers */, - DFDD8E138C927BEA0355808117563ABC /* RCTBridgeMethod.h in Headers */, - D17A1709E4F641840C6BEDDF86E1FA01 /* RCTBridgeModule.h in Headers */, - 1C26B7CA0FB0A461E7EDB9F2A2894700 /* RCTBundleURLProvider.h in Headers */, - AE07BE8059F20CE490D6A7EF9D4CA4B6 /* RCTClipboard.h in Headers */, - CF85C419F3E2F4D17108127CF6D02E9B /* RCTComponent.h in Headers */, - 86F6DDD55BA2954BBFD045A2EEFA1790 /* RCTComponentData.h in Headers */, - DEEA9075164808E3035CB093BC7FC653 /* RCTComponentEvent.h in Headers */, - 49FFD56DD71C039652555F5355EA3F22 /* RCTConstants.h in Headers */, - ED00936FE134948C5CE2B1F7379DE7A0 /* RCTConvert+CoreLocation.h in Headers */, - 2BD45529DCD3B96315193A62A7FCBBB1 /* RCTConvert+Text.h in Headers */, - 2CEB49966630DB63156B233490E872DA /* RCTConvert+Transform.h in Headers */, - 12A2647DE110D3553C71CF88BB9BA45C /* RCTConvert.h in Headers */, - D890767C55F5DCC57AA0C55FE007C251 /* RCTCxxBridgeDelegate.h in Headers */, - 92660A24E03F4F3C4439B983CB7667BB /* RCTCxxConvert.h in Headers */, - 7ACD71EB14DA9A85D8AFD86F946BC1A6 /* RCTCxxMethod.h in Headers */, - 514FAFD94DA74E901EDB1C41AEF92990 /* RCTCxxModule.h in Headers */, - 005E3C2FA8D42941AC7D0F192A2712E0 /* RCTCxxUtils.h in Headers */, - 176D48DD0F5CAF57E79CEA9B5330852D /* RCTDataRequestHandler.h in Headers */, - 458CC3AC9DDE1BF22E4FE56DEE2FD744 /* RCTDatePicker.h in Headers */, - 8AA0D7F777778D049475BDE0BBD36A1D /* RCTDatePickerManager.h in Headers */, - C6122A97490C5B383EB8BCEA0479E12B /* RCTDecayAnimation.h in Headers */, - B33C8228FBA7E3CBC1E0834B77C83A97 /* RCTDefines.h in Headers */, - FAEF728BFCC793B9E72526B755AA9495 /* RCTDeviceInfo.h in Headers */, - A1B7A9FD9C702FDB3D8F0D203D4A9739 /* RCTDevLoadingView.h in Headers */, - 2009A74DD1E3E11450A39B7C6A851526 /* RCTDevLoadingViewProtocol.h in Headers */, - C1D069AC95F986AAF9195C4CFE296DDC /* RCTDevLoadingViewSetEnabled.h in Headers */, - D69D1C3CE91B89704C5D3F65E4C4C153 /* RCTDevMenu.h in Headers */, - 60859D8B6B64D06A9C06B83779949BDC /* RCTDevSettings.h in Headers */, - F7AF05300DDFD0C25DB8AF9A7F60762C /* RCTDevSplitBundleLoader.h in Headers */, - A30156883E20274A8410C2D36F534E18 /* RCTDiffClampAnimatedNode.h in Headers */, - 6C72293CDED6E421DCE66E8C4A42E9E1 /* RCTDisplayLink.h in Headers */, - 6DCE944E6F2A748FB169CB85C678D43A /* RCTDisplayWeakRefreshable.h in Headers */, - 7564866503E0050C5379838137156F56 /* RCTDivisionAnimatedNode.h in Headers */, - 8DACDCBDF4CF9ADEE31DFBD8BEB9CB4E /* RCTErrorCustomizer.h in Headers */, - 0CECDBECDE9E83AC0C87B84416398BD3 /* RCTErrorInfo.h in Headers */, - A4459DC61F26BB78FC2278D736943C89 /* RCTEventAnimation.h in Headers */, - EFA59281F663137FB9C8A92D4875717F /* RCTEventDispatcher.h in Headers */, - D73024A7B759EDBBA989A06EABDB7DEB /* RCTEventDispatcherProtocol.h in Headers */, - 87B0261BF8D1B07FDD32A373E7348926 /* RCTEventEmitter.h in Headers */, - C8789FDFFAB6A45D3BA2E8CD4378CA1A /* RCTExceptionsManager.h in Headers */, - 4ED2B8C3E5E97F214BDB630B4D8416D6 /* RCTFileReaderModule.h in Headers */, - 9C2B540D14BB4B97038B2E308C10BE5E /* RCTFileRequestHandler.h in Headers */, - F9553F19108187248B88CBF9DDD7951C /* RCTFollyConvert.h in Headers */, - 70D136EB086EED37F42D45F9B3049488 /* RCTFont.h in Headers */, - 4FC7384DB4E9D6244E98642B4E90FC51 /* RCTFPSGraph.h in Headers */, - B5AC9749700A678DEA3E74972950F210 /* RCTFrameAnimation.h in Headers */, - E6C64321EF200418E29E331B488F00ED /* RCTFrameUpdate.h in Headers */, - 85AAC9E149E9EF22A22060BB2532D93F /* RCTGIFImageDecoder.h in Headers */, - C51D2745A4DFF9987D2F6F4A45FB0EC6 /* RCTHTTPRequestHandler.h in Headers */, - BD4D383324DAA45C6AF9FFED88637083 /* RCTI18nManager.h in Headers */, - B63C374B79ECE9B593CBCD02CFAE49EC /* RCTI18nUtil.h in Headers */, - D9A03ED09FD8CF0E290FC649E97D53A4 /* RCTImageBlurUtils.h in Headers */, - CB7A32BFA88E3BFEB07BCBEF2683FA92 /* RCTImageCache.h in Headers */, - 6188132A20A83EDE406854D25F0309E9 /* RCTImageDataDecoder.h in Headers */, - F5F722847F6C4117558D8606FA705AFD /* RCTImageEditingManager.h in Headers */, - C69D9B151AB8C075F17658B73790BEBD /* RCTImageLoader.h in Headers */, - F4550478BDFED58E7A7B10F491FD9D03 /* RCTImageLoaderLoggable.h in Headers */, - 0EA3F40D75B6BA84B356D22DAF0768A7 /* RCTImageLoaderProtocol.h in Headers */, - 393E121F468BA66CD2DFE6B01FF98F9F /* RCTImageLoaderWithAttributionProtocol.h in Headers */, - 27753A511E961E07FD108B842DF03FEE /* RCTImagePlugins.h in Headers */, - 75EE03B3D1563DFCDD13187FE7DB9A38 /* RCTImageShadowView.h in Headers */, - 8A8A7CD3CF609084FB0EFF325FD2B172 /* RCTImageSource.h in Headers */, - 119B3C5DF0CF4E60FD3C1DD298001D7A /* RCTImageStoreManager.h in Headers */, - 71939D324DC4EBB3D15162A30B78ED90 /* RCTImageURLLoader.h in Headers */, - 903BA03E71D7935246FD52FFC5BF57A9 /* RCTImageURLLoaderWithAttribution.h in Headers */, - 0821B88E2D3F823BFD969C7324F871F5 /* RCTImageUtils.h in Headers */, - 1C73A8A7D9290072A95C5D13B6F8FBAD /* RCTImageView.h in Headers */, - BB07E758D418B4E656B08709ED18BCA1 /* RCTImageViewManager.h in Headers */, - 3A674F33C2197E01375BFA3BA423554E /* RCTInputAccessoryShadowView.h in Headers */, - 645B3AE87FD70C768D0601282E1671A1 /* RCTInputAccessoryView.h in Headers */, - 6F019486996898CD428DC194A5A12FF5 /* RCTInputAccessoryViewContent.h in Headers */, - 3ECE143CA639186CF0C332B870D1636E /* RCTInputAccessoryViewManager.h in Headers */, - AA32A22A99E3BB1ADCD5277C991A661B /* RCTInspector.h in Headers */, - B7825D6EE7D7C6A8846FB1675F08444B /* RCTInspectorDevServerHelper.h in Headers */, - 2F337A2883F8CE7B80A8C82CE25487AB /* RCTInspectorPackagerConnection.h in Headers */, - 6BC9CB17034B8EAB5F57E79C29F5D9CE /* RCTInterpolationAnimatedNode.h in Headers */, - 2DE94CD85103B2C5FDACA5E12AC68F36 /* RCTInvalidating.h in Headers */, - AE6E61DB357F950A05DFA2021C5600F0 /* RCTJavaScriptExecutor.h in Headers */, - 2F451DBC0794E5C4952253EA3B18E95C /* RCTJavaScriptLoader.h in Headers */, - E1C3928127A15444EFCEA2752E3F6429 /* RCTJSIExecutorRuntimeInstaller.h in Headers */, - 7BF1A3B53458436E5D022086BD1F3C31 /* RCTJSInvokerModule.h in Headers */, - 13E5150C2B81231879A8740C66D0F63D /* RCTJSScriptLoaderModule.h in Headers */, - 3FC68E9C73F17CC7AF038F1CC648648B /* RCTJSStackFrame.h in Headers */, - D061E580AAB732A7947B811FE9F13041 /* RCTKeyboardObserver.h in Headers */, - 3E11AD1C6A698A72B7E51276BE2405B2 /* RCTKeyCommands.h in Headers */, - 19C2947EA20662CAA9A81432CA905ACA /* RCTLayout.h in Headers */, - C232CBAEC7181CBA052ED2536B1E8DF7 /* RCTLayoutAnimation.h in Headers */, - 7F61781B2F2A2BCBB2B08DA253F4D8A5 /* RCTLayoutAnimationGroup.h in Headers */, - F5B8E2E9131DDE487E5F62FC3A015BC3 /* RCTLinkingManager.h in Headers */, - FC8A27A4959780A18DB33F44A290D3B6 /* RCTLinkingPlugins.h in Headers */, - 651FFEFB60F848B1ED41C54668AFEE4E /* RCTLocalAssetImageLoader.h in Headers */, - FA45667A89F6E58A093CB5A5F6E89BF7 /* RCTLog.h in Headers */, - AF29AB9D8540B001C140973F5C277B97 /* RCTLogBox.h in Headers */, - DEFC9EC89AB6962E3F5C710B1A591E3C /* RCTLogBoxView.h in Headers */, - E78D1C6016A2BAD52381A68DD3792A63 /* RCTMacros.h in Headers */, - 3E3A1C6D7CEAE1AC94578879AB2B6655 /* RCTManagedPointer.h in Headers */, - D11760032317B4F998FCF69F6154827A /* RCTMaskedView.h in Headers */, - D7AAA2D560CE0B395FE464B0A4113C21 /* RCTMaskedViewManager.h in Headers */, - B9C7DA0B2D410C618583F62E2FF53ADD /* RCTMessageThread.h in Headers */, - 070A618F1A86583E0F56C8265134FAD4 /* RCTModalHostView.h in Headers */, - 472E2FC4B0C0C51A5EBDE4B95F5E8567 /* RCTModalHostViewController.h in Headers */, - 32E7F2A84AC555AC86C6BDAE54958171 /* RCTModalHostViewManager.h in Headers */, - D1978CAF1D6697F082909CA3EB177F03 /* RCTModalManager.h in Headers */, - 2789B9401A75CB3CA6BDD2EF2EEEB907 /* RCTModuleData.h in Headers */, - D9344A51107B98167528B899DD0A5CE5 /* RCTModuleMethod.h in Headers */, - 1323D58287DCC0F2562FB80D6D44D498 /* RCTModuloAnimatedNode.h in Headers */, - E37D91BE2112753AE112EED619B9C078 /* RCTMultilineTextInputView.h in Headers */, - 8E77A077BF519D91E269E883B85780BB /* RCTMultilineTextInputViewManager.h in Headers */, - 12DEBADC2E799B3CCA1CAE4A2F128950 /* RCTMultipartDataTask.h in Headers */, - 55F8E7CEAE0AD885612DB1AD9B735C94 /* RCTMultipartStreamReader.h in Headers */, - 546BB3D5FC6AE18BCFB74A44E644754E /* RCTMultiplicationAnimatedNode.h in Headers */, - 36E0A7A800005CA90F21D72A7B701405 /* RCTNativeAnimatedModule.h in Headers */, - 826483171982EFD400E7D4EB2963263A /* RCTNativeAnimatedNodesManager.h in Headers */, - 1C80AA317F0AE6B253CA5F19D2CBD448 /* RCTNativeAnimatedTurboModule.h in Headers */, - A66D35A6499603EB8A998CA30EF014DD /* RCTNativeModule.h in Headers */, - 897486E99902985F26C48BFB7C343DE7 /* RCTNetworking.h in Headers */, - 138108B7FF971F96315F32DDF6EBB726 /* RCTNetworkPlugins.h in Headers */, - E3D35F9AB7EE6C6F322066168C46B0D3 /* RCTNetworkTask.h in Headers */, - 8EC0AAD4C5716AD3E19DA35257F24ECE /* RCTNullability.h in Headers */, - 1C45D5C3AD1230C8E6CDD9A880C3DD17 /* RCTObjcExecutor.h in Headers */, - 9D47881F8E3FC2DF7DC76CC3F5FC16D3 /* RCTPackagerClient.h in Headers */, - 87EAB4D437A3E9B76A1443AF9A0F2EF3 /* RCTPackagerConnection.h in Headers */, - C081A79F8F8929B30538C781F6A6C27A /* RCTParserUtils.h in Headers */, - CC2E33FEEA476F33BDE151AF3CDEB468 /* RCTPerformanceLogger.h in Headers */, - 83444FFD2B0B4CC90F27B611491ACE1F /* RCTPicker.h in Headers */, - 1140E514032830C21BB98AEA6DAE74E5 /* RCTPickerManager.h in Headers */, - E9CA34897D3343B46BD7E68E6F610ABF /* RCTPlatform.h in Headers */, - 557E1A8924375EDA581D1AA4528DF22B /* RCTPointerEvents.h in Headers */, - 7B0F91FDE964C491ED9EC59415A772B6 /* RCTProfile.h in Headers */, - 7E530F9E021105FE722334AD86C04BC4 /* RCTProgressViewManager.h in Headers */, - 3AD41329D89D55EDD31FEAA700231AA7 /* RCTPropsAnimatedNode.h in Headers */, - E9A61ECEA9900886EC8740B93AD7687B /* RCTRawTextShadowView.h in Headers */, - 1911AF61F37120F1CE9123441B54FF70 /* RCTRawTextViewManager.h in Headers */, - B40ECAE9D8623AFA4F2217382A88F082 /* RCTReconnectingWebSocket.h in Headers */, - 56C32CCC251C5AC749B764BEF99AE8CD /* RCTRedBox.h in Headers */, - 20B88456A7904EF5916BFED1EAC3BC1B /* RCTRedBoxExtraDataViewController.h in Headers */, - 77E2C3C4E5FE4109E12D7DAFAF2201F0 /* RCTRedBoxSetEnabled.h in Headers */, - 52804F22433220C4A00BE200FA1A738F /* RCTRefreshableProtocol.h in Headers */, - B15BAB6DA73075B5BE1FDE6DB8976DC1 /* RCTRefreshControl.h in Headers */, - D60904D430DAAB8DBB0A2C5B1CC6BFCE /* RCTRefreshControlManager.h in Headers */, - 8B39BD1E44FE91428182C0C0272076AA /* RCTReloadCommand.h in Headers */, - 0BE6E778463AA90562E4B30C789B4D63 /* RCTResizeMode.h in Headers */, - 04F3B10864E750C0C491AA274AE5C768 /* RCTRootContentView.h in Headers */, - A84F15E46D8A8D63B4A34D824EE303CD /* RCTRootShadowView.h in Headers */, - 819BD444FFC1D4BF303311A671C6FAE1 /* RCTRootView.h in Headers */, - 5F2809E782D143CC9119E4E2CFFA57B2 /* RCTRootViewDelegate.h in Headers */, - 0D59CADE581AE17769A41A12EC6E127E /* RCTRootViewInternal.h in Headers */, - 0E9F8CFDDE24EAE742C04BB4256D27B0 /* RCTSafeAreaShadowView.h in Headers */, - 85B477A4C23D78074D75083432DF7754 /* RCTSafeAreaView.h in Headers */, - DAE297CF10DC946177FD909FB0EC5F21 /* RCTSafeAreaViewLocalData.h in Headers */, - 055FEA3660B954098A3C81D245086510 /* RCTSafeAreaViewManager.h in Headers */, - 5FB7504310313A48C87E2F4AD81B0F25 /* RCTScrollableProtocol.h in Headers */, - C75E9D0653002448B645E98C4B2FFF79 /* RCTScrollContentShadowView.h in Headers */, - D8AB3783797E40BDE4D869E83CEBF939 /* RCTScrollContentView.h in Headers */, - AE1209A8CB86E8A9B31565ADE46E64D8 /* RCTScrollContentViewManager.h in Headers */, - 48F98EFD1F9B1A86ACD6E22869225849 /* RCTScrollEvent.h in Headers */, - 615F5FEE262E247183A8F169454C60A6 /* RCTScrollView.h in Headers */, - FD33029EB3E67C1655196DECDEC7D270 /* RCTScrollViewManager.h in Headers */, - 86483B8CBC74AD79F4E363E5390952B3 /* RCTSegmentedControl.h in Headers */, - B3A1589CC32833673DA1293B0CF60C09 /* RCTSegmentedControlManager.h in Headers */, - B0B188F88083843E6F8B8F5F9A69EF2A /* RCTSettingsManager.h in Headers */, - 66DDA471DD6439C61DE84DC59C108FBF /* RCTSettingsPlugins.h in Headers */, - D1CA942A6195E56CB77E753515F9FEB5 /* RCTShadowView+Internal.h in Headers */, - 79D4549A0FB689908FFAF9BC65FF0D72 /* RCTShadowView+Layout.h in Headers */, - 6150BD7DF20112F69B417CC96A2B7DA2 /* RCTShadowView.h in Headers */, - 45F9216A82969ED2131ACA77398D6FBC /* RCTSinglelineTextInputView.h in Headers */, - 97792140452325B57DD2C24662E203F3 /* RCTSinglelineTextInputViewManager.h in Headers */, - E6487C1A1F698D476679C0A5F9DBBAA9 /* RCTSlider.h in Headers */, - 81EF061BE8AE78033854C2428593B12F /* RCTSliderManager.h in Headers */, - FAC4281B449183FAC94C4AD5A2430361 /* RCTSourceCode.h in Headers */, - 261567D19B81E3EA4AA8133EC85C57C4 /* RCTSpringAnimation.h in Headers */, - 47691782AFFBBE6E038BF750636B3B64 /* RCTSRWebSocket.h in Headers */, - 08002E5A2BA7AADE22C2820964D5A28C /* RCTStatusBarManager.h in Headers */, - AC33966492C4EE2242732B511786BD88 /* RCTStyleAnimatedNode.h in Headers */, - 949C5E0B06899AD7251D6F231446989B /* RCTSubtractionAnimatedNode.h in Headers */, - 520557E76717C79CE77FB3C329A656DB /* RCTSurface.h in Headers */, - 5FDBC03ED25F30F3217DE2A6980087D6 /* RCTSurfaceDelegate.h in Headers */, - 9E0E9268C7D2FFDCCE89E349A544AB95 /* RCTSurfaceHostingProxyRootView.h in Headers */, - F15739EE6AC842205E8C3784B4BAC312 /* RCTSurfaceHostingView.h in Headers */, - DE1BB499D5F47309D10E947E3E612271 /* RCTSurfacePresenterStub.h in Headers */, - 98E5F5CA7733B8349CCC57C5AD78DF20 /* RCTSurfaceProtocol.h in Headers */, - 751B5EED200E288A7565355E731D3E18 /* RCTSurfaceRootShadowView.h in Headers */, - 35FCD81D5114808CE2C786B91DAFDB85 /* RCTSurfaceRootShadowViewDelegate.h in Headers */, - 6E065BEDFC8994E74FB49D8FAA30754C /* RCTSurfaceRootView.h in Headers */, - 7387B39C43D8E34D13C7D23FA81A0259 /* RCTSurfaceSizeMeasureMode.h in Headers */, - B2EC5E89AF281A2A198BDE35E78F9F23 /* RCTSurfaceStage.h in Headers */, - 5BD3EE2F00A2951F05CA073583024D46 /* RCTSurfaceView+Internal.h in Headers */, - 7FDED0400C792E4FF7AECC8F26A6F3B9 /* RCTSurfaceView.h in Headers */, - D875A4DCD029F48FC8D7C3C9A3A572A4 /* RCTSwitch.h in Headers */, - 8626373C08B27B323F58D8FDBEB3B62F /* RCTSwitchManager.h in Headers */, - 24239382EF3A48A670BF3A805AB7C0FC /* RCTTextAttributes.h in Headers */, - 208E565510BC1C0A80EED641950CD9BE /* RCTTextDecorationLineType.h in Headers */, - 2712CDCE6949A74E8F10AECD1E7D9FDB /* RCTTextSelection.h in Headers */, - A93C5009BEBA9C751EB21D61E9B20487 /* RCTTextShadowView.h in Headers */, - 5B891C24E8FED7A4C8F3C1CA3FC0C1AA /* RCTTextTransform.h in Headers */, - F1268D614ACA9A54A769B5B57B79CF7C /* RCTTextView.h in Headers */, - 2D73AFA31D460D03B1E51A81FE7507C0 /* RCTTextViewManager.h in Headers */, - 43DF4C295339F9524096C14904A4AC4B /* RCTTiming.h in Headers */, - 4C60D739E1F6267F7FE0F881F29F5153 /* RCTTouchEvent.h in Headers */, - 6C92E367A74D87BA9AFA42A3A52A40CA /* RCTTouchHandler.h in Headers */, - E7825EB9D1E7B058A7EB8FE07ACB0025 /* RCTTrackingAnimatedNode.h in Headers */, - A7C6331DB6A2F652242F979D432627D2 /* RCTTransformAnimatedNode.h in Headers */, - 2B1D531D36E97E30F3DDED374069C815 /* RCTUIImageViewAnimated.h in Headers */, - 032C419251F76A26A865FA15E764A110 /* RCTUIManager.h in Headers */, - 81D6487011468B1EC40E7273F5E54D59 /* RCTUIManagerObserverCoordinator.h in Headers */, - A171B300A8FB00EFDB7AB61C0253D91B /* RCTUIManagerUtils.h in Headers */, - 6A74AC73F43E550DD1227EA4A43272B5 /* RCTUITextField.h in Headers */, - 95A4C86A8CFFFC500F2E8619E8275742 /* RCTUITextView.h in Headers */, - 3E0C8ADB9C6FF67F76490D10D5426194 /* RCTUIUtils.h in Headers */, - B836C0A62632CE8B23BA2CF0C68433A3 /* RCTURLRequestDelegate.h in Headers */, - 4570F464987DA2E23EE6F3BA0143F789 /* RCTURLRequestHandler.h in Headers */, - 713BAA9DAF0D57EDD4BFB47368807AC7 /* RCTUtils.h in Headers */, - 91A40C4CD90002A7906155A8A3057A86 /* RCTUtilsUIOverride.h in Headers */, - 749F432E61E7FCE4991C20E5AC3EB386 /* RCTValueAnimatedNode.h in Headers */, - C2BCF75C56B247E42DA93CA00E6D8501 /* RCTVersion.h in Headers */, - 2075809010054DD533C16D1030035500 /* RCTVibration.h in Headers */, - 0986D5F8022086EB9FCDAC3C042340D5 /* RCTVibrationPlugins.h in Headers */, - B95C9DE52BB6CD7034B3012F0D5F84E1 /* RCTView.h in Headers */, - CD68C0EEE1873B1ACE6D6EE341F95088 /* RCTViewManager.h in Headers */, - 2695C305D6339887B70EBF9839B8C796 /* RCTVirtualTextShadowView.h in Headers */, - 5F7A86C8E300D1C29D7F9EF0EDD4E41E /* RCTVirtualTextViewManager.h in Headers */, - E42BB20DC78FE3B948010DDA9956A22F /* RCTWeakProxy.h in Headers */, - 6AF5F44FF9181CD0A320B9AD1A711ED1 /* RCTWebSocketExecutor.h in Headers */, - FC403F3DFE69B5EB553F56EF6CD79806 /* RCTWebSocketModule.h in Headers */, - 8E5875CAEB6B9F9A4A20C91FC2082AB8 /* RCTWrapperViewController.h in Headers */, - 60FCB5A3031764CCA1EC78B4476A6285 /* React-Core-umbrella.h in Headers */, - 13CA7C0B6CC62376B1276B605DBCE6BF /* Registration.h in Headers */, - 255796369F21228151CF45098DE2E51D /* RemoteObjectsTable.h in Headers */, - A6BF3904834387F9127BDE5651E1B8B2 /* RuntimeAdapter.h in Headers */, - EC0FEC86ADF28E910873EB11FA6F441F /* SerialExecutor.h in Headers */, - E635F808F181D7C621AE24941DCA250F /* Thread.h in Headers */, - 5872651C870CAF072616F73EA66F6976 /* UIView+Private.h in Headers */, - 26BA78755001562513295CA8364DD275 /* UIView+React.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 39F2883A717B6D2F8D4BAFE8679E7F1D /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - FBDEBCA4F8812F816EE86B34F0AFD8A4 /* FBReactNativeSpec.h in Headers */, + 2F2CE2C3F8A7C0C790BD647255ECF5AD /* cct.nanopb.h in Headers */, + 402A7175D1DA76B1C36BE4E87FEC62F8 /* GDTCCTCompressionHelper.h in Headers */, + 056E754644E170E76B219204CA58C492 /* GDTCCTNanopbHelpers.h in Headers */, + D445613AD4881CC441E92192D9EF211E /* GDTCCTPrioritizer.h in Headers */, + 210F1D30C3DFB035E1A9692D1BED1846 /* GDTCCTUploader.h in Headers */, + 0472E6B2EC2DD1701437FE1EEE67EF7F /* GDTCOREvent+GDTCCTSupport.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -23578,571 +24335,178 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 41E4A58626B58E33A1458433E0050A98 /* Headers */ = { + 439A36BB18BD1B207274F82BEEE91308 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( + B2D3B946BBED766A1748B18A5CD870CB /* BSG_Jailbreak.h in Headers */, + B594FF6E7040805B0D32D24AE00ADB7D /* BSG_KSArchSpecific.h in Headers */, + 354317C878C4259A7AA4EB5A594D59AC /* BSG_KSBacktrace.h in Headers */, + A034395A57C117CF6F15AEC3C5C98E20 /* BSG_KSBacktrace_Private.h in Headers */, + 5BF800372EBBB02FED49E86FA9823B84 /* BSG_KSCrash.h in Headers */, + 1D785D7B4FF0460F8D6B5A64B52D39D8 /* BSG_KSCrashAdvanced.h in Headers */, + 8826F32DD76619864079E4D5AF5D36BE /* BSG_KSCrashC.h in Headers */, + 8FC9D64BA5DA1D77663ED2FEF2CD8655 /* BSG_KSCrashContext.h in Headers */, + 4DA9A2CE52A774F6E12F7225BCB37C58 /* BSG_KSCrashDoctor.h in Headers */, + 86F4B23D5F969E0293D08F7A3C41AB0F /* BSG_KSCrashIdentifier.h in Headers */, + 3B51D3D9AAA380C3D1AF31EA058324A7 /* BSG_KSCrashReport.h in Headers */, + 1AE4FDB8BF0CC461D5AA0E328D6F1566 /* BSG_KSCrashReportFields.h in Headers */, + B464CECAB2AD956A6037B55A3571E4CB /* BSG_KSCrashReportVersion.h in Headers */, + 13CEB1B34518BF11E92D2DDDC9A7BA6B /* BSG_KSCrashReportWriter.h in Headers */, + 3BCFD00E61EAE61F79B4D2A008A04B81 /* BSG_KSCrashSentry.h in Headers */, + 7758183F47357814C59B378BD1E09173 /* BSG_KSCrashSentry_CPPException.h in Headers */, + E238B035225EF52CD614F5A43D1D1842 /* BSG_KSCrashSentry_MachException.h in Headers */, + 9A518E0BA688C9DD7F172081CB74201F /* BSG_KSCrashSentry_NSException.h in Headers */, + 4C63D46F18DB44C5D575C32C77AD75E3 /* BSG_KSCrashSentry_Private.h in Headers */, + EE82C20EC17914E39BAFE0150F4A68C6 /* BSG_KSCrashSentry_Signal.h in Headers */, + F16322AB5F37F1184E6B4AC0BBFB671F /* BSG_KSCrashState.h in Headers */, + 3808B8A26AB922A642AC3788161E6DDA /* BSG_KSCrashType.h in Headers */, + BC1ADA4083FC3463E1592442D3AAD071 /* BSG_KSDynamicLinker.h in Headers */, + 0727B31AF6A686D215A1D79044CC7EF6 /* BSG_KSFileUtils.h in Headers */, + 31D7206FED6867269B7EF6D2C1E20B32 /* BSG_KSJSONCodec.h in Headers */, + A4D30486F1E8291816F11D42A5A07BC1 /* BSG_KSJSONCodecObjC.h in Headers */, + D6F133DEE22C4D0EE2BA65C1F5DB9ED9 /* BSG_KSLogger.h in Headers */, + 96338E6BC94006C0CE93AE63489A3806 /* BSG_KSMach.h in Headers */, + 313E8A8AEA5A22BDF46F9792635DE5DD /* BSG_KSMachApple.h in Headers */, + E2D8B411A8238AA3D624F4155EC28400 /* BSG_KSMachHeaders.h in Headers */, + 89AE893A96F60B5E879214A05480D1C3 /* BSG_KSObjC.h in Headers */, + 0D0B0FC02320C284BC292CCB6DCDF10E /* BSG_KSObjCApple.h in Headers */, + 43910ED896EDD4B570EF1DDBC231ECBD /* BSG_KSSignalInfo.h in Headers */, + BBAD67E32BECDCD7F5E0D56A64ECFD72 /* BSG_KSString.h in Headers */, + 60D7D3204D561C0319BDA6EA0417CD18 /* BSG_KSSysCtl.h in Headers */, + 0009B56E3DB9193A3673C64B5D69DF5F /* BSG_KSSystemInfo.h in Headers */, + 12CC3A8B57436CFE77772345EA6C6851 /* BSG_KSSystemInfoC.h in Headers */, + B290F86C7C26CD71231E7658CCD0560C /* BSG_RFC3339DateTool.h in Headers */, + 13567409C076ABF0000D237F64B0592C /* BSGAppHangDetector.h in Headers */, + FD3DEE6F0E76FA12BE459C2CF4F17C91 /* BSGAppKit.h in Headers */, + 6D3CF28C73BB41714C44DDDE94CFFC44 /* BSGConfigurationBuilder.h in Headers */, + 1CD8228904959A0F2004A91825A7F395 /* BSGConnectivity.h in Headers */, + D430141FB77ACDCE8D23AA0CF9AB2496 /* BSGEventUploader.h in Headers */, + FEB45505BBFC4EAAD736DF6A877696F0 /* BSGEventUploadFileOperation.h in Headers */, + 8A469132AC842D6FAC073671391109DA /* BSGEventUploadKSCrashReportOperation.h in Headers */, + 5F4EA37F2A1D13FFF931A2F1578C238A /* BSGEventUploadObjectOperation.h in Headers */, + EB4D1037A2EC03E69751E5C1401D3A96 /* BSGEventUploadOperation.h in Headers */, + AE8E8102078EE245DF10219AF7E44E69 /* BSGFileLocations.h in Headers */, + 2DF43115CC8D29B67CBD373DEBDD9AF7 /* BSGGlobals.h in Headers */, + 5E599F3B4FC0CBFEC781EB62E40097D3 /* BSGInternalErrorReporter.h in Headers */, + 9555BE4B01AA12D6D5212D900CBCAC13 /* BSGJSONSerialization.h in Headers */, + 6C2702E9C2559DF25271C677EFD299F5 /* BSGNotificationBreadcrumbs.h in Headers */, + E12A5DA02DAAED067B7D62596133CAF6 /* BSGOnErrorSentBlock.h in Headers */, + 06EEA7CC0CAE7BD60BE91A9D8A980D84 /* BSGSerialization.h in Headers */, + 8A6897540FD7F2E503BDB0FF9A072853 /* BSGStorageMigratorV0V1.h in Headers */, + 3E63734D1194F7760186EE0E9B1BBB70 /* BSGUIKit.h in Headers */, + BAAED780974B80EC0F40FA7F16FB68B2 /* Bugsnag+Private.h in Headers */, + 14D462BC8D521629E0E1D310C7DAB77F /* Bugsnag.h in Headers */, + B9F4749C940D6C6A23EC38670DA9336E /* BugsnagApiClient.h in Headers */, + 36E05C04602F9E6516D0A648301766FD /* BugsnagApp+Private.h in Headers */, + D8EB44941D789C53931B41B40870ACA3 /* BugsnagApp.h in Headers */, + 400F6CC9C1C0E8BA7502546F2E90A94D /* BugsnagAppWithState+Private.h in Headers */, + B78EB638E31B896CCFA38A9765572393 /* BugsnagAppWithState.h in Headers */, + 8097093CE2BDB0F92292DB82D8C3E84A /* BugsnagBreadcrumb+Private.h in Headers */, + 2217AF1A7AE7984BF040F4C1BC02EBAA /* BugsnagBreadcrumb.h in Headers */, + 589C23108B805E0EBF232A4D1C231745 /* BugsnagBreadcrumbs.h in Headers */, + 0562BFEC36491B2EA18AC761FD989375 /* BugsnagClient+Private.h in Headers */, + 1347A606F2FFC757B47E7BB520B989AB /* BugsnagClient.h in Headers */, + 0D28E4B29E5AEED3111CEAF1219ABADB /* BugsnagCollections.h in Headers */, + E1EE9A2383D47B81240AAC2F8A5180F7 /* BugsnagConfigSerializer.h in Headers */, + 7AE9FA7CFFB3766DB0BD22641EE81FCD /* BugsnagConfiguration+Private.h in Headers */, + 874929B9211E983EF8666A593A52C81F /* BugsnagConfiguration.h in Headers */, + 811E741095A86BE41D5FFF8B8A57F71B /* BugsnagCrashSentry.h in Headers */, + 4B8989820AF46587E5B34974B8600961 /* BugsnagDevice+Private.h in Headers */, + A9EE7BC356770E7F447795297AF96EB7 /* BugsnagDevice.h in Headers */, + 47FA41B6777D0E2534AAAF1091BC0174 /* BugsnagDeviceWithState+Private.h in Headers */, + 9D0AB6793FDBB0A452D2D260D1BE70A7 /* BugsnagDeviceWithState.h in Headers */, + BEF36AF189692C55712C910F23773B20 /* BugsnagEndpointConfiguration.h in Headers */, + 98F2601D5231BA9F1361DB92F1692C2A /* BugsnagError+Private.h in Headers */, + 38A95EFC134FD4FA47A4CF67F5BD425C /* BugsnagError.h in Headers */, + 27E10DB134C275BDF145041E9A3F02CC /* BugsnagErrorTypes.h in Headers */, + 7E6F9733E017E01726C98AA15FF2BA80 /* BugsnagEvent+Private.h in Headers */, + 6BDB83456597137959DAB8620D7E4403 /* BugsnagEvent.h in Headers */, + BA8D18096CD1A46BB82D8F529110E8CD /* BugsnagEventDeserializer.h in Headers */, + 0618DAD253EDE3B3EC9FF32A7AE290EF /* BugsnagFileStore.h in Headers */, + C6EB2487A325317FC7C079B1857B45A4 /* BugsnagHandledState.h in Headers */, + 842C67398B5E5B183E98774CFDE33CB1 /* BugsnagKeys.h in Headers */, + 5822C44912002F529B8D36067CA5BED5 /* BugsnagKVStore.h in Headers */, + 3E6B36323BA8365F4E3C075502B6ECE3 /* BugsnagKVStoreObjC.h in Headers */, + 90FD96A7A02207605747CFBF643974A7 /* BugsnagLastRunInfo+Private.h in Headers */, + 0AB0E18EE74D192587F41B96143C012A /* BugsnagLastRunInfo.h in Headers */, + E0739E40731A4673DF29B8721AA3F9D7 /* BugsnagLogger.h in Headers */, + A792CF240973925FAC1D90216203587F /* BugsnagMetadata+Private.h in Headers */, + EDDD108D041C3EF38FB9EBF5A4315BF7 /* BugsnagMetadata.h in Headers */, + 8BF892C4EF966B6ED49D8CBBC5763393 /* BugsnagMetadataStore.h in Headers */, + 66A76620260AF301301987428CB47476 /* BugsnagNotifier.h in Headers */, + 4B814079650D36D0B48229B67C2A586E /* BugsnagPlatformConditional.h in Headers */, + BBF12E0628081E0A6B307FA2D6AF6BC3 /* BugsnagPlugin.h in Headers */, + 41E2B574369FE2E44FD00865E6AF15AC /* BugsnagPluginClient.h in Headers */, + E3E250596E76E13A5DA85D4C557AA50F /* BugsnagReactNative.h in Headers */, + D52FB42711662B1E4BECDD8DC3A84AAA /* BugsnagReactNativeEmitter.h in Headers */, + 1A9EF9B5ECDDEE133878EB02EE10E08A /* BugsnagReactNativePlugin.h in Headers */, + 269731BDE3E775BB018007D8F1125681 /* BugsnagSession+Private.h in Headers */, + 1A39E8A5DB4B6AC65E3B4A71519D4A5A /* BugsnagSession.h in Headers */, + 0B47DBFDB0527287B0F70B3A82A83B38 /* BugsnagSessionFileStore.h in Headers */, + E319702B13D890B6693825B6D4960D0F /* BugsnagSessionTracker+Private.h in Headers */, + AB42CFC583E8514B1472D4E189E642C1 /* BugsnagSessionTracker.h in Headers */, + 36B593E3EA6335C118B7782DA8E12CD2 /* BugsnagSessionTrackingApiClient.h in Headers */, + B257932FFE1BE8D5812AD70B932A056C /* BugsnagSessionTrackingPayload.h in Headers */, + D639203BB1E71731E27F44A2B455D821 /* BugsnagStackframe+Private.h in Headers */, + BAC849F7D7DCDBE9A0E3F0EC732EBB9E /* BugsnagStackframe.h in Headers */, + A5FCB6B55E3928F85A22473396309862 /* BugsnagStacktrace.h in Headers */, + 90898528AD53B423E23A21318A6F70E7 /* BugsnagStateEvent.h in Headers */, + C08F8BD457CE8D7EA3488BCFE7B34EB8 /* BugsnagSystemState.h in Headers */, + AC1E57AD0F2410022F32B5AEC7550E90 /* BugsnagThread+Private.h in Headers */, + 54AB0BE1465DA5D73C20D87AC8FDC895 /* BugsnagThread.h in Headers */, + DD081433E41DE52CCBBAE3180F4101D5 /* BugsnagUser+Private.h in Headers */, + 94ECE7823125C2F243E5600CFACF196A /* BugsnagUser.h in Headers */, + 21DB32A29534CE7CA19A7B23CCF26EFF /* NSError+BSG_SimpleConstructor.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 45CC46305811E14A8739A5A4957507AD /* Headers */ = { + 458601195806D041EC881F9499B3A210 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 2373F29DD487A1F22F1167A925A31C9E /* pb.h in Headers */, - 671BB56F4F5F866548E9FD57B89E6289 /* pb_common.h in Headers */, - 4C28E4303A9B38D21D260B97C27C96D1 /* pb_decode.h in Headers */, - 5EA8418DCC34E99C143AE29204A35D59 /* pb_encode.h in Headers */, + AFD8676AAFE8CE4B71DEB1F0383F8F3E /* FIRAnalyticsConfiguration.h in Headers */, + E310D21896D715F3DB403CAB922B0986 /* FIRApp.h in Headers */, + 9828B25D9B287B56BAFC3BFB98771B5D /* FIRAppAssociationRegistration.h in Headers */, + 4ECA8AB87CACA91A8453DEDB024490EE /* FIRAppInternal.h in Headers */, + 33734444F047897F92D31377FE37DBD8 /* FIRBundleUtil.h in Headers */, + 9C805678F5165F588DE03BD1325DD1DD /* FIRComponent.h in Headers */, + 9A3A1F20B890409A02089B1795146204 /* FIRComponentContainer.h in Headers */, + ACA90AD16226D5D51376C4FDC175AD7E /* FIRComponentContainerInternal.h in Headers */, + F4367E4512400BBFF59CB94299823ECC /* FIRComponentType.h in Headers */, + 38C19E1BDBC1EBF019C3D0A8CF1C7B5F /* FIRConfiguration.h in Headers */, + 4BC3232DE85368FA2F2F5CC41067A64F /* FIRConfigurationInternal.h in Headers */, + 707DD45C921F816DD808AC7FEBF32F7F /* FIRCoreDiagnosticsConnector.h in Headers */, + 876A6A5DA33B81786F967190C0671563 /* FIRCoreDiagnosticsData.h in Headers */, + A2E238E6B2EE0E3563AFFF989B1A6C07 /* FIRCoreDiagnosticsInterop.h in Headers */, + 0A2FD3B0870061C168D1DBB7FFF3685E /* FIRDependency.h in Headers */, + 6D4DA454B5C96B4A5E1C91327F02E316 /* FIRDiagnosticsData.h in Headers */, + 3A66F22642029C92543E830D308926C5 /* FirebaseCore.h in Headers */, + C7F308C78C338F122701BB6A918721FE /* FirebaseCoreInternal.h in Headers */, + C9747AC666B1A6CE845FA9468C46617E /* FIRErrorCode.h in Headers */, + 368C0B35C87176A00FD1BB60B421CFBE /* FIRErrors.h in Headers */, + AF436367FEB919A330A61CFDD0E84FB5 /* FIRHeartbeatInfo.h in Headers */, + 1EB1F8D1175E397B97ECAC94849B8BD8 /* FIRLibrary.h in Headers */, + DEE1DE6BAD057DE55A402BAB9EC971C1 /* FIRLogger.h in Headers */, + D3E5CA72D9FBC6571203CAC3C2F50D70 /* FIRLoggerLevel.h in Headers */, + 2AA599D168ED7150F55B27A8DCC59539 /* FIROptions.h in Headers */, + 2B675CC9B444D9F8C03E091D90673A8E /* FIROptionsInternal.h in Headers */, + 6EFEC9EECB474DA7EDEDB78F970B3E49 /* FIRVersion.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A4160B57741F2B378B9EA112492D93E /* Headers */ = { + 5121B954037E49863E1114ACF316B1E9 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - BFBF4C0E30D8324B8B74B6913E713C30 /* Access.h in Headers */, - 7FEE3901B230D96F94136AA90670A53D /* Align.h in Headers */, - B3AA32970947A631257160EB46B3311A /* Aligned.h in Headers */, - CE218B5DC7F3DD4571628384243D2742 /* ApplyTuple.h in Headers */, - B5BA26B8B2126652A92DAB1387FE4645 /* Arena-inl.h in Headers */, - A633224EE850A67463862A0EAB820807 /* Arena.h in Headers */, - AB8AF6270DAEE99E9D7B2A54D1E43321 /* Array.h in Headers */, - D5373EF968A10927FABF0B41D2466A11 /* Asm.h in Headers */, - 28C2E1FF9FBF95E791735DE841E55DBE /* Assume-inl.h in Headers */, - 8FE3E5AD96DFBD4163FB2A5A0782C435 /* Assume.h in Headers */, - 7562DBD5960219FEADB890BA13D8E2F3 /* AsymmetricMemoryBarrier.h in Headers */, - 252335A4BC8F407DFCDA7E3475C71383 /* Async.h in Headers */, - 7C8D9B86E6A7D7EF1DA3A6A36BB4ADF4 /* AsyncPipe.h in Headers */, - 949710539212E56BDE2CA347159716E0 /* AsyncServerSocket.h in Headers */, - 1D6444E1A2B006AE9B0EFC54B7DCE6F5 /* AsyncSignalHandler.h in Headers */, - 7DF40B31F30654207206A4B2DDDF9C68 /* AsyncSocket.h in Headers */, - 0EF01228C083C969CB7C5CD0AFE17D1D /* AsyncSocketBase.h in Headers */, - 73908C3EF98FC841104B35F8087E2211 /* AsyncSocketException.h in Headers */, - 738F991A6889ED4F2B187AB6A55FC7BD /* AsyncSSLSocket.h in Headers */, - E17FC522999B7418C2EFE30B6E02BC04 /* AsyncTimeout.h in Headers */, - 3474ECD5A392C8A34E14BA6BDAFF6F33 /* AsyncTrace.h in Headers */, - 1B24D342FB783FF578452A96A304FE34 /* AsyncTransport.h in Headers */, - 36B0762A210084AAA9C7F1F4ACD67A54 /* AsyncTransportCertificate.h in Headers */, - 1EFC70962B0FE2DA661C975CDF1D8CAB /* AsyncUDPServerSocket.h in Headers */, - DA4ED7B7A3A35358A2CA5DE4CAEF4B42 /* AsyncUDPSocket.h in Headers */, - 5DF00525CB2B0D0EA5D27B70D8DE6C73 /* AtFork.h in Headers */, - 4C403933100904EFEC595100D441E88C /* Atomic.h in Headers */, - DA1BA0560F327508EF0FD5D6AFCB7B58 /* AtomicHashArray-inl.h in Headers */, - B1EE127F8BEDE606F9EB868BA291AF29 /* AtomicHashArray.h in Headers */, - 892383031C84145919B28309AF9FCFCD /* AtomicHashMap-inl.h in Headers */, - FA9FEC2D0F04CC6D9C8C80DCB74DA91C /* AtomicHashMap.h in Headers */, - E4BB313E266E262031ABB647CF9227DB /* AtomicHashUtils.h in Headers */, - 2358387C96D352D643818C4FD9A488BB /* AtomicIntrusiveLinkedList.h in Headers */, - EAE282FCACE133B3C9A65FA0D898AB65 /* AtomicLinkedList.h in Headers */, - 0FA6C8EA06B48480E3E1CCEC2654D523 /* AtomicNotification-inl.h in Headers */, - 0371AE0DBF8C2E0D32ABA52509F6415B /* AtomicNotification.h in Headers */, - 27FC7BD1DE70E5B1D5DDA0EEF07256ED /* AtomicReadMostlyMainPtr.h in Headers */, - 2C515660B515DED39E1BC640657E8A0D /* AtomicRef.h in Headers */, - A06D734DEE2B1EA4052EF2B5EB98B135 /* AtomicSharedPtr.h in Headers */, - E6B0D1B060C49F0BE39016DCA0726328 /* AtomicStruct.h in Headers */, - 81C8FCC3A3406D88B87A533818B5D181 /* AtomicUnorderedMap.h in Headers */, - 686BDD1BEED6D2301F1177BE87805C4C /* AtomicUnorderedMapUtils.h in Headers */, - 6CEA9DD459A74E8FAD0E2B7796F797E2 /* AtomicUtil-inl.h in Headers */, - F186334A2971738EB8E6113CE5763DCD /* AtomicUtil.h in Headers */, - C05DCBBA9F6DA51AE216938DDCF68E00 /* AtomicUtils.h in Headers */, - F309AED73CED5A7AA25F996D48794DF5 /* AutoTimer.h in Headers */, - FC9CE3A55699FCDC27465983DA521D3B /* Barrier.h in Headers */, - F92CA35C9F7358EBA0986DD88B3E3656 /* Base-inl.h in Headers */, - 3CB366A16924256751AACA01BD086F7E /* Base.h in Headers */, - F478F6A241D4FB2167913A893B747C98 /* BasicTransportCertificate.h in Headers */, - 4BC3DB8FC58829A0567C41680D6D5B0D /* Baton.h in Headers */, - 0C820F383E00CC85AC49837B6F751FB4 /* Benchmark.h in Headers */, - 69921C0FFC2A3AA9795ACA7919701BEE /* BitIterator.h in Headers */, - 94E92996AA1FFBBE3D1B017FFEDEF18E /* BitIteratorDetail.h in Headers */, - 451E3C9EDD516D3B7B40DF5D00E94ECB /* Bits.h in Headers */, - 35B0F956AE7B542B0F65516AA895CC91 /* Bits.h in Headers */, - D504D2730CEC60A9F716A26401314A48 /* Bits.h in Headers */, - 30C0852E1B06C794A2D6C0A3C4524F66 /* BitVectorCoding.h in Headers */, - 833FAD2BA2D02ADFB00132BC309E0C05 /* BlockingQueue.h in Headers */, - B37A82522A02F76C848456F62FABC038 /* Builtins.h in Headers */, - AD9A37A9D45C3C7070ED66A1AC5F0C39 /* CacheLocality.h in Headers */, - 8E30F8AAE465B845B2F19BE6725C2914 /* CallOnce.h in Headers */, - 3625F8E8BDADC535947E27F3AEC1CE2B /* CancellationToken-inl.h in Headers */, - 4AFF76BF6FDE7F83B5879F99579B559F /* CancellationToken.h in Headers */, - 8BA65C19BB40BEDCDABB79A28C21D3E9 /* Cast.h in Headers */, - A3D3ADAD13408F1FFDB08A62CE39D853 /* CheckedMath.h in Headers */, - 2D139419B2BE07306292A36464A77E2D /* Checksum.h in Headers */, - 1780389C7D5C409CC475ECCD995D3C46 /* ChecksumDetail.h in Headers */, - 73D3E4A636EEC841CE2917C3C87435DF /* Chrono.h in Headers */, - 5856379D6B02128300DB60AE3B69AE67 /* ClockGettimeWrappers.h in Headers */, - 06D97C8B36C2AE44145C31A35B1D2F3A /* Codel.h in Headers */, - 93F410F5D05037DFEBFA7943C06C98EA /* CodingDetail.h in Headers */, - 74BBBEFCFD47108A52F8BD3E9ACF8B70 /* Combine-inl.h in Headers */, - ACF0219EF4DF98D0E5CD2CE7F6F72130 /* Combine.h in Headers */, - DBD18AD3708BEB80066E59F9D6B40A57 /* ConcurrentBitSet.h in Headers */, - 3BD56F2987591E4D1C69FCB354B6C1AA /* ConcurrentHashMap.h in Headers */, - 494699B0EF6CDBF369D514C35E2A1C21 /* ConcurrentSkipList-inl.h in Headers */, - 86B436E3C596E2922A926CF7BADE4D1B /* ConcurrentSkipList.h in Headers */, - E248E48878708B282398DE8B8F152568 /* Config.h in Headers */, - C4846B9FA9726F7CFBD38730648B4331 /* Constexpr.h in Headers */, - 42462FE4EBF940B256DC06B99E4ECFE6 /* ConstexprMath.h in Headers */, - EA74948E8A88A83D0B94752F86B8C1CA /* Conv.h in Headers */, - 6AB7B6D2FC643A8F282A210B3B027798 /* Conv.h in Headers */, - AFBCCC955650E8A725239795ED9B65E8 /* Core-inl.h in Headers */, - 3E953683EAC1CBCF31A36D8ABB004571 /* Core.h in Headers */, - 18BD7D491E1B2485FD6E317F4915A8EE /* Core.h in Headers */, - 29861DE64DD9D97B7B4BF8F960CE16E3 /* CoreCachedSharedPtr.h in Headers */, - 30250E84DD3B23C0D7110BF671FCE457 /* CPortability.h in Headers */, - DB28987D50CC4087ADB240C15EFEEF39 /* CppAttributes.h in Headers */, - F16BB54B7EA5AE18C17309D85E3EBD31 /* CpuId.h in Headers */, - 27077CF682C0D1B5299CFC45D72B0DC9 /* CPUThreadPoolExecutor.h in Headers */, - 25660B5DBE226DD8BA3EB79588AB00C2 /* CString.h in Headers */, - F2FE9A0394AD88B97C8E5B38F176836F /* Cursor-inl.h in Headers */, - AB2050C74EC7886DBA87D8F226BB5C71 /* Cursor.h in Headers */, - AB95B691A9857D6F4787458DFCDBBE4E /* CustomizationPoint.h in Headers */, - 1F99191F1EE292CA3DE5AC500667F702 /* DecoratedAsyncTransportWrapper.h in Headers */, - 0E3A4E959AA8CA7A107C93DE4DED996A /* DefaultKeepAliveExecutor.h in Headers */, - 1D0C58DE986CE6CFF4E8F9BD88750379 /* DelayedDestruction.h in Headers */, - 9EE1183AD3AE6F8EFA4ADA19FDCE8592 /* DelayedDestructionBase.h in Headers */, - AB631A2D9189FEAEE97BF557103C15D3 /* Demangle.h in Headers */, - 42FA90FC17F6C51D9450C66963DE77EC /* Demangle.h in Headers */, - AAEB1AB9E7A4D2CDE6C7C15EB19A159C /* DestructorCheck.h in Headers */, - 843E577D8C3D69B1F9CE81D7F07038AF /* Dirent.h in Headers */, - 885FBA60E6C3486B760EB444BA511105 /* DiscriminatedPtr.h in Headers */, - 5A3D0DD9C0D7319DF13362FA20D55A3E /* DiscriminatedPtrDetail.h in Headers */, - F45948725BBBD3E30A83A362E67A21C6 /* DistributedMutex-inl.h in Headers */, - EDA5DACD586AA23666133E03F54F88AC /* DistributedMutex.h in Headers */, - 117C53D847311CAB0F119B12C42E22A6 /* DistributedMutexSpecializations.h in Headers */, - 1DA88B80948BC352CB059DC0FDD447DC /* DrivableExecutor.h in Headers */, - 1C890B9C3708B7A6B147A402017E7DF5 /* dynamic-inl.h in Headers */, - 6F28265048986AB080D4A6DD8D42A044 /* dynamic.h in Headers */, - 6101654EAFA8025D849AB513596DA9B7 /* DynamicBoundedQueue.h in Headers */, - 973C01CE460F8B33DFEED28E8147AC3B /* DynamicConverter.h in Headers */, - BD61AD23A7D87A144D39A1D00EF8A085 /* DynamicParser-inl.h in Headers */, - 03D523D8E6DCFCEC361C7D587DDE1207 /* DynamicParser.h in Headers */, - 9D21D0DCD13BC99905E18F11A5FE7CFB /* EDFThreadPoolExecutor.h in Headers */, - 1C870FAF6435B6617E1BD73CCA4429B4 /* EliasFanoCoding.h in Headers */, - 8BC53CDDAAA1C9B0476E9B1D0F83E8C2 /* EnableSharedFromThis.h in Headers */, - 043C1344B2F1C46B67292123A1F166E1 /* Enumerate.h in Headers */, - 1892CDC9478E92357B69DD1505C21C72 /* EnvUtil.h in Headers */, - 226A21405BD15F1509AD1FFAFDE2D9FC /* Event.h in Headers */, - 72E097DD1326B1AC359DFA2B357B1B2C /* EventBase.h in Headers */, - 45D9EA6E809DA1CBEECD4FB49DA6B3CC /* EventBaseBackendBase.h in Headers */, - 4C3F8FFF6EDE8976011197E32FB7B5C4 /* EventBaseLocal.h in Headers */, - BB26FA800B26347223BA29FCC00686A5 /* EventBaseManager.h in Headers */, - A3EA0D0EE37014E39E597467C937C172 /* EventBaseThread.h in Headers */, - 572180B4B552A0470435211ED93CAEF4 /* EventCount.h in Headers */, - C16FF662C29C5B4458A9EB585225B459 /* EventFDWrapper.h in Headers */, - 8C870CBF09087DD620249751384E84BC /* EventHandler.h in Headers */, - 9C94DE615283532840F67C5ED18A2A38 /* EventUtil.h in Headers */, - 363148C688E6BF5BE23D140A05686E9D /* EvictingCacheMap.h in Headers */, - C59FA6B6B639F8F4FFFB9921C484833E /* Exception.h in Headers */, - 0BB15A644CE886364413CE066543D647 /* Exception.h in Headers */, - EFB24E3C85A3FBE59539C3B60880ED43 /* ExceptionString.h in Headers */, - 67D85F8E815DAAE6BB915EEF2BB0D1D6 /* ExceptionWrapper-inl.h in Headers */, - B50F1E4978CBD01E41CEF6E97589EEFA /* ExceptionWrapper.h in Headers */, - 71E93D45A4B0FE03DA1A3D9CDF166FA4 /* ExecutionObserver.h in Headers */, - 9649F384EDD996796FCBE92A18E0C4F2 /* Executor.h in Headers */, - FB2C70175E3F08B660FB8815E94AD419 /* ExecutorWithPriority-inl.h in Headers */, - C96643B1BD79B7299338F65C18CF8C6E /* ExecutorWithPriority.h in Headers */, - 2C3793CC1B582F2C40F3EE940C5AD6A9 /* Expected.h in Headers */, - F897EB5F202907A4C3D941CCDDD76454 /* F14Defaults.h in Headers */, - 070EFC6EE3294185C658FF996856CFBD /* F14IntrinsicsAvailability.h in Headers */, - 4B50D3781570A8E9E03641429AFF2091 /* F14Map-fwd.h in Headers */, - 23AA11E329051A43E0FF38BF249F8E3A /* F14Map.h in Headers */, - BD3E548E6DDD59B5F2B7833A743CF9A8 /* F14MapFallback.h in Headers */, - 321546BD5C0D44AA06675517FA4A44AE /* F14Mask.h in Headers */, - 76910EAD2277798C299FF3F3D2813C53 /* F14Policy.h in Headers */, - 52FFB7E7263E029F81EB895607EEFC4E /* F14Set-fwd.h in Headers */, - C7F41C9FCBEDC4ED2CC4AD9F2B6BC4AF /* F14Set.h in Headers */, - 5ABD274F20EF5C772F5FF365F4009EA5 /* F14SetFallback.h in Headers */, - 2063EF47EFDB0525BF04E1FE20121825 /* F14Table.h in Headers */, - FCF651621D0F8F74BDA9F9CB69C6AE03 /* FarmHash.h in Headers */, - FD963366B3443FF09DD60231BC17C53A /* FBString.h in Headers */, - FE5D6089515128ABA8C9C1A1AF2A3DBB /* FBVector.h in Headers */, - 998CD3EFD568348D997BEF540C870ECF /* Fcntl.h in Headers */, - 64E2C96640818018AD70E607312A8F90 /* FiberIOExecutor.h in Headers */, - B9769963BB3E325D205CF4C61576E943 /* File-inl.h in Headers */, - B0F16506D1B86D9ACCDE57B756549870 /* File.h in Headers */, - 52F3D7BDC8D676A9A21141A59192AA94 /* File.h in Headers */, - CB10868FD40307CF8D271BE6A105E38E /* FileUtil.h in Headers */, - CDA603B9AC860C0E294349309A1EDBD0 /* FileUtilDetail.h in Headers */, - 905C3302B3FB2C87DB25D8818E188A67 /* Fingerprint.h in Headers */, - 17565577C06ED367E3B9D9D5DADF693D /* FingerprintPolynomial.h in Headers */, - F67A8BECF0FB3F260EF90A5683AAF09F /* FixedString.h in Headers */, - 7587BC185F667CEA731876235E1F2CE4 /* FlatCombiningPriorityQueue.h in Headers */, - E04085550F0C1672275BA45AB5C13DE4 /* Foreach-inl.h in Headers */, - D437449A4FBBB7F14D6515944DE4ABCA /* Foreach.h in Headers */, - A167546F740435913FCD1858BE82AD2D /* Format-inl.h in Headers */, - CBD01FB3A6A049D4C44AB4AC827A23DE /* Format.h in Headers */, - 6BC0F1F2ECF2C6DA5ED9AB63B28E1A25 /* FormatArg.h in Headers */, - 7FBEA7A41800ACC727CBBA6DD52681CA /* FormatTraits.h in Headers */, - 586FDA5FDA00AF7B9DB4CC4291BAFD6B /* Function.h in Headers */, - 8BF7ACA43196DDDA01F8B34363138458 /* FunctionScheduler.h in Headers */, - FDD665F04B5C30E8F7C6C678C62A11AC /* Futex-inl.h in Headers */, - 72FE8A3A7D6D38DE2ED2CC0448BFA2A4 /* Futex.h in Headers */, - 5BE02F4C6CC0EBF8E3FB6E900CF6040E /* Future-inl.h in Headers */, - 5FE83CAF9C7136803EC49BB6A6AE4E15 /* Future-pre.h in Headers */, - 5B0E0F5607B8C17150D138C2A7438697 /* Future.h in Headers */, - D41E48CCE6E3175C669600A59D32C451 /* FutureDAG.h in Headers */, - BDFAB2364B1AC7F21521F1F16CA23654 /* FutureExecutor.h in Headers */, - 1565B069153D044DC6107206779250B2 /* FutureSplitter.h in Headers */, - 7289D2A7F91A203F56E42714A4D50795 /* GFlags.h in Headers */, - 00794B821B7DBFFC85E213F958E7EF27 /* GlobalExecutor.h in Headers */, - D1B534C9B6F6903D46EC67331F80EC2A /* GlobalShutdownSocketSet.h in Headers */, - 04CB9F8199F86C78E46D815EF6A11CF9 /* GlobalThreadPoolList.h in Headers */, - 1FC9AF0B18765520CEA9796DA1E546EA /* GLog.h in Headers */, - C0980C83E1D4C6F49A33A7BADD565AD2 /* GMock.h in Headers */, - CECE6755375DA6C953FE2D9E92E2C0DF /* GroupVarint.h in Headers */, - D1F3C3379E51B6EEA764532C4AA6FAAF /* GroupVarintDetail.h in Headers */, - C06F91905861B033D97337BA79FE2468 /* GTest.h in Headers */, - F69BE4FAE4465806A3A51065F042DD67 /* Hardware.h in Headers */, - FE5A7B01EA1EC3BCE8981F8539212BC8 /* Hardware.h in Headers */, - A07187B290B48697E8E081AAB458D810 /* HardwareConcurrency.h in Headers */, - 780BB75E4FD64C00E15B0D257CFD9BA1 /* Hash.h in Headers */, - 1B6FA64F25F66C62030449AE6B90F051 /* Hash.h in Headers */, - F66297FCED3ABABD656A5DC6AE06DFDC /* Hazptr-fwd.h in Headers */, - 4F614AABA7E95B03AF30F5031D3A2656 /* Hazptr.h in Headers */, - 119B535602C981FBDD6F81F088F3CA2E /* HazptrDomain.h in Headers */, - F9D39A8CBF6C586975C58C72248233BD /* HazptrHolder.h in Headers */, - 79881A53808E6DB04763C0580434C103 /* HazptrObj.h in Headers */, - 0ED1E076C0680B70E6448FF3B8E659B1 /* HazptrObjLinked.h in Headers */, - B378540B8FF4BFD70220AABF90E9594E /* HazptrRec.h in Headers */, - F5D3C0FCFF298BF3A38206D67DA9A454 /* HazptrThreadPoolExecutor.h in Headers */, - B1DCBE3D0D6320F8430602944F5D3FA3 /* HazptrThrLocal.h in Headers */, - 34B85FCE394E7DA56240463C0AB2C229 /* HazptrUtils.h in Headers */, - 473E81F52E26DB95881BB4D488805F4A /* HeterogeneousAccess-fwd.h in Headers */, - B11ECACEAE4A57B565754A452D010A71 /* HeterogeneousAccess.h in Headers */, - 2FEEF59F0FCFA0C527D1C088BA746DE0 /* HHWheelTimer-fwd.h in Headers */, - A3C5356460CDED22FCF4B9EB67ACC182 /* HHWheelTimer.h in Headers */, - F0776CE2734B8B18F9E92ADF58EB39BD /* Indestructible.h in Headers */, - 5D6E940424926CE6B7BE737A8C07288A /* IndexedMemPool.h in Headers */, - 6F0F6404896F57710358B95DA1FD19C6 /* Init.h in Headers */, - DB864CC7CBFD594EB9D998C477FBA93C /* Init.h in Headers */, - 7E5AD39E39DA78EE875C80F028897B9D /* InitThreadFactory.h in Headers */, - 1CB449A770811FFAB1BE47B030F5D196 /* InlineExecutor.h in Headers */, - D090683926D38381625919E4AB2A721F /* InlineFunctionRef.h in Headers */, - 02D143C910E4DE62858364D82BCF0F39 /* Instructions.h in Headers */, - 0E2F6B6DF3AC30092AB41AA2A052C8EA /* IntrusiveList.h in Headers */, - 836674833A62EB91DFB6BC0960138391 /* Invoke.h in Headers */, - 84A56B96EA62B55EE3711F0E8F5AA022 /* IOBuf.h in Headers */, - 984F9D57A51367F2F8CFC175CD205B4C /* IOBufQueue.h in Headers */, - 26D73313592A3C19475B3576CE2E5CBD /* IOExecutor.h in Headers */, - DE1D10CA3B3E0943FE5166C884369971 /* IOObjectCache.h in Headers */, - F9E4F579E8F5CE0CA9CE34090E8EFD14 /* IOThreadPoolExecutor.h in Headers */, - 862433EDE7D91078AE3B04AE56489488 /* IOVec.h in Headers */, - F4D332A88574CD6FDD403EA6D8374A21 /* IPAddress.h in Headers */, - C42E1F16E0F51239BE06518DDE68F430 /* IPAddress.h in Headers */, - 6A6279447C11C046FF780CE263E30F80 /* IPAddressException.h in Headers */, - 07B28C2E3DE2C299E177DF5250D57BE0 /* IPAddressSource.h in Headers */, - 1876A5AC61A3F32DBA108BAA19536961 /* IPAddressV4.h in Headers */, - 2F9DE5AA9303B2B86E5292F02DA654D5 /* IPAddressV6.h in Headers */, - 3E632BD82BA1A95B4C7F411A756545B1 /* IStream.h in Headers */, - FB94BAFB224D27310DDFABF18D2E82A4 /* Iterator.h in Headers */, - B539C7466CFCE15A26A9AF0A9EC6298F /* Iterators.h in Headers */, - 54E788E5C085FA3A2C2AB37EF45DE748 /* JemallocHugePageAllocator.h in Headers */, - 3AFA0A37A3317558DD8524C54D9A799E /* JemallocNodumpAllocator.h in Headers */, - AEB91D7013215447ABFAC65BFD56A15C /* json.h in Headers */, - 000328BDE9B2DEE106D86A0146F94B43 /* json_patch.h in Headers */, - AC78F31D3BD5771A052F3354B2642357 /* json_pointer.h in Headers */, - 25165A66D5AA6FBE96D58682402A9E6C /* JSONSchema.h in Headers */, - 748AC692E82158287891CCD4E3A82E24 /* Launder.h in Headers */, - 2C9B7B70FA2CC5106BDFEE3E80313186 /* Lazy.h in Headers */, - 87B2317287DAE4FC00B06C9262FBA4B2 /* Libgen.h in Headers */, - 92FE7AAA800B24D5E4C20CE4569B1088 /* LifoSem.h in Headers */, - DBD9D1B31B5CAC9117044B7203139470 /* LifoSemMPMCQueue.h in Headers */, - C9C7CF75EE28741EE713C238FE1A065F /* Likely.h in Headers */, - DAFA4F79B80F4FD701C7B5E282C1BF6E /* LockFreeRingBuffer.h in Headers */, - 05D5F9C20063FD381C22CC5EECBE37BA /* LockTraits.h in Headers */, - FC2D26859E137F51FC8F2405C6097A94 /* MacAddress.h in Headers */, - BC5FFE2C59E2E35E07E3780852E520CA /* MallctlHelper.h in Headers */, - AACA010E3CE4A8FCFFDE3269F115DE2A /* Malloc.h in Headers */, - 25CB702B7D237801D6A562D3A586F4F1 /* Malloc.h in Headers */, - 1CEE1DE960BD8263AAD870A16053AB41 /* MallocImpl.h in Headers */, - 17BE8B47989ABA1BBE9A69495F0386FB /* ManualExecutor.h in Headers */, - AE9A5874F81E776BE56EB551C5EA9A9F /* ManualTimekeeper.h in Headers */, - 3CBB07379217543EF4956698F097466F /* MapUtil.h in Headers */, - A8CBD903EBE1F4875E736C5DFB3A09A3 /* MasterPtr.h in Headers */, - ADCB2E11EABD3A35CFCF7428C21947BC /* Math.h in Headers */, - 11CDE5A8658EE24F6B1D10A6C129D27E /* Math.h in Headers */, - 7AB9D1AA66DE0E7EF4B256076B70E5E2 /* Memory.h in Headers */, - 990EFF7C3B8A1D93076F05C4B776CD2F /* Memory.h in Headers */, - 1C5290715F7C3A94C84D6B115673F931 /* MemoryIdler.h in Headers */, - 610D2CA5D6EFE4F4235B44E964C99DBE /* MemoryMapping.h in Headers */, - 61BC82B0075465869DAF3795F02D4F50 /* MemoryResource.h in Headers */, - A9D92EE44DAD65F7449C6EBDE94DEE83 /* Merge.h in Headers */, - D4308ED74305D47D4E2BB5D0357C306D /* MicroLock.h in Headers */, - 1AA5709A8583D61FA2FFE33A1CE85F6B /* MicroSpinLock.h in Headers */, - 7365BA997DA3D765AA53B4AD5F26AD2F /* MicroSpinLock.h in Headers */, - BC0FAD8BD5EBA7289102C07A5F7E870D /* MoveWrapper.h in Headers */, - 95F4AA1B07D8C0AB2123DC6E3F118FFB /* MPMCPipeline.h in Headers */, - F4F3AEDD4CAFC6118CB66C7B933ECED1 /* MPMCPipelineDetail.h in Headers */, - 574F79FB92D84F4AC64F8AA860F0669D /* MPMCQueue.h in Headers */, - 0226013C2846F8364B6A135641F44A9C /* NamedThreadFactory.h in Headers */, - E00057AB5B50445806AEF992AF09CD3F /* NestedCommandLineApp.h in Headers */, - DFDD7C67B994BF274564A9C23B13DAE4 /* NetOps.h in Headers */, - 78173703911D2FCBBDCFC929AAD4402C /* NetworkSocket.h in Headers */, - 35F04D3FAB652E0460F41134F413E04F /* NotificationQueue.h in Headers */, - DDB71F3A4E02B8BA895E7C3F505D0F0C /* OpenSSL.h in Headers */, - D6C125C668E7615F2F55DD347A778032 /* OpenSSLCertUtils.h in Headers */, - 06FF94C81F7719846CFCA15E7AC0C5A8 /* OpenSSLHash.h in Headers */, - 55EF20F0090A69F123F1B9CBC9D66283 /* OpenSSLLockTypes.h in Headers */, - 217D3A3B59A769AF460CDC2DFF6502BA /* OpenSSLPtrTypes.h in Headers */, - 1580EA139BD0A1FD5CC08F6CD341B67E /* OpenSSLThreading.h in Headers */, - 9D05913CCB3E0D52E8D4F50D523353B8 /* OpenSSLUtils.h in Headers */, - 19EA7F9DD0B8F59F808046704A644F3A /* OpenSSLVersionFinder.h in Headers */, - 8854E48F8D005D8019845DD3D439CADB /* Optional.h in Headers */, - C73B2ABCEBCCB28B91711A4545444B33 /* Ordering.h in Headers */, - 7D1FCFBFB37D7CC40C03E98E6CC1B0F2 /* Overload.h in Headers */, - 147402A03E95885366AA129ED90687E2 /* PackedSyncPtr.h in Headers */, - 9842003362CDA5EE5001BF6C7A4F837B /* Padded.h in Headers */, - 46671929930D6269E7D4C133AFDFEED6 /* Parallel-inl.h in Headers */, - 6CC550D1554454490C0AE3F5030290CD /* Parallel.h in Headers */, - 442370D1603DAB41183AF4124061383D /* ParallelMap-inl.h in Headers */, - F6FED06D21CA6222400B715E71770E8D /* ParallelMap.h in Headers */, - 8A88B62533E4353E50853BCAF696096C /* ParkingLot.h in Headers */, - 2533B542ED173C7E1512C6CA10305E0D /* Partial.h in Headers */, - 98EB4C91EB75744195F1DB95CB1220DB /* PasswordInFile.h in Headers */, - FA1BE4143FD45F961FD9A664614AFC57 /* Phase.h in Headers */, - 8D420D0FF36627AFAC9BFC2FD28CBD50 /* PicoSpinLock.h in Headers */, - 301D27D20F4AEEDA7A8FC75727975F98 /* Poly-inl.h in Headers */, - DDDFE4F0A99DC9E468D79C082CC014C7 /* Poly.h in Headers */, - 1837382325DA83842BDC2EC1FE5FF15B /* PolyDetail.h in Headers */, - 3E43EB7F835F94F1EAE94F718CA84403 /* PolyException.h in Headers */, - DD75B565DBEA6008653F92BEA8704A9F /* Portability.h in Headers */, - A179ADF35BC1DB80953353B6B5DEFC5D /* Portability.h in Headers */, - 430D918E47497767A2DE712F012475D4 /* Preprocessor.h in Headers */, - CC7F248FB402AC8A36A89A9DD717590B /* Pretty.h in Headers */, - 6C7E29B2F97D45FC67148B5A78649B9C /* PriorityLifoSemMPMCQueue.h in Headers */, - DA8B54BAAEE5456EF6B32D9F2633B2BE /* PriorityThreadFactory.h in Headers */, - F30C4F0A448815EB8E3C96ED8FB7FB44 /* PriorityUnboundedBlockingQueue.h in Headers */, - A6E4A36D0545DAC2391D7994A988AFCE /* PriorityUnboundedQueueSet.h in Headers */, - 5EB26CD49D397727443E0B28755AFCB3 /* ProducerConsumerQueue.h in Headers */, - 488911E70F2C093DA43CB0DBD7238950 /* ProgramOptions.h in Headers */, - D3FD0E574D7E770F66977B31BBFCBAC8 /* Promise-inl.h in Headers */, - C0D10909471E3E750DB1ABA48D87A677 /* Promise.h in Headers */, - 9CC00EFDA50D025FD5FBA1FEF207C157 /* PropagateConst.h in Headers */, - 1B207BCA1C8882C14D2E9ADED2598485 /* ProxyLockable-inl.h in Headers */, - 796A80E006C73E9FA6F69789A5D0E8D9 /* ProxyLockable.h in Headers */, - AB2A30E03159CE9A49008FEA0A824CC7 /* PThread.h in Headers */, - B5606E908C6124E7D6A0E6C24DCEC017 /* QueuedImmediateExecutor.h in Headers */, - 40ED9D5462677D21B50E2275CED46BB8 /* QuotientMultiSet-inl.h in Headers */, - 6178A88567263C717F50BFCDF92F5249 /* QuotientMultiSet.h in Headers */, - F48A273979580C4FCD416E2D50C69527 /* Random-inl.h in Headers */, - 701C647AFF6270B8EB70FA14B8E5CDCB /* Random.h in Headers */, - 6B4903B4CEA81883ECE2FF2486E6FE0A /* Range.h in Headers */, - 4054B511E3CD127FCF8460E32AF61DD2 /* RangeCommon.h in Headers */, - 0182B2365A0EF97DB8F4AA3FCE7A0795 /* RangeSse42.h in Headers */, - 94C6E36689688F1ACAE3F96E29BF697F /* Rcu-inl.h in Headers */, - F0C4B4E55DE4C510ED1656752346CF65 /* ReadMostlySharedPtr.h in Headers */, - AE6D4C1201A2DB5E6285892E3FFCAC45 /* RecordIO-inl.h in Headers */, - 921A865644DDDAB403CB00BE1F0CA9C2 /* RecordIO.h in Headers */, - 925DB80E624486BB46B826329A1BA9C1 /* ReentrantAllocator.h in Headers */, - 5BA7F607D3A30C96CA1D85D28F728367 /* RelaxedConcurrentPriorityQueue.h in Headers */, - 13C49D179AAA45A99480B7D5F86E4FC7 /* Replaceable.h in Headers */, - 24AB95CBC02B2F69E91811DCA46CEC48 /* Request.h in Headers */, - 64E1F00BE52AB8C057AC26475115C2E3 /* Retrying.h in Headers */, - 6D8AF4704FD4BE8FDEBD9BC9A39341D3 /* RValueReferenceWrapper.h in Headers */, - 5C7603589215D31515396E9E60579CC0 /* RWSpinLock.h in Headers */, - CDFA55CA7093E6E8C9B64078C98A6E08 /* RWSpinLock.h in Headers */, - 0FBFB578749017B777308BD5BD537C51 /* SafeAssert.h in Headers */, - 3448E33F00442197EC44C68491ADC929 /* SanitizeLeak.h in Headers */, - EADF6420F5E8E5B8862A74CF638D3027 /* SanitizeThread.h in Headers */, - 7DF51CE7A99B385750B54EA8A2C87301 /* SaturatingSemaphore.h in Headers */, - 9D0F9026B00B8EF6C1DE95475CC46DB5 /* Sched.h in Headers */, - 6592B42211820CECAD0A4D07764EB1A8 /* ScheduledExecutor.h in Headers */, - CDAFDC454DE3DA63640EB10907034FE5 /* ScopedEventBaseThread.h in Headers */, - 05448C9630CF8479D6D35D7E271FF8F4 /* ScopedTraceSection.h in Headers */, - 2B11D6DB1B13F4835D433A541A60EC78 /* ScopeGuard.h in Headers */, - 98C57903148C71C2B7711943D7EEF49C /* Select64.h in Headers */, - DDFC9C22402CE4D3A0BC2C1F6465FCF5 /* Semaphore.h in Headers */, - 88392A36081306E62A9A1474EDCEFBCC /* SequencedExecutor.h in Headers */, - 04F045B490F9C7F78B268E7DD64B3391 /* SerialExecutor.h in Headers */, - DCCFE3AA2D4114BBBB16B880EFD0687A /* SharedMutex.h in Headers */, - B4A4F8D2C74A08A4C9569B56CCD8F223 /* SharedPromise-inl.h in Headers */, - DA6D334DE6700654AC345035E758B4FE /* SharedPromise.h in Headers */, - A5D2C9346100374E416A4278C479A488 /* Shell.h in Headers */, - C3692378EA630CCE7A46952DA63A906A /* ShutdownSocketSet.h in Headers */, - 595EC02DDDF4595DA97C90DAF2E30CD0 /* Singleton-inl.h in Headers */, - 20EA1F34C22699932D58FEF36A83F102 /* Singleton.h in Headers */, - 09F5CCBCA7FAD50EC7F8252E63B59261 /* Singleton.h in Headers */, - 557552171BAD7BE741FC922648DD81EE /* SingletonRelaxedCounter.h in Headers */, - A0550EFEBAC9FA462C6688C54A5035E9 /* SingletonStackTrace.h in Headers */, - 449186B06798B7280757AD55B6CD5688 /* SingletonThreadLocal.h in Headers */, - 790153CA2367158E503E02BBE7CD3A16 /* SingleWriterFixedHashMap.h in Headers */, - C108FA979DCB3CF86BF2F37240C1A08B /* Sleeper.h in Headers */, - F4780CFFDCF50EE9D2080CB1FF0C14BC /* SlowFingerprint.h in Headers */, - 192AF3EF01BE8F98E359032B05B33E1D /* small_vector.h in Headers */, - A9DD7E8AF7A05EEC34AEF1DAC8C9CA1C /* SmallLocks.h in Headers */, - AE113511ACE780880088728E3446AE0B /* SocketAddress.h in Headers */, - 582266EAE20E7DE7E26C4E30B784EE3C /* SocketFastOpen.h in Headers */, - 3F3C82E4334527350A221FF9A7FF111D /* SocketFileDescriptorMap.h in Headers */, - D434D9CAD89E6917A58F0EB087A726F7 /* SocketOptionMap.h in Headers */, - AFC006F15422796DA5FC44A870D6EA79 /* Sockets.h in Headers */, - 063388AC0E8F8B1D26EC0A1CA73E2E40 /* SoftRealTimeExecutor.h in Headers */, - 3BD654224A7D6291F0BE1BDC9CFF7FA8 /* sorted_vector_types.h in Headers */, - AF2CCD6C41FBD59729A86DF976BAD0E8 /* SparseByteSet.h in Headers */, - 51EA6472BA87AEC1EC1441FE0628A08F /* Spin.h in Headers */, - 07A83EC3703B316877E8907D4E724B18 /* SpinLock.h in Headers */, - 75590157076D08B6CAF1826DD0E11542 /* SpookyHashV1.h in Headers */, - 014619C78FEA3B365DD03F3CAA8496F8 /* SpookyHashV2.h in Headers */, - D8F68B4B5854465B668950E9CD98350B /* Sse.h in Headers */, - F3D07B534C3D1BB6DD4B64A092D2CBD5 /* SSLContext.h in Headers */, - 464A5342FA134C9745E8A798D0F35EDD /* SSLErrors.h in Headers */, - F607DC4200AE2D7ACB1CA72FCA5F351F /* SSLOptions.h in Headers */, - 56F8E6F2A7EDC27AB9FA3DCE5DADF30E /* SSLSession.h in Headers */, - 07F64DD5D211443DA7AFC5B7F6927944 /* SSLSessionImpl.h in Headers */, - 6F54B2612CDF774DF1BA6261DA7917B0 /* StampedPtr.h in Headers */, - F10FF67FE20590F282D6ED7674879E7D /* StaticConst.h in Headers */, - 7B83DB364AFFBE0465532E5AD09A50CE /* StaticSingletonManager.h in Headers */, - 612F06B493D1CDC8D655A8E758FF579D /* StaticTracepoint-ELFx86.h in Headers */, - 41576EEC9617DAE1F4A7B54C13E730CF /* StaticTracepoint.h in Headers */, - E3DE9999A175695C33756F33BCD4B1DB /* Stdio.h in Headers */, - 031B575BF959DF695AC109D97F3BB647 /* Stdlib.h in Headers */, - 5D8081BFF796C46CCFF023866FD3F477 /* stop_watch.h in Headers */, - 62199683551FAC69F2BA93187BDF75ED /* String-inl.h in Headers */, - DDBB3A437E7A71A3F4547461F9C13038 /* String-inl.h in Headers */, - 6B42A9F8B940ED36C74F4B4E10F79248 /* String.h in Headers */, - B3CE83FB9A62D3E60B1526D3077353B1 /* String.h in Headers */, - E596ACC4DD10D8D286ED1CD73A893BC1 /* String.h in Headers */, - 006B1133FAB6724ED1D5E52D148520BB /* StringKeyedCommon.h in Headers */, - 108E3CCDC1A5A6233022CA74C99584D4 /* StringKeyedMap.h in Headers */, - 99F2EEA387CDFD5CBD4FEF4F527034D5 /* StringKeyedSet.h in Headers */, - D7EB42FBA7AFBD650650607CDE299557 /* StringKeyedUnorderedMap.h in Headers */, - 7ED57413B276590C70841215D874F2A1 /* StringKeyedUnorderedSet.h in Headers */, - D0E3A497018B59493AFD813009021094 /* STTimerFDTimeoutManager.h in Headers */, - 901C02A4E676987FB55E71C34E6DBB83 /* Subprocess.h in Headers */, - 3AB1B7EC5769BC1100193F3334F8C4CA /* Synchronized.h in Headers */, - 20971F3D8964971494BDCC53915E3B0A /* SynchronizedPtr.h in Headers */, - D359BF04EE6C33F619435E8258BD9D84 /* SysFile.h in Headers */, - 1A0B2EE0D75A7DA047F4AB80C931E627 /* Syslog.h in Headers */, - 21A9DACF8BC3ADCE745DF7FBB7401E1A /* SysMembarrier.h in Headers */, - 720B6160AFBBFFB88ECF6CFCEB74DDF1 /* SysMman.h in Headers */, - 26CE3AD9149894CA0FCF49A783B140D2 /* SysResource.h in Headers */, - 0AAC4811F9B3A30F6F3A18F3695697BA /* SysStat.h in Headers */, - FEB0D99A79716FFD13A0D0410CC27A8F /* SysSyscall.h in Headers */, - 4BA731435394F0B448AB18C3FEE0A29A /* SysTime.h in Headers */, - 7F51D2F3CAAC13D9543ACF118B7E84E3 /* SysTypes.h in Headers */, - 58C415C3B60E17BE1A687C646DF8601E /* SysUio.h in Headers */, - 94FAD33C568331D20E872B900F68063A /* Tearable.h in Headers */, - A35BE4AF3E646A5A89185A05119B5433 /* TestUtil.h in Headers */, - 39A2159110887735C28BCEC87F76C4B4 /* ThreadCachedArena.h in Headers */, - 4F5581BF3C897B84EED6E31C67F47D18 /* ThreadCachedInt.h in Headers */, - B095CF826013EC08C35B03F19B007D00 /* ThreadCachedInts.h in Headers */, - 6005A195E781EC73A3ADD74FA37609E1 /* ThreadCachedLists.h in Headers */, - C2D81430D5E3DF53F43A8495ACFC0031 /* ThreadedExecutor.h in Headers */, - 7600C5148A509134158CA7ACC10EE957 /* ThreadedRepeatingFunctionRunner.h in Headers */, - C16D987B1794AD748EED58CA78FE71A7 /* ThreadFactory.h in Headers */, - 8933F96D1F1AEA7F654D6D23F3C092D2 /* ThreadId.h in Headers */, - 7A1875E88E7ECD93F7C72FADA6A7D78A /* ThreadLocal.h in Headers */, - B820D11FDDB755D1BE07AD170CF23C81 /* ThreadLocalDetail.h in Headers */, - 753368E1410A40F026E9BD2E7986EB0F /* ThreadName.h in Headers */, - 0507A533AA018FE4584D1BFADC39E1BC /* ThreadPoolExecutor.h in Headers */, - F4451EC162D2BD26F3654D762B959402 /* ThreadWheelTimekeeper.h in Headers */, - 4DFB724700AB02EA7060ADBB14B6E917 /* ThreadWheelTimekeeperHighRes.h in Headers */, - BBA859A9BD350CB609DF2038E4976EA8 /* Time.h in Headers */, - 6F991556C0FDEFB6B0EB64C3CA32DBCD /* TimedDrivableExecutor.h in Headers */, - 5A9B6829C000BE235D08738105E3E306 /* TimekeeperScheduledExecutor.h in Headers */, - 0E2E52A87704C8683BDAC64C6FF5D8F0 /* TimeoutManager.h in Headers */, - C1029F544C1EAEFF447B868DBF2A54C5 /* TimeoutQueue.h in Headers */, - 45D0151EB226AF612D5C5DDE90B63B98 /* TimerFD.h in Headers */, - 2EA2D7AA4AF780DEB5997445D14D6E99 /* TimerFDTimeoutManager.h in Headers */, - F12E347C8D2056AF2BF6FB39323E1404 /* TLRefCount.h in Headers */, - 4E53AD873AF533AE42B39B3C0B37F0F3 /* TLSDefinitions.h in Headers */, - 3CE3FABA53DEB8903E89519F3760718F /* TokenBucket.h in Headers */, - F8056A32832DA6F8063B38F4DA4A22A2 /* Traits.h in Headers */, - 56949D243C84315175E0A88E5E5B29B9 /* Try-inl.h in Headers */, - B2FCEFB342140EB7EAD50A54485A3211 /* Try.h in Headers */, - DC4C623B109F8BA865FBD66631EC4A3C /* TupleOps.h in Headers */, - FAAB91E4D85612D5C00212220FF6789C /* TurnSequencer.h in Headers */, - 36C963380A08398FF7C716DEFA439BAA /* TypedIOBuf.h in Headers */, - E9A957260648A08356FC9AC5D98A2440 /* TypeInfo.h in Headers */, - 6CCC20B04F8EF68BDDA0C1C67DE97243 /* TypeList.h in Headers */, - 3E57E661E759A27E1E0C0EFAFCF33D7D /* Types.h in Headers */, - F0F1E13A9D82EE08ECA290920BC1B676 /* UnboundedBlockingQueue.h in Headers */, - CB1C2DA6263130DFE9AB3916BF00F318 /* UnboundedQueue.h in Headers */, - F3B6AA56D417B90A01B73E67599370DB /* UncaughtExceptions.h in Headers */, - 9CD49A081624F203BB37AC396F4A7610 /* Unicode.h in Headers */, - 90348D3BF20882A243700E6347E77D98 /* UninitializedMemoryHacks.h in Headers */, - 9027497226350E7DD3E7914583583DD6 /* UniqueInstance.h in Headers */, - B3B30DCDFE20E00A92DBC8EB20991E69 /* Unistd.h in Headers */, - D48D41F415FE57414EF31449DAFFA0AE /* Unit.h in Headers */, - CCE1BAB038B969B90B6F629B555BFCF0 /* Uri-inl.h in Headers */, - 05E2FB64E5433702EC3048962AF37278 /* Uri.h in Headers */, - 652977F1935C38B4E00081AA1818409F /* UTF8String.h in Headers */, - 31B81A35EE9F58DC3EB63CA1E1C7826C /* Util.h in Headers */, - 874949D454780D4BBC4EC6B18E073DF1 /* Utility.h in Headers */, - 0CFE2BD29D4C9407C3ED97D4F74D17E3 /* Utility.h in Headers */, - B1607E1B15779A18CF9BF9ED0B0FEDB2 /* Varint.h in Headers */, - 26C1D70366D187F71FEE717C084B3781 /* VirtualEventBase.h in Headers */, - 05891FDB283D491B2A2E3365D181C23B /* VirtualExecutor.h in Headers */, - E858B974244DCEB4EB1C3B52A4C2A265 /* WaitOptions.h in Headers */, - B1A44D0554671D78084449385219C9E1 /* Windows.h in Headers */, - F2EA1F8442FE6E18F3D809F3D012EA54 /* WriteChainAsyncTransportWrapper.h in Headers */, - 3AAD760E400E5431DC6BA24CB896BA72 /* WTCallback.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4D6862A8E191DF5AE1CF7122F778C75C /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - BE3AD8DC1B73FBF200860533860DF790 /* BitUtils.h in Headers */, - F13089368D7EF710B5CA482927EE47B8 /* CompactValue.h in Headers */, - FBAB30971CAC8904C88D4DEBCA179F72 /* event.h in Headers */, - 000CCE12F4D744D77140E0D1A5A68AE8 /* experiments-inl.h in Headers */, - B1B2311533B3B3EEB227E08B05AF0C1D /* experiments.h in Headers */, - 223E5C243CB6AD61779232605B1ECBC2 /* log.h in Headers */, - FBEE2476A9F279D2FC104DEF608B32BC /* Utils.h in Headers */, - D912F026DA26D182C2EEBB5FFC9C629E /* YGConfig.h in Headers */, - 812048205AAC120258D5E3A010C240CB /* YGEnums.h in Headers */, - 7109F8B3F1799AC25F425B1BEA7DAED7 /* YGFloatOptional.h in Headers */, - 5DC40621CF6C61AC298B1604D4EFBDC5 /* YGLayout.h in Headers */, - BB8BCB0E1254BF4F09B3E09CB67501F0 /* YGMacros.h in Headers */, - A34B1B5AE7718D8DCE9F57E1897DC73A /* YGNode.h in Headers */, - B022C64E9B34FD7A35A560546CAD3363 /* YGNodePrint.h in Headers */, - F742476F069ABB187B970BE295F65D14 /* YGStyle.h in Headers */, - EAF3476D5F60D2423619B8A80E4B06E1 /* YGValue.h in Headers */, - 22171E3790BEB05671A3813EE544D9E7 /* Yoga-internal.h in Headers */, - 3BB0AC2CA21737E9440D2EF9DDE9DE0E /* Yoga-umbrella.h in Headers */, - 2102C33864914B12AB8BEAA21FFFF169 /* Yoga.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4D68E44745CC1D45BDBFA0009A784B5B /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 74249DD63630BDA7E32D4FDF825890AB /* GDTCORAssert.h in Headers */, - 9093E6DB56A62A6BBACB90060CB25F5E /* GDTCORClock.h in Headers */, - BF2CFBAFB34AEC8FC5F154F36CDE62E0 /* GDTCORConsoleLogger.h in Headers */, - 34368721A37AB885D9E769936C8FF6B0 /* GDTCORDataFuture.h in Headers */, - 653438D95824C542FD9195FDD82BF824 /* GDTCOREvent.h in Headers */, - 2FCBD10231B18E3FC8D0D764FD006408 /* GDTCOREvent_Private.h in Headers */, - 494FC09F6CB0C02E18B421C85B07480F /* GDTCOREventDataObject.h in Headers */, - 18F2BC2B02BFCF06EDEA2C780DAD954B /* GDTCOREventTransformer.h in Headers */, - B683E6CD6825828E184D022BAC39E5F7 /* GDTCORFlatFileStorage.h in Headers */, - CA4443AC5FF6C50365F461BA35EB3A67 /* GDTCORLifecycle.h in Headers */, - 6761DCF92D6C5FC6FF430719151537EB /* GDTCORPlatform.h in Headers */, - 7E3A77F5D64516A17CFF254993B32F7C /* GDTCORPrioritizer.h in Headers */, - 8370CA33E3710C7323274314D143AD45 /* GDTCORReachability.h in Headers */, - 825F10368EC9B357F3B1ECEF18334F87 /* GDTCORReachability_Private.h in Headers */, - 3272F95CAFAB56F6B327E1EE32D8E028 /* GDTCORRegistrar.h in Headers */, - DC720744AE85D7F996DBE494F42502BE /* GDTCORRegistrar_Private.h in Headers */, - C36ABE3418506DD9715BC80FC4E20E5A /* GDTCORStorageProtocol.h in Headers */, - 6A1643FB2C917ED9A9FABC942DC8B5B3 /* GDTCORTargets.h in Headers */, - FB3512AB23B384838E8A9CBA480F0505 /* GDTCORTransformer.h in Headers */, - 6BD07B254C358CAB3BE8929018FCD954 /* GDTCORTransformer_Private.h in Headers */, - 12C19F6FC5C7DF8E07C0BA61CEA6BAF0 /* GDTCORTransport.h in Headers */, - D3065438961ACF2FC44B48C0379426B1 /* GDTCORTransport_Private.h in Headers */, - 8B5C7E01BD1937627E085D9B7882E2B8 /* GDTCORUploadCoordinator.h in Headers */, - 2025241125FF98AC9800C7C1786781FE /* GDTCORUploader.h in Headers */, - 6354997071764B2F403ACAA9415607F9 /* GDTCORUploadPackage.h in Headers */, - A3FC3B536BE5EE77A056B43413385435 /* GDTCORUploadPackage_Private.h in Headers */, - FC798C321284727E02D6A972613C1856 /* GoogleDataTransport.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4D71CA6F881C95FDC58B3DDE54DBD3BC /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - E373BD1E813C120BA7D43D7B324ECA80 /* Pods-NotificationService-umbrella.h in Headers */, + 674273BFACDBC6F2371AFB9E1182AA93 /* LongLivedObject.h in Headers */, + 58368D45926FD1B6881772D7AA2BFFD0 /* RCTTurboModule.h in Headers */, + FAE802F76276D16BC040417FB9D92C6D /* RCTTurboModuleManager.h in Headers */, + CDAFB2F61C2414EB9B05177D1C5983FA /* TurboCxxModule.h in Headers */, + 15FB394A4C9902611160F1F536177CC7 /* TurboModule.h in Headers */, + E94C0A8806DEC18D6873CF569F01FA1A /* TurboModuleBinding.h in Headers */, + 933DEC12775DEC888B3ABA33F7343DB3 /* TurboModulePerfLogger.h in Headers */, + 3307A812F26ED03659E84F5C45F81999 /* TurboModuleUtils.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -24154,6 +24518,353 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 51F02550DA763E00DDB5989C5514BC21 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 43FF3F46155BF15CF9CD29503EE1A5F4 /* AsyncPauseState.h in Headers */, + 5FECC9DC73C82BEE2C93F78E5727FAFD /* AutoAttachUtils.h in Headers */, + E58DE23836329FAFADE45085CA848146 /* CallbackOStream.h in Headers */, + 5370CBA4ACBE7AEC5EF7A382F7043145 /* Connection.h in Headers */, + 82940B4A35BBAA49939E09C3493C5409 /* ConnectionDemux.h in Headers */, + 391A55BBBB4A0FDE96C1FA9C62A16DA3 /* CoreModulesPlugins.h in Headers */, + 5E57502CF408A766C5F086B8D85CCC6C /* DispatchMessageQueueThread.h in Headers */, + 52489BC03892984727EF0E18F51CA909 /* Exceptions.h in Headers */, + DD50E4101B1B9D10BE6E079AF19111E5 /* HermesExecutorFactory.h in Headers */, + A1C79D5750AA6CFA04B7291D91E3559E /* Inspector.h in Headers */, + 85C065D11414723018B96EA8E79BB826 /* InspectorState.h in Headers */, + 50B5D01606E7DED4B0206FEBC0A1BA3A /* JSCExecutorFactory.h in Headers */, + AADE3C16B51F368C44AC0105848D5EF1 /* JSITracing.h in Headers */, + D74C449490F2547B3074E72651672C3C /* MessageConverters.h in Headers */, + 2CF0FA338624C03E739AC9F032833D7D /* MessageInterfaces.h in Headers */, + F935DFCE71C759180A282D16D7FB403E /* MessageTypes.h in Headers */, + AED782460FC95297554B397BBF3C259C /* MessageTypesInlines.h in Headers */, + 1EE4CD5E575C6A8AFAD073B6381B945E /* NSDataBigString.h in Headers */, + 7438FB3ADC2462E87AF4F062F02A01F0 /* NSTextStorage+FontScaling.h in Headers */, + 86651F73CFBD505788C532FA87A02464 /* RCTAccessibilityManager.h in Headers */, + 1530C2CF66266CCC6E80FC67BEE8A927 /* RCTActionSheetManager.h in Headers */, + 9897FC31A052A2CA0933518F865E72B4 /* RCTActivityIndicatorView.h in Headers */, + 3074282C68DEE5AC2B02E9FBC1A86839 /* RCTActivityIndicatorViewManager.h in Headers */, + CB14643836801BA417C2F336D66E589C /* RCTAdditionAnimatedNode.h in Headers */, + 102EAE87B33FDA5963921950F00222C8 /* RCTAlertController.h in Headers */, + 443312CA59A6E1457D3B350E18DE8415 /* RCTAlertManager.h in Headers */, + AD438DD0D0E357DFB295D4272D0333F8 /* RCTAnimatedImage.h in Headers */, + EF384063531EC93D811EE18EA798964A /* RCTAnimatedNode.h in Headers */, + E074A92FAFC9BA43A47C45F5F611B6C5 /* RCTAnimationDriver.h in Headers */, + 6E54B68FE612B2BA5D50122DDD6B2B06 /* RCTAnimationPlugins.h in Headers */, + 862D6D73149966399B22478C16E11F8E /* RCTAnimationType.h in Headers */, + 17CD512E8F7DBE4D02B042069421E8BC /* RCTAnimationUtils.h in Headers */, + EFB0E8A9826CE09004DD59FF5F413CD4 /* RCTAppearance.h in Headers */, + 2618A37300CBD575841A44C1378E1600 /* RCTAppState.h in Headers */, + 28AB19E6514735B79E5536ECE2F00D3D /* RCTAssert.h in Headers */, + 60D05C1846C1099AF1F69F19F60CD9A8 /* RCTAsyncLocalStorage.h in Headers */, + 1D445ABA784FEE3D0B7F312B8A8A9C2F /* RCTAutoInsetsProtocol.h in Headers */, + 8F1CFE1C548EBA700E1583A4BB38E91B /* RCTBackedTextInputDelegate.h in Headers */, + E287F3777D57C93AED5AE1838AFF1954 /* RCTBackedTextInputDelegateAdapter.h in Headers */, + 5A7963A2F614AEC47409EE8111A1BF63 /* RCTBackedTextInputViewProtocol.h in Headers */, + 37916BFF37015D489D43ED58CEC40F92 /* RCTBaseTextInputShadowView.h in Headers */, + 0EEA702D30D384D33244ABFEB10689C4 /* RCTBaseTextInputView.h in Headers */, + 6FE0FE4F0977D4552305755C8A250A62 /* RCTBaseTextInputViewManager.h in Headers */, + 93D79DC8C7DB57CEA927802B73C488AD /* RCTBaseTextShadowView.h in Headers */, + 9ED2961FDD61DFAB3A56FBBBB219DB53 /* RCTBaseTextViewManager.h in Headers */, + 546D73DEF4FD408C5791A9BCE5DC92D3 /* RCTBlobManager.h in Headers */, + 47ABC69700EB814528FB6C7D5061012B /* RCTBorderDrawing.h in Headers */, + 5305B3D1845996CAE48B884F62A700AE /* RCTBorderStyle.h in Headers */, + 4F65F5014A66BB1F16FCF93125B34451 /* RCTBridge+Private.h in Headers */, + B65159AA9444F1081BE92C86ADBC253F /* RCTBridge.h in Headers */, + FDAFCF93AA9427D7F785F14E5688B51F /* RCTBridgeDelegate.h in Headers */, + 02F3FAEE0F8AD772ED88F9CC03E0D4FB /* RCTBridgeMethod.h in Headers */, + 72AE353F6459709595E6BE7249EB24A0 /* RCTBridgeModule.h in Headers */, + D4A2368768AF9A79E6798B8B6AC659DD /* RCTBundleURLProvider.h in Headers */, + D53F1CD39BA109B297DB22917B41C7AC /* RCTClipboard.h in Headers */, + 232A0DF7892DC1668AD991D30E045B4D /* RCTComponent.h in Headers */, + 505FA2D0E8D4EB29D480D580953B2FBE /* RCTComponentData.h in Headers */, + 764C99C1046573D77473F83B3732F15B /* RCTComponentEvent.h in Headers */, + A59724AD1F1CE42A2AE041D2E11E6664 /* RCTConstants.h in Headers */, + 896F8CA8A963FD3DA7B78752A73DFDCF /* RCTConvert+CoreLocation.h in Headers */, + 6DA84A603D543734E965829C73DA57EE /* RCTConvert+Text.h in Headers */, + DA3A6D4B91E98084D3B36D771775F171 /* RCTConvert+Transform.h in Headers */, + 77BA0BE783A875FAD30888155C7D8045 /* RCTConvert.h in Headers */, + B428D05EDCA4A93A1CBD29D4B85FE924 /* RCTCxxBridgeDelegate.h in Headers */, + AA79ED9A4703C5F659B3D4D6CB6AA990 /* RCTCxxConvert.h in Headers */, + 7555CBB8C7CE60187519502264C38AFC /* RCTCxxMethod.h in Headers */, + 4E5498D98181B6454712EFE0C893C115 /* RCTCxxModule.h in Headers */, + D8F73E92507A63E4729A5D0D2883C892 /* RCTCxxUtils.h in Headers */, + 42E0430B8DA3229997AEABE19613DDC7 /* RCTDataRequestHandler.h in Headers */, + B3E6599D03A2A32C1FC3DF33F602CF9E /* RCTDatePicker.h in Headers */, + 8FDC14CCA3C4455A80E93218279CE76C /* RCTDatePickerManager.h in Headers */, + 0CD96A4E2677F7983EE8E5193C1AB2BD /* RCTDecayAnimation.h in Headers */, + 07093C761C6CC9644CB5C2EDFD2F00A3 /* RCTDefines.h in Headers */, + EB14C78C69BA17F8F57A3486D8055C53 /* RCTDeviceInfo.h in Headers */, + 3ED41AFA7014EE36BCDE8F7F64AE701F /* RCTDevLoadingView.h in Headers */, + 12EB6C30173AE1FE23E81096A1843A76 /* RCTDevLoadingViewProtocol.h in Headers */, + BD8F8D1E2C7AFD6EDD1E52E3BE2728D8 /* RCTDevLoadingViewSetEnabled.h in Headers */, + AA8786B1E717B7028B8C7A29960B1945 /* RCTDevMenu.h in Headers */, + BD2D7E41781C3994DDE1CA5418311905 /* RCTDevSettings.h in Headers */, + FBD4C87AAF60E0EEB52CDD9FF5C9F9E2 /* RCTDevSplitBundleLoader.h in Headers */, + 136D5A6A4A59F5D8C66443C14D2C1EEA /* RCTDiffClampAnimatedNode.h in Headers */, + 81E1BECFF015AAC4B6740FF761011701 /* RCTDisplayLink.h in Headers */, + 7A761194468A5C4508DF4A4380B0F5EF /* RCTDisplayWeakRefreshable.h in Headers */, + 10A2E9D8B1191C197E191DA127F184AE /* RCTDivisionAnimatedNode.h in Headers */, + CAD4AB3BDE57B4104B82BA05EEDB698A /* RCTErrorCustomizer.h in Headers */, + 8D0784FEB22B291920237AE2737B9120 /* RCTErrorInfo.h in Headers */, + B6DD124EDA34919378A5066C533318B9 /* RCTEventAnimation.h in Headers */, + 0E8135CA2F60E1532E6FD995BCE3A2A6 /* RCTEventDispatcher.h in Headers */, + 9D31D779DCFDF0E99E28FB0970213820 /* RCTEventDispatcherProtocol.h in Headers */, + BC55C7CADBBAE050ED0BB3E32A64E9AF /* RCTEventEmitter.h in Headers */, + 9030807EEA24116BF4444DEE216C7551 /* RCTExceptionsManager.h in Headers */, + 29143025EEB9F61FB4B8A88936490615 /* RCTFileReaderModule.h in Headers */, + 93BD2606CEB0E6BD13D9B58558E0174F /* RCTFileRequestHandler.h in Headers */, + ABBE966D954BB36BDC39ADFBFF1BDE87 /* RCTFollyConvert.h in Headers */, + C2E005149D9E34D4CD8B3898F64A6557 /* RCTFont.h in Headers */, + A74285097C22BDE7C1C9243EB0997C39 /* RCTFPSGraph.h in Headers */, + 8D0D92757235B7EAFEA4E8CAF5EFE0F5 /* RCTFrameAnimation.h in Headers */, + AEF05CDAB81952E555757CD0733C9BD9 /* RCTFrameUpdate.h in Headers */, + B97C4023C89040E46F0B1CFDFDF2C598 /* RCTGIFImageDecoder.h in Headers */, + 8EB9C98AC989799E41909A8834947C72 /* RCTHTTPRequestHandler.h in Headers */, + 53DEA63DF1BB7C514C985DD0BE8ABF91 /* RCTI18nManager.h in Headers */, + 5C6F04DA7B52116C8E87D3BA0039B1BB /* RCTI18nUtil.h in Headers */, + D4897215571C3F50ACC5A323696E6BAC /* RCTImageBlurUtils.h in Headers */, + E866C091A893AAF10C5066C6A8FB9348 /* RCTImageCache.h in Headers */, + B34CA863D04544F9C500C4C0D1DBC1EB /* RCTImageDataDecoder.h in Headers */, + 93647E033464B389D0979DA7305B82E9 /* RCTImageEditingManager.h in Headers */, + 84242CF4A052DB04E88AF99C26F083BC /* RCTImageLoader.h in Headers */, + 38D3B34D08BA7B972A8B94E5DCE52765 /* RCTImageLoaderLoggable.h in Headers */, + F5D3E6ADF8346099642D6B94121F5D00 /* RCTImageLoaderProtocol.h in Headers */, + A76A3B0FD8A7A2B9F3F3DDF6DBCB24A6 /* RCTImageLoaderWithAttributionProtocol.h in Headers */, + 0346C6562507A40267EA3305185E192B /* RCTImagePlugins.h in Headers */, + B7BC620E2F0F296F50DC9DA7BBE977E4 /* RCTImageShadowView.h in Headers */, + D5F05C28E40410B6532F191DCFBCB88D /* RCTImageSource.h in Headers */, + D9E9C329BF597E2E428C2D675E8A86F5 /* RCTImageStoreManager.h in Headers */, + EDE8ADD40B65AF973CED240BB4BC2C11 /* RCTImageURLLoader.h in Headers */, + CE5BBBC50EE983AD02227AA651A7CE08 /* RCTImageURLLoaderWithAttribution.h in Headers */, + 5807F6B080990E0B767B0BE449E8ECFB /* RCTImageUtils.h in Headers */, + 30F4FC699C6CB4F084AD1E1C2A59D27E /* RCTImageView.h in Headers */, + 1DF0C2D60D4845010213E72709AE1F71 /* RCTImageViewManager.h in Headers */, + 6E947B625270EA7AB41F6E216A5009A4 /* RCTInputAccessoryShadowView.h in Headers */, + 0C1C34168DFB6335025F3571DE0990C0 /* RCTInputAccessoryView.h in Headers */, + 00BB8F2C7C8AC2C604A8652297AF5813 /* RCTInputAccessoryViewContent.h in Headers */, + 4A27DE1BB86074198A35CE8AE56AE79F /* RCTInputAccessoryViewManager.h in Headers */, + E2FEB34C99A3FEE2F60E0E5D878D9839 /* RCTInspector.h in Headers */, + 7D20AD84EBC8559AE1142427250549A9 /* RCTInspectorDevServerHelper.h in Headers */, + 9A8AF5825B359550081D18DC8E2BDE40 /* RCTInspectorPackagerConnection.h in Headers */, + C871BAE6DCFE636B9F7FD7C7DF0E43C9 /* RCTInterpolationAnimatedNode.h in Headers */, + 40378A16692F39DCEA32A5DEABB04831 /* RCTInvalidating.h in Headers */, + AD1034B39445041581BDF4D206FA8229 /* RCTJavaScriptExecutor.h in Headers */, + 84DC2EA18DF9E7B97321C9B61F1F4A26 /* RCTJavaScriptLoader.h in Headers */, + E5A4D111A0374E196120025589C610DA /* RCTJSIExecutorRuntimeInstaller.h in Headers */, + 98ABC6BDC82C7CEAA1173731B394035E /* RCTJSInvokerModule.h in Headers */, + 88E117081C5E333018F94699ECC05F16 /* RCTJSScriptLoaderModule.h in Headers */, + 95DB4A98C401CDCA6F7B1EB83439FDB3 /* RCTJSStackFrame.h in Headers */, + D42F1F4E5EBE1986A2CB8A2C3D76706A /* RCTKeyboardObserver.h in Headers */, + 39CD182F2B1EAC51016774AEEBEF7C7B /* RCTKeyCommands.h in Headers */, + 0D8940FEA44203FDE17C495A5A3A04AA /* RCTLayout.h in Headers */, + 849264ECD2A1B188F8221C0D9504E330 /* RCTLayoutAnimation.h in Headers */, + F8410DD99AEA707624CAE2C75F100A07 /* RCTLayoutAnimationGroup.h in Headers */, + 87FAE4A24D333EB4AEA5BF72137525E4 /* RCTLinkingManager.h in Headers */, + 58654A065C7D9BC74483DB9875A1F7EF /* RCTLinkingPlugins.h in Headers */, + 79314B31C855F5FE78CE981BF7A42755 /* RCTLocalAssetImageLoader.h in Headers */, + B1483314748D0FDB00B54C324A0CDE1E /* RCTLog.h in Headers */, + 508F4CA2E6E0F85CCBFA800E312BB1C5 /* RCTLogBox.h in Headers */, + A807D123779294573E8E4B4AEA8A48CC /* RCTLogBoxView.h in Headers */, + 0E7B97ACEBDF484ACAA61916D907A119 /* RCTMacros.h in Headers */, + 4215168C3F040A5EFF86F32F14A845FF /* RCTManagedPointer.h in Headers */, + EB29EA2290C82DFF3A2C141D4867B820 /* RCTMaskedView.h in Headers */, + 288EA9A8AD939D34A4CBEF2EE225AD56 /* RCTMaskedViewManager.h in Headers */, + E48AEFAFDAC08F2EACE5AA4CB98D3944 /* RCTMessageThread.h in Headers */, + 60F1116344968E0A933978501B3FE871 /* RCTModalHostView.h in Headers */, + E5CD926415F1A3789CDD8A16D76A34B4 /* RCTModalHostViewController.h in Headers */, + 6EFACFAD993B3F07E82F8A4F7F028BAD /* RCTModalHostViewManager.h in Headers */, + 4291F719591E6254362677774D6D6FA9 /* RCTModalManager.h in Headers */, + 30AC6FFF5D61AB8AF0C7149DD6865F89 /* RCTModuleData.h in Headers */, + 4C760F61E843795E2C719F947CE10CAE /* RCTModuleMethod.h in Headers */, + 5E55FEF6B1ACB8BDC0276C53FFB57E4E /* RCTModuloAnimatedNode.h in Headers */, + 1C7383BAA47CA9E13132413DF2BAA949 /* RCTMultilineTextInputView.h in Headers */, + 9831470C75FF63850CF99E426ED06C43 /* RCTMultilineTextInputViewManager.h in Headers */, + 9E32DF386C7B6419161C5398DD25C077 /* RCTMultipartDataTask.h in Headers */, + 2604D2DFCF3930C8A726A34DB94510B6 /* RCTMultipartStreamReader.h in Headers */, + 85D704B1FB1B5234CC4748F1634186ED /* RCTMultiplicationAnimatedNode.h in Headers */, + 17155D1A44E60966045927004E729A9D /* RCTNativeAnimatedModule.h in Headers */, + 281D197F89B7CA018E1CD0794593B335 /* RCTNativeAnimatedNodesManager.h in Headers */, + 272F9453B65E11E7B647D37D494D663C /* RCTNativeAnimatedTurboModule.h in Headers */, + EF2FC081E2C1F8E7DC310E222BF43F55 /* RCTNativeModule.h in Headers */, + 452EE77850BF8C1838507E8BFACD50F5 /* RCTNetworking.h in Headers */, + 153A5B732952E7C63365C3CAFFF4F6E5 /* RCTNetworkPlugins.h in Headers */, + 4409FE7A0169053175DBFBCCC833A7EA /* RCTNetworkTask.h in Headers */, + 41BDA24DD77F73EF6DDDD86752B72D4D /* RCTNullability.h in Headers */, + 5F1FF7EDDFF9B4DA7A30D8F812B4F5BA /* RCTObjcExecutor.h in Headers */, + DBF2434A96C2E42D1ACC6988DBB62BA7 /* RCTPackagerClient.h in Headers */, + CC21BDC9851642B380A4486829931AC4 /* RCTPackagerConnection.h in Headers */, + D9E55E55808083151D350DFE70673992 /* RCTParserUtils.h in Headers */, + EE7FE8B47BEAE181FE13934EE9DA0995 /* RCTPerformanceLogger.h in Headers */, + 1EE248615173AB6BB2FCBAA025F46DDA /* RCTPicker.h in Headers */, + 61985204CBD35AE73925533FA35342AE /* RCTPickerManager.h in Headers */, + BC9AA287DB9D1F3C1E2E37BCD07E16EF /* RCTPlatform.h in Headers */, + 49677AEE26CE7521599D4EED43DA48CE /* RCTPointerEvents.h in Headers */, + AEA407EB3009BBA61F44A67E705D2FC5 /* RCTProfile.h in Headers */, + 5B9B4E230AE1E89B389C639026B26FC0 /* RCTProgressViewManager.h in Headers */, + D3231E825E527E678ED877374F3A8D24 /* RCTPropsAnimatedNode.h in Headers */, + 44F0D24470725F6870DCBDDF508E20B2 /* RCTRawTextShadowView.h in Headers */, + 903224E1E03C45F810C7705242CC2B58 /* RCTRawTextViewManager.h in Headers */, + C04E744AF14D144E1D90678E2CCACD1E /* RCTReconnectingWebSocket.h in Headers */, + BB562842ACFA3EAFA7C91E495616B572 /* RCTRedBox.h in Headers */, + AF82D01E703407AD30DD9F0A5F304C2A /* RCTRedBoxExtraDataViewController.h in Headers */, + 38DD59C79FFD46AE751323372548DB62 /* RCTRedBoxSetEnabled.h in Headers */, + 22D8AB1C11924EB111F57471486DEA69 /* RCTRefreshableProtocol.h in Headers */, + 9CC5875E36C76821BB01311FC7311F03 /* RCTRefreshControl.h in Headers */, + 00F8647BB6E8A787410FB25342A5BE20 /* RCTRefreshControlManager.h in Headers */, + E3EC0F97A46B322061908FCE6427EF05 /* RCTReloadCommand.h in Headers */, + BFD3F91EFE71F86F85736FC76F0931E5 /* RCTResizeMode.h in Headers */, + A9A3C721A26D345F49174C2DA3FD1DC3 /* RCTRootContentView.h in Headers */, + EB1C1F81B0144E43EF807D2C8EE59965 /* RCTRootShadowView.h in Headers */, + 2A2EDA847403A97588ACFEF6F3B2E8E6 /* RCTRootView.h in Headers */, + E3F552D538BEDDFDF4624325039278CC /* RCTRootViewDelegate.h in Headers */, + CF089CD590B8378757174BA76641D10C /* RCTRootViewInternal.h in Headers */, + 043891E5F78B305EBB1317A30836A8CC /* RCTSafeAreaShadowView.h in Headers */, + EECD6ABA1686747B7A909816221D84D6 /* RCTSafeAreaView.h in Headers */, + 523F02EA0EF6E9EAF4553423C8E872E9 /* RCTSafeAreaViewLocalData.h in Headers */, + 3B6922D14B23A155308E5D72318FB004 /* RCTSafeAreaViewManager.h in Headers */, + 57DF71855BA890D631892D2A4B2EBF5D /* RCTScrollableProtocol.h in Headers */, + 0E234EE5851EF999F8969F927AD25F6D /* RCTScrollContentShadowView.h in Headers */, + DEB2EB6994835EE62BF927E7D5FFCE42 /* RCTScrollContentView.h in Headers */, + E13D2DBC0C5F739D44100A7E44533913 /* RCTScrollContentViewManager.h in Headers */, + CD13073FA6A65CF6B4E5496AB2E10B27 /* RCTScrollEvent.h in Headers */, + 858A0C6D75E5E564AE0AB1C0499498BE /* RCTScrollView.h in Headers */, + D2C6965AD9CC35C97016CC32EA67D671 /* RCTScrollViewManager.h in Headers */, + DA91581A135FBD08725A415CD0ECDC13 /* RCTSegmentedControl.h in Headers */, + 0D66A6F156E3003BF80656EBF866FB24 /* RCTSegmentedControlManager.h in Headers */, + 7BEAD01E849AC4D7C9506CAB5D7F03E1 /* RCTSettingsManager.h in Headers */, + 5B7A7BFD69A9EFA8D49D60F17DCC69E4 /* RCTSettingsPlugins.h in Headers */, + CE09119F5E89BD9B7BBEAF10739BB37F /* RCTShadowView+Internal.h in Headers */, + 2B11C84CB20A5EE791B7D49F42903DC6 /* RCTShadowView+Layout.h in Headers */, + 65E113916A6D73B2D25154BA86ED7ABD /* RCTShadowView.h in Headers */, + 3F11C61D791254FE82AF5696C3212533 /* RCTSinglelineTextInputView.h in Headers */, + 372BCB0009F5ADC08084781A24633A50 /* RCTSinglelineTextInputViewManager.h in Headers */, + 707D76C987DFAB631D3EA0591433FD93 /* RCTSlider.h in Headers */, + 380CD0B08F298700A7E95946BDF89368 /* RCTSliderManager.h in Headers */, + 091A8294C62AC3AEC7AFD5DBD735EC8B /* RCTSourceCode.h in Headers */, + 0151086FDFF81B6CA8D219F670CAA428 /* RCTSpringAnimation.h in Headers */, + 62F2738719CBF468CDB2F05C46056AEC /* RCTSRWebSocket.h in Headers */, + 9356480FE2C0B1AC4DD2926EC33872F3 /* RCTStatusBarManager.h in Headers */, + 12500EB17F731C4F4AC159C487E79F66 /* RCTStyleAnimatedNode.h in Headers */, + F42ADE5933BC4A89804B49459E74A76D /* RCTSubtractionAnimatedNode.h in Headers */, + 7274E4B1F2A9A0B8015B99A25039148A /* RCTSurface.h in Headers */, + EF8A7AAE140B717E7D4865D7BEC2A810 /* RCTSurfaceDelegate.h in Headers */, + 1A90D841D8FB2CEF9B86EE4730922635 /* RCTSurfaceHostingProxyRootView.h in Headers */, + 3F65FB7F4DAE604C00698B892A461C5F /* RCTSurfaceHostingView.h in Headers */, + AE81BD3229B6B6E342141272C635F1F0 /* RCTSurfacePresenterStub.h in Headers */, + B40E600B226D6BF07D00DF3545C182F6 /* RCTSurfaceProtocol.h in Headers */, + 37D8C92D8800CC042AD2FF1F189A0477 /* RCTSurfaceRootShadowView.h in Headers */, + FC0CCEFD25A9732DC68C9BD03B05B41E /* RCTSurfaceRootShadowViewDelegate.h in Headers */, + 488F61406BEDE6F4616F4CC38E094A58 /* RCTSurfaceRootView.h in Headers */, + E1A0B76EB7A3746A55E41F8DB7C14008 /* RCTSurfaceSizeMeasureMode.h in Headers */, + 24BA1F49C4507CCF322D930F33B14289 /* RCTSurfaceStage.h in Headers */, + 6A5D8B5248F2C089BA82FFBE4FFE9910 /* RCTSurfaceView+Internal.h in Headers */, + C564CA1C948A4164A7FDE6A21A6CE060 /* RCTSurfaceView.h in Headers */, + 6B69D4008B61299672F88009F247EE21 /* RCTSwitch.h in Headers */, + 00F3CECFF5B5C71FCA22A87DC5BA9543 /* RCTSwitchManager.h in Headers */, + 2609BD2E9E0D419FE3947E43911A3CDD /* RCTTextAttributes.h in Headers */, + 431CDB32429010B551BE7322FCF0F7E6 /* RCTTextDecorationLineType.h in Headers */, + 5B1D944060E287AF5B5FF3611112FA51 /* RCTTextSelection.h in Headers */, + D78F88D509A69BC393D2D42308D3FE23 /* RCTTextShadowView.h in Headers */, + C510A95FDA87CDF78A5818FE2557E543 /* RCTTextTransform.h in Headers */, + C9D678DE52EFAFAEA7D75268855D5BC0 /* RCTTextView.h in Headers */, + DD5A91C88C50B6E345164EE16875FCD7 /* RCTTextViewManager.h in Headers */, + 41942A251B51E1E5848D5067C74AF19C /* RCTTiming.h in Headers */, + 010ACD40A3FB0E1CDA8CB693E0C25AC2 /* RCTTouchEvent.h in Headers */, + 02FE15B62E349ED13458EAF358D75B35 /* RCTTouchHandler.h in Headers */, + 16CE118294D346BACF36CDEAB1285509 /* RCTTrackingAnimatedNode.h in Headers */, + F5FEE2C3E452876030ADB3D139C7B3EB /* RCTTransformAnimatedNode.h in Headers */, + C0DD2D64498DD9D944EA6DD68F513E55 /* RCTUIImageViewAnimated.h in Headers */, + 68F2B4B67DA6803F21510623B2AAD127 /* RCTUIManager.h in Headers */, + B2C41EF392D8BEDA63316B36023197EC /* RCTUIManagerObserverCoordinator.h in Headers */, + FF31481AC6A639FC4776B15F11BEDFDB /* RCTUIManagerUtils.h in Headers */, + 2997FEA8C3D0FCF668DC5C47DE4D5AD5 /* RCTUITextField.h in Headers */, + 28085BC66E36F02A849AAAA3C51B6E1F /* RCTUITextView.h in Headers */, + 21F93C0E91338F357D5F63A991EC85A9 /* RCTUIUtils.h in Headers */, + 0598F7186665FCE2EFAADE1F54C739D6 /* RCTURLRequestDelegate.h in Headers */, + 587CF6EC3B6FEB93465F0CD513A9AD09 /* RCTURLRequestHandler.h in Headers */, + 0B01B5A30237F905FAA426B720C73146 /* RCTUtils.h in Headers */, + 7BCECB7A8F72787B3FB4FE1460578329 /* RCTUtilsUIOverride.h in Headers */, + 049F3641ED0F4A2C70A5A6E13D2218E9 /* RCTValueAnimatedNode.h in Headers */, + 1088988558EC0A36DB60F8F23FFF1BB2 /* RCTVersion.h in Headers */, + 0057FBC361C696065C2ABEFB2556A2F4 /* RCTVibration.h in Headers */, + 0C02CF57A76237685AD6A8C3EF701A6F /* RCTVibrationPlugins.h in Headers */, + A2460B0823D5836054A3DA49144854D1 /* RCTView.h in Headers */, + C1AD23EAFCA7808C317A7CB7BF9046D9 /* RCTViewManager.h in Headers */, + FB829381B9950A960832FC619CF30F7B /* RCTVirtualTextShadowView.h in Headers */, + F0A2FE162C0A1632A19056A64FDF9458 /* RCTVirtualTextViewManager.h in Headers */, + 998B3239AD98B6B72E9E1898ADCC248D /* RCTWeakProxy.h in Headers */, + 1FE5B4058F3915EEC84A7A7AEB6FDAC7 /* RCTWebSocketExecutor.h in Headers */, + E1C08D8BB37248117121A8AAD57619B9 /* RCTWebSocketModule.h in Headers */, + D3F2A2007343CB68F1B43CD7359A7FED /* RCTWrapperViewController.h in Headers */, + 5A2849A983BC591DF6CC2F775AF11C57 /* React-Core-umbrella.h in Headers */, + EFBC69F78EC6D96B4C4E4C93B50EC74A /* Registration.h in Headers */, + 7ABD5D017599151524C29FE32BB27F57 /* RemoteObjectsTable.h in Headers */, + 515AB3A02C455B5847ED4B3599923401 /* RuntimeAdapter.h in Headers */, + F59CA967320D9BB376F3A50E43278038 /* SerialExecutor.h in Headers */, + 5F5254B5432CF6141A81648035CD1D10 /* Thread.h in Headers */, + 4228177C22A0E104C931768E9C8BC6A0 /* UIView+Private.h in Headers */, + 59ADFE9353A5AFC51521D50B882605C7 /* UIView+React.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 52544AF49BD4CF6119A6BDB68C1440BB /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + E7DC3A48C27C44F5B0FF9EBB27B4D428 /* log_severity.h in Headers */, + CA40EA20D735E45DBAE1C1563AEF5EC1 /* logging.h in Headers */, + 804C2BF2B5D48E0D4B9D56BFCF064540 /* raw_logging.h in Headers */, + 11CB25300FA0546FC9825C2542B14EB9 /* stl_logging.h in Headers */, + AE020D03524481E7248DE8B85D4747A0 /* vlog_is_on.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 5478F662965269BAE2BA99EDD5EAC7E8 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + A6E495CEEF8FE8631479CF2DACD79B3B /* UMPermissionsInterface.h in Headers */, + E55392C6684C8F1393B2D06412EF1961 /* UMPermissionsMethodsDelegate.h in Headers */, + B754500F6E3CD14107A63C18D06AC057 /* UMUserNotificationCenterProxyInterface.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 57092A702927FA7B3B62B36BEE47203D /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 4DD10EBE04E6E11B7083EF36AE7D8B2C /* GDTCORAssert.h in Headers */, + 34FCF45CC9D0DBB89D51453FC691EDD8 /* GDTCORClock.h in Headers */, + 0E44DFF7A0B30F4FE6A10615FE0FB471 /* GDTCORConsoleLogger.h in Headers */, + E0074BF3D32BEE86A3053A56AA83EF78 /* GDTCORDataFuture.h in Headers */, + 7F466EB6DF3E18B0EC2248B60B6A529B /* GDTCOREvent.h in Headers */, + 1A4832D88543410F232BC959FA8FF50E /* GDTCOREvent_Private.h in Headers */, + 7496FA2D60BA5639F033A049DC8D66AC /* GDTCOREventDataObject.h in Headers */, + 8A0031FD5982F5CC51FD1C1F189F99F3 /* GDTCOREventTransformer.h in Headers */, + DCFA2E2EEE02F9B231D85A8D66D82089 /* GDTCORFlatFileStorage.h in Headers */, + ADA454AA835BAABBB159DB202663ADC5 /* GDTCORLifecycle.h in Headers */, + 00BC87DFA9ECECAA97E66236315A0E42 /* GDTCORPlatform.h in Headers */, + AC8ADECF94911C0429EDC66F7B818E08 /* GDTCORPrioritizer.h in Headers */, + 0B2E0DE809E106E5EA77ADB7FD1B786A /* GDTCORReachability.h in Headers */, + 44D2B8BD2AEF6A1BDD1D6B7EA48DBDAE /* GDTCORReachability_Private.h in Headers */, + 4532FC9B2FF644C5C410C573A94B0721 /* GDTCORRegistrar.h in Headers */, + 4B12799E755CB200D243F333C2512095 /* GDTCORRegistrar_Private.h in Headers */, + ED276E5B54D36A9E60A7C3A7A97C1ADB /* GDTCORStorageProtocol.h in Headers */, + E6F2F6D29BF5EF222846D24FFFA2A518 /* GDTCORTargets.h in Headers */, + 83560D799D66A44B6025A30F0E203297 /* GDTCORTransformer.h in Headers */, + 29A8D2481CD3257C9100A8507DF97B1E /* GDTCORTransformer_Private.h in Headers */, + 29E7CC7F14FE4116D10F914951DD17BA /* GDTCORTransport.h in Headers */, + 9262F8918746D2B8170AB029AC4D0CD8 /* GDTCORTransport_Private.h in Headers */, + 8426B85C97EB7E927A5B60C8F33BDC34 /* GDTCORUploadCoordinator.h in Headers */, + CE6C2C115033C2392F23079D5C9ED359 /* GDTCORUploader.h in Headers */, + 0AD6A7B831E3569F6D7C5B1EE02A1191 /* GDTCORUploadPackage.h in Headers */, + CFC44134A09EF6B00F5A933A61E8EB00 /* GDTCORUploadPackage_Private.h in Headers */, + 22587FCC4C181D57C16E6C1E232D6813 /* GoogleDataTransport.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 5A6A56EAE8FCC9649F93E01E125FCC83 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -24164,11 +24875,127 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 60ED3AC0A888A156B7FB3E755AF62BC7 /* Headers */ = { + 5B2F360B077AD1BDE533C46FCE59D91E /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - DE63DE9A38879C344A03A442684C8E4B /* Pods-ShareRocketChatRN-umbrella.h in Headers */, + 7079D2284B5A94EF0486E2A6CE323907 /* Allowance.h in Headers */, + 33482CEF63E6E903662CB9FFA4347F0A /* AsyncGeneratorShim.h in Headers */, + A08031FDC8C48D7DF1EFDA08866F8249 /* CancelingSubscriber.h in Headers */, + 94D5DF55DE38E5D656484E932FDAB8A5 /* ChannelRequester.h in Headers */, + 72B79343BEEF80D9F1F138B20C2489C9 /* ChannelResponder.h in Headers */, + A2CAC7A8053A56639056B47EE21F3AD3 /* ClientResumeStatusCallback.h in Headers */, + 5D1371E42154175C05431D1C51818977 /* ColdResumeHandler.h in Headers */, + CE2B3B182A9C3A9220DC7E1DA756810F /* Common.h in Headers */, + 93B8902F9E4ECDCF100F6D3D75DF2EA0 /* ConnectionAcceptor.h in Headers */, + F9F252C6CB2D90DB3C37E770875DA4C8 /* ConnectionFactory.h in Headers */, + 8200366131B5B6B9EFDCE7A2F71EF9BC /* ConnectionSet.h in Headers */, + 991AD6B91E69CF3A2F8601C97B028027 /* ConsumerBase.h in Headers */, + 9DC35C14F95C46E9374E20B715F57EB6 /* DeferFlowable.h in Headers */, + 50668E56839E8F930095C023C388E1BF /* DeferObservable.h in Headers */, + 0AACF9DA2E1B6C7D74CBFC897EC87F9F /* DuplexConnection.h in Headers */, + 1A7570D57693A5066C8BA5B8334C9665 /* EmitterFlowable.h in Headers */, + 5F873FCC3EB5E0BB8737881DDB0DFCAE /* ErrorCode.h in Headers */, + 721D32ED454E0AC0D85D80EAEA855ED0 /* FireAndForgetResponder.h in Headers */, + 8672C1643AC92F19E0E0DE401FFEA402 /* Fixture.h in Headers */, + BB03B83D12B84257758E03B1E7B338C2 /* Flowable.h in Headers */, + E24E6BB4A43943E203A932C0E62A7E54 /* Flowable_FromObservable.h in Headers */, + 4BC5BBDB0B438C2FE47E9523FE3EBACA /* FlowableConcatOperators.h in Headers */, + 3877D502A13BEF8A8E61D65114013193 /* FlowableDoOperator.h in Headers */, + C82EB4D749EA8DB61D3C0D6715FC06F3 /* FlowableObserveOnOperator.h in Headers */, + B9AA93D67423904B9BD77404229C8CBE /* FlowableOperator.h in Headers */, + 9884E80C7D6E76D1716EE79DCD264E3D /* Flowables.h in Headers */, + D82F397694B952F8BF294D1848C1B499 /* FlowableTimeoutOperator.h in Headers */, + 72DB98A7214AC51B5BB3D4AB42827DD4 /* Frame.h in Headers */, + E4A1E303B799247E1BFE00752CF53B0B /* FramedDuplexConnection.h in Headers */, + 77D0A7B7F096A7B52315BB33327E9432 /* FramedReader.h in Headers */, + 104F9EF0ED66D535CE89BC7F80EB01C1 /* FrameFlags.h in Headers */, + 5BAD5884C31E4DEC20B64EF102A862D0 /* FrameHeader.h in Headers */, + CB520E5F2F0C61DD826B07B0C8279521 /* FrameProcessor.h in Headers */, + 376CCD7ECFADBCEC62644326EA6F8C64 /* Framer.h in Headers */, + 51C1FFC5E15D1AC45B9AAA9CBEB5A955 /* FrameSerializer.h in Headers */, + 960179F05779105EE3A00DB753C8598C /* FrameSerializer_v1_0.h in Headers */, + 145E5C9889C81DC42A6F91C853150B31 /* FrameTransport.h in Headers */, + 368975B32CE2B1A514EEDE0959DC2CAF /* FrameTransportImpl.h in Headers */, + 9A671261BCF03BE822F27247E58DB967 /* FrameType.h in Headers */, + A70E9982A76216219772B033E8581976 /* KeepaliveTimer.h in Headers */, + 51376E94D372BC7B3BAC6EC9175918F0 /* Latch.h in Headers */, + DF16F4DE7431CE790556C323F0863251 /* Observable.h in Headers */, + 2D431B541A56A364975325B640563339 /* ObservableConcatOperators.h in Headers */, + AAFD05B264409A2D51250C69CC85D958 /* ObservableDoOperator.h in Headers */, + 528CD6DB1523A496CBB45E611E2CDD42 /* ObservableOperator.h in Headers */, + FBEFC6BBE6F4A16DBB5336D798FAA110 /* Observables.h in Headers */, + 7A75F9FFE1C65984AA22CBBC6B10AA0D /* Observer.h in Headers */, + 521BFDE9B74DB13FC9C7541CACCB11B1 /* Payload.h in Headers */, + 5FA5414EBE168CEE9BCB28654ACD0F15 /* ProtocolVersion.h in Headers */, + CD906EEB88C36C351AFB0F56A02B1366 /* PublisherBase.h in Headers */, + 395D879EB82946D7564A77E43D2FF02C /* PublishProcessor.h in Headers */, + FD087BC349ECC6A1FA17FD94380851FB /* RequestResponseRequester.h in Headers */, + CCABE8B4469A6526D2B920DFBC343B30 /* RequestResponseResponder.h in Headers */, + E7C668C15E723EEB34BEA9FE018B660B /* ResumeIdentificationToken.h in Headers */, + 58C6339E7789D7039C3B799F993C4221 /* ResumeManager.h in Headers */, + 69FE42AC5122E56178A4CA34C9743273 /* RSocket.h in Headers */, + 9CCEEFB441CA6B23DFE4EA82F82CC299 /* RSocketClient.h in Headers */, + E1721A2CA9E2F8E0A07ACF6F63792BE4 /* RSocketConnectionEvents.h in Headers */, + 0DEA069FF88127C8E375366F7C8177BC /* RSocketErrors.h in Headers */, + 73CDFB033D0E3825627A6893DE2F4AC6 /* RSocketException.h in Headers */, + 8C61FFCE29A8CBBA864BC03EE36A3DE3 /* RSocketParameters.h in Headers */, + 72FCEFFA1DB40434BBF9EBF5B25F92B6 /* RSocketRequester.h in Headers */, + 5ED9D2F2CBE4B16E1EB40C7DEE1FBEA6 /* RSocketResponder.h in Headers */, + CD538293A04683B38F16D55B9CF35F8C /* RSocketServer.h in Headers */, + 411BC398D773361AA1A8BDB49399CCBD /* RSocketServerState.h in Headers */, + 4CA6AA1E6FC5220A868011C67D9F6263 /* RSocketServiceHandler.h in Headers */, + A289DB69283EBE2268B03595065884E8 /* RSocketStateMachine.h in Headers */, + 2923635EE489552AA7C35BE76C087410 /* RSocketStats.h in Headers */, + 7B490EEED30BC49A2E89D5D491F10A54 /* RSocketTransport.h in Headers */, + EDBF1C362EA0C9F90761D9057516CA3B /* ScheduledFrameProcessor.h in Headers */, + 11BB8F5AF8FE15F95E28A4121695BF90 /* ScheduledFrameTransport.h in Headers */, + 315B81DC2BCD2E169C26F9AE7BF89BAE /* ScheduledRSocketResponder.h in Headers */, + DE58086041812271F3833AC3559B3404 /* ScheduledSingleObserver.h in Headers */, + 7A4B12E8B954775145887FBAA5047500 /* ScheduledSingleSubscription.h in Headers */, + 913ACA8018B736349C7F9E1D8A6AAD25 /* ScheduledSubscriber.h in Headers */, + 66055437E69E3F37EA297BB224C19206 /* ScheduledSubscription.h in Headers */, + 37AD0EC05AB90190AA9D1F16A10A480C /* SetupResumeAcceptor.h in Headers */, + 436F3281CCFEFCC21E7C471E42B620B5 /* StackTraceUtils.h in Headers */, + 6E137A29CD533B6DC7CAFF9AE0CC87F6 /* StreamFragmentAccumulator.h in Headers */, + A6FB08F43AC56A72A3E139510B062C60 /* StreamRequester.h in Headers */, + 509480C2D9CF831F8EE3B684EC35A45A /* StreamResponder.h in Headers */, + FE3C3B0B3883246F0682DE32E4403B67 /* StreamStateMachineBase.h in Headers */, + F5B06968D07E0905DC00289C01AABB9D /* StreamsWriter.h in Headers */, + 23E05DB7ADBD88E8C03CC484D1F1099F /* Subscriber.h in Headers */, + ECE7BD204DA630BB4A0AE60A0B54BE92 /* Subscription.h in Headers */, + D2897D08B1DA43E504A3C24516E47151 /* Subscription.h in Headers */, + 6BDCE2AFBD3084C1B1071F967DB9AFB3 /* SwappableEventBase.h in Headers */, + F440ADBAB2236E5C36D7C95AAA11AEDE /* TcpConnectionAcceptor.h in Headers */, + BD8052DA6717CAD254815B690E2DF5AD /* TcpConnectionFactory.h in Headers */, + 926B192DD06AE82CBAF1291DADFF3A7C /* TcpDuplexConnection.h in Headers */, + F34F42EF7B5ADEE10A59D0AFF3E9F4B9 /* TestObserver.h in Headers */, + 656DE1A2781A099BCF527AE265AC9E87 /* TestSubscriber.h in Headers */, + E8256CCC9C51CDB0B77A25C40B45A640 /* ThriftStreamShim.h in Headers */, + 0B2AE46A2D31D608587776AC93C04926 /* Throughput.h in Headers */, + 5265BB288BE7022F66692322DC4A1FA8 /* WarmResumeManager.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 627AB77CCF28FE754C1EFDB4F4B322DD /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + B0911740F21E6BE59A24761E62BB74F7 /* log_severity.h in Headers */, + A9BAF1CE9D7BD16EED813E56330E3DA4 /* logging.h in Headers */, + CB7660AC037B89E2E575D95CB7D3C7EE /* raw_logging.h in Headers */, + 6698BD3FA72C69E840C846E0AA571CDD /* stl_logging.h in Headers */, + 633839A081D24300E24454B213E95B79 /* vlog_is_on.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 6315E710FE63AC0E5B4AFF9CF253E145 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 27EC06980DAE5F1CB3C930E0876C6E7A /* FIRCoreDiagnosticsData.h in Headers */, + A755794A98FEDE5B9A152DC8CD92F051 /* FIRCoreDiagnosticsInterop.h in Headers */, + DD6A7331C782135D32653E0BED52374D /* firebasecore.nanopb.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -24202,213 +25029,12 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 6D6A97E0E62CD26641ABFDE3FE51E64E /* Headers */ = { + 6ED5BB983BE2B68121F58CF0130C9D59 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 89F322351D3894AFFC9FB6B59A135169 /* crashlytics.nanopb.h in Headers */, - 325C2B9FAE556E72334B611582BC2D33 /* dwarf.h in Headers */, - A4B63A1CE30A35AF7211F73A24890A48 /* FIRAEvent+Internal.h in Headers */, - FAC1C2EA4F2DEEE8672289E1460E164E /* FIRAEvent.h in Headers */, - 33314BF68A7849E37848A5D7ECB1BBBE /* FIRAnalyticsInterop.h in Headers */, - EDC648B74F2853A36A9219A1F43B296E /* FIRAnalyticsInteropListener.h in Headers */, - 8F4B46E534DEC70A5EB6B4F3F9AEA488 /* FIRAppInternal.h in Headers */, - C2C8CB3FB581C04C725A957181552139 /* FIRAValue.h in Headers */, - B39013F65F4ADA017C689D7C1EC9B494 /* FIRCLSAllocate.h in Headers */, - 056151BD567E738A40A0E980DFFD15F9 /* FIRCLSApplication.h in Headers */, - C8042DF2686D3155983066ADA089D092 /* FIRCLSApplicationIdentifierModel.h in Headers */, - FC3EA0C0ACA60A4717FEDE1D87BCEDE2 /* FIRCLSAsyncOperation.h in Headers */, - ECC46CC776A2368C1C0C76166E438E2C /* FIRCLSAsyncOperation_Private.h in Headers */, - 0957F7734FC4DEA4948D194333A4558E /* FIRCLSBinaryImage.h in Headers */, - 802CFFE0EB0029815C40EAF9705B3CC9 /* FIRCLSByteUtility.h in Headers */, - 924FCA48C9AF22A3FD95CACAA85511A5 /* FIRCLSCodeMapping.h in Headers */, - 2239AD5C0EFEB52D63F39EB6D1A1B97A /* FIRCLSCompactUnwind.h in Headers */, - F0CA886BC1754FB591038E97FDFBBB39 /* FIRCLSCompactUnwind_Private.h in Headers */, - B8D646F6CBCA6205FB3192085B61EC70 /* FIRCLSCompoundOperation.h in Headers */, - E26FC3B985D2A23DFDBF98617DB5BF9B /* FIRCLSConstants.h in Headers */, - B0C73977F5F9D1708187A11B887D43B8 /* FIRCLSContext.h in Headers */, - D6945C969B73D5D3D0BDD77B28BD11AE /* FIRCLSCrashedMarkerFile.h in Headers */, - 944BB2D01136553E982BF62F78C2C457 /* FIRCLSDataCollectionArbiter.h in Headers */, - CE906D7048E9EC8C8616926E9787DD26 /* FIRCLSDataCollectionToken.h in Headers */, - 662B4877CEB8A6AAD373695E5F872CD6 /* FIRCLSDataParsing.h in Headers */, - DE3FD4F9D818FF85FC81E842A74F24F7 /* FIRCLSDefines.h in Headers */, - 5FD0B2E1E816406BEB7CEBAF41821D5C /* FIRCLSDemangleOperation.h in Headers */, - F3BFE825998CE05305ECEB4AFCF72552 /* FIRCLSDownloadAndSaveSettingsOperation.h in Headers */, - D8255D0AE896958D3D6DC26E1D27169D /* FIRCLSdSYM.h in Headers */, - 6D2DD50314F2CAD881B1D6EF3E653F4A /* FIRCLSDwarfExpressionMachine.h in Headers */, - 7E84968C7C46175D88A80A9593ECB837 /* FIRCLSDwarfUnwind.h in Headers */, - B5703412C1346413E95DA8EB2642FA60 /* FIRCLSDwarfUnwindRegisters.h in Headers */, - B74B960BD3FF2A4A16863EA813C23F71 /* FIRCLSException.h in Headers */, - 88A15ACFC4BAD3B89013314EE56C6026 /* FIRCLSExecutionIdentifierModel.h in Headers */, - 4FBF8D6791511CD13F69FA286F490AF2 /* FIRCLSFABAsyncOperation.h in Headers */, - 1B4934D79B50C3D2AAD539BDB58014BE /* FIRCLSFABAsyncOperation_Private.h in Headers */, - 10E5CE8FF7243C340BCBA6C838907300 /* FIRCLSFABHost.h in Headers */, - 369F09AC477D44597BE384BA1A3CC8A8 /* FIRCLSFABNetworkClient.h in Headers */, - 476B8299E258E8B1C3103EE4959360FB /* FIRCLSFCRAnalytics.h in Headers */, - D935EA7375339063A45ACB4F349BE7B2 /* FIRCLSFeatures.h in Headers */, - 9DA2CBB78605813BBE919021327BDD1F /* FIRCLSFile.h in Headers */, - 25355082A92F8E19C16A5545DAFE793B /* FIRCLSFileManager.h in Headers */, - 26B03DC483BC44AAA1E516A06BD68F73 /* FIRCLSGlobals.h in Headers */, - 0D93B2A675CD91FC2355DE9D7EAE9EF0 /* FIRCLSHandler.h in Headers */, - 01423B34E89D3848E08AD1172B613E39 /* FIRCLSHost.h in Headers */, - A86DEE20ECD5D200DD2F15034BCB7F74 /* FIRCLSInstallIdentifierModel.h in Headers */, - 9D36840D554737E35ABACBCFC2479CD1 /* FIRCLSInternalLogging.h in Headers */, - 0C1D6EF62CA3626B9577FFE548FD46E9 /* FIRCLSInternalReport.h in Headers */, - CF4E027FA379C2086B118784308B2B38 /* FIRCLSLogger.h in Headers */, - 6086A499FBBCB65F9314C36A940DBEB3 /* FIRCLSMachException.h in Headers */, - D2E2F7FEFA1C15C7A0E8C4D9B24436E0 /* FIRCLSMachO.h in Headers */, - 2ACAACF04ED71B0EED9CAC061E7EBD24 /* FIRCLSMachOBinary.h in Headers */, - 6BDE820DD78401D6AA25F03126A8398E /* FIRCLSMachOSlice.h in Headers */, - B2555222B80E232A42F4EDF2480EBBD1 /* FIRCLSMultipartMimeStreamEncoder.h in Headers */, - 00144175691C5B89046458173A83E4FF /* FIRCLSNetworkClient.h in Headers */, - DE797632FFBFC6A8A40B7311AF186654 /* FIRCLSNetworkOperation.h in Headers */, - 45F691ED1540FB294514BEB316E050FB /* FIRCLSNetworkResponseHandler.h in Headers */, - E112BA47CE3D96CD65F22715DD33479B /* FIRCLSOnboardingOperation.h in Headers */, - 658A1017E2281C080F250A63D17C2A68 /* FIRCLSOperation.h in Headers */, - BF67BB6DFCAA91BDA1D750970C036682 /* FIRCLSPackageReportOperation.h in Headers */, - 9B4FE54FD42A909734721EDD665B012A /* FIRCLSProcess.h in Headers */, - E841B41527AF62329C3CD808F5199F96 /* FIRCLSProcessReportOperation.h in Headers */, - 3AB3CEEC81AC6884D03AE68C6920797B /* FIRCLSProfiling.h in Headers */, - BFC196CC5EB077882137266B9B1ACE56 /* FIRCLSRecordApplication.h in Headers */, - 9D63C23D52BACE169649C0E911D38C68 /* FIRCLSRecordBase.h in Headers */, - 0342242B01A0E6EADA167A93942CFE20 /* FIRCLSRecordHost.h in Headers */, - 5BA8E865F738F2DB47A69B8A54380455 /* FIRCLSRecordIdentity.h in Headers */, - 7E42817EDBFD97F750D208355E50D909 /* FIRCLSReport.h in Headers */, - 0B822B9B67207AE5947DE538B2E30DE0 /* FIRCLSReport_Private.h in Headers */, - 9FA7282E5C8C6DC7FF06B0E2AA88C47E /* FIRCLSReportAdapter.h in Headers */, - 50D1267D273A394DA77FF141739A0832 /* FIRCLSReportAdapter_Private.h in Headers */, - 536F76D501AFFD82E1E54488FD30BAB0 /* FIRCLSReportManager.h in Headers */, - 1CB4ADB54D224D87E5991F2869113BE9 /* FIRCLSReportManager_Private.h in Headers */, - B67FB0E28FFCA3B8C42FB2909EBB5126 /* FIRCLSReportUploader.h in Headers */, - DAAF066DFEA301397BBBE5F80072A851 /* FIRCLSReportUploader_Private.h in Headers */, - BBB5C88065746C3D7414167C89AD1E0C /* FIRCLSSerializeSymbolicatedFramesOperation.h in Headers */, - B687AF398DA336FFC7304B04A4BA2023 /* FIRCLSSettings.h in Headers */, - 9BFE8A8A5EB9ED8674D0B5DAE9F51FBF /* FIRCLSSettingsOnboardingManager.h in Headers */, - 47ED33842F38E1FBB6BFF291435BB5DF /* FIRCLSSignal.h in Headers */, - 90CCDDA97E024E08FADD26CD4752B0BC /* FIRCLSSymbolicationOperation.h in Headers */, - BDD44F1CFF07108A25C920F2096997FA /* FIRCLSSymbolResolver.h in Headers */, - 49E00341E1F2194EA45A14F9F4C8151A /* FIRCLSThreadArrayOperation.h in Headers */, - C70E081685DE4CFD34A5AE12291629A8 /* FIRCLSThreadState.h in Headers */, - E0FCE871C2AC0B08E05A42D7F52F6754 /* FIRCLSUnwind.h in Headers */, - 14A8DD0D91D85DB934D8346627200407 /* FIRCLSUnwind_arch.h in Headers */, - 5EF667AA886F02487BF30C4EE80EC764 /* FIRCLSUnwind_x86.h in Headers */, - 5FC36E4EB7E12844E3CBAF983F85E711 /* FIRCLSURLBuilder.h in Headers */, - 72CDA39DACCFC8B2B1D7A59E06D4DBD5 /* FIRCLSURLSession.h in Headers */, - 9DF843CA70A2B6521E972D2E03535328 /* FIRCLSURLSession_PrivateMethods.h in Headers */, - BA94524314AC897C0BB5CD3D6DB8CB24 /* FIRCLSURLSessionAvailability.h in Headers */, - E2E034EDDDFDF4C7C023BF02025214CE /* FIRCLSURLSessionConfiguration.h in Headers */, - 259B12A7732BF180FF3B816E226E4A74 /* FIRCLSURLSessionDataTask.h in Headers */, - 81EA10308A527BCB4F3913D83C4734CC /* FIRCLSURLSessionDataTask_PrivateMethods.h in Headers */, - 71AE541D97695DBC5896B9542EEDDF37 /* FIRCLSURLSessionDownloadTask.h in Headers */, - 595552640CDB1DD99E4030146B6E9AE3 /* FIRCLSURLSessionDownloadTask_PrivateMethods.h in Headers */, - B97BAF6CEBB8EA639932F7865DF27E25 /* FIRCLSURLSessionTask.h in Headers */, - A7606E9D72F1D75FD0524B988F3A42DC /* FIRCLSURLSessionTask_PrivateMethods.h in Headers */, - 83E2A25243750B31BA250940FD8AEA08 /* FIRCLSURLSessionUploadTask.h in Headers */, - 1064B8538599B96726A044D7BE89B1A6 /* FIRCLSUserDefaults.h in Headers */, - F2DD62B5AE98AAD31AEB934A7816223A /* FIRCLSUserDefaults_private.h in Headers */, - 8CDED707F914DFCB3ECC2BE7CE6E6F2A /* FIRCLSUserLogging.h in Headers */, - C78DBC77289BD4105D250297DA0B8247 /* FIRCLSUtility.h in Headers */, - A716A4BA6812A415FF3252A6117AB56A /* FIRCLSUUID.h in Headers */, - CF9E4FB680AF4AB2A75D026D0E9B3967 /* FIRComponent.h in Headers */, - 770FE8CB4F754678BF345032AD6AEA72 /* FIRComponentContainer.h in Headers */, - 800174EB8C2ED1E3791CBCA5243F414F /* FIRComponentType.h in Headers */, - 87B66819BA5920D75901C025D09E92CD /* FIRCoreDiagnosticsConnector.h in Headers */, - E8AD3EBF4845BBB1D8D9869F22B8E916 /* FIRCrashlytics.h in Headers */, - 55712CDAA155F67F9D3C98DFF1364602 /* FIRDependency.h in Headers */, - 83E3E194D0A916B8C2C6A837E9E61431 /* FirebaseCoreInternal.h in Headers */, - A2073D96A9717DC83DE641F3EEF9807D /* FirebaseCrashlytics.h in Headers */, - 418C55DE9920C0A5FBBBE86EF34C9262 /* FIRErrorCode.h in Headers */, - CA382FA23A46F7F4FCDF19A1B256403D /* FIRErrors.h in Headers */, - 6AA2DEB4ED71E740995C68687E244528 /* FIRExceptionModel.h in Headers */, - 597BEACF21F04BE9901D3AD263FC63C6 /* FIRExceptionModel_Private.h in Headers */, - C03DF4D899E960F47142782B9B71EAAC /* FIRHeartbeatInfo.h in Headers */, - E9E7D0826FE0EBA707790E6100407792 /* FIRInteropEventNames.h in Headers */, - 9875185E38C0BFDD3823B3E980F5C66C /* FIRInteropParameterNames.h in Headers */, - ECC0613DB8AD0B0139391A3957190E3B /* FIRLibrary.h in Headers */, - EFF2E8F15675C46488D976CCD1D0D04D /* FIRLogger.h in Headers */, - 5C5E5C6275925EB8B9095AD70380F36C /* FIROptionsInternal.h in Headers */, - 872604D3641AEDD78731C2697E439A78 /* FIRStackFrame.h in Headers */, - A9299705F5E34FBAF29F4AB516144085 /* FIRStackFrame_Private.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 6EC0C35AEEBA496F9F4A023892190EAE /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 56FC6B389683EFB670BA03EC7ECA7084 /* BSG_KSArchSpecific.h in Headers */, - AF0BE7E99C8415A6467FF2DC8E797358 /* BSG_KSBacktrace.h in Headers */, - FF80291ACE5B17DB20CC2BF21467F02A /* BSG_KSBacktrace_Private.h in Headers */, - 0ED2FDAFD92EB55ACB6FD22F49F8558B /* BSG_KSCrash.h in Headers */, - 6A34757B27E7D73D7274B74157DD280B /* BSG_KSCrashAdvanced.h in Headers */, - 4B771FE63E082D045A976EB55838AD8E /* BSG_KSCrashC.h in Headers */, - 53688E900F86F67061EBBE82569FEE46 /* BSG_KSCrashCallCompletion.h in Headers */, - 29E218628AB4F1CCD21A650B478BEE23 /* BSG_KSCrashContext.h in Headers */, - 66C6279937624F871B662063764D08E3 /* BSG_KSCrashDoctor.h in Headers */, - 668086EEB7C7D45CED5900CF17EF879A /* BSG_KSCrashIdentifier.h in Headers */, - 18171D36B11BF9CF64971BC86301463C /* BSG_KSCrashReport.h in Headers */, - 791D9E7134234B71A55F950336311FE4 /* BSG_KSCrashReportFields.h in Headers */, - BD280DCD333486DA5F4DFF8DAAEED23E /* BSG_KSCrashReportFilter.h in Headers */, - FE44AE35117AF251C68CFCEAC07410C7 /* BSG_KSCrashReportFilterCompletion.h in Headers */, - B24FB381E9D98CA2A84F7F32753B7B19 /* BSG_KSCrashReportStore.h in Headers */, - 736395C3B66B745350C1945DC73FB273 /* BSG_KSCrashReportVersion.h in Headers */, - 55545B966E6065FA2CADF0FF5D0F0057 /* BSG_KSCrashReportWriter.h in Headers */, - 6CB10532AD9D8850C633A3CFB7CE296F /* BSG_KSCrashSentry.h in Headers */, - 1C63664FA2CEFCDD9576B64A028C95AF /* BSG_KSCrashSentry_CPPException.h in Headers */, - A51614BBB290E63F4D456F710FFADFC8 /* BSG_KSCrashSentry_MachException.h in Headers */, - FE845E26E3C7B1F6A918AB11BB5E5090 /* BSG_KSCrashSentry_NSException.h in Headers */, - 0042AE6747562B1F63E7C156F78BDAD4 /* BSG_KSCrashSentry_Private.h in Headers */, - 622E2F4AACA55DF8F6A5E48C3D5BDF6F /* BSG_KSCrashSentry_Signal.h in Headers */, - B2C98C0A1B1A36FF8C852A96047B6B50 /* BSG_KSCrashSentry_User.h in Headers */, - 5FBBD0BF1FE92C8C7FB6E26F99BE94E5 /* BSG_KSCrashState.h in Headers */, - B89BB820BEA721BA3EF6614EC4082F7F /* BSG_KSCrashType.h in Headers */, - 8C5B1BA4840A92F9B1AEBE1EA1761236 /* BSG_KSDynamicLinker.h in Headers */, - 53006F50104214D43DD9ECD3001BF305 /* BSG_KSFileUtils.h in Headers */, - 351D943AD2450AD56D21238EC5EC43EA /* BSG_KSJSONCodec.h in Headers */, - F56A3BE3ABD85646C2CA1A10EB587483 /* BSG_KSJSONCodecObjC.h in Headers */, - 58B7527D10B205632DD69550C4B207E8 /* BSG_KSLogger.h in Headers */, - AE93DBAE5E742A48020E413BB3351BA1 /* BSG_KSMach.h in Headers */, - 5E2744C18EE0B78FE206AC53D98BC7F1 /* BSG_KSMachApple.h in Headers */, - 69E5B6058874E49575C7372228BBE57C /* BSG_KSMachHeaders.h in Headers */, - 9FCE3BEEDBD99A18FBE5A30E3DF04D1F /* BSG_KSObjC.h in Headers */, - C1FCD6D2E9519977F4876D6C45C68D27 /* BSG_KSObjCApple.h in Headers */, - AD2FD6DDD1547FEC5CC2FDB18EE4FFC9 /* BSG_KSSignalInfo.h in Headers */, - 083349C7F69D059373F7694D0B12FDFC /* BSG_KSSingleton.h in Headers */, - 16C45A0312F58653D6EBCA31F7EB19F0 /* BSG_KSString.h in Headers */, - C18CCD1694FD5D8DF79D896CACBD50B5 /* BSG_KSSysCtl.h in Headers */, - 9199F2A1FBE0E61F7D9ED8A2753CCF25 /* BSG_KSSystemCapabilities.h in Headers */, - FFE88A730079925762CB9A1910E47588 /* BSG_KSSystemInfo.h in Headers */, - FF0B5F9F47DCF540B172C73606A9EF8D /* BSG_KSSystemInfoC.h in Headers */, - 3541FFB6E70FA048EE39A444F9065C40 /* BSG_RFC3339DateTool.h in Headers */, - 02CF88CDB941857E9C9EDA145E89C749 /* BSGConnectivity.h in Headers */, - 79ACDDF1B6A14331E2472A82459AB2A1 /* BSGOutOfMemoryWatchdog.h in Headers */, - AEAA759C9F6CC27A7481BAC760E03E6E /* BSGSerialization.h in Headers */, - 6BF87CFE8A6CE3B9B9BE3260309D8234 /* Bugsnag.h in Headers */, - D1ACF18017C8DF3EB608229E1F07EFB2 /* BugsnagApiClient.h in Headers */, - 932B0735C757A51D3A6DED49DC5D6440 /* BugsnagBreadcrumb.h in Headers */, - 3781BEDDD6EA12DCBBB8A70B05D7BD2F /* BugsnagCollections.h in Headers */, - 905D94E8C81E3E4D92885F63365C0147 /* BugsnagConfiguration.h in Headers */, - D881BDD9CC2ADE6E38BB569732FB013E /* BugsnagCrashReport.h in Headers */, - 568EF27B9FC821A59A1E531A762689B8 /* BugsnagCrashSentry.h in Headers */, - 1375C364771948036CE6F81332BA2106 /* BugsnagErrorReportApiClient.h in Headers */, - 10A94B6AE2715EA75E0F81A1DF0C3565 /* BugsnagFileStore.h in Headers */, - F262A884E6F19E78B96CDB6BE0A6BE17 /* BugsnagHandledState.h in Headers */, - EB66BFD41BEBB5D81571F76712E05108 /* BugsnagKeys.h in Headers */, - C2C6FEAC14263B0A5A00635D335ECBEB /* BugsnagKSCrashSysInfoParser.h in Headers */, - 1721261755CCF7180E95FADF717E8F95 /* BugsnagLogger.h in Headers */, - B03099E55FFA58A7071BADC9BAD0D84F /* BugsnagMetaData.h in Headers */, - 3592B3D4A8F2DDA56F56843C9975EDCE /* BugsnagNotifier.h in Headers */, - 06DA47B5D10153D2AD9BE1D3EA133676 /* BugsnagPlugin.h in Headers */, - D7D28401F9B963EE79B7DC82C8D50692 /* BugsnagReactNative.h in Headers */, - 06FCF862CE04E06F2731B612C2477CDE /* BugsnagSession.h in Headers */, - E2A3567CDB3E36CB123037C1FA6D4E81 /* BugsnagSessionFileStore.h in Headers */, - 5DC42038A463CA5D6C7F7750F3953995 /* BugsnagSessionTracker.h in Headers */, - 4CEC7888DC4843F90A1B5B5690EFD428 /* BugsnagSessionTrackingApiClient.h in Headers */, - FB24A19A33840EA04FA9D8FA75476A69 /* BugsnagSessionTrackingPayload.h in Headers */, - E73510C5132838079D9D644554350A7B /* BugsnagSink.h in Headers */, - 608FBDBD3094B7E3F913B85929E9E91A /* BugsnagUser.h in Headers */, - 2B72D7281849A8393A5DDB3D650D75CA /* NSError+BSG_SimpleConstructor.h in Headers */, - BA75D60A6ABD56D5A3997C2994DCA892 /* Private.h in Headers */, + 20597B4AA31830D973C0D549DA719033 /* RCTConvertHelpers.h in Headers */, + D5A5E45A6B3AE55F375F492CE662497C /* RCTTypedModuleConstants.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -24421,15 +25047,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 7264037671C3452F8260B850A12B5AA2 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 389AC7DDD3EC7571104E0165D8E93A0C /* RCTConvertHelpers.h in Headers */, - AE88B638E34A95BEA43FDF30E5D23C0F /* RCTTypedModuleConstants.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 731C8723858FAB0DB60F4251E854C097 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -24504,14 +25121,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 77646E794BC33A74CAFC1854F3E6C010 /* Headers */ = { + 7691E1377235BB28A9F529896405AE0E /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 5105F9EE2C2399FA711D06FAD61E3BFE /* UIView+Yoga.h in Headers */, - 00BD4A29CDAADDDA3FAFAD7A6BC05C9D /* YGLayout+Private.h in Headers */, - 2B6EF6E26A4E67698C03C01EB0FD83B1 /* YGLayout.h in Headers */, - 632A2A5EF0534C4236FE33400B9A90A5 /* YogaKit-umbrella.h in Headers */, + 72CA5125DED7240CF6F546D940C6C457 /* Pods-defaults-NotificationService-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -24539,33 +25153,386 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 8085B93DCC0D00D391B4C35F5B780197 /* Headers */ = { + 7FB1440899B31631197424CB3C537FAC /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 2BBEB97F67BFCB0C297FCB0BA023861C /* cct.nanopb.h in Headers */, - 08DCC550F2AF1AFB525E5637947A651E /* GDTCCTCompressionHelper.h in Headers */, - 92905B749E27ECF13D19CE8275D42BCC /* GDTCCTNanopbHelpers.h in Headers */, - FC8BF88A6F95C2D56F3007DC83559528 /* GDTCCTPrioritizer.h in Headers */, - C0E6CF88032F2B652D2EF6C1D4440C6D /* GDTCCTUploader.h in Headers */, - D79BBC9C82851EA6E6D98C007EFB88EC /* GDTCOREvent+GDTCCTSupport.h in Headers */, + C96875B5DDBA407587AEE0D39BEFE2C0 /* InspectorInterfaces.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 819428076633E57C82BD407B09F85117 /* Headers */ = { + 80FB1444113C9E94F05E53D15C6F9A4F /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - E7EC3CDFF005B48FA31D1509D28C9C0F /* RCTConvert+FIRApp.h in Headers */, - 6A4A79E079F587D82799D24ED1E7C0A6 /* RCTConvert+FIROptions.h in Headers */, - CFEA95947479AD072E3978BA308C6E9A /* RNFBAppModule.h in Headers */, - 13C6C04507239877C19935C697117851 /* RNFBJSON.h in Headers */, - 6112AC7F84C03D0FB98268B335F0BEC0 /* RNFBMeta.h in Headers */, - BB464AD22BAE2F92C961F8C99A3E1CA6 /* RNFBPreferences.h in Headers */, - 9CF947278DC144F6CC550E615AF3FB83 /* RNFBRCTEventEmitter.h in Headers */, - AEFF6557F209C1857ACE1611D5C7CA93 /* RNFBSharedUtils.h in Headers */, - E3FB4C82F3051EB3F455388CD7BC1513 /* RNFBUtilsModule.h in Headers */, - D32B657D547BE1E8C2D053F1E81C983C /* RNFBVersion.h in Headers */, + 1D8713966308008808AF2CCE29C4120C /* Access.h in Headers */, + D6B1752A123903CB7F7336002C074DB6 /* Align.h in Headers */, + 6E2DEC0CF72D4CCEEA35E88BA4746941 /* Aligned.h in Headers */, + F7C53EEBECE430E1D0E3F10C65584D3B /* ApplyTuple.h in Headers */, + 8803911BE03AAB7FC2FD32E9091C3413 /* Arena-inl.h in Headers */, + 4A296B707F105086AF826C612F14625F /* Arena.h in Headers */, + 485A8FAF133E892419B9A17549688A28 /* Array.h in Headers */, + 26909CC481BBD0A975E13405C296F70D /* Asm.h in Headers */, + 89013A6DFF0630C6D13CF2DEEEA681E7 /* Assume.h in Headers */, + 57A3AD09873EE8EA44F22BBF2FD6571F /* AsymmetricMemoryBarrier.h in Headers */, + 958ED40251156B3487E967A9EE8F6D34 /* Async.h in Headers */, + 595485B6D37BA39E69DFFB6B33FE5D58 /* AsyncTimeout.h in Headers */, + B2827E524051AE5967DDB9E4599BEB18 /* AsyncTrace.h in Headers */, + CEF7EB0FFE0CE09AF8937C1946D2D8CB /* AtFork.h in Headers */, + 0595DABEC9675204C4E322CB29A3E29C /* Atomic.h in Headers */, + 65DD5D1631553E1E96874C8EE0D84395 /* AtomicHashArray-inl.h in Headers */, + B8F4F7753D9026C4E4123F757B812AFA /* AtomicHashArray.h in Headers */, + 939018139DB23E4D0E2E66A95B4D6B0A /* AtomicHashMap-inl.h in Headers */, + 3C57A5998E3C56F45EB85FD136D87A85 /* AtomicHashMap.h in Headers */, + A9880C57EA9B744B76C42C4EF4578501 /* AtomicHashUtils.h in Headers */, + 11F37E96B1F528A8521E2DEAA8F5CFD1 /* AtomicIntrusiveLinkedList.h in Headers */, + C36B9283425F12ECC2050D75E1307C9F /* AtomicLinkedList.h in Headers */, + C4874BB8745D0F5C2CAB6CCD454A21B6 /* AtomicNotification-inl.h in Headers */, + 55E17DB6E0D564BB0F61FADAF54E149A /* AtomicNotification.h in Headers */, + 78E7366A8362328F55824C86CB7F021E /* AtomicRef.h in Headers */, + 134B39C8B0582CDFC9643B5EA6618A35 /* AtomicSharedPtr.h in Headers */, + 3546ED5CE75CAB5E009E202B611C43BF /* AtomicStruct.h in Headers */, + F572861425F80702F338EDE222E82FC2 /* AtomicUnorderedMap.h in Headers */, + 2B3D05273B0E0A9BF4B0761F0A8175B7 /* AtomicUnorderedMapUtils.h in Headers */, + EDF9E2C50AD21BB24559C6D83A519B36 /* AtomicUtil-inl.h in Headers */, + FA7E5B69817F25D0D615E996A920FF71 /* AtomicUtil.h in Headers */, + 60BED3285C35999D6343CEC41FE96B01 /* AtomicUtils.h in Headers */, + CBC0D7D83AC8DC707FC09ACB3A9FA910 /* Barrier.h in Headers */, + C4C03E773E3F2039EDD4608040AE1A16 /* Baton.h in Headers */, + F6546656BBCDA692D8AC0DAF2B22316B /* Benchmark.h in Headers */, + 40B8649E07A8C59F168398FD3E05D4F1 /* BitIterator.h in Headers */, + D697AF9D7C3AA5965359BAF7F01CB8F3 /* BitIteratorDetail.h in Headers */, + 48C9DF8A509B2566D2AFAA469B293A15 /* Bits.h in Headers */, + 9EE41C5E1C26BD0FC27AE776729FC792 /* Bits.h in Headers */, + 402AA162AFEAEC1B6132CB0288A3BFD0 /* BlockingQueue.h in Headers */, + C2E529124A3E05FBCD4753DC5CAC5BDB /* Builtins.h in Headers */, + 7DD0C09C604FE90E8A7194BE8C7DE737 /* CachelinePadded.h in Headers */, + 5F1FFA71A8B407128A8335A014360FEF /* CacheLocality.h in Headers */, + EA18555CD41CC2920EEFCFB2B9EB978B /* CallOnce.h in Headers */, + 85BD31E00EC5C96D4C167856A04AC9E5 /* CancellationToken-inl.h in Headers */, + 3A5D03DE5C0D231A53DD02D0791A134A /* CancellationToken.h in Headers */, + CF59274ACA4E2644E5611797A10AF8FA /* Cast.h in Headers */, + A7B19110F6C50400AC05B9A114F84C7C /* CheckedMath.h in Headers */, + E2103F6E72B586B0B789AB5AF1129ADA /* Checksum.h in Headers */, + 1372E77F2D9C1B6E7E8A31D47D360AA9 /* Chrono.h in Headers */, + 58B5B5F5980F2C3C031C83B27AEF20A0 /* ClockGettimeWrappers.h in Headers */, + A0C2A7A099376750545501AB6AC0A049 /* Codel.h in Headers */, + 9D17F4AEB3B893D699911679E3901887 /* ConcurrentBitSet.h in Headers */, + 530DE462E0FF44DFF2D4097D1F364F55 /* ConcurrentHashMap.h in Headers */, + 927992BEE5DDAF0315DF981C8C2E3080 /* ConcurrentSkipList-inl.h in Headers */, + 005D1B6FD0CAF94B962756F3647CC582 /* ConcurrentSkipList.h in Headers */, + 9DC24FFC0CCB93AB78DF3B1041915EE6 /* Config.h in Headers */, + D906CEAF253DA06916C5F4C4C0072313 /* Constexpr.h in Headers */, + B13BC297B38927E7038C469BACCDED96 /* ConstexprMath.h in Headers */, + 60C3DB96455C78B971AC1E12780020BD /* Conv.h in Headers */, + BC5940202315DE2869ADDF89548E4809 /* Core.h in Headers */, + 3A7BCDE44C29DA26A8AA3EA7B357BEFE /* CoreCachedSharedPtr.h in Headers */, + AEF90FF07FA0142CD1B5EAB04528B497 /* CPortability.h in Headers */, + 064AC196394C411BE28F19DDF9B0C08F /* CppAttributes.h in Headers */, + 7D93618A159EA534B4196ECBD2902DB4 /* CpuId.h in Headers */, + 0C25A34F69506C1703FA93EB30B244FD /* CPUThreadPoolExecutor.h in Headers */, + F894D9BC72932EE71A6908B345618405 /* CString.h in Headers */, + 04CC1236424016C5C170EF8366AAB196 /* Cursor-inl.h in Headers */, + A941D36C5A98A16B4C7D04F59C0B43D8 /* Cursor.h in Headers */, + 3FD15065DD5B71BC510CF615120A4085 /* CustomizationPoint.h in Headers */, + B92D9B88277945504CAADB5CC35CE28C /* DefaultKeepAliveExecutor.h in Headers */, + 70FD0E1BF62707D472539EA510D3CD4D /* DelayedDestruction.h in Headers */, + B53EE05F4F890F2B3C687492B3BF9EBF /* DelayedDestructionBase.h in Headers */, + 3894D991CF7F1D3CD74B7101F3A2FC3D /* Demangle.h in Headers */, + 04545590A52007AF2C55B090579D5DAB /* Demangle.h in Headers */, + 236D0A035C52490418BDFF3A6DADA561 /* Dirent.h in Headers */, + 77379788FAC491A37C432F1932F29BA5 /* DiscriminatedPtr.h in Headers */, + 11BD448B800EFA8D829DFFF520EC4DAD /* DiscriminatedPtrDetail.h in Headers */, + E0E93A84EBA20CDD445AAB056E39D70A /* DistributedMutex-inl.h in Headers */, + DE37170FE1DF4C4A49165D0441232C6D /* DistributedMutex.h in Headers */, + 4CB49DDA06B3214B63E6668E7015A02B /* DistributedMutexSpecializations.h in Headers */, + B2C53D745BBE33BD353EBF8D8092AE1C /* DrivableExecutor.h in Headers */, + B87B8695BDEF0D417CCD9B3B07E3760F /* dynamic-inl.h in Headers */, + 2FCF5F079212CB005E504CF40C4C951B /* dynamic.h in Headers */, + 27FD9762250CD5783825714901D62ECB /* DynamicBoundedQueue.h in Headers */, + 9A552D2A35F377A8BC4E5851CB5D592C /* DynamicConverter.h in Headers */, + 66EC088D09885CACB63A0B1996A7CF99 /* EDFThreadPoolExecutor.h in Headers */, + 0AC1BC9FB4F553C79F4B4B142862308E /* EnableSharedFromThis.h in Headers */, + E2678CB85A787B8F52CFC6D6ED563BFB /* Enumerate.h in Headers */, + C5F1C24380ADC624375A88C28E32A692 /* Event.h in Headers */, + B1792929E4D558B21151EC1BC3701695 /* EventBase.h in Headers */, + 7E739B036E984FDD2D816E2DA1FAFF91 /* EventBaseBackendBase.h in Headers */, + F05FDA8067FD7D1C0E1E67A69560BB9A /* EventBaseManager.h in Headers */, + B373926EB36227F58E78EAE3ECB9B8FA /* EventHandler.h in Headers */, + 49BFDCBF94337915EAD45F19726A4FCF /* EventUtil.h in Headers */, + 9D518DF59F149F1D368C6CD8732D5AAA /* EvictingCacheMap.h in Headers */, + 9660409D716F18F214C56BAAF05E1C6E /* Exception.h in Headers */, + B05662CD367FD21359CC4C8A27AE0083 /* Exception.h in Headers */, + FC63A7720B39BB353C17EC6DBA1B75E2 /* ExceptionString.h in Headers */, + A4EB397137AF42402B719E65C00F4D34 /* ExceptionWrapper-inl.h in Headers */, + 29D468554BB01EE1116FDA0ED3859FE1 /* ExceptionWrapper.h in Headers */, + 3B22D56012AD29B234EEEFC6BEB010B1 /* ExecutionObserver.h in Headers */, + D35ACE0CEEF80562686C638C5DA76039 /* Executor.h in Headers */, + 2A3EC22155B8F0F30F0593D97BF9BFB9 /* ExecutorWithPriority-inl.h in Headers */, + AE803C306F7E05141A38A7EDAC1D7DE0 /* ExecutorWithPriority.h in Headers */, + ACCBC0A492904AC439A5C4845F21599B /* Expected.h in Headers */, + 6501794A2DCC86BF8CAD68E8F519C9C0 /* F14Defaults.h in Headers */, + 5E47BD915BAFE5C0C0FD9434EA5DFBA4 /* F14IntrinsicsAvailability.h in Headers */, + 90B7136DA748BF199BB9AC94575B04AB /* F14Map-fwd.h in Headers */, + 8F18BB721E90597C34F381B4FBDAD1C7 /* F14Map.h in Headers */, + 89F6EC1FCF0F8D600C23E302E580B078 /* F14Mask.h in Headers */, + A80242B51D34FF77020DB9D101761CB5 /* F14Policy.h in Headers */, + D9738A5D5063C4AAD2E2DCA6BBBEA999 /* F14Set-fwd.h in Headers */, + DA5E041BEFF72C59C071D7258A59A8FB /* F14Set.h in Headers */, + 0040F8F0DD9089286364F8385B3299EF /* F14Table.h in Headers */, + 49CFF82F054C02C71EB543D9AD308E3F /* FarmHash.h in Headers */, + 6568AE628DD401BDCBE61AF646E45D2B /* FBString.h in Headers */, + C406FEEF31CF686493465384620506F8 /* FBVector.h in Headers */, + C6BD1291B903A8C016CFE78F28898570 /* Fcntl.h in Headers */, + C123F40DBFEC89D122E463D9E04781A7 /* FiberIOExecutor.h in Headers */, + 29949AABA20DB0E9366F79D24F25911D /* File.h in Headers */, + 8D7A34A51D1BF6496B2B25144BED79BB /* FileUtil.h in Headers */, + 5735964EABD42A40E1A4FB00D74231AC /* FileUtilDetail.h in Headers */, + 04D1BE328D5841C7FDF3E301C5CF2B9D /* Fingerprint.h in Headers */, + B1C32CD1158DB4B3623222010A8DA212 /* FingerprintPolynomial.h in Headers */, + A3FFB0CDF15C9147801E908C9F77B60E /* FixedString.h in Headers */, + 5B292C17A00ED1B61A3B6F8E1E7E3775 /* Foreach-inl.h in Headers */, + 46060379C20C4FAA7FD9337F7AA44DF6 /* Foreach.h in Headers */, + 8587D2228B4EF7D0261FB74DE8EF99F6 /* Format-inl.h in Headers */, + 35AA6CC8D0F97816A9D58A19CEE8B93A /* Format.h in Headers */, + EC2648D49060E72BCCF4EF228A121609 /* FormatArg.h in Headers */, + 4BB2C36DAB83B30496C46064533F9E6D /* FormatTraits.h in Headers */, + 797454970ABFC8DB75DEA80C02AA629B /* Function.h in Headers */, + A7F4991EEF9FEA3AB0660ED6D057E8B7 /* Futex-inl.h in Headers */, + E3D2E67EE693D1735BBA23C5B5F518C9 /* Futex.h in Headers */, + 9C44596AD88361EE037E481F11AFCD46 /* Future-inl.h in Headers */, + 85633AF74F8624D79B9F700CC67696AB /* Future-pre.h in Headers */, + B93E4EEF29EEF84B3C95C07BDCBBC523 /* Future.h in Headers */, + E32FFFE81DB576328C2027DFBFDDD91D /* FutureExecutor.h in Headers */, + E4F80941C373599F876C3F96452058D4 /* FutureSplitter.h in Headers */, + 679047F1F7EB04FD1C9F3BEF43D34E17 /* GFlags.h in Headers */, + C26FB6F2F864B104FF3EE4A1F2E8AEF6 /* GlobalExecutor.h in Headers */, + 976C56B4C53CD7753DDC2FA9A852BE4B /* GlobalThreadPoolList.h in Headers */, + 742F343DC951F6D0943301DED9E57D37 /* GLog.h in Headers */, + 9A235B58B77F5773DEFB23676FE48ACF /* GMock.h in Headers */, + 085C6C6788B855289DCC9D625CCD502D /* GroupVarint.h in Headers */, + 45DAD8A15DB92D3C574536C544059C61 /* GroupVarintDetail.h in Headers */, + 9607920C4F5D89ED64A8627215345206 /* GTest.h in Headers */, + 61A3E12DFD961FCC6A9DA80F6E4FE731 /* Hardware.h in Headers */, + 9C685250F6657B677C9751191D744104 /* Hardware.h in Headers */, + 76EB03CDF432ECDB51026A46AEF9B9F5 /* HardwareConcurrency.h in Headers */, + B23770D5542A4EEC3B0989C9F51FC04F /* Hash.h in Headers */, + D7CA9A41BEE6B7F1F33F91BEC2A2A6A4 /* Hash.h in Headers */, + 7EC9FD40B9B32FE93A86C3612F9B7C73 /* Hazptr-fwd.h in Headers */, + 037AA7D98E4705B36AD6DA948F2C99DF /* Hazptr.h in Headers */, + 84124AE25EBFFE6A589291D9F9F408C9 /* HazptrDomain.h in Headers */, + F55FA4914C9CAC4809FDA00BAF1D17DC /* HazptrHolder.h in Headers */, + B74045F762624D00FCC20B887DA4C3B2 /* HazptrObj.h in Headers */, + 9C923EDE6371EF17239F4F7972ED20FB /* HazptrObjLinked.h in Headers */, + 83ABD9CC69D169904083B7387D9F9262 /* HazptrRec.h in Headers */, + C5E6305E57CB33EF0A786E636755F86E /* HazptrThreadPoolExecutor.h in Headers */, + 17FA4798975CD4D76DFA2CA17240306E /* HazptrThrLocal.h in Headers */, + 2E747A10B8DF8CD114B01FC0F7096084 /* HazptrUtils.h in Headers */, + FCC25C0A4981E4F16C0E3E8AB119B20E /* HeterogeneousAccess-fwd.h in Headers */, + 015E62A1FD23178A45DA6E92823C5F9F /* HeterogeneousAccess.h in Headers */, + 404246BE3A5E04C3F51BA53DA62938CE /* HHWheelTimer-fwd.h in Headers */, + 3BC8A17E25A16AE5B69685FAA02CDF95 /* HHWheelTimer.h in Headers */, + C946491B429ADF2746E9B82FE02E1DA9 /* Indestructible.h in Headers */, + A6171B40A37E1034F69687E3297CD922 /* IndexedMemPool.h in Headers */, + 70592AB014726A5CC92B21CAC66CE575 /* InlineExecutor.h in Headers */, + 72A1D70A96C55BABF56C96E7421A8BB8 /* InlineFunctionRef.h in Headers */, + A1DF2260D770695708A419261895CF05 /* IntrusiveList.h in Headers */, + F40FA2995909681AF26E5DEA3A8E31D3 /* Invoke.h in Headers */, + DE7F31B717C1AFF9AE9855BA794E870C /* IOBuf.h in Headers */, + 9296EABE38970C4C8CBC5ED4C3B76CAF /* IOBufQueue.h in Headers */, + 67913F0B299F0D20A8574EDFBF77D63B /* IOExecutor.h in Headers */, + B30E412545D6605AD071B064F3CEB3C0 /* IOObjectCache.h in Headers */, + 1828B92ABC2D0B980F416A1A705DD84B /* IOThreadPoolExecutor.h in Headers */, + B4A4BB0EAC693F443AE4FF6DCC2E808C /* IOVec.h in Headers */, + 8530672DFE52B69CF52258E3A952DD07 /* IPAddress.h in Headers */, + 42FB6A12F694483E9AA4A9F7F782EF01 /* IPAddress.h in Headers */, + 5ED409C600B403347DB47FF315192F6E /* IPAddressException.h in Headers */, + 8BB6F6A8D5D7B8E662AA9CE480A597CD /* IPAddressSource.h in Headers */, + 93067C332A3635A565BB7B4C29D48B48 /* IPAddressV4.h in Headers */, + DF5E2EA62D02D4D4A1246CBB2ADB8F8E /* IPAddressV6.h in Headers */, + 4B81A8236E613827AE47E57915B19CF6 /* Iterator.h in Headers */, + 689D00BB474B03A13DDA26DF254ABF39 /* Iterators.h in Headers */, + 99606626046C468208E5F53058764E0F /* json.h in Headers */, + 4A81DC32A7AE9A5732018ECFCEDE113B /* json_patch.h in Headers */, + 6666AAD9AB8B935BD8BDFEB40203DD6F /* json_pointer.h in Headers */, + 396586DD3A1B2B90C096DC3C8D2AEE2C /* Launder.h in Headers */, + AE8ED93EFCB2EB5E2F103286196BBAE2 /* Lazy.h in Headers */, + 456CD44FA0F845BF7CD383DF7843F3F3 /* Libgen.h in Headers */, + EE8BC667B237C35A621AA66F6E3B6E3A /* LifoSem.h in Headers */, + 53A36BDEA07F386B37520635B600148D /* LifoSemMPMCQueue.h in Headers */, + BF816AB4447CFFD40BFE770CC740F8B6 /* Likely.h in Headers */, + 1F8133D40BCD1DC1E7E70084ACD1BDF6 /* LockTraits.h in Headers */, + 8110D3253B83576E967CD129392AF7C6 /* MacAddress.h in Headers */, + FD9D2B1391857EB1DA533DA12C11449E /* MallctlHelper.h in Headers */, + 7B336AF6BCA40B15F88D91B65EE144A6 /* Malloc.h in Headers */, + 26C06DF0C138BD4034D77B0C895A5C1C /* Malloc.h in Headers */, + 1B34B01AD09173BBC5538C496B9146B5 /* MallocImpl.h in Headers */, + 6D6839659D9FF6E53BE79D2C7890ED90 /* ManualExecutor.h in Headers */, + 88EA06C0214D08253801EAB5946BFB7B /* ManualTimekeeper.h in Headers */, + 6D9755259A707C938C2CC4638386369E /* MapUtil.h in Headers */, + 2D0F2C45839727BDA71B1E35E5238BBD /* Math.h in Headers */, + F87C8D54DCD81FF760596C59228DF29D /* Math.h in Headers */, + CE9F206E287A434B5255CBDBFD61798F /* Memory.h in Headers */, + 05768EFA810692190DA64DA76EBC0BE8 /* Memory.h in Headers */, + 0BA74AA382F7CC48CE4D2D08C970987A /* MemoryIdler.h in Headers */, + CECAD9C08AC9E06EFB4EFF3228A1D74F /* MemoryResource.h in Headers */, + 9014D8322A35D5B1A0CBBEEB9C9541EC /* Merge.h in Headers */, + 8463995436BC0640AB9003330E55A77A /* MicroLock.h in Headers */, + AD31F71541F4A2B0ABF44F822C2B6362 /* MicroSpinLock.h in Headers */, + 90BFEB6BD2D9B45D07BAF16DDD09BCC0 /* MicroSpinLock.h in Headers */, + B530C7AAE230E317036FEADA50B18058 /* MoveWrapper.h in Headers */, + BAFD461E05A8B4826167309DA792C604 /* MPMCPipeline.h in Headers */, + 560B893D25CFB3CE6099204CC3F920B4 /* MPMCPipelineDetail.h in Headers */, + 6673DDF5345DE77DB170780DBD0DB924 /* MPMCQueue.h in Headers */, + 8A6C3B3B30FDE9299D4B64509B9671C7 /* NamedThreadFactory.h in Headers */, + E6B11ADEAF0C851FED1210EA162F751B /* NetOps.h in Headers */, + 76783968E292A3913D292A873924E543 /* NetworkSocket.h in Headers */, + 060A7EC0A2054D3378BA7ACA6385A33E /* NotificationQueue.h in Headers */, + 9C9159682493E8E331DF45EB0BBF078F /* OpenSSL.h in Headers */, + 611F973C7F5AE3FD0849C3A797420DC8 /* Optional.h in Headers */, + C5FE71B6895178CA7BA0718E5D7A6E2F /* Ordering.h in Headers */, + B516D345CDA82EC5B3371926EFAB0570 /* Overload.h in Headers */, + 85B417A893DC287D0A57F68E501B497A /* PackedSyncPtr.h in Headers */, + 5E2AB8CFCA0F7A6B20B5DC681CA42CEC /* Padded.h in Headers */, + BA8692E70D5290EE1836F18FB4D71134 /* ParkingLot.h in Headers */, + 46ECC4DE6D6ABB55EF63B1A0B0E47670 /* Partial.h in Headers */, + 088006BBBCF81B9958053C61DDB6C3C6 /* PicoSpinLock.h in Headers */, + 9A357B71BD6AD9B5FB78741E775AF56C /* Poly-inl.h in Headers */, + DB8B3B153135F5ECF31EE1AB8F2E6DA7 /* Poly.h in Headers */, + 9520567DFF1E33FDE004255CA2E36006 /* PolyDetail.h in Headers */, + 2F64DC35A9F59D5820F03D3DB86F7C96 /* PolyException.h in Headers */, + 8A8A4A4AEAA9205C8F4C8B12DF5395F2 /* Portability.h in Headers */, + 1E988475BF6DC371658262C5C990D771 /* Portability.h in Headers */, + 8D78EC568FFCF862DCB52A7619379AC5 /* Preprocessor.h in Headers */, + 8F3404F2E966D28AF2C2B29F9AA66BDE /* Pretty.h in Headers */, + 65BB9259C00547753692FEC9237D26A8 /* PriorityLifoSemMPMCQueue.h in Headers */, + B88263CFE9B9337C1AB4D9667DA89EC9 /* PriorityUnboundedBlockingQueue.h in Headers */, + 921A650AECDA9052B65E419FFDDEF356 /* PriorityUnboundedQueueSet.h in Headers */, + 0D57F7DD6E0CB299B21247D3A60391CA /* ProducerConsumerQueue.h in Headers */, + 984FABFD18FC0EE396366BE536CAA0CD /* Promise-inl.h in Headers */, + F3654A6E076904EE3BA4D9EB5E4A5502 /* Promise.h in Headers */, + E7FF87C342CABA9F8DA69B9A88DE6C88 /* PropagateConst.h in Headers */, + BCDDD0F39B08EFCAAD199EBB7569352F /* ProxyLockable-inl.h in Headers */, + 9810B4E23A7B4ED9BD0E96374FE46FD3 /* ProxyLockable.h in Headers */, + EF03AC67826FC3FAA7B815C0F471D0DA /* PThread.h in Headers */, + 970CF579AB845CB452C58353282EB636 /* QueuedImmediateExecutor.h in Headers */, + 5DE9EA3212F1D3EC397C6CAF552A3249 /* Random-inl.h in Headers */, + 9145F5B49C89845D76BE58FD9E1ED346 /* Random.h in Headers */, + 402D6962AD538E6E50E3594A883A7B3A /* Range.h in Headers */, + ECDFD0F589A0A23AAD6BE0D550CC85A0 /* RangeCommon.h in Headers */, + 296C9B0730FC3C327E691F340B194BD9 /* RangeSse42.h in Headers */, + 6899B4222602B51E16B6BC444C70BDE9 /* Rcu-inl.h in Headers */, + CA320FCF97D98AFBA7A1948E8188AE81 /* Rcu.h in Headers */, + 17787FF8AE61CF0DF18B6E6CEE91FA72 /* ReadMostlySharedPtr.h in Headers */, + 6FCA2F372DEBDDCFDCDA656D5A6C4BAE /* Replaceable.h in Headers */, + 635AC8C91A50E2A66FB0174958259F49 /* Request.h in Headers */, + 916BEC475B5C16D4508CE4054AF30CBB /* Retrying.h in Headers */, + DE9EECAEB02E90C521E3EE1E8FA0E1EC /* RValueReferenceWrapper.h in Headers */, + 432E799AB3151AB0F05B632BD5C1A7EE /* RWSpinLock.h in Headers */, + 0988E9C96CEEC77F442AF2B15DAF1E44 /* RWSpinLock.h in Headers */, + DC52B33D5A84CFEA074BFAA9C4B4EE3C /* SafeAssert.h in Headers */, + 12AB36FFDAF2ACC6F5AC654C157335B1 /* SanitizeLeak.h in Headers */, + EE62E14DF77191186F73849ABBD334FE /* SanitizeThread.h in Headers */, + 259003BE28ACB34D29ACA844506C320C /* SaturatingSemaphore.h in Headers */, + 247B18B81BF3699B89335484EA7329B9 /* Sched.h in Headers */, + 316821A6D6464A67A56AB3343DCA87C8 /* ScheduledExecutor.h in Headers */, + F6DA5FFDC62D0B4EE86F28F1704D258C /* ScopeGuard.h in Headers */, + 75B861A4F6C192CA2320A4246AE28CD0 /* Semaphore.h in Headers */, + D7064E936651DB1B199C98919E3DD50F /* SequencedExecutor.h in Headers */, + 4965FAC76BAD5B203BCEB04891631F91 /* SerialExecutor.h in Headers */, + 7CB87F458C00A4EC6D11312E0F019199 /* SharedMutex.h in Headers */, + C9EA62D21D56735F45703DF41D755994 /* SharedPromise-inl.h in Headers */, + 43145B633FF6A614472DE97FF874B5D2 /* SharedPromise.h in Headers */, + C3038ABE6CAFF664E7F866CF64C2981C /* Singleton-inl.h in Headers */, + B26722E1965B1F4916CCBAFA24446D51 /* Singleton.h in Headers */, + 5634D3743245D9A52ACAEA08B3128EEF /* Singleton.h in Headers */, + 68247A1214CCFBDCE83A58A5350FC820 /* SingletonStackTrace.h in Headers */, + 5ABAAC805A0E6516E938929B89E18DFE /* SingletonThreadLocal.h in Headers */, + F3B7F04FA362B8A3AA3B307AA9407029 /* SingleWriterFixedHashMap.h in Headers */, + F9DED28C8F0BF383F184013D5E1D17D8 /* Sleeper.h in Headers */, + A442BD5B32CB4C51316F28EE52A9DF89 /* SlowFingerprint.h in Headers */, + 0B089ED105A2ABBA13BB1CB7BFA957E4 /* small_vector.h in Headers */, + 8036795D9FDBFCED6072CEA8AF77C6DE /* SmallLocks.h in Headers */, + 3A9AFAD65F39A476230BE77CB67A61DC /* SocketAddress.h in Headers */, + D51D97CC1C3D3A0CB163946FC25C5FA4 /* SocketFastOpen.h in Headers */, + 2C4AA4302706540F5D9CFB78B8F4A905 /* SocketFileDescriptorMap.h in Headers */, + 89797E2212FB09B884ACDE399A2B1B06 /* Sockets.h in Headers */, + 373A7ECDE84CE707C755E1958C235731 /* SoftRealTimeExecutor.h in Headers */, + CBD6809F52257DFD2A9A398DC32C1B40 /* sorted_vector_types.h in Headers */, + A8C55227E7345848AE25DF6256D11697 /* SparseByteSet.h in Headers */, + 1DB1A4C1A222094CEE75624D2FA14BF6 /* Spin.h in Headers */, + 9F0FEA0255A36C897A3DE56B17865AB1 /* SpinLock.h in Headers */, + BCD14AAD371AD7DBACD31606BCAF0EA5 /* SpookyHashV1.h in Headers */, + C3512E455DD3243F4A667ED18E596E42 /* SpookyHashV2.h in Headers */, + 179F1B7CF16289D0041B9FD46B6C9A33 /* Sse.h in Headers */, + DBC6FACD2511EA706CC5B0A95F5DAD28 /* StaticConst.h in Headers */, + D500045B4F3FEA85B3CDE453BA7F6AAA /* StaticSingletonManager.h in Headers */, + 7BE06A02899C4D21EE4B2751BFF8C3A2 /* StaticTracepoint.h in Headers */, + BA27A3CBDEF6E0931E13F60F176ED32C /* Stdio.h in Headers */, + C618C6F3031111905EFA16B7DB2507CF /* Stdlib.h in Headers */, + 34C876C26AE9A2DC16B7F2A2904AB89A /* stop_watch.h in Headers */, + DB7B67449561234FC6D01F91A37A14D9 /* String-inl.h in Headers */, + BDF55DAA84EC07ACB12B59E6FD9E58E9 /* String.h in Headers */, + 7B35ED9FDB607FF2BAC61958778E8D25 /* String.h in Headers */, + F53CBB9B5039D55ED5F17513D84F2FBD /* Subprocess.h in Headers */, + 79692A32EA834AB1A73C7CB1FCF0804F /* Synchronized.h in Headers */, + 41346D8AF9BAE91AFBF7D03542B2C00F /* SynchronizedPtr.h in Headers */, + 98AED2FFC0C16A6D054C24C13543D8E1 /* SysFile.h in Headers */, + 8B97D5122D76BF0A49B4A245FF6B161A /* Syslog.h in Headers */, + 6302E3A8C9854E1DD9131E4E68736C86 /* SysMembarrier.h in Headers */, + F14E2E18B4F2DC8E75A988E85DE77DA0 /* SysMman.h in Headers */, + EEB0ED6DDF616D30E5C8260D5E17D9F8 /* SysResource.h in Headers */, + 222557FED1601E4892088088E6C5F3E7 /* SysStat.h in Headers */, + A67FF8C3DE0A185E7F2C09BFECA17607 /* SysSyscall.h in Headers */, + 1AAEA1214FD69F25379A238D485EAD22 /* SysTime.h in Headers */, + 216D3A827A9C05623245832B45292A60 /* SysTypes.h in Headers */, + 673A3C624095CA07ADFDC209BD9482E8 /* SysUio.h in Headers */, + 9EF06D70B0E1CDDEB59C9199483CEA50 /* Tearable.h in Headers */, + 038EC993E3CC0E6730C944D1FD535132 /* ThreadCachedArena.h in Headers */, + FE56B62C2BB29649B78C5311B055B5F0 /* ThreadCachedInt.h in Headers */, + 9A1794F7C3CFD08A0834B1B7BA874C03 /* ThreadCachedInts.h in Headers */, + 2C51EBBB84C3CDE431260663E2DF2793 /* ThreadCachedLists.h in Headers */, + 70E57E5970E580AC7ABE4739A244964F /* ThreadedExecutor.h in Headers */, + 73955004694D9FE3FB39014F8184720B /* ThreadFactory.h in Headers */, + 6B253D1E348E022DBC796B0D05ACEEE8 /* ThreadId.h in Headers */, + A8F329035721A4811B6D08E6D1F9E3A8 /* ThreadLocal.h in Headers */, + 87BC99FFD3F4C09623A5C8D6EA5A8166 /* ThreadLocalDetail.h in Headers */, + 4310A299E74141136C117071DD7189EE /* ThreadName.h in Headers */, + F249DEECE91482636A20524122003F89 /* ThreadPoolExecutor.h in Headers */, + A47BD48D65FC05A97543388F60CCC4B5 /* ThreadWheelTimekeeper.h in Headers */, + EA4C621BAD9D0BDC885592CB2C3A6A79 /* Time.h in Headers */, + FAEFBE0231107508B5B80D629BE11E4E /* TimedDrivableExecutor.h in Headers */, + DD7FDFC771C3584A42A21F45609A0DF1 /* TimekeeperScheduledExecutor.h in Headers */, + 467198D61E341D7309CA386E549C8DA6 /* TimeoutManager.h in Headers */, + 782AE9703673D9E7B6373962D83D21D5 /* TimeoutQueue.h in Headers */, + 966A72D655B9C94BC0A31219C94E0739 /* TLRefCount.h in Headers */, + 1DB48BA6EF4B41FD116488C346A18C33 /* TokenBucket.h in Headers */, + C55EE5DD5BAA32F483004324C2B7671E /* Traits.h in Headers */, + B4133E795AF7C7D3E5B416E3F9A45083 /* Try-inl.h in Headers */, + 8DE47431F6BBBA3BCD7EFF8AB414BB88 /* Try.h in Headers */, + 84179ECCE7AA9C97A327A6401F722F80 /* TurnSequencer.h in Headers */, + 1B5250910A8378105768CC1505F2633E /* TypeInfo.h in Headers */, + 2DCFFD1F366CEFD36684503C59492F2B /* TypeList.h in Headers */, + 0E9D3660817D729B205D8A6BF9F41C63 /* Types.h in Headers */, + 7CC599917A6E93AB56DD25ABBD9272C3 /* UnboundedBlockingQueue.h in Headers */, + 1C6496929ABD278E240091EABBA34A78 /* UnboundedQueue.h in Headers */, + 6438CE3547CB26B43D1B5E98E6F3482D /* UncaughtExceptions.h in Headers */, + 027429AF288C5AF3C5B78ABB422A882F /* Unicode.h in Headers */, + 85B8F33ABCFCEA5D376A43B1DB3AD8FA /* UninitializedMemoryHacks.h in Headers */, + 7D9978DD97658EB943E1EA22B33DAA08 /* UniqueInstance.h in Headers */, + B33B0D66A8DC44143120627EAA48AD19 /* Unistd.h in Headers */, + 16CA9E974ECC97F08D260DFC96D1EB65 /* Unit.h in Headers */, + 0E11052DFA9B41FBC16674C954577139 /* Uri-inl.h in Headers */, + C5180F74035A4324B3B91F835CBD9C4B /* Uri.h in Headers */, + 5A45D5194444588369ECA279EFBEF9EE /* UTF8String.h in Headers */, + FC4849280C2CCF6BA68B6EE0C0D7034B /* Util.h in Headers */, + EECAE7C1CFCFA1C953F0F4FD74697DCD /* Utility.h in Headers */, + AA0BFC9BC59DF4049037E1DD10B705AD /* Utility.h in Headers */, + 91F4D8CB03F3BBCE4923A59D78A728E1 /* Varint.h in Headers */, + E86D442FF5731A59E3C3E938879B3EA5 /* VirtualEventBase.h in Headers */, + 15566368B07C8FF1757B356B83890F50 /* VirtualExecutor.h in Headers */, + F19164904B4C3E07CAF375DE95909F1C /* WaitOptions.h in Headers */, + 93F3E16A0AE33535CD7E648C75BFD070 /* Windows.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -24578,13 +25545,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 857B883361190310EF3FBC0E2EB52CA0 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 860CCBCCE0FBBEDE759D677578A1E130 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -24594,6 +25554,43 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 887231A49B759C36385E79455FF2F17A /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 11016D83FDA992323281FA44C39B2C0A /* NSTextStorage+FontScaling.h in Headers */, + 504CEE5F9FF06D29D232A1CA492B5600 /* RCTBackedTextInputDelegate.h in Headers */, + 96B99A41C40A1A3169D98FBD78D534F8 /* RCTBackedTextInputDelegateAdapter.h in Headers */, + 9ABB33AEEE09EBBC624F71BA25EDB4A0 /* RCTBackedTextInputViewProtocol.h in Headers */, + E333596113348FB3D30D794BDE155D03 /* RCTBaseTextInputShadowView.h in Headers */, + 7D9E6443BD24A99D1B173DCA77B5218F /* RCTBaseTextInputView.h in Headers */, + 53CA5D35728E9D0983ABACA0581B5123 /* RCTBaseTextInputViewManager.h in Headers */, + 78899AEE1FE20941C866289A09E406AB /* RCTBaseTextShadowView.h in Headers */, + 8A098B3129C68AA270BDF0E6212E6B8B /* RCTBaseTextViewManager.h in Headers */, + B9B61BFCB52244663AAE509BAD50BC13 /* RCTConvert+Text.h in Headers */, + 333D12D69079F2758E9D420A9DB33103 /* RCTInputAccessoryShadowView.h in Headers */, + 34EB58E99226DB3F518AA6E287587D9F /* RCTInputAccessoryView.h in Headers */, + 178286487A3917A52ADDA30234B596A8 /* RCTInputAccessoryViewContent.h in Headers */, + 3794DEFCE1137CAA39E051791D6F57D7 /* RCTInputAccessoryViewManager.h in Headers */, + 167F60DF201EAB0EC7ECECFB82E1FA09 /* RCTMultilineTextInputView.h in Headers */, + FB85BD84C6D686B07BB2BEC64973CD3C /* RCTMultilineTextInputViewManager.h in Headers */, + F7D92A1BA55DBFAAB8644E21271B2079 /* RCTRawTextShadowView.h in Headers */, + F5501B9BD875517E4B2EC3FBC896C4C7 /* RCTRawTextViewManager.h in Headers */, + 15CFAD48298CA678AEDA3667952DED21 /* RCTSinglelineTextInputView.h in Headers */, + 11C23AEF2F38006EC578194CFBFF805B /* RCTSinglelineTextInputViewManager.h in Headers */, + FCFB43F70DC48824AC9E96CFA0F6553B /* RCTTextAttributes.h in Headers */, + 4F95A6314EEBFB019A803250EABDD951 /* RCTTextSelection.h in Headers */, + 4211D833BE8D2195686F497A99A9DC54 /* RCTTextShadowView.h in Headers */, + 64292AB7F050E845946ED2FFA659A8D3 /* RCTTextTransform.h in Headers */, + AE871159CF90726BE1CFFFF3907799EB /* RCTTextView.h in Headers */, + 3A894C316EDB26C15B5AB26BFC368B9A /* RCTTextViewManager.h in Headers */, + 83275ADA5A6DB026C1CDBE784270C59F /* RCTUITextField.h in Headers */, + D6D72FF37F4A4847471FA94F09191175 /* RCTUITextView.h in Headers */, + 84634F1E1435697C00C422F41292E26D /* RCTVirtualTextShadowView.h in Headers */, + EB85F554E3C07512319B854B78F101F8 /* RCTVirtualTextViewManager.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 8AA23FDBB4ED1E12D4B722C831D22033 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -24631,6 +25628,31 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 8CD73E24A416482310BBB269007E9E14 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 005FDB5737EFC91525B5B3A06BFAD6A9 /* FBReactNativeSpec.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 8CDEA51D5EE9A846984232B49749C1C7 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 44C30A49FFA6E8FF123B92A83F76D90F /* RCTConvert+FIRApp.h in Headers */, + 15338B99711412BD96A698765E0B1321 /* RCTConvert+FIROptions.h in Headers */, + 296B36145E06FF6D567226927EC8ACEF /* RNFBAppModule.h in Headers */, + 06D66457A9DCD30BC0265FE278C1D00B /* RNFBJSON.h in Headers */, + E30B1A23959255EC0E8B0D2B79865C73 /* RNFBMeta.h in Headers */, + 254B0BF69C96F789ADFB18FA9AF72268 /* RNFBPreferences.h in Headers */, + C36F9D27CCEF65B13958231B7A8507DA /* RNFBRCTEventEmitter.h in Headers */, + 09C38BBB9DF1A26387E7925892790C42 /* RNFBSharedUtils.h in Headers */, + E981E67817B348038BCC8545CE70A25A /* RNFBUtilsModule.h in Headers */, + 8CDCDE18C697839C023F356FE9EDADF3 /* RNFBVersion.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 8DBE14802236EFF0F239F6873C8F072F /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -24651,6 +25673,35 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 8EF4BA14C36A9A298DD1301C1B152BF8 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + B59F6BBF55F0B4C9AF524FFF1EDD30A0 /* UMAppDelegateWrapper.h in Headers */, + 63C8BF6584365FE5CCAF3F31672FCB1D /* UMAppLifecycleListener.h in Headers */, + E33EB14E3EDA09265E5DE985BBBDD2FE /* UMAppLifecycleService.h in Headers */, + 2C1A730FBE5012A1920AC739E1CD10AC /* UMDefines.h in Headers */, + 328252FB5DC2DF774B6902BE393ADB09 /* UMErrorCodes.h in Headers */, + E1BC0D14ED3A587781CAE3748E5012E8 /* UMEventEmitter.h in Headers */, + 3905638F5D114B5957346FAB5DE79EF9 /* UMEventEmitterService.h in Headers */, + 0D4033D5C3933CE042605CE73AEC6F2A /* UMExportedModule.h in Headers */, + 007D63251D200645B5FADAF36DED156C /* UMInternalModule.h in Headers */, + 9FDCAB9E0D704899E93E71953BCDE16B /* UMJavaScriptContextProvider.h in Headers */, + B44DEBB13C380A2262EEBAB1E9819100 /* UMKernelService.h in Headers */, + EB04398384E73EE07BD888F6792DD980 /* UMLogHandler.h in Headers */, + D6417458F7CBA6609D7995D851BD4FB9 /* UMLogManager.h in Headers */, + 487905310AB081D904E4C522B81EEE63 /* UMModuleRegistry.h in Headers */, + EC61B0BE381C36711C2C87B124C01AE9 /* UMModuleRegistryConsumer.h in Headers */, + 1D4C0FF9FEA112E531027830F20B689E /* UMModuleRegistryDelegate.h in Headers */, + 976E2CF54F0AEDC5BDF05F775B1DD1ED /* UMModuleRegistryProvider.h in Headers */, + 91413F1EF37BD8FA6A1CBC584FFF7644 /* UMSingletonModule.h in Headers */, + 1E70EA50F887C38D2F8DECBBD3BC1EF9 /* UMUIManager.h in Headers */, + 9145E6F9C497F86A5A5696818E016C54 /* UMUtilities.h in Headers */, + DFE59671B86E2E11EC0F3234177CDD9B /* UMUtilitiesInterface.h in Headers */, + 6D65DABCE3BA9864F29473D0B6975BD0 /* UMViewManager.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 8F155CCA5E2429F0E2369C269756BF6F /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -24660,135 +25711,10 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 917316BD091596E033026B922C981708 /* Headers */ = { + 93B10C85C1E32E3902F2A5C804418F05 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - D05125EE35E520E3E9AE90F4E588A56F /* Allowance.h in Headers */, - 20E9B66BE5D3668CF3349AC8CA2209B3 /* AsyncGeneratorShim.h in Headers */, - E96017BD639E075DCD986CE193805B12 /* CancelingSubscriber.h in Headers */, - B1092204B20F8417F1D41A7CC73DFA06 /* ChannelRequester.h in Headers */, - 550B7C07AB667154E6370191A23679DB /* ChannelResponder.h in Headers */, - 248F78FAC55BBA2239B83513C94DABA9 /* ClientResumeStatusCallback.h in Headers */, - 0856BA8A5FAC0E6F2A9789590A444037 /* ColdResumeHandler.h in Headers */, - F48A707C2120FEE7C964AFE728F07E6A /* Common.h in Headers */, - EAF73842E237D1970C5052059A14E323 /* ConnectionAcceptor.h in Headers */, - 37C067B3195F088E56AFFA428230E73C /* ConnectionFactory.h in Headers */, - 09894495865BFCC23069E0779689DD3A /* ConnectionSet.h in Headers */, - 1EEBFE345E42CDFEEE11E7EA199986A6 /* ConsumerBase.h in Headers */, - 1ED14B3689F135E72A87F630726C23D7 /* DeferFlowable.h in Headers */, - FE43B9E6C8D8CEBC5E40ADB8411FFCE2 /* DeferObservable.h in Headers */, - A56D4F3788FB516B0411932137026724 /* DuplexConnection.h in Headers */, - 9A327A9C8A9580F7BBCE76B89CCE5267 /* EmitterFlowable.h in Headers */, - 734EE339D157B656A1E96A4C5BC1C61C /* ErrorCode.h in Headers */, - 6734D7C2C94787AB6BD29F96E1B4D1E5 /* FireAndForgetResponder.h in Headers */, - DBF97A0339381FA0FFAC4E7D150BBF1E /* Fixture.h in Headers */, - DBD6364290F60D7AE034FC194936D145 /* Flowable.h in Headers */, - AC61928AC253F2947EA636A677E63030 /* Flowable_FromObservable.h in Headers */, - 01D0FD1AA12501DD8BBDA4CF52907868 /* FlowableConcatOperators.h in Headers */, - D71D560281D155476B0448B03C3C896C /* FlowableDoOperator.h in Headers */, - 8674F959453A32B9649275674294E037 /* FlowableObserveOnOperator.h in Headers */, - E1C9B71A4922A8BB6BAF9D61EE6713F1 /* FlowableOperator.h in Headers */, - F1C04455D19600434E83B96108F2F367 /* Flowables.h in Headers */, - 5311D68E07D17C0948FF652E5E96910B /* FlowableTimeoutOperator.h in Headers */, - 088E883D44288D220ED32814F79EE1A6 /* Frame.h in Headers */, - F57BB923955752857C09D19789A7A383 /* FramedDuplexConnection.h in Headers */, - A403D0798F75F135A7B06049FEFE0426 /* FramedReader.h in Headers */, - 01AC24EC2184E06E61D6F6F8381D3FE8 /* FrameFlags.h in Headers */, - 982155C48A7021CF16135314397F1BC8 /* FrameHeader.h in Headers */, - 65F692C11F8CDFD32819C75122D91529 /* FrameProcessor.h in Headers */, - 33E54D78AAD85A6AC7A973A1FE5B4616 /* Framer.h in Headers */, - 83E3019758B88936BC88BFECFDEB9057 /* FrameSerializer.h in Headers */, - 43BE1E54D2432B5F526B4B18F0058271 /* FrameSerializer_v1_0.h in Headers */, - 273923A442659046DA710F2396E12787 /* FrameTransport.h in Headers */, - AD9FE3139BF87EBD9ED0F9E8FE4A7100 /* FrameTransportImpl.h in Headers */, - 6C000CF5F64E647472744C017F7164B4 /* FrameType.h in Headers */, - 36BFFE1C43E44C07DDDA50D0F9F18132 /* KeepaliveTimer.h in Headers */, - 5AB452D42596CC663FEBA330EB078710 /* Latch.h in Headers */, - 50266286AA06D79D6AC43D771E9BD842 /* Observable.h in Headers */, - 4E3E344F081E7724891BC1239F48FF41 /* ObservableConcatOperators.h in Headers */, - 3CE4C5D474BB4C8B9040421B240EC9C4 /* ObservableDoOperator.h in Headers */, - CB1A1D5871DA51A5CC8AF1239DC478FD /* ObservableOperator.h in Headers */, - F84B4AE2AD4E241C7F0D2974FEAE2357 /* Observables.h in Headers */, - E5A6B10AFA65F8C3DBC7CCA3348E80F6 /* Observer.h in Headers */, - 9A759E5C9FF1AEEE7F6D4A524A6EA493 /* Payload.h in Headers */, - 6B01DEB0C2FEEDCEAAB967C818D1BED4 /* ProtocolVersion.h in Headers */, - B91DC43EC3EECEA7750AA172636128CD /* PublisherBase.h in Headers */, - B8BEC41BD4A147E19C1B528FECD2975F /* PublishProcessor.h in Headers */, - 0283EFFFE173A65A36B3EB13739EA931 /* RequestResponseRequester.h in Headers */, - 32BC9D69E3FC2C6D5A820D8746FD16C5 /* RequestResponseResponder.h in Headers */, - 71AE8FD9674E6779BE7C161EA462281E /* ResumeIdentificationToken.h in Headers */, - 1B1DE47BBB33CC0516E1F6795B7BC720 /* ResumeManager.h in Headers */, - 3A08FBFB53A38C2A1A0E71344CCA174C /* RSocket.h in Headers */, - 5E73B2E57360BED96C5211D76C84DFD4 /* RSocketClient.h in Headers */, - 0331477A73C98188DAB7AF688879A915 /* RSocketConnectionEvents.h in Headers */, - 4CE6D8BB6BD6A5F4C482013F85CF8727 /* RSocketErrors.h in Headers */, - E0DFBC1B4CDB50066A06D702EDB7A048 /* RSocketException.h in Headers */, - 3B92BD1F3C4C7D4BAE5769093FDE13C9 /* RSocketParameters.h in Headers */, - 8E2616EA0791DDAF44B4CC294DDAD401 /* RSocketRequester.h in Headers */, - 31EB776BDB324DDFFF618177EE4830C7 /* RSocketResponder.h in Headers */, - 6B180E5EFF834BA9C8224FF6C99098C1 /* RSocketServer.h in Headers */, - 53C891A6385352A1D62281432F29B6ED /* RSocketServerState.h in Headers */, - 52BD4D6331F5D3CEF7E07658DCBE412E /* RSocketServiceHandler.h in Headers */, - 13D23B3BAB8CF7D561C043053CD50CA0 /* RSocketStateMachine.h in Headers */, - FB4447529B3F3EA4DD3A42A968307CE6 /* RSocketStats.h in Headers */, - 00F6E7AC074DBD1178E71C414E19B33A /* RSocketTransport.h in Headers */, - A3F7D707879A677B502ADDCC7C32A822 /* ScheduledFrameProcessor.h in Headers */, - 19F2492016F32C860899A593337A606D /* ScheduledFrameTransport.h in Headers */, - E267F1B0D559FA8608FF5D8C599C87F9 /* ScheduledRSocketResponder.h in Headers */, - 6062A1ED2F131A5F90684467525902A3 /* ScheduledSingleObserver.h in Headers */, - AF31CDC7D3D344F81A4089378CBA93D0 /* ScheduledSingleSubscription.h in Headers */, - C60370730B64FACB81EBC4DED2EC3C66 /* ScheduledSubscriber.h in Headers */, - 8EE60655ED2E66AB35480E63E444A60E /* ScheduledSubscription.h in Headers */, - 849959EE0BA06E2416135B4049E59917 /* SetupResumeAcceptor.h in Headers */, - C9CA2D576A1C8A85395C1BC710980977 /* StackTraceUtils.h in Headers */, - 894B56376DB3875A4E116D9D30E75156 /* StreamFragmentAccumulator.h in Headers */, - A467A52923DA9B89D0726B36B21A2EC2 /* StreamRequester.h in Headers */, - 82FCD057B97DA5038B33C0E55925C40C /* StreamResponder.h in Headers */, - 6AC16E42046F7857B97F7A3562C16E02 /* StreamStateMachineBase.h in Headers */, - 842C69C1AC39FB9DAE3131B9F214805F /* StreamsWriter.h in Headers */, - 2E4D84051D41ABE41DC2E23BE85E30E6 /* Subscriber.h in Headers */, - BF87FF4C58C5344F8CA31925E21CB32F /* Subscription.h in Headers */, - 529D94BB91B2C268A0D04296F351055B /* Subscription.h in Headers */, - 2D1163089AD6C3E146FE3EB5CBCB2934 /* SwappableEventBase.h in Headers */, - 0E5D20F170500F1669CEB861B9867B61 /* TcpConnectionAcceptor.h in Headers */, - CDDAB42EE52D15AC172595DCE3BADF02 /* TcpConnectionFactory.h in Headers */, - F8B1F4381BD87E10E6433EA587C9D45F /* TcpDuplexConnection.h in Headers */, - A2629E206CDEEA1C32E2AB02574FB0AC /* TestObserver.h in Headers */, - B4A306BA67EFEC3EEB5FA91C1C89623D /* TestSubscriber.h in Headers */, - 687D862BA1C1C662887CEED75758BC0D /* ThriftStreamShim.h in Headers */, - A3C1976DCC001DD9346DABDCC01247C1 /* Throughput.h in Headers */, - CB989E3A517112AB092D4235AD7E8213 /* WarmResumeManager.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 9518294DD7AB829B129EEA0D7E5E499C /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - F6299AC5DCDD8CE06277B980BE1AD2E3 /* LongLivedObject.h in Headers */, - 766C5F78A799B969674FC4D89735B36F /* RCTTurboModule.h in Headers */, - 600AC8B4C95FAB38D708CB5489550A43 /* RCTTurboModuleManager.h in Headers */, - 09C483DDC8AB541C9248630838533DB5 /* TurboCxxModule.h in Headers */, - 8F03661183D2F9B3766266878A7D4DAF /* TurboModule.h in Headers */, - 1E82CAD3162B163379A6C726884E083A /* TurboModuleBinding.h in Headers */, - 0A13B293A6840C406C5D0C69CEB6CF18 /* TurboModulePerfLogger.h in Headers */, - C1E11C92911E5AB9158E2903FF73A0D8 /* TurboModuleUtils.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 964EBE035A4A01988A8816A99B8806D0 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - DE141D9D8A59E7BB0A7EB5457FDC36FF /* decorator.h in Headers */, - AE97AE7ECD9554CD7EA6ADE6C7322C09 /* instrumentation.h in Headers */, - 382E43A007BFF80D6822514CACDC6C2E /* JSCRuntime.h in Headers */, - 73F89642269BCCD51F961966E1F0E7CE /* jsi-inl.h in Headers */, - 711767B2461D55BD30F4E88AFEC01EA8 /* jsi.h in Headers */, - ACC69464B363CFA986E1EA156755CCC1 /* JSIDynamic.h in Headers */, - 753272F211E5238861890513D4620984 /* jsilib.h in Headers */, - 44BF937C2360447B641F067EFEFDFA0A /* threadsafe.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -24801,54 +25727,19 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 9A16AE39033C60FD6046BC3BCE08EFE0 /* Headers */ = { + 984C8E2F9CB427774962B5D5A39BFDB4 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 9DF149278FC34C78282BDC558D4EB088 /* alphai_dec.h in Headers */, - 1F97D978DD4C9A27431EDB39C99055E4 /* animi.h in Headers */, - 709292298C8275D40B546246B8D779C0 /* backward_references_enc.h in Headers */, - 1A7084650196F539D6E727E73A037599 /* bit_reader_inl_utils.h in Headers */, - 378B77697294792BD179C185523F6950 /* bit_reader_utils.h in Headers */, - 32648D1095453B2BC0D24FF6CA2E32FC /* bit_writer_utils.h in Headers */, - 0752BBE6B0BC96F73C47F7FCC16C3C4A /* color_cache_utils.h in Headers */, - 17549BBECB7D90635E5D36E9F5BE8B1D /* common_dec.h in Headers */, - 8C77963E491A79419458208A31FA1A7C /* common_sse2.h in Headers */, - CFC42EF5F9AEDB8D3FC9A01837C19166 /* common_sse41.h in Headers */, - 0DC63C2CC017114CD2873F9972960335 /* cost_enc.h in Headers */, - DB5B46E4B13B21942A608C38709619D0 /* decode.h in Headers */, - A5E4EF8D5EEA9008EB2AA4B08EB5860B /* demux.h in Headers */, - C89ECC4C1FB476EF4E939D2329345C7B /* dsp.h in Headers */, - B9524464C264ACFE1D851B2D06B4C49F /* encode.h in Headers */, - 99D691DB6CED5EBD5792D297751AFB2B /* endian_inl_utils.h in Headers */, - 97DD8CEB5527683983E515401F43F3AA /* filters_utils.h in Headers */, - 93D7D9F83ADE99022A75804C6F58FBC3 /* format_constants.h in Headers */, - 1FD863D6260E193FDCFE5FBD7335BDEC /* histogram_enc.h in Headers */, - B79A65F10E89813D11FFDB4327EBB13A /* huffman_encode_utils.h in Headers */, - BDF36BDAC8009EEEE90A62CAD258816E /* huffman_utils.h in Headers */, - E858F7D5878667818E53B2331794D9F1 /* lossless.h in Headers */, - 9CE707DAE23A72C2DC8C86953464378A /* lossless_common.h in Headers */, - 5765E8955B80B104A741B034BAF079CF /* mips_macro.h in Headers */, - AF9B0F7A753E1E6EFDE5F5C22631AC57 /* msa_macro.h in Headers */, - 4684AEEB20C828786C322839C0BAD816 /* mux.h in Headers */, - A1073BC32AC8CF68647443FBA3099EDE /* mux_types.h in Headers */, - 55ECE01E65351A604B3F4E49036DB8C8 /* muxi.h in Headers */, - F685EFE683930DBDD2BA287CF77C2BDD /* neon.h in Headers */, - FD13C96D9DB42DA1F3DB83BCF6A4EB61 /* quant.h in Headers */, - FD816F1260E300F1962929516E6E3FF6 /* quant_levels_dec_utils.h in Headers */, - 0E4F17D4B1E440C16FFB4BA56B1C3793 /* quant_levels_utils.h in Headers */, - 676B40AB4FF3D355E60910021628EF82 /* random_utils.h in Headers */, - B65AC7880464CCCB5374BBBF9E87AA2C /* rescaler_utils.h in Headers */, - 0DDA42B55AC582E90AFA18C9F991A177 /* thread_utils.h in Headers */, - 68BBBBF3D1D2B9F8E2855D32E84B96B6 /* types.h in Headers */, - 0A2B583B1426132EE06162774F03440F /* utils.h in Headers */, - 28B9766E4D2096724B753E56B3E2F648 /* vp8_dec.h in Headers */, - DA927E3A65AB77F6EF1CB19193C7A2D6 /* vp8i_dec.h in Headers */, - FD22E54C8E11CCF6D50C4B751A821858 /* vp8i_enc.h in Headers */, - 813531654597C927813F20787EA3217B /* vp8li_dec.h in Headers */, - 4D46CEE51FF2074DF657E50C12AE9669 /* vp8li_enc.h in Headers */, - 2B3256BA491DC6508EAB17BA44C0D9BE /* webpi_dec.h in Headers */, - DE3DD7AE80760AAAA9172BCB6FA4EC79 /* yuv.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 9B501F7CA708C4A2E6FE4AC772517F27 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + E69A3E96DC48CAC5F62DB2C99EF60952 /* JSIExecutor.h in Headers */, + 114F4718FDDDBFD9FD544656F5E57C21 /* JSINativeModules.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -24887,6 +25778,143 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 9FEB9B117DAEEF5122BD92A1808CEBCE /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + A067FEE71F7CBF7E7ACE1F844CA3BF56 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 8B710645EC5AA2DACA3445C51FB82FFF /* crashlytics.nanopb.h in Headers */, + C7C1574B8782249D7BA1D934090957F8 /* dwarf.h in Headers */, + 59F6D34C25A88847AF8335D9E4FF1D5C /* FIRAEvent+Internal.h in Headers */, + 66BCBD15AB1E7055EF4307A53937A2E1 /* FIRAEvent.h in Headers */, + F346B3C863F2759CFDD3C928B7889B25 /* FIRAnalyticsInterop.h in Headers */, + FD129BC6B9313BFA23A0215B7954E1A9 /* FIRAnalyticsInteropListener.h in Headers */, + D5F055E6D09FB50DFC8C8803944C6797 /* FIRAppInternal.h in Headers */, + D13EF0014C8F8FA12C590F99457D9E70 /* FIRAValue.h in Headers */, + 973E219025889250EFE8533DFE8FF0D5 /* FIRCLSAllocate.h in Headers */, + 11D7CFEEC5EE5E2EC2DB4FE9B96FF92F /* FIRCLSApplication.h in Headers */, + DA5B234D2C7447805A850DD2CF2ACD7C /* FIRCLSApplicationIdentifierModel.h in Headers */, + 7D88EE1929DEFE96EF497F85DA08C04E /* FIRCLSAsyncOperation.h in Headers */, + 1D3E4DAA9D20125343E2A9B507B98E45 /* FIRCLSAsyncOperation_Private.h in Headers */, + 255F950E8099EED4CECC91F825B3B86A /* FIRCLSBinaryImage.h in Headers */, + 8E3971C08DB59B15538760096809208F /* FIRCLSByteUtility.h in Headers */, + 1A59ECBBBF291915A95AF29FB03136B3 /* FIRCLSCodeMapping.h in Headers */, + B7FAC62809E437CDEDC06940F32E5E7B /* FIRCLSCompactUnwind.h in Headers */, + 56ED895217017BD48610677C02E2FA85 /* FIRCLSCompactUnwind_Private.h in Headers */, + 676492E9DD248E0948A9709BA125FB98 /* FIRCLSCompoundOperation.h in Headers */, + DA26A62676193E5AE666016857349688 /* FIRCLSConstants.h in Headers */, + 8577C9A386712B9ABF982FE880A1072D /* FIRCLSContext.h in Headers */, + E007E02271F546E9B8D8376023177D50 /* FIRCLSCrashedMarkerFile.h in Headers */, + D39FCD8AD6F41BD4D52BC9BC3069712B /* FIRCLSDataCollectionArbiter.h in Headers */, + F893EEE93FE9E361D5164F9A36039008 /* FIRCLSDataCollectionToken.h in Headers */, + 067E292CEC4E08787006F729EF7D5639 /* FIRCLSDataParsing.h in Headers */, + D92707BDC9E09F40EF5EF92F91137001 /* FIRCLSDefines.h in Headers */, + B0DA64A8BB081A5E63787205F75BB660 /* FIRCLSDemangleOperation.h in Headers */, + 13C7BD20D3113864BABE20B2F99D7BAF /* FIRCLSDownloadAndSaveSettingsOperation.h in Headers */, + 845985CF5A68FF849D17450459946D3F /* FIRCLSdSYM.h in Headers */, + C2F1D652887DB52DA555C2A06DECE80F /* FIRCLSDwarfExpressionMachine.h in Headers */, + 94E8A69947F3D20A3B835B5DA9876061 /* FIRCLSDwarfUnwind.h in Headers */, + C2D371BCDE127B5878F0FF77DFCDDEF3 /* FIRCLSDwarfUnwindRegisters.h in Headers */, + 70BA92339B45B7035005EDC43DA9163C /* FIRCLSException.h in Headers */, + 2DA5B6299698F0399C184E699FA70120 /* FIRCLSExecutionIdentifierModel.h in Headers */, + DF4B52A0F364CE66DE67D667D69DFC2D /* FIRCLSFABAsyncOperation.h in Headers */, + 0046ADBA078ACE2D5DB447D46CCC1899 /* FIRCLSFABAsyncOperation_Private.h in Headers */, + 78199885E36C4A211D13CE556CC88F3A /* FIRCLSFABHost.h in Headers */, + 0E03ED4005DD6655E3DFC600FEF385FA /* FIRCLSFABNetworkClient.h in Headers */, + A0F985796CE79ED953E93EC40DDB214B /* FIRCLSFCRAnalytics.h in Headers */, + DDF6DFA184C997891626C5C3A47C257B /* FIRCLSFeatures.h in Headers */, + 61A5AB33E679B61B2331215BDECC6405 /* FIRCLSFile.h in Headers */, + D8AFFF6B833110971D9FF24ECBE9D53C /* FIRCLSFileManager.h in Headers */, + EF2EAB38780976FD8FB6EC7D76B06051 /* FIRCLSGlobals.h in Headers */, + BF5652FC75DEB65387D6A531F402A0D4 /* FIRCLSHandler.h in Headers */, + 191381381246BD51F53D82A3FAC983BB /* FIRCLSHost.h in Headers */, + CFACDE4788C46861F0CEACE722EC0289 /* FIRCLSInstallIdentifierModel.h in Headers */, + 65DDAAA470834D29BA1275BC6B046830 /* FIRCLSInternalLogging.h in Headers */, + 6103BA579E4EBDA8905021EE51B42818 /* FIRCLSInternalReport.h in Headers */, + 60877E6E89FA799A74973B8A083F844D /* FIRCLSLogger.h in Headers */, + 98D8061FB7CA86CC8EDFA009792BA5F7 /* FIRCLSMachException.h in Headers */, + 297A29978B37E09128C3AB079E82B03F /* FIRCLSMachO.h in Headers */, + 4E9728DDD2540A598B4A2EA1987D3A06 /* FIRCLSMachOBinary.h in Headers */, + 172889FF5706CEC02CCA7B1586449BD3 /* FIRCLSMachOSlice.h in Headers */, + 99F6FE2431580AE74D0EBBE8F19DF850 /* FIRCLSMultipartMimeStreamEncoder.h in Headers */, + 87E01C152DAB64EDBA5630CF2A452E5F /* FIRCLSNetworkClient.h in Headers */, + 36E6AFE617AE7AB8850CC1E6397F4B66 /* FIRCLSNetworkOperation.h in Headers */, + 68D246EA7FA9E1083F1E404E4C4A3970 /* FIRCLSNetworkResponseHandler.h in Headers */, + F337F1DB7A57DD1C80FA03307D48110E /* FIRCLSOnboardingOperation.h in Headers */, + 51D3700FEEFA90864982B1032E26BF9C /* FIRCLSOperation.h in Headers */, + 0D46A258DC75D21C32E1EE87F82A5679 /* FIRCLSPackageReportOperation.h in Headers */, + D0097323F911AA507C33D0394B4A737B /* FIRCLSProcess.h in Headers */, + D2CC01F33EC29210743242BD1913E7F7 /* FIRCLSProcessReportOperation.h in Headers */, + 83000B2E422499D45FBF61BCF36CEB93 /* FIRCLSProfiling.h in Headers */, + 26BC6B57BA643B8EF2D8C2502E412AA7 /* FIRCLSRecordApplication.h in Headers */, + 57EA197249DC5CC52EFE8F17C9427B3A /* FIRCLSRecordBase.h in Headers */, + 568F5CB571EFC06386733DFBA6509666 /* FIRCLSRecordHost.h in Headers */, + 754427C520B00051F07209896D84E2E3 /* FIRCLSRecordIdentity.h in Headers */, + 91C4219B8C33403CBB129D16B3AEB18A /* FIRCLSReport.h in Headers */, + E0D527B58633D3FF8CF9FA991A945A4D /* FIRCLSReport_Private.h in Headers */, + 31A9C0B7972ED646DD42B8AB48EC754C /* FIRCLSReportAdapter.h in Headers */, + 6A7FE58131360F95F295FF2B3FE793EC /* FIRCLSReportAdapter_Private.h in Headers */, + 74EC9FC61381750280381C1CA3FEF94E /* FIRCLSReportManager.h in Headers */, + C9B171CD2F985BB6100973AC2085042D /* FIRCLSReportManager_Private.h in Headers */, + 7A453093A32DF8BF58019348FB62B3C5 /* FIRCLSReportUploader.h in Headers */, + 7DE7D30D7C202F40E14C4D074F1951FE /* FIRCLSReportUploader_Private.h in Headers */, + 0A4CAA92A38F6F359915AF868EDD3F0E /* FIRCLSSerializeSymbolicatedFramesOperation.h in Headers */, + 996F0F0AFA7803AA64EECCD8B63711F2 /* FIRCLSSettings.h in Headers */, + 4820CEA0B8A8891D32B12DD46643F165 /* FIRCLSSettingsOnboardingManager.h in Headers */, + 64CDDA9192CD46BF2A1A5AF02853D51C /* FIRCLSSignal.h in Headers */, + 945CBE8DC5A89E8B2A802782D34C814E /* FIRCLSSymbolicationOperation.h in Headers */, + FF578342D52A8E5DAD10B1FD4CB8AF59 /* FIRCLSSymbolResolver.h in Headers */, + DC23E3E8977BCBD29CEB5F71651AA6E1 /* FIRCLSThreadArrayOperation.h in Headers */, + 9D18B87E5733F74063319AF98E905A83 /* FIRCLSThreadState.h in Headers */, + 2B0A8958E3B687E1A8784203E791D3A3 /* FIRCLSUnwind.h in Headers */, + E24E2880B9541172E92097A2F2A41F8F /* FIRCLSUnwind_arch.h in Headers */, + ECD0C5360E7811C936155AAEF32D7CBD /* FIRCLSUnwind_x86.h in Headers */, + BD6272FAA0121FB7DA4977388E4B983F /* FIRCLSURLBuilder.h in Headers */, + AACAE8B50254D4575DF72C7697FB9844 /* FIRCLSURLSession.h in Headers */, + C8FAE77DBB29DE8CFA5B0E79264BA50F /* FIRCLSURLSession_PrivateMethods.h in Headers */, + 282A04F3A48ECC7D11237EEC32CB6DA7 /* FIRCLSURLSessionAvailability.h in Headers */, + 3B995CA64D0EFAC634D5A07D1607BD05 /* FIRCLSURLSessionConfiguration.h in Headers */, + C013E60B226CFB6918496978B17A0794 /* FIRCLSURLSessionDataTask.h in Headers */, + 96B9900D9BA39ADBED3C0F96B6BF4E94 /* FIRCLSURLSessionDataTask_PrivateMethods.h in Headers */, + 4DDFCEB061C1FE440C3D5D8596BE6AD8 /* FIRCLSURLSessionDownloadTask.h in Headers */, + FE9CD4D3CC9D436B3254E68C2966B64F /* FIRCLSURLSessionDownloadTask_PrivateMethods.h in Headers */, + 8AF95E3907FA15C3A152A802BCAE4032 /* FIRCLSURLSessionTask.h in Headers */, + 9536EFC8A863828718F2E80E09F86040 /* FIRCLSURLSessionTask_PrivateMethods.h in Headers */, + 15A3920A9F1E30B24992816F1CA30068 /* FIRCLSURLSessionUploadTask.h in Headers */, + F925F2DF0DA791631303F1AA46832B0D /* FIRCLSUserDefaults.h in Headers */, + BB95A3870C6FC9F84284FAA4BF733FEA /* FIRCLSUserDefaults_private.h in Headers */, + C89897F473DA6D4E875D2025BDB8FC8F /* FIRCLSUserLogging.h in Headers */, + 3D7FCE55565746109356E2FFB25784BC /* FIRCLSUtility.h in Headers */, + 9BEE00BB7843DECEBCCC9CE448E22BE3 /* FIRCLSUUID.h in Headers */, + 864DF121D43C18629973838F25311351 /* FIRComponent.h in Headers */, + FA2D65F4643529979AE0BB3F019E9075 /* FIRComponentContainer.h in Headers */, + 95682DB918A38BB1030F5C8BAE296186 /* FIRComponentType.h in Headers */, + 765BD0311739F1F0D7FECBE67F69D0A1 /* FIRCoreDiagnosticsConnector.h in Headers */, + F3949D4F8485FC7B07488774BC4777F4 /* FIRCrashlytics.h in Headers */, + D36112C86BBBB1C82A9B4E0B61951F7D /* FIRDependency.h in Headers */, + 474D7FCF15A3B421352E285865B58036 /* FirebaseCoreInternal.h in Headers */, + CA215C84F48DBB4875A89A8BDFC578E7 /* FirebaseCrashlytics.h in Headers */, + D2BA301327CE06F4657E997B1B814C4A /* FIRErrorCode.h in Headers */, + 4B9F133F7F2D32D9FF3DDB53BAEE6898 /* FIRErrors.h in Headers */, + A2B4F839B3333CC8F88A58378DB5F8C4 /* FIRExceptionModel.h in Headers */, + 20975EBC575B2229860269A70A137099 /* FIRExceptionModel_Private.h in Headers */, + 4CABF90A6CC7B3CAE60DC2CE6417E6ED /* FIRHeartbeatInfo.h in Headers */, + 1F0A9700C5762EBB561C0FEE7BA02233 /* FIRInteropEventNames.h in Headers */, + B4BA42922FF158551F2813420C9373F6 /* FIRInteropParameterNames.h in Headers */, + E3C141C47F1B86D503200DDF64F8C321 /* FIRLibrary.h in Headers */, + 97167D777B4DAC9E490D28F0B718C656 /* FIRLogger.h in Headers */, + AA41B8C492E810ED1AD5292AC4AE26CA /* FIROptionsInternal.h in Headers */, + DC7EA3F3EEA542ECA961CDACE2717DF6 /* FIRStackFrame.h in Headers */, + 9E361E89925BB36D99B2C97D0C635C00 /* FIRStackFrame_Private.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; A0BEA9A058025D1837F19E42EBB762AC /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -24940,440 +25968,10 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - A85538E6D4DBB1BCF2F5730ED4F5CF7C /* Headers */ = { + AA6CFE5CF07A817EAC6250C517B73F33 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 533623F4B9D6BAEE1EB8BD51C7C4ECD5 /* bufferevent-internal.h in Headers */, - 798415BCA442EB1AE81904D6DD7979F8 /* changelist-internal.h in Headers */, - AEB57C6D41D302792E1A1A02C3AA042E /* defer-internal.h in Headers */, - BED62A2EBAAA67482181337F81F12CD8 /* epolltable-internal.h in Headers */, - 097133FE733C3956B95D1C73D9A125EC /* evbuffer-internal.h in Headers */, - B8FE91A034E7873AF17D2B6BC27B74A9 /* evconfig-private.h in Headers */, - AE09978A31CCF063CF697509FDFCCCCE /* evdns.h in Headers */, - D5168DD0B6EC2324400750C5FC03E2DD /* event-internal.h in Headers */, - E1F30758C1110495B90CE71EF933B62E /* event.h in Headers */, - 82A1CB92432D12CB36A1174AB61E8F1C /* evhttp.h in Headers */, - 33D91A1A80CBCAD89FEF00E26FFFA835 /* evmap-internal.h in Headers */, - F7179A70718F51AB2196163783FFA6CC /* evrpc-internal.h in Headers */, - E8F01C7551F837636A5D060029C18253 /* evrpc.h in Headers */, - 960BC2EA28FC20C33B7881DA32154D2C /* evsignal-internal.h in Headers */, - F95048405302361A3B9446793280CB69 /* evthread-internal.h in Headers */, - D14CC40466DD0E093BB6C5749B33B254 /* evutil.h in Headers */, - 99622A3B227DFB4AC221096EBC88FCA6 /* ht-internal.h in Headers */, - AD23AD4902964B174983FF8D02C42286 /* http-internal.h in Headers */, - 163276C5BA03BFCDFAEF23DBB95DD85A /* iocp-internal.h in Headers */, - DBAAA332FD61231ABFEEB0A5E42637FF /* ipv6-internal.h in Headers */, - 96513656A905720A26EE3CB5C45463FD /* kqueue-internal.h in Headers */, - 17111F52803E5F9C66995A52EFAFC490 /* log-internal.h in Headers */, - EBCBA38AF93DC15D993BBCEE4347FF21 /* minheap-internal.h in Headers */, - 0F97F14B33B0CF23E8A388FD5985BE8C /* mm-internal.h in Headers */, - 3CACE55A79ABFEE97EC474C916D6D64C /* ratelim-internal.h in Headers */, - 0E8539BA59891CA41F54DCDFF578CD1B /* strlcpy-internal.h in Headers */, - D5DF92A877B2CDEC4D3F2161748F5F5F /* time-internal.h in Headers */, - 395E33E437B5452B9613094415256552 /* util-internal.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A98E4E386B7222DCB9EC327DC1DF49AF /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 30B13DFD264FF31876A740F0FA6AE336 /* TOActivityCroppedImageProvider.h in Headers */, - B0BC2D22E3418166C76C8D04129CE474 /* TOCropOverlayView.h in Headers */, - 2A37A287663D9F549C59FCF712B32B2C /* TOCroppedImageAttributes.h in Headers */, - 9FFF116B2B7B65B8BC5628AA1C858302 /* TOCropScrollView.h in Headers */, - 9306524057122CA0859C700BC6E11443 /* TOCropToolbar.h in Headers */, - 13FC85D9EA8D2FB6636935AF3B80C701 /* TOCropView.h in Headers */, - F21E8B5A300C96BF285E52A9058B2B08 /* TOCropViewConstants.h in Headers */, - 4DC559FF5E5D25995F953818BCF81EBB /* TOCropViewController.h in Headers */, - BC12B69CA750CC5DA95627308CA95689 /* TOCropViewControllerTransitioning.h in Headers */, - D680F53BF8235C81CC85143F86FF604F /* UIImage+CropRotate.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AAFD4CC17A722C657F3F4C5C98E85E9D /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 3DFE75FB298FE917D9C324FBBC2F2F2B /* SDImageWebPCoder.h in Headers */, - 374D76B5D1CC215FA506F3DCBEF936BB /* SDWebImageWebPCoder.h in Headers */, - 2BDE73A51F7829CE55ABD7DE8618430E /* UIImage+WebP.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AB94978733A144B09A9793540B934EFD /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 04C87F2B3F3470B213ED12446936FBBC /* Access.h in Headers */, - E7BAF6C32F1EC28622A3DAD6DA66D9AA /* Align.h in Headers */, - 43593F0E2A25A1BC0F56281000563BD5 /* Aligned.h in Headers */, - 102673DCA0F0A63413AD805D0D1FD5A7 /* ApplyTuple.h in Headers */, - A445C3442E3D06A4FB5099DC57DA6E4E /* Arena-inl.h in Headers */, - C597BFE833CEEA56A0679A9F36CF9BB0 /* Arena.h in Headers */, - A235BE2506F92D282A663AEBB53EA8B2 /* Array.h in Headers */, - B8C2E98E24A78912A98FF5D66D50F032 /* Asm.h in Headers */, - 0CCEB45200EE8BD59F2F89A3F1DC0507 /* Assume.h in Headers */, - 8560D79A6747CD1D47B9092ABA4E0F64 /* AsymmetricMemoryBarrier.h in Headers */, - 1C9648229965495DD76AA9D135C0EE96 /* Async.h in Headers */, - 478AF8139FBFB35EC238F03B31B87916 /* AsyncTimeout.h in Headers */, - 9B59E1060E0EF5612B745A08774FA28B /* AsyncTrace.h in Headers */, - 115FB99DCF4F54742E1486737402469E /* AtFork.h in Headers */, - 7F2747A1AA286CD4C0EC595A8DB18336 /* Atomic.h in Headers */, - 61A69DF194085BA1942DB0B253235EDE /* AtomicHashArray-inl.h in Headers */, - F6FAC1386500D64FD13A33E85E8D7105 /* AtomicHashArray.h in Headers */, - B23F0327919FAF52CAA0829FEC9E7F7C /* AtomicHashMap-inl.h in Headers */, - DD42C48821A03478C4B7EA14AFB70EFE /* AtomicHashMap.h in Headers */, - 918420B4EADB7BE296DF3AED54DF3A1A /* AtomicHashUtils.h in Headers */, - 0051B7B57DEE302D13FBF9BE0FA106E8 /* AtomicIntrusiveLinkedList.h in Headers */, - EFA8464A8A1D5B8D6DEF6ED34CF36F4F /* AtomicLinkedList.h in Headers */, - 99206A1302DDAEAC9A05128192E167A6 /* AtomicNotification-inl.h in Headers */, - C3A4A568AC3B844E967D5406CFAEA8E5 /* AtomicNotification.h in Headers */, - 5111FDE4F6628014B3E0DC699C0623AF /* AtomicRef.h in Headers */, - 4610F94387BFEC182D5F5C6366C85B82 /* AtomicSharedPtr.h in Headers */, - 526D1834D98D5AFD802FB5F465688857 /* AtomicStruct.h in Headers */, - 893B3932987EEFA265CB76B8504B952D /* AtomicUnorderedMap.h in Headers */, - 8ED41BAA2713442B6B8B22476A64C71C /* AtomicUnorderedMapUtils.h in Headers */, - 2AA760D19EA069A3BB050EB2A30739B8 /* AtomicUtil-inl.h in Headers */, - A3BDC62CF7250C00872E7AA20E6DCCB1 /* AtomicUtil.h in Headers */, - ED20718F31DAED2C5FEACC215A04ACFF /* AtomicUtils.h in Headers */, - B87031E1012DF8D89B4E4F66C62BE8DC /* Barrier.h in Headers */, - 056910EB649DC2F7516A0A9D7CC213F3 /* Baton.h in Headers */, - AEFA4BCF48EF838BA8D63687911CBB70 /* Benchmark.h in Headers */, - 6B0E04BC26C6AA2270AB47DD63BB8CC2 /* BitIterator.h in Headers */, - 19982F0C3F2A178D0B54DD3FE1E72FA0 /* BitIteratorDetail.h in Headers */, - 74DCC67D0E43B0B3EC30F384184DD57A /* Bits.h in Headers */, - E3DF0DE9BF123A4AAAB980CAF783EAAD /* Bits.h in Headers */, - 0C57146D6AF92B467A677450A6B54F00 /* BlockingQueue.h in Headers */, - 32D0D609D5BBC0C06848942F41125DB6 /* Builtins.h in Headers */, - 054374D14159D2074EF75CFCFEC04E7F /* CachelinePadded.h in Headers */, - AEC6E35F009BE910DE364172939FF9D6 /* CacheLocality.h in Headers */, - E9346E499F82823D821228FAD4B8817D /* CallOnce.h in Headers */, - 497EA60D76DC5BD08BD04A1C7DFB92F1 /* CancellationToken-inl.h in Headers */, - 7587F5FF61D3B8D49DD7AC31893E6E70 /* CancellationToken.h in Headers */, - A8AE9641C68A0067A0CE3312EA3D6762 /* Cast.h in Headers */, - 99C9B07FA4E28482A367FDF7C70A7DB3 /* CheckedMath.h in Headers */, - E1510AE684E1E887D55C08635B4BFC58 /* Checksum.h in Headers */, - CBDCC34FBC2F2C6B561441FD0C201A04 /* Chrono.h in Headers */, - B4A3273137F0D431A2824EC7BEF6BBC2 /* ClockGettimeWrappers.h in Headers */, - FA936BF6D3B1C06C043A2EE50DFD286A /* Codel.h in Headers */, - 8E59AACDFB5FB3044BAC64861287C10F /* ConcurrentBitSet.h in Headers */, - 18086D09D0F33F432EEA9CC1D4F38A0B /* ConcurrentHashMap.h in Headers */, - 6276C84B60D8AF11BEA8FDB698B68FF7 /* ConcurrentSkipList-inl.h in Headers */, - 6CFA7ABDBCAB7AD420749A74B59C276C /* ConcurrentSkipList.h in Headers */, - 781DC4400DA3FBA482A8B9EF7A9AE133 /* Config.h in Headers */, - 5A969E15E0F3292379F7AB7C04C77590 /* Constexpr.h in Headers */, - 352927BB4162295B84B20CE1CF71B3FC /* ConstexprMath.h in Headers */, - 0EA1525619FE43F84E9F7504FF9F9017 /* Conv.h in Headers */, - CEA1C22AD73EEC05EE3D0D9295399A31 /* Core.h in Headers */, - 71EA8E641E0497C935D1989AE158FF54 /* CoreCachedSharedPtr.h in Headers */, - 05158B9A06722A88CA817BDBC814F5B2 /* CPortability.h in Headers */, - 61C9F59688DC54763ED76B1365DA4A30 /* CppAttributes.h in Headers */, - 9B7A989F69DFE39780130AF9C4C528AE /* CpuId.h in Headers */, - 3DEA94BDE50C0420E7138AEFB3161900 /* CPUThreadPoolExecutor.h in Headers */, - DA46DD69E7DD446DE9AAC5F2700E6FCB /* CString.h in Headers */, - EE024426B04FD25808524C0F61CEEA7B /* Cursor-inl.h in Headers */, - EC1FA86C6E4372F9F6FA341B022F9CBE /* Cursor.h in Headers */, - 4B19E339E4201D44AF9D628431299A34 /* CustomizationPoint.h in Headers */, - D43776DBE5699849043A09A9D384C0D9 /* DefaultKeepAliveExecutor.h in Headers */, - 8F7A8776FC1D4EA1BC600F153C9A098C /* DelayedDestruction.h in Headers */, - FDB82F845C72C92A4662EF6C071AA4C2 /* DelayedDestructionBase.h in Headers */, - A8F38BD1A46FC135D0C2EE45CDE1C83E /* Demangle.h in Headers */, - 9F5A715BF989F9B54F1AC3AC974CE2FD /* Demangle.h in Headers */, - BDBA34B09E7AFD88F98E4C667697C777 /* Dirent.h in Headers */, - 593F0E75D1F0B43A1681EFEE93AB5117 /* DiscriminatedPtr.h in Headers */, - 719D0155FAE53A3849441B5ED32458D0 /* DiscriminatedPtrDetail.h in Headers */, - 11EDB89697B133D10F3C346D5B352C5D /* DistributedMutex-inl.h in Headers */, - 641B3DFB743F8DD04975F170E6331FE0 /* DistributedMutex.h in Headers */, - 4618C2BA3BB2D497E7E8257A187EFC99 /* DistributedMutexSpecializations.h in Headers */, - 39A36FE9BC0602939125676B45D91A2C /* DrivableExecutor.h in Headers */, - C9F0F07B5EF956BCCB24BF2D13ED65F0 /* dynamic-inl.h in Headers */, - 15465C101062B9B800B3C7E571770C9B /* dynamic.h in Headers */, - 71960905B035A6A88DEFB687CC09AB14 /* DynamicBoundedQueue.h in Headers */, - 3B4DB3C4937B02D8CEF0EAF2686CFE1C /* DynamicConverter.h in Headers */, - 365B76DBC024C4DB632D8841CFC9C4C0 /* EDFThreadPoolExecutor.h in Headers */, - 481FF05148CC8FF8F540E1D2AFA2A57D /* EnableSharedFromThis.h in Headers */, - 231566B6421695F51B2A82C46100A68A /* Enumerate.h in Headers */, - 68659BE67254DEF9CA44E38A8E7BC147 /* Event.h in Headers */, - 18DF15D9F01D45A91601C7E4A2863EFA /* EventBase.h in Headers */, - 8DBC1454543FFD75374CC0E153501D23 /* EventBaseBackendBase.h in Headers */, - 25D84A6DD1CFF5BB4E8B3620F979E683 /* EventBaseManager.h in Headers */, - 7DA19383B8EBE56C76460343CCC78B38 /* EventHandler.h in Headers */, - 5A17CCDB5B75BA8B1971DFDBAB821F97 /* EventUtil.h in Headers */, - 45318B79D5C29625C260B821AD3F7AA6 /* EvictingCacheMap.h in Headers */, - DFA4E5575927B7F13BDFD59D212B5C15 /* Exception.h in Headers */, - B00C3C630F7AE816924081C1B9859EA1 /* Exception.h in Headers */, - 3EF80C04CE7856A931A5ADA4CBFDE1B7 /* ExceptionString.h in Headers */, - 8FC3AA74F00B8E3404A48628B8640B26 /* ExceptionWrapper-inl.h in Headers */, - 45D246693341E123D4617F7F3FB31318 /* ExceptionWrapper.h in Headers */, - 4CAE9CF4C2EED6AC453F6766773FA461 /* ExecutionObserver.h in Headers */, - C1D5E9F2C280C04E59479369157BE9D0 /* Executor.h in Headers */, - 019A789A0E8194E78824FB50628A681D /* ExecutorWithPriority-inl.h in Headers */, - D82F20D4AA86A844E4E68E4B4973D9F6 /* ExecutorWithPriority.h in Headers */, - 1F4F7FC01DAF8698D14B4D5577584DE5 /* Expected.h in Headers */, - D36C033AB6880185FF9448881D28BF18 /* F14Defaults.h in Headers */, - 6E52A595A234E6710DCFCC56AA14510D /* F14IntrinsicsAvailability.h in Headers */, - 16D6C850B6B1D4DC4B6CAE86FE035383 /* F14Map-fwd.h in Headers */, - 42CFB69B4C848BF234F1D67C190E09E7 /* F14Map.h in Headers */, - AE7EB69088679385A149FF44F1502C4D /* F14Mask.h in Headers */, - 4C63C8257AD0FADE75271D9FBFDAEED1 /* F14Policy.h in Headers */, - 115A492F47B539969042CA67C9E17BBA /* F14Set-fwd.h in Headers */, - 1E8936F1461060667AC365D82A1A1BD5 /* F14Set.h in Headers */, - DAF721E8B4DD480D082BEAAA7E85CFFC /* F14Table.h in Headers */, - 8ABADC0950BD19424E35803134EEA250 /* FarmHash.h in Headers */, - EFD35F282A3E7560EA034CD6CBDA7189 /* FBString.h in Headers */, - 7AC9A3D02A1E86F377BEFDBE95DC132B /* FBVector.h in Headers */, - 3270D130AB1AB1454FAE8CCB20392478 /* Fcntl.h in Headers */, - 0B7F07355F38F8E907267EE490E54673 /* FiberIOExecutor.h in Headers */, - 184605255BC66C0B8670982B728C49A5 /* File.h in Headers */, - 1802E91BC9150D64D80AD0E1D4461C9E /* FileUtil.h in Headers */, - 657AD95E47DD21A96E3B81E7931F931B /* FileUtilDetail.h in Headers */, - ACC944B56347750B388A08886F8803C5 /* Fingerprint.h in Headers */, - CC74B37D9C57A58E9EB4C844E769CA62 /* FingerprintPolynomial.h in Headers */, - 0668ED294BF6B4AC9BDFB4C8574B1444 /* FixedString.h in Headers */, - 8F0B03E13B45897A47259BF9BE55388B /* Foreach-inl.h in Headers */, - 85187C6716F36616D97B8052A8711C5F /* Foreach.h in Headers */, - D806F59838BE2ED0242EEA460D890E34 /* Format-inl.h in Headers */, - A14EC2E5859E3F7F26ED8E228EAB0643 /* Format.h in Headers */, - 51B30FFB7F6BA9B5F2C1FF6DC41B774F /* FormatArg.h in Headers */, - 6C04686F45C84BB549DAF710202CACD4 /* FormatTraits.h in Headers */, - 0414E184855BF08FAA8FFF8A6EE7CA6C /* Function.h in Headers */, - B54895360EE4EAFA250CC44FD3CB1A30 /* Futex-inl.h in Headers */, - A35256F1C4939CBDFA017AE0DDD4C041 /* Futex.h in Headers */, - A8005B2E173478D1235C35DFF4E8638F /* Future-inl.h in Headers */, - E191687099E50C3D1C1293565FB786B2 /* Future-pre.h in Headers */, - 62DA4FA03C43621F8EB4FABC40DE6EF2 /* Future.h in Headers */, - 907DAA01B71691B49CC9BF7CB9C4FBD8 /* FutureExecutor.h in Headers */, - C2AA1E7D63BACEBAE5B900277E222DDD /* FutureSplitter.h in Headers */, - DEC61401CCB38577E3042ADDC12B340A /* GFlags.h in Headers */, - 9A4FF98DB595311F2784925D8FFC938C /* GlobalExecutor.h in Headers */, - C8EDBAF25071F684BABAFD5E41CE3CE1 /* GlobalThreadPoolList.h in Headers */, - 7475BC9FCFD4192737C5847C5EB1758C /* GLog.h in Headers */, - 45A2738393C9CE896C37D003496D0A6D /* GMock.h in Headers */, - D1E8F3822A217C968B0C80D1F85A9611 /* GroupVarint.h in Headers */, - FD6D7E98CFBA855DD63B4A9EE23AD583 /* GroupVarintDetail.h in Headers */, - 77B2F5AECF8435D65A3D6955A34017BF /* GTest.h in Headers */, - D51B640341264A4C1C39B2E9E17F520D /* Hardware.h in Headers */, - 8D7EDBE452B40174D2A51AD4BFF434AF /* Hardware.h in Headers */, - 80498CCB5C22C35CF0D97ECB67A35974 /* HardwareConcurrency.h in Headers */, - F1E56A6FEB5E2DA3EA0BAC39C00DB8C3 /* Hash.h in Headers */, - EF6380A4AD81E918AFE846670B999340 /* Hash.h in Headers */, - D1EEA583ADDB0581B7FF470C62413DAA /* Hazptr-fwd.h in Headers */, - 78D508316626340383C25F61202705BD /* Hazptr.h in Headers */, - A455BDC2337B1105C965D6AA66F7328C /* HazptrDomain.h in Headers */, - 81141FF71886B2365607A0CAEB9B8FD1 /* HazptrHolder.h in Headers */, - EEF67868B42E6BDF2DCBE615D01DF865 /* HazptrObj.h in Headers */, - EC8D11597507416FE5B0C59F0C2C84F2 /* HazptrObjLinked.h in Headers */, - B402A1F16FEC313339C844E94EB6EAC6 /* HazptrRec.h in Headers */, - 6CF627B7D6A045FC8DFDACF90775426A /* HazptrThreadPoolExecutor.h in Headers */, - 604C9C619BF83013C30C129062A69090 /* HazptrThrLocal.h in Headers */, - 308D8B815F36B917E5FA788CD2301CF5 /* HazptrUtils.h in Headers */, - 035426C824C10582B594CBE3C9B820FB /* HeterogeneousAccess-fwd.h in Headers */, - FE4DCA32EEEFB0EC4A4FD086BBBD975F /* HeterogeneousAccess.h in Headers */, - DEF8B1D8A1FB45872B984C27BE64024F /* HHWheelTimer-fwd.h in Headers */, - 31F7EBF4B9CF793E171C1AC0A322ADD2 /* HHWheelTimer.h in Headers */, - AE16F8F5EA08448BB01360E52C50EEF4 /* Indestructible.h in Headers */, - 6B24F23A458E281DBCF6614C0820BD2B /* IndexedMemPool.h in Headers */, - D8F1685C32645B1B10937F98FC269A39 /* InlineExecutor.h in Headers */, - 733FC08CD72FEC04BC35D24DBBCE28D1 /* InlineFunctionRef.h in Headers */, - BDCBB80E11DE09D07B1C60C2DB99A048 /* IntrusiveList.h in Headers */, - 1FE65E81CAE0F2DE7DC263AABFDAC315 /* Invoke.h in Headers */, - BD04AEE284580698144C49395CDD897A /* IOBuf.h in Headers */, - E041423099612909D4CB8E39DEA1AC33 /* IOBufQueue.h in Headers */, - B301D02911B9A195D527A7775C003963 /* IOExecutor.h in Headers */, - 9DAC4B45B7C11C0A1A3026FD33CF68F4 /* IOObjectCache.h in Headers */, - 6E88B71994D704E22169D71F6E4A06B5 /* IOThreadPoolExecutor.h in Headers */, - 18991DF740DEBB3FB715246FA76FCE65 /* IOVec.h in Headers */, - 3F2F0BE44758E1209B1A9C11FA557690 /* IPAddress.h in Headers */, - A64F283ACE4BE4B63A39C2455E42A6CE /* IPAddress.h in Headers */, - 3F5EDF3213D8490E4B15019B1B7C186C /* IPAddressException.h in Headers */, - 9C1A53ADB907994214772CA595D8D595 /* IPAddressSource.h in Headers */, - 2FD546EA75FB48CA7EC5EBADE74FF1BF /* IPAddressV4.h in Headers */, - 10EAF8905E33CE571CF463C2EB4136E0 /* IPAddressV6.h in Headers */, - 651EC2650DE4F3F83C12C418734AA325 /* Iterator.h in Headers */, - 993E4A07426C1BD4CCAE3221813FC123 /* Iterators.h in Headers */, - 752AAE779FCD5AD67F15136FFBCB8129 /* json.h in Headers */, - 82BC15B6DBB229A3F365F4F2413B9107 /* json_patch.h in Headers */, - 4AB3CFAF8A3F575BDFCFFA1668FA5D47 /* json_pointer.h in Headers */, - 0923356973828D67642076F74E2FB2B5 /* Launder.h in Headers */, - E0412738C37357D395B72011E437EBD1 /* Lazy.h in Headers */, - 130CDC13AC3777E90950D2DC81F91165 /* Libgen.h in Headers */, - B86EFCB55FBA623C76B9E30E20A96147 /* LifoSem.h in Headers */, - C3CF319F909DFC13CF6D756301A8D92F /* LifoSemMPMCQueue.h in Headers */, - 6D0205DB3F3C683869B49C1B4ACEE662 /* Likely.h in Headers */, - BEFF65FAA8F7B2B5FB2115CE2677082A /* LockTraits.h in Headers */, - 723132A40EA940489EA2B298EE0AD425 /* MacAddress.h in Headers */, - 11C5E1A4A88619EED93BD7F56D35071D /* MallctlHelper.h in Headers */, - 3C8032BAC8B54659B70A04D9697F425F /* Malloc.h in Headers */, - F4F67956CA3B9B43968CD36864CB7FAF /* Malloc.h in Headers */, - 3DFE32D97687363B367540B2CC7EC203 /* MallocImpl.h in Headers */, - 33AF07E40B204BBA528981CB080EB52F /* ManualExecutor.h in Headers */, - 7E8A4F1FE98FC318A0B70DA658FE5BC2 /* ManualTimekeeper.h in Headers */, - 159E9F9D872EC2BF11D6A3673D09E290 /* MapUtil.h in Headers */, - 68D0B455E1B807E227BC2E8D5A5DEF8F /* Math.h in Headers */, - 8DF9FF209CBCA347D97154628EFF1D30 /* Math.h in Headers */, - 7027A99E6B29D6B2D9F210C06187DAC7 /* Memory.h in Headers */, - 62588428F52608FAF1E28FADCA55723B /* Memory.h in Headers */, - 8790D5CC4F6994202AA168087E057007 /* MemoryIdler.h in Headers */, - FB6D1BB0BE62D466EF4F12AFBA29BDD3 /* MemoryResource.h in Headers */, - 0BEA360D6A5C0877EB830E77AC58FE5A /* Merge.h in Headers */, - 1C249F36C1F06B758CE6BE05D73653EE /* MicroLock.h in Headers */, - 90658B34166B9D332212F9F3906EB8A9 /* MicroSpinLock.h in Headers */, - 95DCFFBC918399DF79B93EA996ADFBA4 /* MicroSpinLock.h in Headers */, - D369B9052DA6F4A1E689FBEBC7B3D204 /* MoveWrapper.h in Headers */, - 4AD287D7C7162F9B82D4A27D937BE5F8 /* MPMCPipeline.h in Headers */, - 7AEAFEADBF8BD0D60FD600DC11B8C70F /* MPMCPipelineDetail.h in Headers */, - E0CBBC046E288B0AD21A91C31B30C24A /* MPMCQueue.h in Headers */, - 9D7A7743CE453ADB61FE4F3D2423366E /* NamedThreadFactory.h in Headers */, - E4E4D220862602C30FDFB8A461F9FA4B /* NetOps.h in Headers */, - 71544A1741E043F1D09CA02D7BACF6A5 /* NetworkSocket.h in Headers */, - 97517E8F5CEB6C1417FA59C32C77EB34 /* NotificationQueue.h in Headers */, - 86038138105C6324C5DB9DCFAA61A2DF /* OpenSSL.h in Headers */, - 12DF37A4361405B5CC83D25B70B9E5D3 /* Optional.h in Headers */, - 0AEF68125FF4241E616130EBD1E3BCA2 /* Ordering.h in Headers */, - 98233C907F15E128D182386C5ADDA4AF /* Overload.h in Headers */, - 4202EE433BDC6FA11BDFD0BB657E3C3D /* PackedSyncPtr.h in Headers */, - 5DE207413B11749AF26CBDC179FF5320 /* Padded.h in Headers */, - 2B7880A14010ACA0B40719C7DED43A6E /* ParkingLot.h in Headers */, - 0A40D41AD57C88B2C685CE506829C7F1 /* Partial.h in Headers */, - C51B76CA0A311CBB4EAC489CD4644390 /* PicoSpinLock.h in Headers */, - 27F5E4CEC35CCBCD0D3C3397DAE1AE6D /* Poly-inl.h in Headers */, - B521043DC23854EBB06178112A7671F6 /* Poly.h in Headers */, - 0A7FA90FD1E33BBF5707B0C26F71309C /* PolyDetail.h in Headers */, - C7FF0543728E14087CCB564FFE6F7EA3 /* PolyException.h in Headers */, - FF6575E031D17B4E3C91186B96879324 /* Portability.h in Headers */, - 6BAC3EC9F0A20F6E10EA8E54F2A0320D /* Portability.h in Headers */, - C49C00B5FDD2EC49A7FF7AA91FF9FD09 /* Preprocessor.h in Headers */, - 4D37254E3F49BDCA1E8F5EE77D29944A /* Pretty.h in Headers */, - 697EB6FB97A996A8EFB712838B3379F1 /* PriorityLifoSemMPMCQueue.h in Headers */, - BA584A5F5BF886495EA96F79154D21E2 /* PriorityUnboundedBlockingQueue.h in Headers */, - E9CDFCB1A80021625C1B2F20AB30ED17 /* PriorityUnboundedQueueSet.h in Headers */, - BA05C6C0F02710235E21FA3DDA419BA2 /* ProducerConsumerQueue.h in Headers */, - 4306976EE3AD3CC055426A017D0C7884 /* Promise-inl.h in Headers */, - 01C11E90B3E1014462521C1C1CDBA9E5 /* Promise.h in Headers */, - E11114F0DDAF5BECE3F6FBF4045F8097 /* PropagateConst.h in Headers */, - 3ADBF0E9F938AA2D902630D0388A32EC /* ProxyLockable-inl.h in Headers */, - 96936C7EC047E4AF1C6DD30F952568D2 /* ProxyLockable.h in Headers */, - 1143E9B2F9D14CEE1AD30F3AB7BB6C4C /* PThread.h in Headers */, - E555A241745459F283C89975E0FC02D2 /* QueuedImmediateExecutor.h in Headers */, - 51B1BE97294EE7D0142165AD6636E453 /* Random-inl.h in Headers */, - 5D95DBC09458453BB5EAFABBE7D8B13A /* Random.h in Headers */, - ECD92AF0BA55DD4B9993F3B94E1CEFFC /* Range.h in Headers */, - 129B08449A437897C74DB78F744F4D81 /* RangeCommon.h in Headers */, - 72939CBD61B3B9FC4ECEAD86E15DC633 /* RangeSse42.h in Headers */, - 9370E6E886596AD2DABD6F77AFF096F5 /* Rcu-inl.h in Headers */, - CF821E5BD023BD6A38DF3D23A8A2C548 /* Rcu.h in Headers */, - C4D29BC84C56A1B069BC5767BCF8E820 /* ReadMostlySharedPtr.h in Headers */, - 6023AFF9E7F47B885E0A1225C21AF8D8 /* Replaceable.h in Headers */, - 5002D61A155DDCF3FA6EC2523A129313 /* Request.h in Headers */, - 446861C8FE33A4F343C89EA29551920C /* Retrying.h in Headers */, - 6AD4B97EB0A3334FFC7C8C36E992527E /* RValueReferenceWrapper.h in Headers */, - 667D022E3CC507DCE608ED2C3DE84B57 /* RWSpinLock.h in Headers */, - BD0DE0A19711F724704D0626DE3E86F3 /* RWSpinLock.h in Headers */, - 4D1ADBAC3C2E97B71E874542EAB79E6D /* SafeAssert.h in Headers */, - 436FDC516EC88778D553500D9F27A875 /* SanitizeLeak.h in Headers */, - C686EA5A54E0B2FBBF8C5759E3AF027B /* SanitizeThread.h in Headers */, - 46BE6C7B5B86A77DAC5ADC0B689835C2 /* SaturatingSemaphore.h in Headers */, - 8FDB5610B5FB519EDFC90A048579B583 /* Sched.h in Headers */, - CB68BC9E9EE2E32B3DF1CF3F6E309D3E /* ScheduledExecutor.h in Headers */, - 6025FC6FF8D72FD1D3F911C1ED0E05C6 /* ScopeGuard.h in Headers */, - 678702C3D7F6BCD35E9BA7E609724993 /* Semaphore.h in Headers */, - 7DD0D9E4067B95BF08990B610E041309 /* SequencedExecutor.h in Headers */, - C3DF7118E9F1F5C597183775BF94DB27 /* SerialExecutor.h in Headers */, - A2BD4407E849D328D126DAAD113585C8 /* SharedMutex.h in Headers */, - CE646C7BE87AD44D08D7B7AEBB4A295E /* SharedPromise-inl.h in Headers */, - 2CFE6A5577DDAF597B6CDFDD1206BD1F /* SharedPromise.h in Headers */, - B2B9D88FFE05DB78A3421DF942DF05B9 /* Singleton-inl.h in Headers */, - 77166B1FDAE5B7F6F8B0A380E30A36BA /* Singleton.h in Headers */, - 9F3EBF7A2F155349BF711C5DF30A776B /* Singleton.h in Headers */, - 70BF98E505E0281F4CB6090AD9573CCD /* SingletonStackTrace.h in Headers */, - DC94B415B76001754FA46BA55FCDD2DF /* SingletonThreadLocal.h in Headers */, - F842227004D92592655361330D9894F4 /* SingleWriterFixedHashMap.h in Headers */, - C4AAB943DA9F6995FA8E3FEDC496C6E2 /* Sleeper.h in Headers */, - 7E0EE9D9A71F9556D314AB76548ECF12 /* SlowFingerprint.h in Headers */, - 0EB42F45C1E67B504CA51B328966E12E /* small_vector.h in Headers */, - 3379AF5EE34A3C8E717EE71C34011805 /* SmallLocks.h in Headers */, - 3208DCDDBA4C5636CB44ED37E084AB49 /* SocketAddress.h in Headers */, - 51488C50310293E3840237A0876B19BD /* SocketFastOpen.h in Headers */, - 05282169F07BA97A51AA0BDB5A81FFEA /* SocketFileDescriptorMap.h in Headers */, - C11886AC04728959171CF88DAF4406F3 /* Sockets.h in Headers */, - BA0F784AFF1B24A47A56CA63EDAE28FE /* SoftRealTimeExecutor.h in Headers */, - 6BD064A6D8E5F1F56631395FC56A58B7 /* sorted_vector_types.h in Headers */, - 9EFEE8CC6FE041A42460BB60A158BE1F /* SparseByteSet.h in Headers */, - 9598CFEB12110059D8E2D1FBD31A519F /* Spin.h in Headers */, - 208F337BF9071BC8A35C2DC9E3ADA0FC /* SpinLock.h in Headers */, - C99150D11AB7AE2BE36656F9041C0FE1 /* SpookyHashV1.h in Headers */, - 9CC1C3124003AE97DA620B8DC8B7D16F /* SpookyHashV2.h in Headers */, - E58FFDE323364DFF10D75A10396A5DA8 /* Sse.h in Headers */, - 6F2BF54E7009B4F4565CAEB9AB4A6557 /* StaticConst.h in Headers */, - 798154F7AFD7009730AC6BE6DFFF9A62 /* StaticSingletonManager.h in Headers */, - 4B725D8E2B8A4BEEBD18F404EC5B49F7 /* StaticTracepoint.h in Headers */, - 8EC2A66BC8418E3F2DDEA98A9C555257 /* Stdio.h in Headers */, - 421EEC1301424A5D45616BD142C0838F /* Stdlib.h in Headers */, - 2D7392EAFB0682B29BEE807C3894A97E /* stop_watch.h in Headers */, - A26938F976CB2B53CE4DEB9530901A74 /* String-inl.h in Headers */, - 92DF4E34A825F667C046C2C56E9F4BC7 /* String.h in Headers */, - 602D546EF638B7A1B93C0388B5A87ECC /* String.h in Headers */, - B783D2E1E1A38F9724EABE0465101E51 /* Subprocess.h in Headers */, - E23296DA156E1D70D51A62956262932C /* Synchronized.h in Headers */, - 0621D295D9184C531FB0DCCAA5BEAD14 /* SynchronizedPtr.h in Headers */, - 24E9EE31E2A99DB66287EEE3C03702CF /* SysFile.h in Headers */, - 62F03728A0E2D45A66516BC9BCF00E89 /* Syslog.h in Headers */, - 9A984EF6D5D686F54A9ACB57E5F6BF42 /* SysMembarrier.h in Headers */, - 5B44D8C56412673CE598082F8F7680D8 /* SysMman.h in Headers */, - B8F11E9546DFD8D2DE83683E2C11E5A3 /* SysResource.h in Headers */, - 412AFC41DCD4D24320F36AE0184CE5AE /* SysStat.h in Headers */, - A033FF57E014E471AC021DF4C306BBA9 /* SysSyscall.h in Headers */, - DD135A8F355394D6742305617485FF53 /* SysTime.h in Headers */, - A06DD21F697C63C54FA1B35DC91F044B /* SysTypes.h in Headers */, - 597EA09176974C7DC8F7EF28177FC5CD /* SysUio.h in Headers */, - D59A4FE9C688CD8B987E7549D85219E6 /* Tearable.h in Headers */, - 75737C2B3DC23317C1BE38674C961311 /* ThreadCachedArena.h in Headers */, - 86BB7919E0FC864D3D44FA7E3515324F /* ThreadCachedInt.h in Headers */, - AF8512E6470857A84DDD5DEAC09B52CE /* ThreadCachedInts.h in Headers */, - C2B63DD08E0DA2724A9B7B6376A4EED1 /* ThreadCachedLists.h in Headers */, - A9B523B94F312589ADE02B6EB92B1C87 /* ThreadedExecutor.h in Headers */, - 92DB0E1A7EF28B379ACB505392E89EB6 /* ThreadFactory.h in Headers */, - 6997F1F036CEF3EACB71A4F97AE004C6 /* ThreadId.h in Headers */, - 2AFFEBCABEF8728B19575F16546971AB /* ThreadLocal.h in Headers */, - 9C35AD8648A4A797F8B81816D91AE474 /* ThreadLocalDetail.h in Headers */, - D0DD6DA2B94CB88549356E80E17B0118 /* ThreadName.h in Headers */, - 987965FE9D7E479617C524987676F270 /* ThreadPoolExecutor.h in Headers */, - 65CA7EF19CC8CCECE4F37DDE0BBAAC40 /* ThreadWheelTimekeeper.h in Headers */, - 491AFD99CB4914D92B53C55EB7F276E1 /* Time.h in Headers */, - 9AC5ABFACD4A468C1E8FA0CC5BC63F61 /* TimedDrivableExecutor.h in Headers */, - 5585133560065106209AD5CCFD238CAE /* TimekeeperScheduledExecutor.h in Headers */, - 2FB5AEB07B73A5D7842D907070031730 /* TimeoutManager.h in Headers */, - 13ADE9E2C0ADDDB8C1F5771855C7E8C6 /* TimeoutQueue.h in Headers */, - 8CE5E8B129ED6163557EB3478BB20176 /* TLRefCount.h in Headers */, - 95333BE9F6A6497BE836A2EAEB169205 /* TokenBucket.h in Headers */, - 4800838980B2EF40881C06A8CF83F943 /* Traits.h in Headers */, - 81BD1FAF89DA6AE571C952144C305CC6 /* Try-inl.h in Headers */, - D44BF8A3C2B7D58F114CFD67F569D0B0 /* Try.h in Headers */, - 3340B9091FE8AA420E080AF309001627 /* TurnSequencer.h in Headers */, - 36AF5FDE312F1810B576549F8F24F522 /* TypeInfo.h in Headers */, - 276EDD3E7421D278E099AD4015900A1C /* TypeList.h in Headers */, - 67BA16756DF8D6A82C5CCB93C7F9492B /* Types.h in Headers */, - A4C8E87E2DB18B3982EDE5B615AACB82 /* UnboundedBlockingQueue.h in Headers */, - 2B48B551229001E8D6FE460A99EDDAC7 /* UnboundedQueue.h in Headers */, - D1C92D801797F95F41F5E311D68244E1 /* UncaughtExceptions.h in Headers */, - FB3EC3C17A7CC4700F8EF7AE093025D5 /* Unicode.h in Headers */, - 3F32CE71CF4452145868E7E3C21C5CD5 /* UninitializedMemoryHacks.h in Headers */, - 373C69D273FA40F79271C3FDC9762820 /* UniqueInstance.h in Headers */, - 7FE31000B219334BEBF5BE7ADF1BA386 /* Unistd.h in Headers */, - 31D57A5A9211BBDCFF2362E8845F7633 /* Unit.h in Headers */, - 90EF59D897C9BF722596EB11F22C3696 /* Uri-inl.h in Headers */, - 6CB4950CFF26F9A26B288FFA89226916 /* Uri.h in Headers */, - 4F3787F8BA3165541B253F17696EA4FA /* UTF8String.h in Headers */, - 0E21A14DBF0A9BF3C1CECA355C32D968 /* Util.h in Headers */, - B967F3FA30175BF0214AB09D5355FA79 /* Utility.h in Headers */, - 88F9511AAA30DA2A0F52B87667CC1984 /* Utility.h in Headers */, - C4B313EDFCA9B79B1A1051EF8D13F312 /* Varint.h in Headers */, - 78FA81830F7402AF94D35D74048EBE2B /* VirtualEventBase.h in Headers */, - 0AE6357276EDDA7DB2700FEC47086CC4 /* VirtualExecutor.h in Headers */, - 629298EA4B1A55C05BFBFC50346C51E3 /* WaitOptions.h in Headers */, - 5B7CBBD6B9978FC2C6DBF598E87A0272 /* Windows.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -25385,165 +25983,157 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - ADD3FAC9F764AFDFF4729939B5F3C8CE /* Headers */ = { + B332962D4B98D6565A6C92E826E60CCA /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 9F022B06A45F103D28620D20ECE5CEFC /* RCTBlobCollector.h in Headers */, - 217CECD60FC703DA01443C9D2110E343 /* RCTBlobManager.h in Headers */, - A97C67A1AE452073EF7CE4510A13A568 /* RCTBlobPlugins.h in Headers */, - C5803ACD8750DFD253BF64D33A18C28D /* RCTFileReaderModule.h in Headers */, + 2AEB67A72FC65473A464B6A75FED5F93 /* pb.h in Headers */, + 1925C8BD802F4AEFD79E05F9B89015CD /* pb_common.h in Headers */, + F395703BBAD9330714B1C1D18106D2E7 /* pb_decode.h in Headers */, + C52C91728A295B9C27A0BE06655C1356 /* pb_encode.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - B240E15DDFD041B3732B83CF1C92ED4F /* Headers */ = { + B51C0489402053ED6DCB530EBBB7F9D7 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 5A14D58FA6DDF2442BFA6564F57D61B9 /* NSTextStorage+FontScaling.h in Headers */, - 78D73F24F8EF6008D5EF738506170C02 /* RCTBackedTextInputDelegate.h in Headers */, - 13BC0A6DFE5852B5290DB68AFFF8C2AD /* RCTBackedTextInputDelegateAdapter.h in Headers */, - 217A26D8C56C4AF0239B548CD0D0737E /* RCTBackedTextInputViewProtocol.h in Headers */, - D790C310AEE786AC552557B9DF2B5CF4 /* RCTBaseTextInputShadowView.h in Headers */, - C2EB4F914DEB2857ECA6C9B58356CB25 /* RCTBaseTextInputView.h in Headers */, - 296F8BD5BB890665A3952A2EF33816B4 /* RCTBaseTextInputViewManager.h in Headers */, - 8245374A89AA09B0DF62935A0CC2F3B5 /* RCTBaseTextShadowView.h in Headers */, - 6BFB6AA5778A03301C35B75E9349AC12 /* RCTBaseTextViewManager.h in Headers */, - 9C0BC1542189A8EBA9B5B8BB2728D0C8 /* RCTConvert+Text.h in Headers */, - 1E7B12DA8AC45A8AD4E54A7BBAAE26C4 /* RCTInputAccessoryShadowView.h in Headers */, - B3ACD44064DAF1FCACA63C8FA694EDC3 /* RCTInputAccessoryView.h in Headers */, - 1B17E8D5EF1C2F0C340F28C0E3EB7AD4 /* RCTInputAccessoryViewContent.h in Headers */, - 4B2C8AB8F0E7A8C825F9B4D18792795B /* RCTInputAccessoryViewManager.h in Headers */, - 09B01B874E2141854A99A70A4FA1D223 /* RCTMultilineTextInputView.h in Headers */, - 0A00BDC4B550C100E6E2C3439C5359F8 /* RCTMultilineTextInputViewManager.h in Headers */, - 8FF1F351F82100B61EDA02920DE4C1D3 /* RCTRawTextShadowView.h in Headers */, - 609409FD8D5D15C20833F4216953CAF2 /* RCTRawTextViewManager.h in Headers */, - 31834216BC9A21A75EC4FEE79C798199 /* RCTSinglelineTextInputView.h in Headers */, - E679DE42EF15D92E8CEEBEE74D4F3354 /* RCTSinglelineTextInputViewManager.h in Headers */, - D6DB74F81F3469C292D22A23A3B1ED41 /* RCTTextAttributes.h in Headers */, - 8A10D38B39F09203DE1423CFBAD73557 /* RCTTextSelection.h in Headers */, - 659CF223AE684C6A083B317451A2185B /* RCTTextShadowView.h in Headers */, - EDFBF036B071FB480329BAC298FA6B68 /* RCTTextTransform.h in Headers */, - 49281F9A56BDF1A675637372857F24E9 /* RCTTextView.h in Headers */, - A2961522F44A445F6907DFB5DDAF8827 /* RCTTextViewManager.h in Headers */, - F2335626B11CEE466E897FC760FB80AF /* RCTUITextField.h in Headers */, - C97BC47545E7812D1AB0470BA08F55E5 /* RCTUITextView.h in Headers */, - 0BD940244A1B09E2FE71D2ACA9ECE4EE /* RCTVirtualTextShadowView.h in Headers */, - 91BAC73EEA2FBB48091567A31A82E3EC /* RCTVirtualTextViewManager.h in Headers */, + DAA5228B008C0185D8C176AF7531098D /* NSBezierPath+SDRoundedCorners.h in Headers */, + 51EB6CD6227514158D2DB1C52438BC2C /* NSButton+WebCache.h in Headers */, + 0F14CAC101861D13A1B71E08CB3C109A /* NSData+ImageContentType.h in Headers */, + 43D752B706C184AD577F8786CE3C79CF /* NSImage+Compatibility.h in Headers */, + B96236ABFA0949FD10F5FFF77480787E /* SDAnimatedImage.h in Headers */, + 54574A563AC07DC31E7F70C6E177FAA5 /* SDAnimatedImagePlayer.h in Headers */, + 79B1C578A132B8F64BAF787C2C32C973 /* SDAnimatedImageRep.h in Headers */, + 0BE18DE9E3405BED1A98DCC821F18E1A /* SDAnimatedImageView+WebCache.h in Headers */, + C69D732CBF9BD36348A06DC1B7E219AE /* SDAnimatedImageView.h in Headers */, + D9F50AD2C225F2BAFB37B63EE3342763 /* SDAssociatedObject.h in Headers */, + 896421FEC4C27E1D4527EBA03ECF5037 /* SDAsyncBlockOperation.h in Headers */, + DE9A812C1D07F06E232DAF78B5F275CE /* SDDeviceHelper.h in Headers */, + A4E2278DE2B49437B4CD2FF986432740 /* SDDiskCache.h in Headers */, + 6A039FF84F6CD8D55484C034F66B007D /* SDDisplayLink.h in Headers */, + 3069B47EA58DF457310D8947EF04D3CB /* SDFileAttributeHelper.h in Headers */, + A63D3C9078880427DF2EFE45777C1658 /* SDGraphicsImageRenderer.h in Headers */, + 0B8C12CC05B220BE94F3319EAEAF6083 /* SDImageAPNGCoder.h in Headers */, + 357F2273B939C6DE75EA2B2D4FD21600 /* SDImageAssetManager.h in Headers */, + CADB5A27752BEE26409B9BC2F040DA41 /* SDImageCache.h in Headers */, + 30BD1E879CEDC30627C17464F7DDC23D /* SDImageCacheConfig.h in Headers */, + 23107AD6D4230C7D76762ACF7E2D818E /* SDImageCacheDefine.h in Headers */, + C6EB1C1A102CC2220F0925D864BD6978 /* SDImageCachesManager.h in Headers */, + F8C12BEA8CCBBEB7AD47DD2BBD95A09C /* SDImageCachesManagerOperation.h in Headers */, + 4679089A46139CE98EF4118919A199EA /* SDImageCoder.h in Headers */, + 74224F0B4C7D6FC974A6EA003FB4CCA1 /* SDImageCoderHelper.h in Headers */, + D024F7482C4086F306FA04A9F5B1F3F4 /* SDImageCodersManager.h in Headers */, + B0CFA8308BF23AFE48E7688DD862CF30 /* SDImageFrame.h in Headers */, + 1902AC52CCDA099D0C77B2C822170BF0 /* SDImageGIFCoder.h in Headers */, + 1691F850D2ACDB7C3BADD384F07AA42B /* SDImageGraphics.h in Headers */, + 954FF1A37B9B52498BA929669D4593FF /* SDImageHEICCoder.h in Headers */, + B384D913C27C00381B305B156B2CE235 /* SDImageHEICCoderInternal.h in Headers */, + 98A56F29B85029091394F250DC9C5FDC /* SDImageIOAnimatedCoder.h in Headers */, + CA6FCC4C5E3A724C6AF340E43C604318 /* SDImageIOAnimatedCoderInternal.h in Headers */, + 09877537A9682B55FACFAFD040F97A87 /* SDImageIOCoder.h in Headers */, + 9069E0FA345EC63F1745A5E3E5E9F113 /* SDImageLoader.h in Headers */, + 199D7DAAC28C6E00E2EB1928E4FB7E28 /* SDImageLoadersManager.h in Headers */, + 50D61DE9D7A8590D2821D64451FE1496 /* SDImageTransformer.h in Headers */, + 1C8399EE1429A35628EA1E4D0730D385 /* SDInternalMacros.h in Headers */, + 2917B430E75377F1ADC6752F355FB031 /* SDMemoryCache.h in Headers */, + 2DE40C44B661361407541F327C39F180 /* SDmetamacros.h in Headers */, + 61A4D183366D53341ED86D3A848C19C5 /* SDWeakProxy.h in Headers */, + 01B0032031EA54F2A019BB496A57F963 /* SDWebImage.h in Headers */, + 9D87D311C26340D5D291CFB93D9E9D86 /* SDWebImageCacheKeyFilter.h in Headers */, + 29215116C566B3A606C4C673B7A4104A /* SDWebImageCacheSerializer.h in Headers */, + 95FB1B0523025D27006A9FA0B4202561 /* SDWebImageCompat.h in Headers */, + 6018F1F609977889E1F1EE2B345FACA3 /* SDWebImageDefine.h in Headers */, + DB7262BBB4F834F3A01B925C36904813 /* SDWebImageDownloader.h in Headers */, + 058B10DA26839788148504E6F6E66221 /* SDWebImageDownloaderConfig.h in Headers */, + C626BEBCAB1B039F085164B1E759495B /* SDWebImageDownloaderDecryptor.h in Headers */, + 242B4C9538838E112A2F3ADC2B09907F /* SDWebImageDownloaderOperation.h in Headers */, + 6D02A809D77869DFDF2443FA9A088610 /* SDWebImageDownloaderRequestModifier.h in Headers */, + 2F772B47B5AD2FF4FFF7F24F16190C5A /* SDWebImageDownloaderResponseModifier.h in Headers */, + 81B5731D55B383BBAA088D9AFEA7328A /* SDWebImageError.h in Headers */, + 93B7CC2BC6377B5EEA2C5AA84798F6ED /* SDWebImageIndicator.h in Headers */, + E7A441822611FBF3B41573EC9F8CCE90 /* SDWebImageManager.h in Headers */, + 96A10F915F72DE9920B401F3174FAA01 /* SDWebImageOperation.h in Headers */, + BA07A5475D4C2C9E8E58363EBE4408E2 /* SDWebImageOptionsProcessor.h in Headers */, + 1920FCE36808E9EF6B045689ED3E1F8A /* SDWebImagePrefetcher.h in Headers */, + AEDDDA1CAF95B0D1BF5A6109B5D3AE8C /* SDWebImageTransition.h in Headers */, + 496823F46E4529AB28BC1FAE9348EBA5 /* SDWebImageTransitionInternal.h in Headers */, + 9D9F5487A0E5A8EA62872F1929529624 /* UIButton+WebCache.h in Headers */, + 81CBA279C2D7F9FEDC5F11CE2ECFFB58 /* UIColor+SDHexString.h in Headers */, + B9409907B52C65EE32E83279A15715AB /* UIImage+ExtendedCacheData.h in Headers */, + 7F2AF7F6F21535CB0B16803076D6F010 /* UIImage+ForceDecode.h in Headers */, + 4F9276C1C94759732502CEC0BA944BC3 /* UIImage+GIF.h in Headers */, + 83A90E8B7FDE9818721E8002C5F8D919 /* UIImage+MemoryCacheCost.h in Headers */, + 9A4C22A2AF221410AE0409CE54CF8AA7 /* UIImage+Metadata.h in Headers */, + E302A08DFACD7D2D968BECA274855770 /* UIImage+MultiFormat.h in Headers */, + 40D4AE600C1F8BF22160F87C3A0466CA /* UIImage+Transform.h in Headers */, + E91C35A4C74C464094403DF24CF12329 /* UIImageView+HighlightedWebCache.h in Headers */, + 2E62C4F6E1AC4E5F45A9EE72EADE3760 /* UIImageView+WebCache.h in Headers */, + 358EAD4E2641D9749EBA400F92077D00 /* UIView+WebCache.h in Headers */, + 4C05964EA35463E1FCA4E487E19984DF /* UIView+WebCacheOperation.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - BFDE7A3191D1A2EDA88605EED151BA87 /* Headers */ = { + C898263E32F3F1140ED22AC06685C837 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 0FCA12B4C557F434DCEC8B1A6EDBEF7E /* CxxModule.h in Headers */, - 178C3CCC7AF9312D5F66D7DE5161C6E5 /* CxxNativeModule.h in Headers */, - E839FA32C55142451C672352C4A624E1 /* ErrorUtils.h in Headers */, - 7EBB911D4EE0D0FF9FB8D051E0602483 /* Instance.h in Headers */, - F0E8B23E4E03F3482CE0E6ED89C960EE /* JsArgumentHelpers-inl.h in Headers */, - AFE2809909457783DF468CEFF4B5CA4D /* JsArgumentHelpers.h in Headers */, - 68FE40F245392C68BB1CBEAA4B98D153 /* JSBigString.h in Headers */, - 7857D64039FDA8F0E1D9C4E65F219C40 /* JSBundleType.h in Headers */, - 8F046018203F3344080CEE82E5E5561B /* JSExecutor.h in Headers */, - 82D0C94537F3C6F51042A0D03868AAB4 /* JSIndexedRAMBundle.h in Headers */, - 4A9E513B14F4636F3EEFDE6740556EBF /* JSModulesUnbundle.h in Headers */, - F83F3983F84E9143D0EFCF93DCDE5F65 /* MessageQueueThread.h in Headers */, - E644280E9E7A17ACA5718E5157465EBB /* MethodCall.h in Headers */, - FD525A0F7FEC8138A077F630003B31B6 /* ModuleRegistry.h in Headers */, - 53BBD962FB7BCAD3DB8A5E4231945C9E /* NativeModule.h in Headers */, - 3CA795EAB5767F4D1A0FDA5B86CA2DD8 /* NativeToJsBridge.h in Headers */, - 816175B9B9E7204396C9ADE63F509CC8 /* RAMBundleRegistry.h in Headers */, - 675B5A180FFCA101C38C3508A6412DCD /* ReactMarker.h in Headers */, - 021A5F62E0DEF0BB92FC032662D7C713 /* ReactNativeVersion.h in Headers */, - 5300EB30E88C8007DA5CC27505A2FF88 /* RecoverableError.h in Headers */, - DE100BA58C61CA92EEF6031EF2DF6068 /* SharedProxyCxxModule.h in Headers */, - 544AE9839B67757D29D6C5DB72C6160C /* SystraceSection.h in Headers */, + 73BC7980BBD7CF1F54A7FFAA4521D880 /* FBLPromise+All.h in Headers */, + 9634AFC21DDFD8E2C548CB40AB4E5FBF /* FBLPromise+Always.h in Headers */, + A9219290BAFC9320C040414C7C096F8A /* FBLPromise+Any.h in Headers */, + 4E1060D94440D030C75B728F17B4E62E /* FBLPromise+Async.h in Headers */, + DF44B3B16907193F463835D0D8134D16 /* FBLPromise+Await.h in Headers */, + 937086FFC7948E4E3A69D50545826BFF /* FBLPromise+Catch.h in Headers */, + 66F17155BB74D1A25B7BAD95B0912164 /* FBLPromise+Delay.h in Headers */, + 0A2152A57FD363FE1E02BFC9155A2BAE /* FBLPromise+Do.h in Headers */, + E92E23581BA92C98435DC0BD7E016324 /* FBLPromise+Race.h in Headers */, + 40F6ABEFC7D0BC7D3D71C0B885066F85 /* FBLPromise+Recover.h in Headers */, + 58DBC0FAFB21C7C9F841A75D0647F3E9 /* FBLPromise+Reduce.h in Headers */, + B61FD98A4393A3A00DAC223680A918C9 /* FBLPromise+Retry.h in Headers */, + 1673F034CA68F7606F63648763284801 /* FBLPromise+Testing.h in Headers */, + 61BD57CD51211EA0A9DB92D277E082FD /* FBLPromise+Then.h in Headers */, + 0DAD7A8B645904C334FE6DD725DC39EC /* FBLPromise+Timeout.h in Headers */, + 4791AEBD2EF07F700133803644EF238D /* FBLPromise+Validate.h in Headers */, + FCA849F84E72CF56C35BC8B5F5D5F66E /* FBLPromise+Wrap.h in Headers */, + 2FAF4B1D2951B1AE7B14AAF36637057A /* FBLPromise.h in Headers */, + 1EC1D0106DA54AE665470D7BDF0C2A09 /* FBLPromiseError.h in Headers */, + D0DD0C14147CA8C77BA30A1B8F208588 /* FBLPromisePrivate.h in Headers */, + DF63D688EF74C85087F01384D4F70504 /* FBLPromises.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - BFFA9CC6442AEA5616C8B194014FBE08 /* Headers */ = { + CB9B4DC3940A7331D77370D512322969 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 1DA509526C236D90AB574C6D33328091 /* AESCrypt.h in Headers */, - 436526A404027B0CC24FC0B679230E49 /* Checksum.h in Headers */, - 152169019B52A814AC140BD685ED38EB /* CodedInputData.h in Headers */, - 07E36C7776368CEF133937A3D8725481 /* CodedInputDataCrypt.h in Headers */, - 21E7FC377E96D87278BEDC0903328F22 /* CodedOutputData.h in Headers */, - 76127A896D66636D6A7CADFEDF920D84 /* InterProcessLock.h in Headers */, - 6FF30D4D30EDD64827C107D7D0635AD6 /* KeyValueHolder.h in Headers */, - A81C06AA97BCFD6043667FFC79D093AA /* MemoryFile.h in Headers */, - 3C94F9ADBADA4A1C0757D2949EF70E3A /* MiniPBCoder.h in Headers */, - 7E78A603AFDCC9C1C2271024BA40B302 /* MMBuffer.h in Headers */, - 2EDA7D5E2C10BCF2C2C3B60129056FEC /* MMKV.h in Headers */, - D01426B8957821374017155DD90F01E6 /* MMKV_IO.h in Headers */, - 70F14DE748F4F6A3A52B138DDD1A5BB0 /* MMKV_OSX.h in Headers */, - 4F61B951802CC37406CAF9DD0051DEE3 /* MMKVLog.h in Headers */, - 958B60766C436276FB6F579B21ABADE8 /* MMKVMetaInfo.hpp in Headers */, - D7B2C1DB9F8C5EED745E33502D19E28E /* MMKVPredef.h in Headers */, - E6EA4C2D81175C69754B006D06E03740 /* openssl_aes.h in Headers */, - F8B4772190A25511B38AE29DFFCEDF03 /* openssl_aes_locl.h in Headers */, - BAD98EF8DE87C3F73E43CAC7698B10CF /* openssl_arm_arch.h in Headers */, - 729240164B2EEBA7D13572D8D9224BB5 /* openssl_md32_common.h in Headers */, - E608A5E8394CBCBCE7D71A82BAA8045B /* openssl_md5.h in Headers */, - 3A5B7B0891E1DF93F18162F658E3A269 /* openssl_md5_locl.h in Headers */, - 1A36F3EDA75A3631FB8E2A90A346B7EA /* openssl_opensslconf.h in Headers */, - 29B000A406C88C61FF548022E277BB75 /* PBEncodeItem.hpp in Headers */, - B6E3B8FE4853E69FAE33EA711D68C137 /* PBUtility.h in Headers */, - 3F490E44DD2BA95A57F7636C6A3AD4CB /* ScopedLock.hpp in Headers */, - 52B0C9D8E1DC6708E2C65CA8E8644F8B /* ThreadLock.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - C94AB11A8A52FCAB0B093160DEABB768 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 4AFB4CAFFD7E9A6FCDF64D3F0D67A160 /* InspectorInterfaces.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - CA4DCF6A29E09F48F0B08F2C126F4CAF /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 5113A31376ECE0BB49FF3A45C60FA0F6 /* JSIExecutor.h in Headers */, - 63C8E9CC98A5B3497D9ABE99CBEB6BF8 /* JSINativeModules.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - CAF91E87A293D9DD066FB0F7F4C403E9 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 6BAD414489BD8A2BB43BA3990D4A5BBD /* GULAppDelegateSwizzler.h in Headers */, - 469D7C34DC5147B6C8DC574B9614825E /* GULAppDelegateSwizzler_Private.h in Headers */, - C85EE0E24F66E1E1FDA5FA9538E4345F /* GULAppEnvironmentUtil.h in Headers */, - 4B879CB310FD2924F56C3CEE9D148713 /* GULApplication.h in Headers */, - 2B5CFEDE02BDB248FACCF87C22A56DC3 /* GULHeartbeatDateStorage.h in Headers */, - C64E230A77C8A52C02AADE1E41D8D360 /* GULKeychainStorage.h in Headers */, - 3B87BBB400091E1AFD2048F0DD8576FF /* GULKeychainUtils.h in Headers */, - 11BFFDEEEC04B6604C5752290DABE8DA /* GULLogger.h in Headers */, - 39387D92FABD6C6C06F9B6BD67CB2196 /* GULLoggerCodes.h in Headers */, - 6902C029A6661D443198CBEC7095F160 /* GULLoggerLevel.h in Headers */, - F80D01486CC0DA528BD154723E1ABC73 /* GULMutableDictionary.h in Headers */, - BB80F6DD54A112549C9B211E4D2E07D4 /* GULNetwork.h in Headers */, - 4DB094F75840E224F8213A023050E0F9 /* GULNetworkConstants.h in Headers */, - 8FEFCCA33BC8530E1D2AEBC80611641E /* GULNetworkLoggerProtocol.h in Headers */, - AFEDCB0704C51A1CAF1A6CBDC4BBC720 /* GULNetworkMessageCode.h in Headers */, - FB83BE3DDC547CFD5EBEC9296A98C7D7 /* GULNetworkURLSession.h in Headers */, - 7C155456471A8D9F4EA9099467F8FACE /* GULNSData+zlib.h in Headers */, - 2BB64262F83EE2F9DC428B5E572AC484 /* GULNSDataInternal.h in Headers */, - 7FB36B9C06A078703E8F36CDC501FE40 /* GULOriginalIMPConvenienceMacros.h in Headers */, - 76D6AC866BD78164BA315330985F682C /* GULReachabilityChecker+Internal.h in Headers */, - 38E9F079C58401C2BAB2B5885CBB148C /* GULReachabilityChecker.h in Headers */, - 8D8C06438E12DDF9F7EB88FA82E3C827 /* GULReachabilityMessageCode.h in Headers */, - 7189C241CF41DF70FE61556846648A87 /* GULSceneDelegateSwizzler.h in Headers */, - C132C820EEF133A8621D3AAB3CFCDF5A /* GULSceneDelegateSwizzler_Private.h in Headers */, - 3E898C0E219EE6C4350F235524C4C79B /* GULSecureCoding.h in Headers */, - 519F0C5230539FF047E2D27C0BF6AA8D /* GULSwizzler.h in Headers */, - E0D9BCDA8D66172E73C082BF536A8B09 /* GULUserDefaults.h in Headers */, + 89D4E55B3B9C400960A626ACF043D719 /* bufferevent-internal.h in Headers */, + A1869E7C288CC107421EA50CAB3D7A45 /* changelist-internal.h in Headers */, + 0F9BFE9CF36FA0EF856FBCFD9350F5EE /* defer-internal.h in Headers */, + DC5381B47E4756E84E90722FA138338E /* epolltable-internal.h in Headers */, + DD3E6E1902E40CC6F8AA31C643F4C811 /* evbuffer-internal.h in Headers */, + F56F310CAC7CB10F55EAE8F2E1C6E694 /* evconfig-private.h in Headers */, + EFC03F1EAEC36B032E66084433B4DBAA /* evdns.h in Headers */, + B5997E72FAF27BC4965545B78D6CA9A1 /* event-internal.h in Headers */, + 1BAFAD4E2C8D9BAB9C51AB5EA0ACD873 /* event.h in Headers */, + B314869AB7CEE997246109CF7188AC9D /* evhttp.h in Headers */, + 35EC1CCF497D02207D4E8FD41D54F57E /* evmap-internal.h in Headers */, + 23FA7352988280C2EE623B66427EC13B /* evrpc-internal.h in Headers */, + 0911B0BF6C7F9D3671AAA712CBB7AF1B /* evrpc.h in Headers */, + 523BE73D9C77E2B415B1830145587823 /* evsignal-internal.h in Headers */, + FA6660038CBA76F686ECABE77A152FCC /* evthread-internal.h in Headers */, + C42DC65831F83CAF2411C9871984741D /* evutil.h in Headers */, + 06C9A25AC4DC7A39AB08FCBAE8362B45 /* ht-internal.h in Headers */, + 630CD241C5AA42CE774C9BFA9A696616 /* http-internal.h in Headers */, + 4794617BBCE41B683926DABB9D23F886 /* iocp-internal.h in Headers */, + 899535A2E478C13DA2D193CA3BE28847 /* ipv6-internal.h in Headers */, + C4875AFE3E0E6ADCCD55A92826E4D0E6 /* kqueue-internal.h in Headers */, + 4C8B76E847EC1BF281896A794EDB1B8C /* log-internal.h in Headers */, + 91BAAE27526FBD0127C99B01A007C98C /* minheap-internal.h in Headers */, + A728C27174F569E0771AB95FF01601D7 /* mm-internal.h in Headers */, + AF39B2243320A56D81A8D3362E412803 /* ratelim-internal.h in Headers */, + 2B136DF6010B19CFB7ED6716E7EF3427 /* strlcpy-internal.h in Headers */, + 0CE3278495A8CAFC7A47D2E1CC3376CF /* time-internal.h in Headers */, + BFCE2633AC63D06451B82D15550FE863 /* util-internal.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -25564,45 +26154,20 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - D054D5CE833AC1372D76167056A83220 /* Headers */ = { + CDFEB92254204B59215A657C81EDF8EF /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - D065E976E0F66159941DCCDB3BDD3C33 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - D0F9C89E72AF88CBD428BAACD3F8B832 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 39B2E790DA449327020997576690812C /* FBLPromise+All.h in Headers */, - 5870B1597C4D6C88EAD06A44C7D309F1 /* FBLPromise+Always.h in Headers */, - 722F9C48DF629C764B06E982D8B580B3 /* FBLPromise+Any.h in Headers */, - 4F4B87E2055B6EE55ED8E44BF45207AD /* FBLPromise+Async.h in Headers */, - 42E27CA2936D272D3F43D4312E8307E2 /* FBLPromise+Await.h in Headers */, - 4E991E2D32408FE453AA115C5C9365B1 /* FBLPromise+Catch.h in Headers */, - 4E5C59BC96E2E907FE218E13C7DD34A9 /* FBLPromise+Delay.h in Headers */, - 8A6F20BC92FA5CD8F44F825AF8359DF4 /* FBLPromise+Do.h in Headers */, - 2904DD0E862B276618DDAB0A6D63DB89 /* FBLPromise+Race.h in Headers */, - BF4D85BAB8D5C7802AFF5D050F344AD9 /* FBLPromise+Recover.h in Headers */, - 71E6C7D6981BD73CDCBAA08E4B3F7BAD /* FBLPromise+Reduce.h in Headers */, - 938B2D270EFDA195D2F0642B481042D9 /* FBLPromise+Retry.h in Headers */, - E5C2EAFC6CEEAEFFBA488054EB69B8F6 /* FBLPromise+Testing.h in Headers */, - 9F2140644E3C319E277EEEFC53474C50 /* FBLPromise+Then.h in Headers */, - B08366768C7248BBBFD785872703E6BC /* FBLPromise+Timeout.h in Headers */, - 181917434DD652D2627462A078CF1AD3 /* FBLPromise+Validate.h in Headers */, - 784E2AAB385BB18D2B5B9408AAAC5BF2 /* FBLPromise+Wrap.h in Headers */, - 58182B304F31C00A037D553625077846 /* FBLPromise.h in Headers */, - D83177DFA388B5DBAA47F4C89082D489 /* FBLPromiseError.h in Headers */, - 3680DBD91772CC039B824A22EFC5FC51 /* FBLPromisePrivate.h in Headers */, - C0EE5BAF2E83CAD0AD161539B2EAE5CD /* FBLPromises.h in Headers */, + E6117DD34413A1D86C9FC793933387DA /* TOActivityCroppedImageProvider.h in Headers */, + 5E414935DECD018A79FCD98D5ECFB1B1 /* TOCropOverlayView.h in Headers */, + A4BC6FA20AC696FFB4D868DEA7EDA236 /* TOCroppedImageAttributes.h in Headers */, + B829AC4A201437872BBBFE86C77C3B27 /* TOCropScrollView.h in Headers */, + C3D4AA82F90AD3E88C29B68BB710A6E3 /* TOCropToolbar.h in Headers */, + 1D7DB118618B351899CFA202028AD8E8 /* TOCropView.h in Headers */, + A72D0A3F6AB1CCB1A25B627C50E7A304 /* TOCropViewConstants.h in Headers */, + 9ACF83B889FD019FAB8881F0F08518B1 /* TOCropViewController.h in Headers */, + 0BA710712CA13C1B9D15CC6616C17A18 /* TOCropViewControllerTransitioning.h in Headers */, + 6F26D779C3AB2A1197DB0289B4936A92 /* UIImage+CropRotate.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -25651,6 +26216,17 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + DB41F3E190D38AA30843DAAC5E46E7F8 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + BE43F0800E11F3DDB0951EBCF34A13B5 /* RCTBlobCollector.h in Headers */, + 25CCAEBEBC15EA8E17F271377684FA16 /* RCTBlobManager.h in Headers */, + 8E29E3515A4CEE0ED7F3697351C05B17 /* RCTBlobPlugins.h in Headers */, + C0B76728A1CD3342EB4E66B93E233712 /* RCTFileReaderModule.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; DE70141E66ACDE79A002F15F926D6056 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -25666,6 +26242,23 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + DF72560A36C076A828625AAC05DDD005 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 47E77AC8AD869ECF994E57F8801A37E5 /* bignum-dtoa.h in Headers */, + 38AFC6746695FC442AB7D8FED57F0083 /* bignum.h in Headers */, + B4AB02391CC37766B2D39816760ACDCA /* cached-powers.h in Headers */, + 1980AA2070B5D05EE9D82CEA0657A228 /* diy-fp.h in Headers */, + BF99C118754DCAC57106804DA2B0F10A /* double-conversion.h in Headers */, + D733A734F0541967B73273D3D8CFBF80 /* fast-dtoa.h in Headers */, + 470C67E65B177A7564DDDB30088B6452 /* fixed-dtoa.h in Headers */, + 6CB56BCBFBCF14734411CAB9B93ABCF7 /* ieee.h in Headers */, + 195934DEE449B865C196D000ED30C1AD /* strtod.h in Headers */, + 17F81717D18C092C2D664D60B5D17FEB /* utils.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; E2E9906A883D6D2B3F652CBB0D5B7B43 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -25674,47 +26267,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - E30882013F067574ED4E1A9750AFE7FE /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - E57BC72BF63214F9F2F57C407EE27DAA /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 1C8E5E0240BDB5B70666AB12265EACEC /* FIRAnalyticsConfiguration.h in Headers */, - E1AA5FAF7E97B66515FE85FCE84E1EEB /* FIRApp.h in Headers */, - 2EEAC9E0C6BAD14844462BAB4168A024 /* FIRAppAssociationRegistration.h in Headers */, - 97BC164D011D7B8E9E42215B525077F4 /* FIRAppInternal.h in Headers */, - 31F7682327EB28D06E4888DE6803DD39 /* FIRBundleUtil.h in Headers */, - 61344DB27EE25590614599D1FBDB86C8 /* FIRComponent.h in Headers */, - 5FA45E9C35CC859F1B70ACFBB7478B4B /* FIRComponentContainer.h in Headers */, - BDA517F8ED368C5E815F3A8471A2B338 /* FIRComponentContainerInternal.h in Headers */, - F496CC4ADEDE541136A65D60488A0FA8 /* FIRComponentType.h in Headers */, - 1DE9DA03238DD3FD74B97616C05C2460 /* FIRConfiguration.h in Headers */, - 195FAEBBB4CE1EAB1EB601AD2E42E9AA /* FIRConfigurationInternal.h in Headers */, - C143E3E13F095EBE4BC73FDC291FD9FA /* FIRCoreDiagnosticsConnector.h in Headers */, - E207C9154C834D67A2562D1BF8EE75E7 /* FIRCoreDiagnosticsData.h in Headers */, - BD6059CFC7E6751CA6359402858246F7 /* FIRCoreDiagnosticsInterop.h in Headers */, - 9D214B97FC48D6FF7190664433AB2F63 /* FIRDependency.h in Headers */, - C4269D1165E163993D21861274D217A5 /* FIRDiagnosticsData.h in Headers */, - 26438AE67E91103F5174D8602A12BC0D /* FirebaseCore.h in Headers */, - 88C828CED02CF4F40C3ED7C6DFAB728E /* FirebaseCoreInternal.h in Headers */, - 1A757FE689ECC2BB4C0DE8771DEDC1EB /* FIRErrorCode.h in Headers */, - 68DE46EA67D56322C71140581D8A03EC /* FIRErrors.h in Headers */, - 4518F1C03A3BB050929BAF8CC97A3F01 /* FIRHeartbeatInfo.h in Headers */, - FB96B9C0C80FA7FED041995EE314FD2E /* FIRLibrary.h in Headers */, - 9E039FF19DE0DA7D3C3792BD2D50EDA8 /* FIRLogger.h in Headers */, - CB2272586ADEBEEB05A3FD7501F2B118 /* FIRLoggerLevel.h in Headers */, - 6CC99B23F0981D7B107BCA8CBA4EF79C /* FIROptions.h in Headers */, - B587A8F153D99D6FABA65A992FA89947 /* FIROptionsInternal.h in Headers */, - 8A56257D54036A87F06837416A22280E /* FIRVersion.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; E817FCCFBA802490CBAAE721F1EF708B /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -25725,6 +26277,40 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + E98C3C15791D4116304B6BED0BED1887 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 8A736F87F6376165CEF7471B8148F5CE /* GULAppDelegateSwizzler.h in Headers */, + C9C8B73891305304B88FBF37BD8A1463 /* GULAppDelegateSwizzler_Private.h in Headers */, + 6E9781A4E5428881254790D7AD977110 /* GULAppEnvironmentUtil.h in Headers */, + C36F2E30F11858A980A2B0AC4D51176F /* GULApplication.h in Headers */, + 62F571EB3D98817641F22836C9F553FF /* GULHeartbeatDateStorage.h in Headers */, + AEDABA06F80505899270CCD9BDD50ECF /* GULKeychainStorage.h in Headers */, + 2D3C1900D6418690DA2E8E12DB6F280A /* GULKeychainUtils.h in Headers */, + EB1D80A3D49F992E63EE8FCDBA258D0B /* GULLogger.h in Headers */, + BB4F6AF89A15D0B403F5AAAB5360A704 /* GULLoggerCodes.h in Headers */, + F604CDE3522C85E4D2A64D403542A20F /* GULLoggerLevel.h in Headers */, + 6D62CF3B1271710DDDF00C71219BE253 /* GULMutableDictionary.h in Headers */, + 645C8C3EFE78BB2D84881B0B1BEDCA25 /* GULNetwork.h in Headers */, + F6F78D543DAE080607B3A86197FAF7AC /* GULNetworkConstants.h in Headers */, + 8B076718314BF12CC935D17DB55025E0 /* GULNetworkLoggerProtocol.h in Headers */, + 1A52E5F79E28E019DE28EEDEE55E4C3E /* GULNetworkMessageCode.h in Headers */, + FFD594DBA168EACB992388FA54912F5A /* GULNetworkURLSession.h in Headers */, + B1013306F4D903EA4671ED172CEFF591 /* GULNSData+zlib.h in Headers */, + 98674B6F902D96C5C51E908741BC41B7 /* GULNSDataInternal.h in Headers */, + 38079F6978D9A598E473A97D33DD9958 /* GULOriginalIMPConvenienceMacros.h in Headers */, + 0D6B2CE35D231D542AD7E1ADCC961B7C /* GULReachabilityChecker+Internal.h in Headers */, + 6D30282648F1A14F609AF954AA50D51C /* GULReachabilityChecker.h in Headers */, + 869AF1FA3CA8A58E80C69F407728F9C5 /* GULReachabilityMessageCode.h in Headers */, + A5201ED9AAC6F75922AD9ADECE5482F6 /* GULSceneDelegateSwizzler.h in Headers */, + 98D42452DF576790B4A295BC04E94D0F /* GULSceneDelegateSwizzler_Private.h in Headers */, + 45FC837D63E1E7BC1DC7E97E87E7AE40 /* GULSecureCoding.h in Headers */, + DB1270F702F323E608761D625B2F42AC /* GULSwizzler.h in Headers */, + 2B0367EBF5494DD605CCA7F32AFD6759 /* GULUserDefaults.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; EBDA5DA22E2D50A282A51D7CB9D5413E /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -25765,6 +26351,16 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + EE2E2A56C5206CA5667A5F0F65F5E033 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + D71ADD949E5B71AA9A76AEC37C234894 /* SDImageWebPCoder.h in Headers */, + 0408D4F196CE6FEF759EB3C4F80CFF03 /* SDWebImageWebPCoder.h in Headers */, + C0F09C80CA920E9A4B8C4B4E52DBE162 /* UIImage+WebP.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; EEA5DFCCB5CAAD88F0625995FB5D09A6 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -25773,6 +26369,57 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + F199C2AE6E0F8B10F7ACE39957025449 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + AB950B153635AD4C2EB9D4A5291B0E23 /* alphai_dec.h in Headers */, + 963E3001EC1C7B83627A8380DF2542F2 /* animi.h in Headers */, + 1A1C8CC2FE5020E056D6C5B0BFCC0A26 /* backward_references_enc.h in Headers */, + 49DB03F31465778B5A09F19853272DEB /* bit_reader_inl_utils.h in Headers */, + 36485D4AD5ACC4DAAC0A312048B6F34B /* bit_reader_utils.h in Headers */, + DEAB09F0EA0C46D82A7CB5A98B9F93A1 /* bit_writer_utils.h in Headers */, + 63FC4E37220FC7EE188C62CFF861FB85 /* color_cache_utils.h in Headers */, + 13EB0662E44AF9A03E5F5C99C6311263 /* common_dec.h in Headers */, + F920995B05B070A46E6D3FE7E394CAD4 /* common_sse2.h in Headers */, + 98876F1B587BD92DBD0457B3B0584F00 /* common_sse41.h in Headers */, + D7D40BF7CADE1583366937B309F97F1F /* cost_enc.h in Headers */, + 9ACF5CA7A74E330B5145DAF34CCAF6F7 /* decode.h in Headers */, + 58703AB85DDAA7CC1B8525B5CEB0D83F /* demux.h in Headers */, + C333CA1C76B724128394EB60F3035FD4 /* dsp.h in Headers */, + 908DB569499743B13CF4A71098C1597C /* encode.h in Headers */, + EFEDDF3B8F0F41CFE8144762FA8C088B /* endian_inl_utils.h in Headers */, + 9AE1BF2B8C06C9D43AB6D88FA2A5D716 /* filters_utils.h in Headers */, + D36CBFFEDA290CB706D0E0195ECAE5F6 /* format_constants.h in Headers */, + 28688192DE40010DCE7006D4CDFA9920 /* histogram_enc.h in Headers */, + 97747D78210FB0127E34B55647D55E80 /* huffman_encode_utils.h in Headers */, + 7FC583A38AF7701D89913D5C5855A6FB /* huffman_utils.h in Headers */, + 24FEC3570B7CFADEE03E408B9D96ECDD /* lossless.h in Headers */, + E3C599A3EE360F5FC0399D3B9E6489D7 /* lossless_common.h in Headers */, + C9DA35E6875F7CA08B65CE508A400D9B /* mips_macro.h in Headers */, + FBBBA70AA350A601D3F8B8BB338AE08C /* msa_macro.h in Headers */, + B55237054455486BC4B657E185484CF3 /* mux.h in Headers */, + 421E289534216EBA4E6C73FDDF9561C3 /* mux_types.h in Headers */, + C5E7721E5278C44044B620EA795E05AC /* muxi.h in Headers */, + C9E59730EEF2DC8EAF2A569B46A51C29 /* neon.h in Headers */, + 22681799654BC4E6A8D51777712BCCE1 /* quant.h in Headers */, + 6ED79CE9B1C60420A72964EA773FF253 /* quant_levels_dec_utils.h in Headers */, + EB4FFF9C252FD851EA6F308B0FD6E94E /* quant_levels_utils.h in Headers */, + AABE0151CF2AA84D99EFD318653A72C9 /* random_utils.h in Headers */, + 18CAE40387B841447FF92D7A5DE89369 /* rescaler_utils.h in Headers */, + 34CDA8FAD8119952CBD91C7D548C5ED5 /* thread_utils.h in Headers */, + E6F9AB804046A1761C274E1978C9D181 /* types.h in Headers */, + 01278CABBFDB29756042EB6FF836EB74 /* utils.h in Headers */, + 8D8D8F73E9D672FA84FC9E6D137AAB93 /* vp8_dec.h in Headers */, + F07567CCB1BD3727ED17130BAC97D1E8 /* vp8i_dec.h in Headers */, + 5BF1CA6A168AEAC6F9C7040377145467 /* vp8i_enc.h in Headers */, + CBCBD455CD0EB79AF0127230B36FC289 /* vp8li_dec.h in Headers */, + 318D33E151FB74850FED3780E7CC1597 /* vp8li_enc.h in Headers */, + 78A7C63DDB2CEB5F4DD9E510CF6AB585 /* webpi_dec.h in Headers */, + 53E0798A557C9D66C44522A1B37588D6 /* yuv.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; F23BCE2C934B4CF40AA140FFB20AAD7D /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -25794,6 +26441,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + F42BA203501459FAC1D4A7C329D5F463 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; FC6FF80EEEAF425F28F78A3DD19ABC36 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -25843,7 +26497,7 @@ buildRules = ( ); dependencies = ( - 9006A70895CF8CE3FCDE3B8228ADC94B /* PBXTargetDependency */, + 98692C7C8FE2287241EEA035C7631C5C /* PBXTargetDependency */, ); name = ReactNativeUiLib; productName = ReactNativeUiLib; @@ -25852,11 +26506,11 @@ }; 04A30E186743192DFB26B0FD7DB8F250 /* libevent */ = { isa = PBXNativeTarget; - buildConfigurationList = 84F4CE1978540A9807A4C7FD4635BFC5 /* Build configuration list for PBXNativeTarget "libevent" */; + buildConfigurationList = F8CFD42AE7B030242732AB15AE9ECBEE /* Build configuration list for PBXNativeTarget "libevent" */; buildPhases = ( - A85538E6D4DBB1BCF2F5730ED4F5CF7C /* Headers */, - 20CDCEE96672F19824ADE9F87DF66F24 /* Sources */, - E907E77D6F488B4C842EC56F8A93D239 /* Frameworks */, + CB9B4DC3940A7331D77370D512322969 /* Headers */, + EFD82CA40C14CB910797804670D9FE56 /* Sources */, + BEE7F8065C4285BE5056ECAF04472D60 /* Frameworks */, ); buildRules = ( ); @@ -25869,16 +26523,16 @@ }; 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */ = { isa = PBXNativeTarget; - buildConfigurationList = 59904C551B4CD2CF2276882863B197DD /* Build configuration list for PBXNativeTarget "BugsnagReactNative" */; + buildConfigurationList = A32C9B46A5C80174852E883C4E0D9727 /* Build configuration list for PBXNativeTarget "BugsnagReactNative" */; buildPhases = ( - 6EC0C35AEEBA496F9F4A023892190EAE /* Headers */, - 6A84CBEBBDFEA5BD7C76A34EADB29413 /* Sources */, - 2392AAD6049195A17E754385221D60F4 /* Frameworks */, + 439A36BB18BD1B207274F82BEEE91308 /* Headers */, + 875EC651EA7F61E6E4A011780F9540F4 /* Sources */, + CAFAD5CA48A9F97C0F72849759ECB4D6 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 8471DB4D2E1C3B286780600EF07FF9F2 /* PBXTargetDependency */, + 4357E184AE69844ADAAC269E238E9D76 /* PBXTargetDependency */, ); name = BugsnagReactNative; productName = BugsnagReactNative; @@ -25896,8 +26550,8 @@ buildRules = ( ); dependencies = ( - 37F58CD04E6A21D9BB33077D2C82321E /* PBXTargetDependency */, - E6EE987996FC690BBE6CAC0E03916E9B /* PBXTargetDependency */, + 6993071F7A30C2D7699777010A54248D /* PBXTargetDependency */, + 7493163EAD908739624B91B1C8C9CEA8 /* PBXTargetDependency */, ); name = EXPermissions; productName = EXPermissions; @@ -25915,9 +26569,9 @@ buildRules = ( ); dependencies = ( - 51ABAFCD14D4B0B21B171C3538DB1371 /* PBXTargetDependency */, - 715FB6665DEF3E5A4E427C2BAE301673 /* PBXTargetDependency */, - D60C35BA1C462EFC63A3EA8F9BCCCD6B /* PBXTargetDependency */, + 65536AEE9D451AFC59232497BD9E3758 /* PBXTargetDependency */, + 701A33CBA059100356C854DE0E947B16 /* PBXTargetDependency */, + 86765640EE4EE6291250C72B96EE7496 /* PBXTargetDependency */, ); name = RNFastImage; productName = RNFastImage; @@ -25935,7 +26589,7 @@ buildRules = ( ); dependencies = ( - 08D78BF8ABCE342121E65E3FF4931847 /* PBXTargetDependency */, + 17AAA8CD778A23D4083A60EBD8BA53F4 /* PBXTargetDependency */, ); name = EXKeepAwake; productName = EXKeepAwake; @@ -25953,10 +26607,10 @@ buildRules = ( ); dependencies = ( - 931422279EA25DA724508C5073BAD061 /* PBXTargetDependency */, - 192CC19B33504F2B92CF0DB47E0722A9 /* PBXTargetDependency */, - 5A1DD66DD63927935CD1B9D7B99DE34C /* PBXTargetDependency */, - 03B3469B694A892D8C0510D79CA55FDA /* PBXTargetDependency */, + CBC530D6F7B27ACBE5A6293E378BECB2 /* PBXTargetDependency */, + 023DC1CB412C0D4BC1F4A95A16259056 /* PBXTargetDependency */, + 3175B3D770C4373F470ECAE3DFE50990 /* PBXTargetDependency */, + 2E4FEC08BE144D5B09521C17A8EBD589 /* PBXTargetDependency */, ); name = RNImageCropPicker; productName = RNImageCropPicker; @@ -25974,7 +26628,7 @@ buildRules = ( ); dependencies = ( - DF64D789417A501A2F9F59963BB7E502 /* PBXTargetDependency */, + 64C4F1B280680EB579106C3220E31FAA /* PBXTargetDependency */, ); name = "react-native-orientation-locker"; productName = "react-native-orientation-locker"; @@ -25992,9 +26646,9 @@ buildRules = ( ); dependencies = ( - A78EB0A2C0BA269218D21B56A161EE0B /* PBXTargetDependency */, - DD733B77884DA3E50CE70D132EF0DA38 /* PBXTargetDependency */, - 0A5D3DF30AB6A64628076A061120CBBE /* PBXTargetDependency */, + 0747FF41083DD1A99FADC6EE41CFEE04 /* PBXTargetDependency */, + 7B45DA068601682BDFA0CBDC90C1EC8E /* PBXTargetDependency */, + 2949F4A36A4922742D87277DDD9BDC81 /* PBXTargetDependency */, ); name = EXAV; productName = EXAV; @@ -26012,7 +26666,7 @@ buildRules = ( ); dependencies = ( - ED8A6D0C6C438972FB9F1F4B0CB1FF00 /* PBXTargetDependency */, + 405628134675E977826D5B55DE8B79F2 /* PBXTargetDependency */, ); name = RNRootView; productName = RNRootView; @@ -26021,17 +26675,17 @@ }; 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */ = { isa = PBXNativeTarget; - buildConfigurationList = E60C4AC4A14ED2937FD57AC1F4FC8B76 /* Build configuration list for PBXNativeTarget "SDWebImageWebPCoder" */; + buildConfigurationList = 738FA1577E1FBFE5249A004C44942440 /* Build configuration list for PBXNativeTarget "SDWebImageWebPCoder" */; buildPhases = ( - AAFD4CC17A722C657F3F4C5C98E85E9D /* Headers */, - 99B97B9EEA95C334A3DF4AC2B262470A /* Sources */, - 6880D65C338A33F255339A451A702A86 /* Frameworks */, + EE2E2A56C5206CA5667A5F0F65F5E033 /* Headers */, + EF198BC1489771EDEC3ADECD0EFE1C7A /* Sources */, + B18D6FC4695EE9D488646219D64136DD /* Frameworks */, ); buildRules = ( ); dependencies = ( - 6732CF5B05575F9573C59C3611E4ADFD /* PBXTargetDependency */, - 85868C1A3644BC20A171E2810AD0EF2A /* PBXTargetDependency */, + 13247A46AA92E6A3D3F5A744F4D58B24 /* PBXTargetDependency */, + D5970FCEC1BE9CF9E7E686F21D352874 /* PBXTargetDependency */, ); name = SDWebImageWebPCoder; productName = SDWebImageWebPCoder; @@ -26049,7 +26703,7 @@ buildRules = ( ); dependencies = ( - D6C099774C52D0B83C113F8AB6AF0166 /* PBXTargetDependency */, + A2C205EF932D6CC2C24DB178FEDD7421 /* PBXTargetDependency */, ); name = RNCMaskedView; productName = RNCMaskedView; @@ -26058,16 +26712,16 @@ }; 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */ = { isa = PBXNativeTarget; - buildConfigurationList = DEEA8D615B52EBC9E58C46FE07EC713A /* Build configuration list for PBXNativeTarget "Flipper-RSocket" */; + buildConfigurationList = 1F6E12F51F17AC245732BF2B07C5151A /* Build configuration list for PBXNativeTarget "Flipper-RSocket" */; buildPhases = ( - 917316BD091596E033026B922C981708 /* Headers */, - 433F1EB3438235C0E8342D2BF10F98B5 /* Sources */, - 172F476CA5A61759483A7819800102E7 /* Frameworks */, + 5B2F360B077AD1BDE533C46FCE59D91E /* Headers */, + C08A6AE727D4D6D3A9FAEA70756BB5EA /* Sources */, + 274DED14DC226F4FFEB0135F04B1EC27 /* Frameworks */, ); buildRules = ( ); dependencies = ( - CAC7EA6CD758940A3E763A144798E90A /* PBXTargetDependency */, + 5FCDF394FAF1FC06876C773403175334 /* PBXTargetDependency */, ); name = "Flipper-RSocket"; productName = "Flipper-RSocket"; @@ -26085,7 +26739,7 @@ buildRules = ( ); dependencies = ( - 893F55C2E1726BDE40F981AEA777A204 /* PBXTargetDependency */, + F35A58FC7C82309A726EAAF755C4F3CF /* PBXTargetDependency */, ); name = RNScreens; productName = RNScreens; @@ -26103,9 +26757,9 @@ buildRules = ( ); dependencies = ( - 52814B87422C35A4E90033ECAB20E710 /* PBXTargetDependency */, - 5E955644591C5EBBA252E72D6E2BEC97 /* PBXTargetDependency */, - 618833EF33EA22534EBD8E3B84713097 /* PBXTargetDependency */, + 916D50F5FE1E54BBD1C8E72B51B53704 /* PBXTargetDependency */, + 676736B56DF49E326D3444ABC5C7E9A5 /* PBXTargetDependency */, + 102EB782CFEE7891EE38DD374F8F4EF0 /* PBXTargetDependency */, ); name = EXImageLoader; productName = EXImageLoader; @@ -26123,130 +26777,130 @@ buildRules = ( ); dependencies = ( - A8AC230311E5D950C1AE37289ADA35C2 /* PBXTargetDependency */, - C08D01023CEB40009CAEDF5BEBE64E13 /* PBXTargetDependency */, - 474C7F375B829225481A68D6E5F4823C /* PBXTargetDependency */, - A8C183ADFF325CCF108C8AF27F2FFA6A /* PBXTargetDependency */, - CFA6A3C29F8BA5B53E490CE1AB6F5B08 /* PBXTargetDependency */, - 077A83FC1B9331EA5BB2BE0456B90460 /* PBXTargetDependency */, - FCEB675474315554E56F909C5385F8E6 /* PBXTargetDependency */, - 0EFB1642B97CF63EDA3726A488F967F7 /* PBXTargetDependency */, - 599F9B48FD073FE845534555DF044E75 /* PBXTargetDependency */, - 6E978B3FD2494B80881554E87B5AC12D /* PBXTargetDependency */, - F82DBB7D50F8FBA24D08F60D227BDB7E /* PBXTargetDependency */, - DD33444C57E7602983B47EFD12BD6999 /* PBXTargetDependency */, - EE80A67680F2FA22E488F577E56D409A /* PBXTargetDependency */, - FC8F393A30BD08B1CBCA0EFFEDAF4E31 /* PBXTargetDependency */, - 628C1AC28BD4FAB8892EE18FC750FE24 /* PBXTargetDependency */, - CF558CFD06A73FD81A4CD22115BC4AD2 /* PBXTargetDependency */, - 676637AD435A9DBF27B02D04766D0189 /* PBXTargetDependency */, - 26B0E1C6AA0CC720892C106A5DEF8C03 /* PBXTargetDependency */, - 527D76D3C8AEF9B78EAE947278A162CD /* PBXTargetDependency */, - 037413AFE9CD2F74BA8AE7C4C73950AB /* PBXTargetDependency */, - 45DA802D53B134B7BAB1BA80D9FE13B0 /* PBXTargetDependency */, - 0139853C2D560B9656C96B4294C6F613 /* PBXTargetDependency */, - 43AAC54B0842A68B91149D7DF857F8A2 /* PBXTargetDependency */, - FFF95D9EF66BCD495EDDBF1ECCE894CE /* PBXTargetDependency */, - 5D62F598D83AB55EABDD6F882E5D5BD9 /* PBXTargetDependency */, - 64A14C5ABDE14FABD401DCFF99229673 /* PBXTargetDependency */, - D80AFD8E64FAF32F56C3769D16E7980F /* PBXTargetDependency */, - 3905C7C94C2F97D2A432085EF86D8A7A /* PBXTargetDependency */, - 9EE22FC60EF54ACC1DBE0AA3747CEB1E /* PBXTargetDependency */, - C7730CDAE83A9D61ADA667305DF945BF /* PBXTargetDependency */, - 08E47F5646CD6DC1C45018196C21840A /* PBXTargetDependency */, - 3162774C5AC6C617024AB9DD02B06D26 /* PBXTargetDependency */, - 0A4D228E6CA08C1DB07ED6D18526418D /* PBXTargetDependency */, - 606A3276AAD1EAC320BAE6389D0C30FB /* PBXTargetDependency */, - 87407455D5F8F643B7CFDFEBB70EBF34 /* PBXTargetDependency */, - A20F5D9C126F75013BF0826A56268AD1 /* PBXTargetDependency */, - F3DE145F74AF699EEB8B63110BAB8423 /* PBXTargetDependency */, - 2EC601B51ACF6646477C0B9DBE0C8A13 /* PBXTargetDependency */, - 9FBA2354E3D9DB3527BA990D751BEFE8 /* PBXTargetDependency */, - 94E6452465AF27684D436C6CD1B60B7C /* PBXTargetDependency */, - DE8706F248540049774EE5FACF0855C9 /* PBXTargetDependency */, - DBE90DAC921DFA27938C3FB621BFD425 /* PBXTargetDependency */, - 59956535344F9807939B5C2C88AE6762 /* PBXTargetDependency */, - 2FB2D7DA9A023E2F0D0A1F02F98A8AFA /* PBXTargetDependency */, - 78411C5A89054AE96B72D987742A2ED8 /* PBXTargetDependency */, - BEC9BB0FA1714B2AF50150DAE10735EA /* PBXTargetDependency */, - 3D33BE3A762348179ABF94950FBC10CB /* PBXTargetDependency */, - DE73C10DDD33AFDB328847815EA41F2E /* PBXTargetDependency */, - D958079E393E49C166150E150992EFE8 /* PBXTargetDependency */, - 0E96A523AF9137B466652B2C93E9C9F3 /* PBXTargetDependency */, - 81B91CDB766011F0A3CB89A497563BA5 /* PBXTargetDependency */, - 080350D12C5845215D57F0BE2CB17699 /* PBXTargetDependency */, - 8834748F69970420A0C047A536B2E279 /* PBXTargetDependency */, - 34236E252FD9195CEE5A3C04472D90AB /* PBXTargetDependency */, - 38919DFB4C4E6C7E9F10D6D5EEA795DA /* PBXTargetDependency */, - F5D0FA090B15C2D68547188C26068DC1 /* PBXTargetDependency */, - 5FB227947629FE6972C35D2C302B606D /* PBXTargetDependency */, - C51EA05C2F12F2A1610D249236E5CF60 /* PBXTargetDependency */, - ECAC5014308C1D1C4C163E47559761E6 /* PBXTargetDependency */, - BFEDB1AD2BD8403D75C8749771DC9063 /* PBXTargetDependency */, - 2EF385D312295B2ED33648E690147994 /* PBXTargetDependency */, - D896F3A450C1D1FDFCB4F31B7349EFC4 /* PBXTargetDependency */, - 268854AC68CC965534B32EA4F1ED6F59 /* PBXTargetDependency */, - 93F4945C15EA7870DFC40AAAB99C0A37 /* PBXTargetDependency */, - 5269E9AA72F20F94642DAECF349E10F9 /* PBXTargetDependency */, - 5CD499FFDE5CBE835C6F3437CFD85AED /* PBXTargetDependency */, - 26FDCCD37123CAC21C1F639D69A5CD64 /* PBXTargetDependency */, - FF70B5F95EBDE727DF7A47E18FBC02AB /* PBXTargetDependency */, - 7681B384FACF44C9CA6711394ECF2240 /* PBXTargetDependency */, - FD149B0BD072449B000C01F97817D3F4 /* PBXTargetDependency */, - D1C5B5C0BC875BDCDB1612E89713449D /* PBXTargetDependency */, - 5CD2B7844930E235DACD3401FBE3A0CA /* PBXTargetDependency */, - D01C636B06618661D7FBCEDA87570C44 /* PBXTargetDependency */, - 37011B8420161E3E5A99D6848346B5C1 /* PBXTargetDependency */, - 29EA4ED8FBD4ED397CA18B7171BCCF5F /* PBXTargetDependency */, - 8FCE61B09EB680D196E626A48A03B006 /* PBXTargetDependency */, - B0A0205BD814F23134023375FFCCA5CE /* PBXTargetDependency */, - 2CF4394CC6361EEEFAA30ECB7B3A7C84 /* PBXTargetDependency */, - 12C603133E73B613BDEA9A5483E3EC09 /* PBXTargetDependency */, - 49EFF3E168CD8FAB9F0EAF6AB456D37C /* PBXTargetDependency */, - 43E10AA1E980F7D16403C7E18DF3BD35 /* PBXTargetDependency */, - 0726E995EA2E937584A210AC1975C702 /* PBXTargetDependency */, - 9C31EDD280AF258E88C68ABDC97A4E4E /* PBXTargetDependency */, - A15FFA2EF1F030D15EE0316F869A97F8 /* PBXTargetDependency */, - E174C9E7C2B3FD5D9A6B862AE2BF96C3 /* PBXTargetDependency */, - CAA6ABEEB8FA262D69EBA17C73AF6BFD /* PBXTargetDependency */, - 2BEFB363CA1BCA787DC2C620114F9E0E /* PBXTargetDependency */, - 312B2E7C01623947495DD8C56BBEF743 /* PBXTargetDependency */, - 62A56A2DFA71726ABF8B2505A2ACC100 /* PBXTargetDependency */, - F12873A5823B1AB4D8CF0B653A610DCD /* PBXTargetDependency */, - 9DA3485A2C16724696F806AE228FBF07 /* PBXTargetDependency */, - A9189E995F89C730A6A219FAFEB63AC7 /* PBXTargetDependency */, - 65358490025E1B66852F5A53E1FC6F7A /* PBXTargetDependency */, - 0E0083428DCE034B0872A5A297CB8D7C /* PBXTargetDependency */, - 85E97EE5379ABE65FFB83DB861A26FCE /* PBXTargetDependency */, - 6699F6A4203E3C6A999DBD97368EF5AE /* PBXTargetDependency */, - 5D4E8104C34F2CE9CC96872A8ACBF793 /* PBXTargetDependency */, - 356C2F379F1BC3566EA471DC78477BFA /* PBXTargetDependency */, - CCC391B368BD0B91D469BB2CA6F8B171 /* PBXTargetDependency */, - D2B966683EE28CCBC5BF801D8D41ABBD /* PBXTargetDependency */, - 9C9E63E9F273E9D3E84E56DAC02389AE /* PBXTargetDependency */, - E101E6772CEE39905698F758610A35B0 /* PBXTargetDependency */, - 45B7B265C1FA945FB5430D12631B597C /* PBXTargetDependency */, - 64EF1990695DDE49001553DF45A509F6 /* PBXTargetDependency */, - 406AE17D33361362228B867040280C8F /* PBXTargetDependency */, - E0EB6589DFFB347F102BEAF1BA10E596 /* PBXTargetDependency */, - 9D32CFB355F69C5E259624F89FE6F530 /* PBXTargetDependency */, - 7F0C10149CEC927D678A4BE5F91805CC /* PBXTargetDependency */, - 11E48876680D20E989A944623E0BC486 /* PBXTargetDependency */, - FF60DC07F7136CAB67008912845E53D2 /* PBXTargetDependency */, - E1BB173C00706C35740D5DBF00C16E6A /* PBXTargetDependency */, - 50320B26BFD294773E3EDE98C0454DE2 /* PBXTargetDependency */, - 892D078D96DC9844D08643D60345036E /* PBXTargetDependency */, - 00DE39865943CF717348AD172BC7C83E /* PBXTargetDependency */, - 9BA16BBF291158D7C8C8C4F74F5D356E /* PBXTargetDependency */, - 8746CA0EDF400A49BF0901BE9A611BBF /* PBXTargetDependency */, - 534F9E122DB24E85702E1E8714315C23 /* PBXTargetDependency */, - 4BF46508A9DB59CE64A9F2375FCAA5C6 /* PBXTargetDependency */, - 3B511B32DD9A613C7DA284B356F49648 /* PBXTargetDependency */, - D0A0376906910BAA8460F83C7F180F89 /* PBXTargetDependency */, - 02A80888021A1468C9F6A1A8CA3AECF3 /* PBXTargetDependency */, - 706D93CAB33F52A8C448154431EB0490 /* PBXTargetDependency */, - F2D3DF01B438ACBA32CD58E4CDF359BC /* PBXTargetDependency */, - FC72A98FCBB94276073322FBC2B2A9E7 /* PBXTargetDependency */, + F2B211935424B8CA5ACCC6849FD9E141 /* PBXTargetDependency */, + DEA06A4DF6FE01D0FF1EF48771EFB66F /* PBXTargetDependency */, + 5CA15E2593F18ECBC25B0F05BB514584 /* PBXTargetDependency */, + 21B41452FA2F8F3442B9CC7708BCB06F /* PBXTargetDependency */, + 1222D4127271B30975E49C7FD3C23E40 /* PBXTargetDependency */, + 8CF2441F8BD11960DA4AA94B96460799 /* PBXTargetDependency */, + 4198DBF717060F37ECD20B06242ED852 /* PBXTargetDependency */, + 2661208CCE1F00280F0E01A2C84C829A /* PBXTargetDependency */, + 65C8BA29FE7253CB8B9E1D0D252FC9C5 /* PBXTargetDependency */, + 583AF72861CDF291EAB93BE58CE37279 /* PBXTargetDependency */, + DDC3ACC7530FC66545CCCF4EBECF9F2B /* PBXTargetDependency */, + B3A102A653F8F336B127E80AF17EBB63 /* PBXTargetDependency */, + AC8BD4CEAD023EEE36E2E908923A8ECC /* PBXTargetDependency */, + EE2167E981F015ACD2531DEF5241A9DE /* PBXTargetDependency */, + AC484CAEEE5320A1BC5AC3D4ACD6877B /* PBXTargetDependency */, + 32C340D547B5AB248F6C70A8188A3EDE /* PBXTargetDependency */, + 7E9DFC8CDAB5BE14339B4BF013586709 /* PBXTargetDependency */, + 920563EF6A58C256566C1B63B3406F6B /* PBXTargetDependency */, + 57097B63797E713D7643C6A5E3439E5F /* PBXTargetDependency */, + E5F258B753DF4470EC09F0A0B415DA7F /* PBXTargetDependency */, + 03865736D758155BB037B351B702B7E5 /* PBXTargetDependency */, + 95B0791F6B593EF8C3842D1D2117615B /* PBXTargetDependency */, + 43ACC804C8E0A7A027E86712E67CEDC0 /* PBXTargetDependency */, + B6FB772AFC597DE6B1E5CCF2C629299A /* PBXTargetDependency */, + C428B327F4B1972A9C003E09867A11C2 /* PBXTargetDependency */, + 0840800CD20106D00B2EBFA7708C8206 /* PBXTargetDependency */, + 8EEE597D6F15BBBE8976374C97512BCA /* PBXTargetDependency */, + 497DC10D59E214E595B243244DA1F097 /* PBXTargetDependency */, + 2108D9CAAF5CF92769E06CD365A8C20E /* PBXTargetDependency */, + 2B0F9258D6E03CD35B38BA8F4EFAD8A8 /* PBXTargetDependency */, + 811C0F9F44E41DCFD8C8A91D33F3B418 /* PBXTargetDependency */, + 7102FE14E40BF579704B03EA33DA9B30 /* PBXTargetDependency */, + A84CED7A05332A441075CAC6C058D03C /* PBXTargetDependency */, + 645D79FF62CAC2A54E24162363297934 /* PBXTargetDependency */, + FE932D735560D2FE9F140B5146491503 /* PBXTargetDependency */, + 25E9CDB9B0F0E4600973A238874D3043 /* PBXTargetDependency */, + 9BCCD88B6F1E4251F3C5BBBE59C6E0C3 /* PBXTargetDependency */, + D886B02BB59010A46256B4D360043811 /* PBXTargetDependency */, + F0A855A2393B34C7F850E0B77A59D8D4 /* PBXTargetDependency */, + 81C65564EFF0EC930D10A29285BB32F9 /* PBXTargetDependency */, + F783C0B452654905AB4B0EA92CADFB9A /* PBXTargetDependency */, + 0BDAD72133359C849228AA6F500B4F8C /* PBXTargetDependency */, + EA27FD1BDF1340B10762FA5BCA6897F8 /* PBXTargetDependency */, + FA14E07C57ECC7D7672F14CCDD7C72F6 /* PBXTargetDependency */, + 8C3D6F3780F23C75CEF5EE36A80AC247 /* PBXTargetDependency */, + A75A5CF292DFF36941B8CB88478BD985 /* PBXTargetDependency */, + B870CA6314695CC6FA00A140C37AD7AD /* PBXTargetDependency */, + DCBEED8BB8DA785CC953085B281C524B /* PBXTargetDependency */, + E666B2E35AC66E44685924DFCCCF1F3A /* PBXTargetDependency */, + 034053B23106F483E5AA0A380D03DDF5 /* PBXTargetDependency */, + 8287DCE0A4C67FF9FFA22DBBB8BBE6ED /* PBXTargetDependency */, + 074E4A1E06D215325358F9491EBA62DD /* PBXTargetDependency */, + C044D558D359AF04E60CC12561BDBF86 /* PBXTargetDependency */, + C500FF6F9FD28AA0CDC82C34D09F21A4 /* PBXTargetDependency */, + CF3F0E99D7D9D99EA8F16114EF73C6E0 /* PBXTargetDependency */, + 908AB5A357A27B2B87B523F6CC8CA365 /* PBXTargetDependency */, + 08A1C64265C2F8101FBE98D0FE90E609 /* PBXTargetDependency */, + BA48DD50F927E36DB7B127AAA1D117C8 /* PBXTargetDependency */, + 01B2D8EBF420FD3A9D94FCC7E74FDE02 /* PBXTargetDependency */, + A6E2130A7D24FA5B81949ABE8CD69C80 /* PBXTargetDependency */, + 4B22F750E4C07276D2A655B25A97346A /* PBXTargetDependency */, + 4C33B34B7075C530C2CBAE11C078C834 /* PBXTargetDependency */, + E3F5BE3B036BDE2C64FADCDA8867C2A8 /* PBXTargetDependency */, + 9C27F86BF24266DE36575539849D4693 /* PBXTargetDependency */, + F639A2830B5246E1270913827CC2F3B6 /* PBXTargetDependency */, + CF510660DA0A379441CA54D78B3E9996 /* PBXTargetDependency */, + 1279A41EC69B47E4A1E369C0DC83813D /* PBXTargetDependency */, + 14A6CC6C8BCD2260E0E95AD40F7ED787 /* PBXTargetDependency */, + 2BFE27110C8564961592C6EB49163405 /* PBXTargetDependency */, + 08E46DFA0C77B11BC79425135D63F0DE /* PBXTargetDependency */, + 42130F32E5ACBA11931B8505FBA96DB1 /* PBXTargetDependency */, + E0081F81334E401F9C1A5A022B1619AB /* PBXTargetDependency */, + 6D1A2195BCBC778EF5DD84456C1E5EAB /* PBXTargetDependency */, + CFDBBDAE7ACBC68BA01C04FFD98FA244 /* PBXTargetDependency */, + 49FCAF70EDB0E0CC3A63D4CA082248F1 /* PBXTargetDependency */, + 1EBD4BF0D1B1D5042760457C1E0EAE56 /* PBXTargetDependency */, + A6BE20308DC8C4A9E9B0C7A2694A14FC /* PBXTargetDependency */, + EB6A8B3DC7D661BFB02311F88AD70312 /* PBXTargetDependency */, + 1AFF613E47D143D42406774C30AFE976 /* PBXTargetDependency */, + 7097E1040EB2D3CDD2F5814CE58C0D44 /* PBXTargetDependency */, + 5150D075C8BA6B2EF4AA6C05A3F271F0 /* PBXTargetDependency */, + C69E87FC24543C044754DC841E96CDAC /* PBXTargetDependency */, + 6ABCFBDF5754D43AA1611E365947C3E0 /* PBXTargetDependency */, + 72015D997B70C110A5868EF457E45399 /* PBXTargetDependency */, + 099B02666A9FED3BE202D35B882EC3AC /* PBXTargetDependency */, + A7A92E2A6F1A9CB1A3CFEE65E46D906E /* PBXTargetDependency */, + 172A72C506F04FE3CDE6F0087DC1D067 /* PBXTargetDependency */, + 467FCD9997BF1229D4479AC347766A41 /* PBXTargetDependency */, + 701BD2FAE150DEB0D1CF6D90D9E2A6AF /* PBXTargetDependency */, + 178002977A789D07FFD4D43F25338040 /* PBXTargetDependency */, + A3E83816F91FB6FF8637A270F369AC3C /* PBXTargetDependency */, + DD3DAA8F6CD1E76CA6540183D4C4E406 /* PBXTargetDependency */, + 840D0A62BD19786FB3EE9B25821F01C6 /* PBXTargetDependency */, + 3064E763BF957DC8E9794B2627637A5C /* PBXTargetDependency */, + 53E6E7AB1435109529CB119E993C83CA /* PBXTargetDependency */, + C86AB4E7CF49D96DEB001D5AC052EAE0 /* PBXTargetDependency */, + 1A82BC42D58BC88EEF8A286565649720 /* PBXTargetDependency */, + DD8B13F01399292057CB1A2120262898 /* PBXTargetDependency */, + 2F79BF7954E8D88EA79D3F6E73D470A9 /* PBXTargetDependency */, + 37C38E28B4F83D9D3B47F10A4B8ECD01 /* PBXTargetDependency */, + 6CDDC1372E89814CC5FAD351EC98BDBA /* PBXTargetDependency */, + 0987DFED30CBA12D096400B5E00D080C /* PBXTargetDependency */, + E7C3274244E88B5BDE0B7169B66BCDCA /* PBXTargetDependency */, + C90C5C65C08E296588C20BD840D761C5 /* PBXTargetDependency */, + A2B9CD32F6F0425727F2C55F0C85FE07 /* PBXTargetDependency */, + 4A9ECB304B438785AF0FAD6CB9F1FE69 /* PBXTargetDependency */, + D30DA2F6131F309E8489FCD3F6B28D8D /* PBXTargetDependency */, + 27857BA84FB3E455EFB965D7B9063D89 /* PBXTargetDependency */, + CAD5B8FF90A549E6DBF757D7CAE7BC4F /* PBXTargetDependency */, + 78951F5A14BBC91D71CC9A9C98980436 /* PBXTargetDependency */, + A2F44A5C2BA2EB24DD1708DDEEE059DB /* PBXTargetDependency */, + B7E81AADB9277C770C1A7599D4F5AA40 /* PBXTargetDependency */, + 25647F70B283957AE06620E92FFAAC5C /* PBXTargetDependency */, + 1D4F454A04BD32AEEBC9C1DAD90D7D03 /* PBXTargetDependency */, + 1CAFB183EA9A7371EA71469687B68DEC /* PBXTargetDependency */, + 63F850D1806C6FDADF6BEC88BFD79B0E /* PBXTargetDependency */, + 1E3809456F4C268C50A8F17E3ED97CF3 /* PBXTargetDependency */, + 0A71813E42742064C2A6E1B6A8DFA217 /* PBXTargetDependency */, + 66CF47390ED7BA63ADF88AEE3731C347 /* PBXTargetDependency */, + DE17F7C3F95D7DBEFE469E2AF2AF4DCC /* PBXTargetDependency */, + FFE8A4ECA14FCD3CD5EB7EAC0B33AB4C /* PBXTargetDependency */, + 2B4069E8A2F436A96415D5BECB4EDD2D /* PBXTargetDependency */, + 3FD2C54AF777811EAF0FE410CCE2922D /* PBXTargetDependency */, + 230D18F4E26F49CBC7E952BF79BFF76E /* PBXTargetDependency */, ); name = "Pods-defaults-RocketChatRN"; productName = "Pods-defaults-RocketChatRN"; @@ -26264,7 +26918,7 @@ buildRules = ( ); dependencies = ( - 6C067EF59335ADFE95DF02763869ECA4 /* PBXTargetDependency */, + 4C6C7C7084F1BB63703742B6A2A97C7C /* PBXTargetDependency */, ); name = EXAppleAuthentication; productName = EXAppleAuthentication; @@ -26273,11 +26927,11 @@ }; 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */ = { isa = PBXNativeTarget; - buildConfigurationList = 9E0F00133940B3857278BDB5D920C97E /* Build configuration list for PBXNativeTarget "DoubleConversion" */; + buildConfigurationList = 71A269A6A30314D97285226FED0F1E7E /* Build configuration list for PBXNativeTarget "DoubleConversion" */; buildPhases = ( - 03812168D8D33476705F0CB2DEA4C475 /* Headers */, - 17B853CD1F965037D02366EEF4D9E34B /* Sources */, - 6E008439510B6ED114938115A0EB0462 /* Frameworks */, + DF72560A36C076A828625AAC05DDD005 /* Headers */, + 98995ED7E2028AF31651990ED98C4112 /* Sources */, + D6A39A77ED1F270CD92DE17EE0AF1656 /* Frameworks */, ); buildRules = ( ); @@ -26290,11 +26944,11 @@ }; 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */ = { isa = PBXNativeTarget; - buildConfigurationList = D553DC1A3A8E9EEAEDB339E9378E0D62 /* Build configuration list for PBXNativeTarget "Yoga" */; + buildConfigurationList = 5DBE2DCB6796B02028ED4C52BAFB7AAD /* Build configuration list for PBXNativeTarget "Yoga" */; buildPhases = ( - 4D6862A8E191DF5AE1CF7122F778C75C /* Headers */, - 647E38E6B5EB871B1696B5ECC7F7B2F2 /* Sources */, - 475B0F8DA0AF2B2461EA4C4F715E8FD3 /* Frameworks */, + 2AB57443CC4E99A143415ECD93076ACD /* Headers */, + EAAA44F6927E6769C213B4E505BE7D75 /* Sources */, + 41BB1927509BDFF50ABBF429C29F99A7 /* Frameworks */, ); buildRules = ( ); @@ -26307,11 +26961,11 @@ }; 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */ = { isa = PBXNativeTarget; - buildConfigurationList = EB81B24EC726FA945FF255FEA58BF4AD /* Build configuration list for PBXNativeTarget "PromisesObjC" */; + buildConfigurationList = B061CB847A6B17B4A6853188C57B9A28 /* Build configuration list for PBXNativeTarget "PromisesObjC" */; buildPhases = ( - D0F9C89E72AF88CBD428BAACD3F8B832 /* Headers */, - 450370CDE8A64A01A08B03948A6683DA /* Sources */, - 37965C4B44CD30493B7D1FD1BECDE4CA /* Frameworks */, + C898263E32F3F1140ED22AC06685C837 /* Headers */, + 4A45652BC3533F744487E687413FA07C /* Sources */, + 3D6EAB8755CEC7BF11F57D2E2C9531B9 /* Frameworks */, ); buildRules = ( ); @@ -26324,11 +26978,11 @@ }; 2D4D3D5AD93ADCCF3DD45A88009E48D6 /* TOCropViewController-TOCropViewControllerBundle */ = { isa = PBXNativeTarget; - buildConfigurationList = 0191EBCDEAC54F73B1C36FCE229AAD18 /* Build configuration list for PBXNativeTarget "TOCropViewController-TOCropViewControllerBundle" */; + buildConfigurationList = FC5AD24E36A3AD83A522C0813F4CE405 /* Build configuration list for PBXNativeTarget "TOCropViewController-TOCropViewControllerBundle" */; buildPhases = ( - 16ED42DE09CDA0417100A9BE8A2EF395 /* Sources */, - 61F983BEDAFE853E33F34659614EF164 /* Frameworks */, - FF9E0D0B9F8E979F55D35C6A1268ABAC /* Resources */, + 5C103A2A787BFA1A9C1D4144082DCE47 /* Sources */, + 5BB61348516797F98DB7291477F25B93 /* Frameworks */, + 1CDF264D79F4FF1E8BFA81C7C3CE6617 /* Resources */, ); buildRules = ( ); @@ -26341,17 +26995,17 @@ }; 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */ = { isa = PBXNativeTarget; - buildConfigurationList = C3D0426236F60AD52E4A47D29C1748B9 /* Build configuration list for PBXNativeTarget "YogaKit" */; + buildConfigurationList = 1A2C6335995D1BCC2F3C6958499EF751 /* Build configuration list for PBXNativeTarget "YogaKit" */; buildPhases = ( - 77646E794BC33A74CAFC1854F3E6C010 /* Headers */, - C2EDFA1CDC096A56ECA505AEBECA294D /* Sources */, - 5BE88CB16BF10A63308954D3A3240D3D /* Frameworks */, - 9D9B393568FBF72B52A30BA814D97FA8 /* Copy generated compatibility header */, + 19C46365A35E0C2C9C5299D1ECF73E40 /* Headers */, + 53B9592D24C6B9A1B59A7588DCDA1094 /* Sources */, + A56E11ADBCC08C7D525CDBB967BFDC18 /* Frameworks */, + 1823C66040CEB06687F1EF0782B7BF34 /* Copy generated compatibility header */, ); buildRules = ( ); dependencies = ( - 854B24351FEA55D37DDF524644DC2D93 /* PBXTargetDependency */, + 034E5C0209CBECFB809F8130768D9FD1 /* PBXTargetDependency */, ); name = YogaKit; productName = YogaKit; @@ -26360,11 +27014,11 @@ }; 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */ = { isa = PBXNativeTarget; - buildConfigurationList = D997A2C85675EE932296A5CE6B5DEA65 /* Build configuration list for PBXNativeTarget "SDWebImage" */; + buildConfigurationList = B8C714D33B1F0EF4A5C21EBDD1A9D0C6 /* Build configuration list for PBXNativeTarget "SDWebImage" */; buildPhases = ( - 1BBD563925F260961FD2E4DDD38C2C84 /* Headers */, - 7819616A93A2BF95E014E4B384A1D4D8 /* Sources */, - 1CB02A67658BF9EF985FC4256F4B8967 /* Frameworks */, + B51C0489402053ED6DCB530EBBB7F9D7 /* Headers */, + 119F6C97B7BCED275EA0A8CD8D1D6249 /* Sources */, + 8D565FA49E6F0EFA98DE5496CD8AD27D /* Frameworks */, ); buildRules = ( ); @@ -26386,7 +27040,7 @@ buildRules = ( ); dependencies = ( - 596EF4B5C1AB54245186E58293662EBA /* PBXTargetDependency */, + BA6A973DDD33103C468F46B983DFE285 /* PBXTargetDependency */, ); name = "react-native-restart"; productName = "react-native-restart"; @@ -26404,7 +27058,7 @@ buildRules = ( ); dependencies = ( - FEC53D29230BE8E96F3F75D0F93E79DE /* PBXTargetDependency */, + D161AA9E493683667739B43C8317CFA7 /* PBXTargetDependency */, ); name = "react-native-appearance"; productName = "react-native-appearance"; @@ -26422,7 +27076,7 @@ buildRules = ( ); dependencies = ( - E3D0DDDC478484EC36B1B23E5D60465E /* PBXTargetDependency */, + CD4B5C1E45E3E8DFD54B011419B2D7DF /* PBXTargetDependency */, ); name = EXHaptics; productName = EXHaptics; @@ -26431,17 +27085,17 @@ }; 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */ = { isa = PBXNativeTarget; - buildConfigurationList = 5A5ED4374BB4B4FD3C3E42BD0EDC1BE1 /* Build configuration list for PBXNativeTarget "FirebaseCore" */; + buildConfigurationList = 7B543AE55440CE5A43FCC3D6016EC9E5 /* Build configuration list for PBXNativeTarget "FirebaseCore" */; buildPhases = ( - E57BC72BF63214F9F2F57C407EE27DAA /* Headers */, - 525392756DB79E99570CE323800481FE /* Sources */, - DD73490FB4A6F416707DD67D1922CAF3 /* Frameworks */, + 458601195806D041EC881F9499B3A210 /* Headers */, + 4C7B4C2EAF97FA345A877D832CA1E0A6 /* Sources */, + 8BA1BE1AA86046F731A299A90F48F47C /* Frameworks */, ); buildRules = ( ); dependencies = ( - AAA4772A040AD138D702D3D4A945FF9C /* PBXTargetDependency */, - 3016AF2AA2ACC0486CA1732C2C50AD74 /* PBXTargetDependency */, + C232A7FF37C1AE0FFDE74447F62883BF /* PBXTargetDependency */, + 545A4AF9A1D8CB1B153D4B10EE69AA3F /* PBXTargetDependency */, ); name = FirebaseCore; productName = FirebaseCore; @@ -26450,24 +27104,24 @@ }; 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */ = { isa = PBXNativeTarget; - buildConfigurationList = 7931144279FBED5A91B631F3FEE844E7 /* Build configuration list for PBXNativeTarget "React-cxxreact" */; + buildConfigurationList = 96381B3900394EFE2BDAAAEA7033B397 /* Build configuration list for PBXNativeTarget "React-cxxreact" */; buildPhases = ( - BFDE7A3191D1A2EDA88605EED151BA87 /* Headers */, - 40C02EF5E2C495C919A34833127D829E /* Sources */, - 6EFAD81D4B213D5DEE07058A24A3D260 /* Frameworks */, + 3059B2C06C0C8DA12016159ABC171B1C /* Headers */, + E468314F3DA7F4FB7C59EEDAB31A45C5 /* Sources */, + 094AC3245FADAF5DBBEA7ECAB638E8D1 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 8ED091DD3DF97A8B9B1012FEE57D205E /* PBXTargetDependency */, - 7D3E87201C0C8409FF8AC5A7D7457DF8 /* PBXTargetDependency */, - D834279254B0C7ACF2479501B3BE5FFC /* PBXTargetDependency */, - 3D84F2EF30046FC6BA8073D5450AC3F6 /* PBXTargetDependency */, - 885C1CE9233E57854712A9088DEF0D0A /* PBXTargetDependency */, - 1084EFB101405E009E6DE9DB50B25BA7 /* PBXTargetDependency */, - 6F525BAD6AEA6EEC3B66BB3FE6AA7EE2 /* PBXTargetDependency */, - AADE9AF3778A0416AA6405DAD8ABDF80 /* PBXTargetDependency */, - D4D18D60FB2EA6014FE85A825B81B9E8 /* PBXTargetDependency */, + 078D974DD97F50B9C6CCBB9918E83A0C /* PBXTargetDependency */, + 83D8B9BA2DBE44821381343040980B6C /* PBXTargetDependency */, + 7EBF7D57EBE020F41B75A6E77D7DE164 /* PBXTargetDependency */, + 7402CB955DDD0637CA5143CB0A3723E8 /* PBXTargetDependency */, + FC8DDF4FF08E1267D2F322F0D0C63BEA /* PBXTargetDependency */, + 5F571588DED8CD6DC32B84A343E0B5F7 /* PBXTargetDependency */, + 812576CF1B14D38CFD4AB410E48CB754 /* PBXTargetDependency */, + FC6DD80EE67019A86FD9AC55BEBB8703 /* PBXTargetDependency */, + 2B175006EEBB4754F0225B7C8BC64255 /* PBXTargetDependency */, ); name = "React-cxxreact"; productName = "React-cxxreact"; @@ -26476,11 +27130,11 @@ }; 47D2E85A78C25869BB13521D8561A638 /* libwebp */ = { isa = PBXNativeTarget; - buildConfigurationList = 8F20E180006E5DE2396685A5F76AFEC0 /* Build configuration list for PBXNativeTarget "libwebp" */; + buildConfigurationList = 3770992238CC70E195D95BD65A4CBB0F /* Build configuration list for PBXNativeTarget "libwebp" */; buildPhases = ( - 9A16AE39033C60FD6046BC3BCE08EFE0 /* Headers */, - B4DD86F1C94D21EF3FB8CF73A9EEB524 /* Sources */, - 99C75404E330E2197D2E1A2D04160284 /* Frameworks */, + F199C2AE6E0F8B10F7ACE39957025449 /* Headers */, + 174E1BF540D3AB822C2632DC54CE8780 /* Sources */, + 8FCE07682FCCB59E7A8309D3F9FA6FB5 /* Frameworks */, ); buildRules = ( ); @@ -26491,6 +27145,147 @@ productReference = 5E4674603A5D5B9215FFA0F8E69F8B71 /* liblibwebp.a */; productType = "com.apple.product-type.library.static"; }; + 482EBDE650175DC0388C6A050B3C0173 /* Pods-defaults-NotificationService */ = { + isa = PBXNativeTarget; + buildConfigurationList = 4620B19A669D314A728A82DA2FB87AD1 /* Build configuration list for PBXNativeTarget "Pods-defaults-NotificationService" */; + buildPhases = ( + 7691E1377235BB28A9F529896405AE0E /* Headers */, + 3BFA16AE1B7566BA6AB59F625FE6A36B /* Sources */, + 0C20EDC920BD0413FA427B46B3C71C6A /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 91EA6AC9B57114BB62DD3A69E6F5103D /* PBXTargetDependency */, + 55E1FE5AE22D716794F29E844D471F74 /* PBXTargetDependency */, + 6F91BE23ECBCFABA8B354ED1E1031DC2 /* PBXTargetDependency */, + 9EC8FD6A24BBB7B9FC03E7FF8B07FFBE /* PBXTargetDependency */, + 9D59C10AD02C1392D4EB4647313D59FE /* PBXTargetDependency */, + E4F5D3B94588C218BF9C100B84C6A075 /* PBXTargetDependency */, + 5861981662817C08538AD7A7B4233796 /* PBXTargetDependency */, + DC0ED551EFC6EE2F326453377E398D9A /* PBXTargetDependency */, + 28C225390D601F7F26D0229C0FFF31E3 /* PBXTargetDependency */, + 7B9DD0F66B0F2A43C2A579F507D234D0 /* PBXTargetDependency */, + F24ACB77083A6DAB95C320F06A34F11A /* PBXTargetDependency */, + 07C10A1E9B8B2A274082B2922CF9B0E5 /* PBXTargetDependency */, + AEDDE43A4D5A05BAA46914F336C340F0 /* PBXTargetDependency */, + EE5F6A4639A7EDD5CEE9F0873D0F0D17 /* PBXTargetDependency */, + F961B6E5EDDFA153489A0EA0B21C3046 /* PBXTargetDependency */, + A98BEFEBEE2A263213D1EA9054538DEF /* PBXTargetDependency */, + 21BE100CF0914EB2BF31C49A7BE507B7 /* PBXTargetDependency */, + 5E814D6EAD3D160CC917E6A6C519D18D /* PBXTargetDependency */, + E5735C832BBA26C0C435A11161E4EB38 /* PBXTargetDependency */, + 07FA387EC0297BBBA9DDD5D35FA21B96 /* PBXTargetDependency */, + 7AAC9F8D900B26A30565D2F6120DA8F9 /* PBXTargetDependency */, + 983C992F2059B3A804FFA43A1D2BD8AA /* PBXTargetDependency */, + A16E473880E79C9BAED327FE4A850FA2 /* PBXTargetDependency */, + EC5CF44DB173C16D818740EBE140FB7C /* PBXTargetDependency */, + 4201A73C685C56F03B9D3D49A497BCDE /* PBXTargetDependency */, + 216122E9234F5971FF1CF67F1CCDD440 /* PBXTargetDependency */, + 59638A79D1BE63A016040C41C934A6AF /* PBXTargetDependency */, + 6469032EC0BDD254E11F80F33CAEFFEF /* PBXTargetDependency */, + B768A2936EC6450881BBE62BF06CE17F /* PBXTargetDependency */, + 52CC9F7C860360D30C0F8A89E50277A0 /* PBXTargetDependency */, + 3B7696342960EEA74B5CC67082CB1F8C /* PBXTargetDependency */, + DB97236F66A57262C52B3B98533A0034 /* PBXTargetDependency */, + CCA37FC1F84ED319ECBE060917888510 /* PBXTargetDependency */, + EB2234E42F614E221E9C2762E1D92E52 /* PBXTargetDependency */, + 88398AD355B6636B76E9F77F87C02C89 /* PBXTargetDependency */, + FC402FFC82655E5068EA7D8C4ABDDA1F /* PBXTargetDependency */, + 896D7B7DC2FE314B5BC1A51F3A7DADAA /* PBXTargetDependency */, + 61C49BE955DEE297374966CBF2B3BC63 /* PBXTargetDependency */, + 491B3F89EA2045D87CE1600AC1737D6C /* PBXTargetDependency */, + 1E23D776B9D4DCB080BC8174A886F02E /* PBXTargetDependency */, + 422FB271E965D9C3F9C517EF98CA8558 /* PBXTargetDependency */, + D23980354896856CCB60AE5880E83FA7 /* PBXTargetDependency */, + 86315F8902265B6E194C11E38C8A50EE /* PBXTargetDependency */, + BF7D4C976F005C24D563E3819075B018 /* PBXTargetDependency */, + 9CDE08DE69F8AE701EDB98CA74149DC2 /* PBXTargetDependency */, + 0488996339E8F3C3C943A32A96E35477 /* PBXTargetDependency */, + 026A60D8E32FC29726A9580A70A9BC41 /* PBXTargetDependency */, + 336061BF8A1A24CFB3C4576B05CE2E5C /* PBXTargetDependency */, + A7A86BC292DA08FDCCFDA8DA74372F03 /* PBXTargetDependency */, + 8424EE4A91AE060ADA27CCBCE081E037 /* PBXTargetDependency */, + 0130898724A79A099F87C8185BBA7921 /* PBXTargetDependency */, + 78B14BAB8EF5D941C3A61ECCC908C2CD /* PBXTargetDependency */, + 8D45C9838077CCAF261ADC02A1482D5E /* PBXTargetDependency */, + A524415CEAEA140F4F892C5BCAEE2AC8 /* PBXTargetDependency */, + A63FC147A5DAC0F61A94311D4E651916 /* PBXTargetDependency */, + 6CF07CFE3C95F650E4543E9731D6CD26 /* PBXTargetDependency */, + DD5DB1FB428F507D8429233D21875DBD /* PBXTargetDependency */, + 436D3611F7B73336B5155D6C8D345448 /* PBXTargetDependency */, + A63ACBFC901BD602A503FEF3B359FAA0 /* PBXTargetDependency */, + 8E2DCF47167B05A4CF03BD915D99B5BE /* PBXTargetDependency */, + DFEF77B5978F89BCC466AE8F8F1E18FA /* PBXTargetDependency */, + 423D4AD64E4ADCD1C7D50C1EDE0FA472 /* PBXTargetDependency */, + 68607FA533E2A2AFD7E2A3E032566776 /* PBXTargetDependency */, + D0292C1B2429B43F23D019A6DCB3141E /* PBXTargetDependency */, + 3843D592CE752EFD0472076C47689855 /* PBXTargetDependency */, + C8BCCB3A4AEA99D1B9532E4C9AA4FDA2 /* PBXTargetDependency */, + 0FB7A1C1B57CDE3CCA2154BAF152A69D /* PBXTargetDependency */, + 5E14E8B0B4BB94AE88F136249446F9C2 /* PBXTargetDependency */, + E6105FD2FAAEC37ECA47B5629B59D297 /* PBXTargetDependency */, + D64C4C2A4426BB985CF88196BF6619AF /* PBXTargetDependency */, + 364CA9680D14731BA43C67135B0541D4 /* PBXTargetDependency */, + 8288C1BB0066817F4D0A79469199FE98 /* PBXTargetDependency */, + 8E49E3D2F3F5703C84260486EDECF331 /* PBXTargetDependency */, + F245C87E8D3E3385DD25BE5BDFAC5C3D /* PBXTargetDependency */, + EEAA8C1B2F793CA5C90884C440BC3B02 /* PBXTargetDependency */, + 164147E3B39910E42F7DACAACFBF50FD /* PBXTargetDependency */, + 1C2DC5B573629DC45024D8422C651DE2 /* PBXTargetDependency */, + 99AA18813BA4DE5B76F0994B5728B40B /* PBXTargetDependency */, + 9B00A41F50B94C8966A4D3CDF1BB20E0 /* PBXTargetDependency */, + B0612B1412FDCBF89598056360F9C540 /* PBXTargetDependency */, + C13D756AD00FEC7147ADAA60A2A23F11 /* PBXTargetDependency */, + 7B60121BB75EEA4C6F6A3703C1715BB1 /* PBXTargetDependency */, + ECE7AFE1D096FA74E94B425B1186A33F /* PBXTargetDependency */, + 1AE4A96BAAAA3CDD1FECB55CB34DB2D5 /* PBXTargetDependency */, + 03D9E1100257F39EB96883C92EA0BBB9 /* PBXTargetDependency */, + 2EEA42EABDC86D487BE41A23911ECADA /* PBXTargetDependency */, + C819B9B776A8ADCF056E9BDED4CEFBA9 /* PBXTargetDependency */, + C6890E325CB6EDE7EB296F8FA3CDEBB3 /* PBXTargetDependency */, + 60F2E897804A3907D12533365455682E /* PBXTargetDependency */, + C18F27B691BCCB376A34D964726A8B87 /* PBXTargetDependency */, + F7CC014DAEB23FCFC0C6F2C3A9232414 /* PBXTargetDependency */, + 24BF32B2FD718BA1A0F7F7FF855B8B4F /* PBXTargetDependency */, + 64E00D14CB3047AA3ABDFCD256D93382 /* PBXTargetDependency */, + F645E2E772CA14C06516031D80F0317F /* PBXTargetDependency */, + 9F6AF0A89ECE6DF23629AE287EFCEE44 /* PBXTargetDependency */, + 6D9E8739A02CC300F7F5D3C0C6E05CBF /* PBXTargetDependency */, + 6C4704B24AB5BC66273D0DED6523335C /* PBXTargetDependency */, + 9619F40AD2306EC2F641B1D3961D55F5 /* PBXTargetDependency */, + 5489DE56EE52FBEA75BD819B859C3373 /* PBXTargetDependency */, + 7855AB1EF38EC7FF24743A7B1A8D946D /* PBXTargetDependency */, + B95FC6B55F33A36394F9AB8DCCBC4520 /* PBXTargetDependency */, + B4E062E2E9E2604E771D3084703D7337 /* PBXTargetDependency */, + A3009D671B6B58B28F192A36DCF69021 /* PBXTargetDependency */, + B69EE3925FFB08BD7ADC46664DD9D29D /* PBXTargetDependency */, + C773E6A9D2242FDDD12807F13BB89C9E /* PBXTargetDependency */, + DFFFC59936C55436EC9A3A97124BAEEE /* PBXTargetDependency */, + 3FEA5461ADF7BEB66BDD4B85FEA58C80 /* PBXTargetDependency */, + 3A21C7270158EA16592FBB033A92B6AE /* PBXTargetDependency */, + 1C6E1C8492633C739CFABD0BDD07F9CA /* PBXTargetDependency */, + A77DBA8C1D30F3A94B780607793034AC /* PBXTargetDependency */, + B802A407AF1E60C6A9A30C402CAFC171 /* PBXTargetDependency */, + EA4EF392A40F32D997469F0F041AE245 /* PBXTargetDependency */, + 07CA5199BF349E39C0E20814C168AD9E /* PBXTargetDependency */, + 7C3015F0E74CB20B01CF0708B519234F /* PBXTargetDependency */, + 4B53B2B2CBB045744B662202EBAA1C54 /* PBXTargetDependency */, + 72955D5A1190BE46045B44CC13497EDD /* PBXTargetDependency */, + CE478DB43EC7D6CBE45113AF3B2E5928 /* PBXTargetDependency */, + B140DE0093704E7A31389CCAB0B7DAE6 /* PBXTargetDependency */, + 472EE483EEDEE9ECE87B0D79F598490D /* PBXTargetDependency */, + 68CB531A02326234071CB1B997368BF1 /* PBXTargetDependency */, + 362E75FDE4BA11EA5859D3DE31E98029 /* PBXTargetDependency */, + DD024583C693EC3CC79E2880CB0BA862 /* PBXTargetDependency */, + DFB102086B85EC275C5353AF984FC1C6 /* PBXTargetDependency */, + 2A98D15B1891DEDEC714F635127CE4D0 /* PBXTargetDependency */, + ); + name = "Pods-defaults-NotificationService"; + productName = "Pods-defaults-NotificationService"; + productReference = 43ACA7A17003998EDE71C59EE7DDBB10 /* libPods-defaults-NotificationService.a */; + productType = "com.apple.product-type.library.static"; + }; 4A95B7CD1D5F80C5E8CD9CDA00D41F70 /* EXVideoThumbnails */ = { isa = PBXNativeTarget; buildConfigurationList = 5B7AF4A60B5F86191A4466E1625487C2 /* Build configuration list for PBXNativeTarget "EXVideoThumbnails" */; @@ -26502,8 +27297,8 @@ buildRules = ( ); dependencies = ( - F2E7CE91BFBDF4428AC42F126C90E7C7 /* PBXTargetDependency */, - 29AA90C277490864B1A8A3F010104042 /* PBXTargetDependency */, + 3FA6CC37752C495C4DC4BBC825ED126C /* PBXTargetDependency */, + 93E89E422704884B4D0CEDBCFFC4F1F7 /* PBXTargetDependency */, ); name = EXVideoThumbnails; productName = EXVideoThumbnails; @@ -26512,22 +27307,22 @@ }; 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */ = { isa = PBXNativeTarget; - buildConfigurationList = F50BB148E2A9CCA7D3FF46F33F0F8AC5 /* Build configuration list for PBXNativeTarget "React-RCTImage" */; + buildConfigurationList = 8A3817F2D05E60F8690A927B2FECFE32 /* Build configuration list for PBXNativeTarget "React-RCTImage" */; buildPhases = ( - 857B883361190310EF3FBC0E2EB52CA0 /* Headers */, - B82EABD9363D8E5DB135C8383050D80E /* Sources */, - 8C3E3EE89FB808069A90389026C8C6FF /* Frameworks */, + 32CA56678550BDEBCB904E02464BB0BF /* Headers */, + ADF251BC5EA8DAB367F97065FFE9DB22 /* Sources */, + DDC4D8C0F4080E0C98424DA76891575F /* Frameworks */, ); buildRules = ( ); dependencies = ( - F699CB2F58F4F6A5009909D5A408117F /* PBXTargetDependency */, - 0BB0717DDEA1C836E6473F79388A105F /* PBXTargetDependency */, - 849D6178DB9706830549A71B0106BDC3 /* PBXTargetDependency */, - B89EB50CE36E3722352618E309491AD5 /* PBXTargetDependency */, - 7DBB5BC2A7AFE8165DD83BA90E0C992D /* PBXTargetDependency */, - 0AACCAC93F0300664F0910C267DE86E9 /* PBXTargetDependency */, - 11E833916049F4DB07E16086E08ED48E /* PBXTargetDependency */, + CD0885A802848EF019F70776F0EF6AB3 /* PBXTargetDependency */, + CFAAAFFC68A3A992B971826F0248FCAB /* PBXTargetDependency */, + EBE357417F1D61F9ECA679BB0B0C19AB /* PBXTargetDependency */, + 65D5406984A8C99714CCBE3E3C7087CC /* PBXTargetDependency */, + F951FB0B0ADC207F6C474E9975820E68 /* PBXTargetDependency */, + 11A58981D85B7E911875AD1BC1BF46A1 /* PBXTargetDependency */, + F70740EC13D52B3D116F1D5E7CD68D7D /* PBXTargetDependency */, ); name = "React-RCTImage"; productName = "React-RCTImage"; @@ -26536,21 +27331,21 @@ }; 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */ = { isa = PBXNativeTarget; - buildConfigurationList = 58B358352112D6650B745A6557877849 /* Build configuration list for PBXNativeTarget "FirebaseCrashlytics" */; + buildConfigurationList = DFE894F34C613273A95DB869737428CD /* Build configuration list for PBXNativeTarget "FirebaseCrashlytics" */; buildPhases = ( - 6D6A97E0E62CD26641ABFDE3FE51E64E /* Headers */, - A43EDAC78DF808F2F5324033BFAB207F /* Sources */, - BCE62B42C4C7509DBC84703EE4FCCE40 /* Frameworks */, + A067FEE71F7CBF7E7ACE1F844CA3BF56 /* Headers */, + 069C3EC6AB38AF5395FEBEA123AD52DB /* Sources */, + 0CDFE3C2D078FB44B58EF903F4DEAA7F /* Frameworks */, ); buildRules = ( ); dependencies = ( - CDCEDBA0CF0E5910A90305B1CD1B7150 /* PBXTargetDependency */, - 43337E3D6AF2A213EA5FAD6A35854A09 /* PBXTargetDependency */, - 6BAA5D7BAAAE495EE528BA99A2A1ECE2 /* PBXTargetDependency */, - 2ED389112A5C8744B8996EAF80A00E68 /* PBXTargetDependency */, - FF25CCB564F1385AC1AA00F62DE137F6 /* PBXTargetDependency */, - A82BD5127624B9166D8039F67B1A0AE7 /* PBXTargetDependency */, + 36C4211413790D6C5AFD8E3FDEF2D5F9 /* PBXTargetDependency */, + D379E9EFA13009E76B11C1CB758362D8 /* PBXTargetDependency */, + 77A926C9ACC5A87888C5ECC7302E6F7F /* PBXTargetDependency */, + 4E399426831F7EB26EE9C24E11DDAB57 /* PBXTargetDependency */, + 45F36F7E5FFC97AB19834B4D0E54217E /* PBXTargetDependency */, + 1FE8CB41B12894B5CEB5D52D3F96E233 /* PBXTargetDependency */, ); name = FirebaseCrashlytics; productName = FirebaseCrashlytics; @@ -26559,20 +27354,20 @@ }; 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */ = { isa = PBXNativeTarget; - buildConfigurationList = 944B3C79D57E2F6A812F64077F103ED0 /* Build configuration list for PBXNativeTarget "React-RCTVibration" */; + buildConfigurationList = 7F611E2A3BEBA446BFEEE2DC10AE6C59 /* Build configuration list for PBXNativeTarget "React-RCTVibration" */; buildPhases = ( - D054D5CE833AC1372D76167056A83220 /* Headers */, - 9FC3A851A5B8D599AEDBE7DADE6A6C20 /* Sources */, - 2820E078F798E0621ED492A4B4F4F010 /* Frameworks */, + F42BA203501459FAC1D4A7C329D5F463 /* Headers */, + D1A788E06A778C565109E2A44D8F75F0 /* Sources */, + 06C7CFE6615FAB6FFC979FFD210C6D6B /* Frameworks */, ); buildRules = ( ); dependencies = ( - E8DB3A36BDAACAEEFD8E8E5A6A729730 /* PBXTargetDependency */, - 04891143BF14FA628634F3E5D13C6895 /* PBXTargetDependency */, - 9D0CA0A0A0A5DF5DC4F570A69203DB28 /* PBXTargetDependency */, - 170869A1C9869CBD0688DBB799C17155 /* PBXTargetDependency */, - B31C78B082FB7089D7AEFC723FB70CDC /* PBXTargetDependency */, + C293F750696B6364014EBF60FCDB932D /* PBXTargetDependency */, + 653CE825267220637177BE2583E4112E /* PBXTargetDependency */, + 3779707C73F3DE7A10BCD31E4711FC62 /* PBXTargetDependency */, + 67D8BEABA3F8EBC6CE5CB6BEBA9EBE12 /* PBXTargetDependency */, + D1F87FBFA6D2B08C9C037D9B1388FF4D /* PBXTargetDependency */, ); name = "React-RCTVibration"; productName = "React-RCTVibration"; @@ -26581,11 +27376,11 @@ }; 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */ = { isa = PBXNativeTarget; - buildConfigurationList = 7E9E84DDA295C79931CC4BE869FBDDDC /* Build configuration list for PBXNativeTarget "GoogleDataTransport" */; + buildConfigurationList = FB20FE6C26236192FEAE9C7E4F120BFA /* Build configuration list for PBXNativeTarget "GoogleDataTransport" */; buildPhases = ( - 4D68E44745CC1D45BDBFA0009A784B5B /* Headers */, - 68708F3A5EC554CD1F8C7E38AC0C7B83 /* Sources */, - AAD8BC25F21011EF09EE8965BD76BB7B /* Frameworks */, + 57092A702927FA7B3B62B36BEE47203D /* Headers */, + F4B320F3E91DE4B87DDFE2D0C0CE9001 /* Sources */, + 8F59E186ECE4687B417F87A75B24BAD0 /* Frameworks */, ); buildRules = ( ); @@ -26615,18 +27410,18 @@ }; 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */ = { isa = PBXNativeTarget; - buildConfigurationList = 2710AE0DF184914E6E1439215EC4B379 /* Build configuration list for PBXNativeTarget "FirebaseCoreDiagnostics" */; + buildConfigurationList = 822465291AE619E4378783952B69FA08 /* Build configuration list for PBXNativeTarget "FirebaseCoreDiagnostics" */; buildPhases = ( - 0D77D143C53C01F27460E6B5F8B6065A /* Headers */, - D970F708032E43B20EDBDAF3786F9BE7 /* Sources */, - 179E66E1718A7CC64A7EDDFDC25E7501 /* Frameworks */, + 6315E710FE63AC0E5B4AFF9CF253E145 /* Headers */, + CE43AC7EA78FCFF268F3EFD6B4C3F832 /* Sources */, + 0E524B4CD3E5901ECA12F9118A571F54 /* Frameworks */, ); buildRules = ( ); dependencies = ( - FA71699906763D610C1E1FB85245D77B /* PBXTargetDependency */, - 778238DA120A322BD5807F384A8DB976 /* PBXTargetDependency */, - 4EE4A54A2D3E9AE6545EF2CF6CCBC24C /* PBXTargetDependency */, + 876D68D975072D0B9A21D51F964A4F79 /* PBXTargetDependency */, + E85E05E1B6F2791A88C822DB6D5F8D92 /* PBXTargetDependency */, + 078460A4645A81AE39FAD23D3F825E5B /* PBXTargetDependency */, ); name = FirebaseCoreDiagnostics; productName = FirebaseCoreDiagnostics; @@ -26644,7 +27439,7 @@ buildRules = ( ); dependencies = ( - 9045A1F09BF3B1603231DD3686A68F3D /* PBXTargetDependency */, + 448750D1387299A1B3A26BEAD4C7CB0F /* PBXTargetDependency */, ); name = "rn-fetch-blob"; productName = "rn-fetch-blob"; @@ -26662,7 +27457,7 @@ buildRules = ( ); dependencies = ( - 35918F994332774C9AE5F50644A3F802 /* PBXTargetDependency */, + A57CB5642DC7276FDA316BAD26A63E4B /* PBXTargetDependency */, ); name = "react-native-background-timer"; productName = "react-native-background-timer"; @@ -26671,21 +27466,21 @@ }; 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */ = { isa = PBXNativeTarget; - buildConfigurationList = 8B20D7A94013954F57C2D6E5D53C9B54 /* Build configuration list for PBXNativeTarget "React-RCTNetwork" */; + buildConfigurationList = 59895EA922DCBE154BBAE4A66CE3FC6F /* Build configuration list for PBXNativeTarget "React-RCTNetwork" */; buildPhases = ( - 41E4A58626B58E33A1458433E0050A98 /* Headers */, - 031E5A53D908EAA0475B987C0185CAF3 /* Sources */, - E92823B16502817B1480C140CB9E6C52 /* Frameworks */, + 984C8E2F9CB427774962B5D5A39BFDB4 /* Headers */, + 066DA302594018DDE82D9C06013CF433 /* Sources */, + F5B4F2569A623305018E44F0E870F184 /* Frameworks */, ); buildRules = ( ); dependencies = ( - A0DDAD591A4DF6D3BA9A4FC16E772429 /* PBXTargetDependency */, - C09189B97D9015822936513854118BEA /* PBXTargetDependency */, - 97E2BCECA2C97A3605CEF17985BB194E /* PBXTargetDependency */, - 119A39E51680A5AFD2D7F437475945C6 /* PBXTargetDependency */, - 63388EF3C9E44A38784A9361D326FC61 /* PBXTargetDependency */, - 599F716A4DA2C20F09A10C19E8104CBC /* PBXTargetDependency */, + 6B3EC17DE68B67E7992CB0D7B262D71E /* PBXTargetDependency */, + 43ECE30E8D4E874AF146B44B4B275D15 /* PBXTargetDependency */, + 26810AE7FE981900F70BD7964FAC5013 /* PBXTargetDependency */, + 968933C047F03FE6D4B0552C53BBA71E /* PBXTargetDependency */, + 62F2F15800E7D3A7938F0460AA150145 /* PBXTargetDependency */, + B743B5977BBB8D0234AD6E3218BC3280 /* PBXTargetDependency */, ); name = "React-RCTNetwork"; productName = "React-RCTNetwork"; @@ -26703,7 +27498,7 @@ buildRules = ( ); dependencies = ( - A672F6B30C306F95793FAF6DF968D719 /* PBXTargetDependency */, + 0EF8F91F8248B9EE6B7CFE0746816F4A /* PBXTargetDependency */, ); name = RNBootSplash; productName = RNBootSplash; @@ -26712,21 +27507,21 @@ }; 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */ = { isa = PBXNativeTarget; - buildConfigurationList = ED1A4FADA1E50EFC76CB2B365A8C66C6 /* Build configuration list for PBXNativeTarget "React-RCTSettings" */; + buildConfigurationList = DEC693597FD4C7125596D0B86C299A0B /* Build configuration list for PBXNativeTarget "React-RCTSettings" */; buildPhases = ( - D065E976E0F66159941DCCDB3BDD3C33 /* Headers */, - A41D60B3E1070B6690F275D3FE51351A /* Sources */, - 40E6B6A0F07187BC91D0AA2FBAA4888E /* Frameworks */, + 9FEB9B117DAEEF5122BD92A1808CEBCE /* Headers */, + 0FD50EA1E347276D2ABE00A0568C0CAF /* Sources */, + 36A4838F1353C315E6135E06D576B5B3 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 06AB9716311384E627A25AE76B5894AB /* PBXTargetDependency */, - DF1A92BDAF21DA150ACF57A30236D172 /* PBXTargetDependency */, - D3B88D9D67A8DFE13CCB9E2605B00584 /* PBXTargetDependency */, - A0AEAD7D988299EAD14FC3477F0A823D /* PBXTargetDependency */, - 657C5AD199EB3A0A5EB0FC81534D56C2 /* PBXTargetDependency */, - 3D75C7612D6EA4E0FB71F7CDBD9BAB8E /* PBXTargetDependency */, + 49BBA1C24F1F3DC42D10CDF3EF1FCF05 /* PBXTargetDependency */, + 228C43EFED492A9CDAE3BAC1A9122F35 /* PBXTargetDependency */, + 4618914ED41B387104F6ECA6AD76E506 /* PBXTargetDependency */, + CF4F16D520F54F4AD4180A4B8995DB01 /* PBXTargetDependency */, + 4F3A78AF0E846B0721CBD23B3A755A33 /* PBXTargetDependency */, + 906A7A53E1CE515CD93208173D84815E /* PBXTargetDependency */, ); name = "React-RCTSettings"; productName = "React-RCTSettings"; @@ -26735,11 +27530,11 @@ }; 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */ = { isa = PBXNativeTarget; - buildConfigurationList = A5083F2F1ADABBED3934775654D2D99B /* Build configuration list for PBXNativeTarget "Flipper-Glog" */; + buildConfigurationList = D1CF8345119FD80695F191C0AC44D161 /* Build configuration list for PBXNativeTarget "Flipper-Glog" */; buildPhases = ( - 1B703D5A0769A7D001E1A07EA821558C /* Headers */, - CB510AC0584676A07D9CE41AB32EF09D /* Sources */, - 6D58224FD96376E857EE12668FDD6B7A /* Frameworks */, + 627AB77CCF28FE754C1EFDB4F4B322DD /* Headers */, + 763F378568628874D9438F483AD8700C /* Sources */, + EF44AAFDF7D1EFE4BD2D0AEC87F54183 /* Frameworks */, ); buildRules = ( ); @@ -26761,8 +27556,8 @@ buildRules = ( ); dependencies = ( - 2CDB43ED1D2011458A951967E81B579A /* PBXTargetDependency */, - 383E0FB7D49928909E8F5952A6A276BC /* PBXTargetDependency */, + 233F4B6AF76A4C0B88D44325A753C4E4 /* PBXTargetDependency */, + FF54C724D5DAF823BE3974E3D7184E02 /* PBXTargetDependency */, ); name = EXConstants; productName = EXConstants; @@ -26771,11 +27566,11 @@ }; 6D979AB5FDA2E858850D9903776A30B3 /* RNImageCropPicker-QBImagePicker */ = { isa = PBXNativeTarget; - buildConfigurationList = 387DB6F37AF7FCA86588CBE8AC457954 /* Build configuration list for PBXNativeTarget "RNImageCropPicker-QBImagePicker" */; + buildConfigurationList = 2F4C94552F3812029C75BFE5A2952573 /* Build configuration list for PBXNativeTarget "RNImageCropPicker-QBImagePicker" */; buildPhases = ( - CB272EAEE940FC0EC9D9CFC8C256ED2A /* Sources */, - 80FF80A3DFCCEFD65569A1FE9203E7DB /* Frameworks */, - D0E2FFD6DBE103B472C725575BA19023 /* Resources */, + 5387423A40B18CF901D255B022BC483A /* Sources */, + 5CB9AEADFD9920EE12A7AB31A87E6C9B /* Frameworks */, + CE184DB926BB1665815AA7E15DE3C0CE /* Resources */, ); buildRules = ( ); @@ -26788,19 +27583,19 @@ }; 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */ = { isa = PBXNativeTarget; - buildConfigurationList = 8A32E75EA1372E53C1C3907720DE0B3F /* Build configuration list for PBXNativeTarget "React-RCTLinking" */; + buildConfigurationList = D452D506E296BE33521B74FE2AA33AE0 /* Build configuration list for PBXNativeTarget "React-RCTLinking" */; buildPhases = ( - E30882013F067574ED4E1A9750AFE7FE /* Headers */, - 01B4FBCB34E77F767333F283150C6F8A /* Sources */, - FED70A3275AB9A54AED7F0CC298DC68E /* Frameworks */, + 93B10C85C1E32E3902F2A5C804418F05 /* Headers */, + 8E200C66CC7D7B4EBFFEEFF1D3BFE5CD /* Sources */, + 9C947A33C1672CF907F182ED96F234B7 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 72389256175B00C3F7B67663FCC22B10 /* PBXTargetDependency */, - BF9C1A267D183B42D9B63DB7DEEACC18 /* PBXTargetDependency */, - 57FE9143E76B363B8CBF4C263C72B714 /* PBXTargetDependency */, - 083651F9F2CC8D1F5435929E5F3E3777 /* PBXTargetDependency */, + B8D1113F6E3B41B23054D850387FCDA7 /* PBXTargetDependency */, + 8F75994A9B48FF4313EFDDEDFF4DFDC8 /* PBXTargetDependency */, + 7E7493F2C7E60DAA7E404074ADA51E25 /* PBXTargetDependency */, + 7E0952C971CA5C6D9F3DE7941056AEA2 /* PBXTargetDependency */, ); name = "React-RCTLinking"; productName = "React-RCTLinking"; @@ -26835,8 +27630,8 @@ buildRules = ( ); dependencies = ( - E13F0DDACA02506E91E39CB5D1597FDE /* PBXTargetDependency */, - B6F73872A991C355037C8E6EC9927861 /* PBXTargetDependency */, + 1EDD465F1241ABC3EBA5542C93D21E8B /* PBXTargetDependency */, + 025EB00F38CC6565652CD950D98BFF20 /* PBXTargetDependency */, ); name = "react-native-mmkv-storage"; productName = "react-native-mmkv-storage"; @@ -26845,11 +27640,11 @@ }; 7A020DAB6F3F0BA0A6D9946E84B38B7F /* React-Core-AccessibilityResources */ = { isa = PBXNativeTarget; - buildConfigurationList = D6C90CEED8D38913ACB1392271AF11B8 /* Build configuration list for PBXNativeTarget "React-Core-AccessibilityResources" */; + buildConfigurationList = B71DBA55DEBBF3EB313EF61465FA7876 /* Build configuration list for PBXNativeTarget "React-Core-AccessibilityResources" */; buildPhases = ( - 26F4382AF73CC615CE82074F574752F1 /* Sources */, - 13849B7A0A283B36C5779F0A635DDDFF /* Frameworks */, - C8DED2F9F8835B3C5659AB6E7B909B72 /* Resources */, + 5307C0CBEB3F5BD0F31A1E948D6ED430 /* Sources */, + C733EB8292891A1E95A574F173849A17 /* Frameworks */, + 00E0BDC305BAB9E57DA2B8EE7636DFDB /* Resources */, ); buildRules = ( ); @@ -26862,25 +27657,25 @@ }; 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */ = { isa = PBXNativeTarget; - buildConfigurationList = F42D44891B33491F817AA8F0B5BEAF80 /* Build configuration list for PBXNativeTarget "React-Core" */; + buildConfigurationList = 281F52B0B0084101E39C44BCCBF86F4C /* Build configuration list for PBXNativeTarget "React-Core" */; buildPhases = ( - 35E0DA99DD4BB4A45C8843348FF798EA /* Headers */, - EE7FB3F0E2C081CA05BEBC2F606558AF /* Sources */, - 96A16D36210580A641228616EDEF16E7 /* Frameworks */, + 51F02550DA763E00DDB5989C5514BC21 /* Headers */, + 6FA161C4BC7EA036AD68A9EB649A5CB8 /* Sources */, + 6F4D91982CA29811352BD9AA9D80D801 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 55CD3FF83356019E17C9CFF67B43A801 /* PBXTargetDependency */, - E35AECCDAD4B198593D6DE750CA599BA /* PBXTargetDependency */, - FDBA58A64499E108E150F021DD9DD13C /* PBXTargetDependency */, - 5C7AEDCB1568C782C433C8A66EB61DB1 /* PBXTargetDependency */, - 86503FD1778A80727E34969B491DF73A /* PBXTargetDependency */, - 1FF9A27DD8E3BB6289491DA0F16FBBCA /* PBXTargetDependency */, - 9F382F0F4DC62BE098F47AB59D26CD86 /* PBXTargetDependency */, - DA20163E6CF0BAC972633D3B671918A9 /* PBXTargetDependency */, - 8C9D86356778703EB88978CB96B7CDF8 /* PBXTargetDependency */, - 298CD3C2D02A8E5363E805FEA9E64B26 /* PBXTargetDependency */, + 5C3F8F56DD46C2B45557A8625B80C45F /* PBXTargetDependency */, + 476452B5D3C6A6AB7EDE7CF2794BBD4B /* PBXTargetDependency */, + D97ACAA025D2C5C231BEFE0FC7E9CCB1 /* PBXTargetDependency */, + 3B3B0BDE69FA39CF9263C37434C38712 /* PBXTargetDependency */, + FE1B8308EA7E8F5CDF80BF1A55D79BEB /* PBXTargetDependency */, + BA8813BC421F60B77AF05705A913477A /* PBXTargetDependency */, + 38C7C6B268EA1720386DB673917D25A3 /* PBXTargetDependency */, + B40CFE38A816F2C52C3380F4E4706B6C /* PBXTargetDependency */, + 50F3131390BB5F621FFECF4DF1B1AAD6 /* PBXTargetDependency */, + ACA912C95F37F70FF9AE31C858B4CC3A /* PBXTargetDependency */, ); name = "React-Core"; productName = "React-Core"; @@ -26898,7 +27693,7 @@ buildRules = ( ); dependencies = ( - 578D5CEE74041D359F06F16F9B25A127 /* PBXTargetDependency */, + 8C4D501247F4B7496B1DAD1225FD640E /* PBXTargetDependency */, ); name = KeyCommands; productName = KeyCommands; @@ -26916,7 +27711,7 @@ buildRules = ( ); dependencies = ( - 38964683C347D591A4C4E5DF12BE927B /* PBXTargetDependency */, + 39D51BFEB1F2CA655F911065EA219ADB /* PBXTargetDependency */, ); name = RNDeviceInfo; productName = RNDeviceInfo; @@ -26934,8 +27729,8 @@ buildRules = ( ); dependencies = ( - E24146E6DC169422631F124334A703EB /* PBXTargetDependency */, - 5228B1B9E3C20CCB4C8127DFEAEDC9C1 /* PBXTargetDependency */, + 6E17E73F673B3B75DCBA5BDB87322635 /* PBXTargetDependency */, + 8231A090A1C84960D0DE6BC8A362EDF9 /* PBXTargetDependency */, ); name = EXFileSystem; productName = EXFileSystem; @@ -26953,8 +27748,8 @@ buildRules = ( ); dependencies = ( - FEC27B608BBE7C712FC47235702A57AC /* PBXTargetDependency */, - F1E47F75AC0F45A4D700D2968957BA83 /* PBXTargetDependency */, + 62FC2AEE1DD4B02C3FB0860B22EEF5AD /* PBXTargetDependency */, + 9D816FE423E6F3FA46EB8E43C8D17599 /* PBXTargetDependency */, ); name = EXLocalAuthentication; productName = EXLocalAuthentication; @@ -26963,18 +27758,18 @@ }; 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */ = { isa = PBXNativeTarget; - buildConfigurationList = B18D5331D15399C11784D86C3A112784 /* Build configuration list for PBXNativeTarget "FirebaseInstallations" */; + buildConfigurationList = E5A33DD391E77918EDE64753B57084F4 /* Build configuration list for PBXNativeTarget "FirebaseInstallations" */; buildPhases = ( - 0359A74C7C4EF6BC3170FC1792D1C2CC /* Headers */, - 9C309EE5F94E8D325959269E4788DCB7 /* Sources */, - 67021CCFF1BBA79C5AFA4D61CC0A282A /* Frameworks */, + 069574742FF9F45911ACA04BC488AC48 /* Headers */, + 01D752F3625FCDBCE657487CEBFB4116 /* Sources */, + 0615D9ED43AF53DF22ADA10E76905AAF /* Frameworks */, ); buildRules = ( ); dependencies = ( - 7CCC50230BF36DC5402567357038686A /* PBXTargetDependency */, - BA615F4AF5532B1C3B8B13FE4130D900 /* PBXTargetDependency */, - 0A79B2A66B0904522A8F3E22955E6D15 /* PBXTargetDependency */, + C111484A31AF30756B15B5C1D6E38F47 /* PBXTargetDependency */, + D5585E08A85012426A2ADE6A7F273D59 /* PBXTargetDependency */, + 6C997F4411A1CC5F8A7DD356B106F09C /* PBXTargetDependency */, ); name = FirebaseInstallations; productName = FirebaseInstallations; @@ -26992,9 +27787,9 @@ buildRules = ( ); dependencies = ( - C87E1CA6C0CF0130BDCBB63E30E95C95 /* PBXTargetDependency */, - 5EFFE899455587A5700FF146E0D07185 /* PBXTargetDependency */, - 89C8784E4AE95B80FB081C931BAAA87F /* PBXTargetDependency */, + A26B3133C3B5F2C2BCEBD8B4077EE092 /* PBXTargetDependency */, + 849AF2A2313D1CEC3439F96A1A6C46C5 /* PBXTargetDependency */, + C6862F10F277829C8164950C6276A665 /* PBXTargetDependency */, ); name = UMReactNativeAdapter; productName = UMReactNativeAdapter; @@ -27012,7 +27807,7 @@ buildRules = ( ); dependencies = ( - C9201E668BA83F9A5EB9685E562C9737 /* PBXTargetDependency */, + 6333A17B6B0F0003395F0131FB5B1A82 /* PBXTargetDependency */, ); name = RNCAsyncStorage; productName = RNCAsyncStorage; @@ -27030,7 +27825,7 @@ buildRules = ( ); dependencies = ( - 1FF925EF8F31D61AEEAF7D31BF16A8A2 /* PBXTargetDependency */, + E09BFAD98EA4391CBDE56C6843DFDCC9 /* PBXTargetDependency */, ); name = "react-native-webview"; productName = "react-native-webview"; @@ -27039,16 +27834,16 @@ }; 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */ = { isa = PBXNativeTarget; - buildConfigurationList = 571B7721DA905FBF578C538D0C35D3F0 /* Build configuration list for PBXNativeTarget "GoogleUtilities" */; + buildConfigurationList = 2005FB6EE6F84EB804033F7CB86444C6 /* Build configuration list for PBXNativeTarget "GoogleUtilities" */; buildPhases = ( - CAF91E87A293D9DD066FB0F7F4C403E9 /* Headers */, - DBC701217A2AA14B45CD6593FEC3D593 /* Sources */, - 39FE416F629FC3CDC75DD95CD6CF6EBD /* Frameworks */, + E98C3C15791D4116304B6BED0BED1887 /* Headers */, + C7242F219CF42105F543D0FB645E7367 /* Sources */, + A821EBF7BEF1209B095AFE0F7D01AF9F /* Frameworks */, ); buildRules = ( ); dependencies = ( - 8B29382394A0B19C738A5B1E8FF3F717 /* PBXTargetDependency */, + 3ADA8FE6DE16281427EFE4C0E3D14BF7 /* PBXTargetDependency */, ); name = GoogleUtilities; productName = GoogleUtilities; @@ -27066,7 +27861,7 @@ buildRules = ( ); dependencies = ( - 2DEDEB24E994CA34FBD4D1CD56199F8D /* PBXTargetDependency */, + 7885989121D533CD57B1F9C41C59F3A8 /* PBXTargetDependency */, ); name = ReactNativeART; productName = ReactNativeART; @@ -27075,17 +27870,17 @@ }; 90D0DE2F3348233618414728C35311CA /* RNFBApp */ = { isa = PBXNativeTarget; - buildConfigurationList = A3E304AF17D5584F80EF748B65FEB4C5 /* Build configuration list for PBXNativeTarget "RNFBApp" */; + buildConfigurationList = A0FE4F9D80588E3F4E78B04C6AC11A6C /* Build configuration list for PBXNativeTarget "RNFBApp" */; buildPhases = ( - 819428076633E57C82BD407B09F85117 /* Headers */, - DF8402252AF59D34E0ABB8369905B289 /* Sources */, - 30D413FC9ED22C2C42C52563F6483309 /* Frameworks */, + 8CDEA51D5EE9A846984232B49749C1C7 /* Headers */, + 14B03CEF51D9346A3693784B0048D10A /* Sources */, + 2697CAACE81DB3F436C2C2696C976C23 /* Frameworks */, ); buildRules = ( ); dependencies = ( - D0E1B31E52A4009C9FE500708071FB76 /* PBXTargetDependency */, - 8E85BA977E3049883A07D586C6C4001C /* PBXTargetDependency */, + 24EF74C9D8E552EB2B6B90A08AC55EE5 /* PBXTargetDependency */, + AE883998BB406E95B0773110F04B4FEC /* PBXTargetDependency */, ); name = RNFBApp; productName = RNFBApp; @@ -27103,7 +27898,7 @@ buildRules = ( ); dependencies = ( - E37F394489DD97A02CC28F8DCC801CED /* PBXTargetDependency */, + 9B857544C3B7942F3669F09280978200 /* PBXTargetDependency */, ); name = MMKV; productName = MMKV; @@ -27112,21 +27907,21 @@ }; 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */ = { isa = PBXNativeTarget; - buildConfigurationList = 8EA0BD29D9EB61CC2AE1442865956C61 /* Build configuration list for PBXNativeTarget "React-RCTAnimation" */; + buildConfigurationList = 888653926A5CE70CA33F8C57501BF560 /* Build configuration list for PBXNativeTarget "React-RCTAnimation" */; buildPhases = ( - 3268BDFF8DD1B57760D2238BB7E0858B /* Headers */, - FF55A7F8A913BC3F3489195D28E44418 /* Sources */, - 9CBB4F710C58A2A1CF18007B51B51E24 /* Frameworks */, + AA6CFE5CF07A817EAC6250C517B73F33 /* Headers */, + AEC588E7FA59437E1592077629529090 /* Sources */, + 9019351B2013DBE70FFC962917EE6E8D /* Frameworks */, ); buildRules = ( ); dependencies = ( - 12CA994D179B18AA8F41D16E49093D01 /* PBXTargetDependency */, - 2E537C484F18F0FCACDF61D9DD69FA15 /* PBXTargetDependency */, - C34A569D3695D765617F8DDCBDA67CCB /* PBXTargetDependency */, - DECBEF5FB476D4019B4AD0E57FBBD5F6 /* PBXTargetDependency */, - 4808AA885C5424465D2FDAF540897CA1 /* PBXTargetDependency */, - 53A991D5E1986615941D3DA40AC35A7A /* PBXTargetDependency */, + E7EFDBC0898C890558518B95EE67E0BB /* PBXTargetDependency */, + 62A5E3D98DB331B25E548080FC63B5D3 /* PBXTargetDependency */, + 345E136290B425153C49D906601045E2 /* PBXTargetDependency */, + 178A4402A1BF0155CE79E7E874FB4F23 /* PBXTargetDependency */, + DACB9BCB766A0003CB65AAC6C611480A /* PBXTargetDependency */, + DE4074508043E17EF1763B5E07463CEF /* PBXTargetDependency */, ); name = "React-RCTAnimation"; productName = "React-RCTAnimation"; @@ -27135,21 +27930,21 @@ }; 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */ = { isa = PBXNativeTarget; - buildConfigurationList = EFEC8CFB28FF243D0A236998E30E04F5 /* Build configuration list for PBXNativeTarget "React-RCTBlob" */; + buildConfigurationList = 978D94305E472E7DC1EA220E5F9EC3AD /* Build configuration list for PBXNativeTarget "React-RCTBlob" */; buildPhases = ( - ADD3FAC9F764AFDFF4729939B5F3C8CE /* Headers */, - FD15D3773F7F2C9BC16008735DBA75A1 /* Sources */, - B75F3A0756FD1625D96EE7174073A4EA /* Frameworks */, + DB41F3E190D38AA30843DAAC5E46E7F8 /* Headers */, + 66A76100C73E978C5E5AC9393A7FA0E3 /* Sources */, + 2AC53D729A9E0D2A2AC583B626B028BE /* Frameworks */, ); buildRules = ( ); dependencies = ( - BC9BECB0F8C3172E890A98B49C4AE39E /* PBXTargetDependency */, - D2D05EA5192501B3E6BC8AE6D03CEA50 /* PBXTargetDependency */, - F5D6E141E44AA560400FCF08B13E43CB /* PBXTargetDependency */, - 92A0BBAFA11BE424EFFD86AB9F4F34BF /* PBXTargetDependency */, - 9F9E96DCB3F9F0B781E265BCCBC668AC /* PBXTargetDependency */, - 1C0938D6CA47A2EB2BB1610DFE4CB9E2 /* PBXTargetDependency */, + 3605E49C23234E494A0738C42AD0CC92 /* PBXTargetDependency */, + CCD5F3AF1992542961CBBAEB0A4FEC8C /* PBXTargetDependency */, + 06DFE146429667D97A66AD3ED6D41500 /* PBXTargetDependency */, + A4B7F49C2B83FC787F6F4B8D56885280 /* PBXTargetDependency */, + 61AB096F706422DB2BEC5335A3B7A793 /* PBXTargetDependency */, + C9ABBD2F077D54F392C4AAE3CEAA8278 /* PBXTargetDependency */, ); name = "React-RCTBlob"; productName = "React-RCTBlob"; @@ -27167,7 +27962,7 @@ buildRules = ( ); dependencies = ( - 3D37B493D5D963A2683ECD880912B61D /* PBXTargetDependency */, + 27665402D20F8AF5A90379E3C8695C36 /* PBXTargetDependency */, ); name = RNVectorIcons; productName = RNVectorIcons; @@ -27185,118 +27980,17 @@ buildRules = ( ); dependencies = ( - D97FC630B18469980017AF11C7084330 /* PBXTargetDependency */, - EDB416AEF128A104339B19778B16E817 /* PBXTargetDependency */, - 39C2751FAB48D9D7A651F4AAA4F275B7 /* PBXTargetDependency */, - 312076AFE72724B480066AEE99FE6786 /* PBXTargetDependency */, - A56973BB4E8D396BCD91C9B6B2DDD41E /* PBXTargetDependency */, + C72ACBDFB1B568A775646C152D39BC85 /* PBXTargetDependency */, + A1063D6464E40C5A91C32D7F123CAD49 /* PBXTargetDependency */, + DEBD5B8F7341D5ED0871A8FD2560A83C /* PBXTargetDependency */, + 8CA09154EC7DEEA3770002D19672E966 /* PBXTargetDependency */, + F7E65922D5B01DBBEE6341C64B5CA0D4 /* PBXTargetDependency */, ); name = FlipperKit; productName = FlipperKit; productReference = 65234B3E668A42D9137B2C7AB051EE37 /* libFlipperKit.a */; productType = "com.apple.product-type.library.static"; }; - 9C801345ED2C78BD1674053E7BE5D6ED /* Pods-ShareRocketChatRN */ = { - isa = PBXNativeTarget; - buildConfigurationList = 4471CF8AD961063B9E3E74ABBFA30851 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */; - buildPhases = ( - 60ED3AC0A888A156B7FB3E755AF62BC7 /* Headers */, - 32D839B0EE02CDAB87BDF6A982BD5803 /* Sources */, - 43C372FEA4081584E0F45A7025F2B6DC /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - EEE9398788374CB99DA7D88AAAE1E3BB /* PBXTargetDependency */, - 8180047AAE8DCD6A5DDC7DF987C5CC74 /* PBXTargetDependency */, - A0F89B34C11E5C272E462D4BECD75A24 /* PBXTargetDependency */, - 7B62738395882283EA05FD67D0B74F7A /* PBXTargetDependency */, - BB4186E2484E49A4029F6A7B2EE0BBA5 /* PBXTargetDependency */, - 88F4654796581AD887B57E9D921083E3 /* PBXTargetDependency */, - 1C1DE7C5D362B61E0D02C98E28F268DB /* PBXTargetDependency */, - A41EAB4648CEF288B0BA724F41F6D016 /* PBXTargetDependency */, - 6AE779FF5F2ABF36AD239852E3B4CDC2 /* PBXTargetDependency */, - B186BC90F3C6F44FDA081A2DACAFEEA5 /* PBXTargetDependency */, - A92199256F92152B3C3C57CC945FDEE9 /* PBXTargetDependency */, - C360514083767DF91676B4F77B6C40B3 /* PBXTargetDependency */, - 7D28F84CAFDF941588526076824EBCA0 /* PBXTargetDependency */, - 1C5A5BC914F5C46859872F7395D90B76 /* PBXTargetDependency */, - EE5BF80552C349CD8201E9D24A371C65 /* PBXTargetDependency */, - 0EAA5DB25BD529B6A4C27E54E4580FEB /* PBXTargetDependency */, - 619627C0933707B28E521B1AEC467289 /* PBXTargetDependency */, - 931C640E514A45F4F6AFAEA7B999AB82 /* PBXTargetDependency */, - DF35925B2D18336263FCBB503F132F5E /* PBXTargetDependency */, - A17B0FFF6F5D916E73FBD75DE00C8612 /* PBXTargetDependency */, - 1A13480419CBD159B0AC9114B9262959 /* PBXTargetDependency */, - A9803DE8BE6D94E3688E32F1DB390E9D /* PBXTargetDependency */, - 3DFA20E7F02F6E48BE40BF3F99654D9D /* PBXTargetDependency */, - 88CCDD87463651188A4A685D65E26FB9 /* PBXTargetDependency */, - 67705CF482D13C0AAE34E17D03F1EE60 /* PBXTargetDependency */, - 09AF5CD62AECFA9724B7B07FA04E2541 /* PBXTargetDependency */, - 871254B2BF2633AD593992DCAE7FF874 /* PBXTargetDependency */, - 534417179066E50A8A3870584ABDC194 /* PBXTargetDependency */, - 8FDFB3E45F8912CCE08A3F59246CD0B5 /* PBXTargetDependency */, - 541A8F63C50483070819091E363BA7A1 /* PBXTargetDependency */, - 5847D8150FCBEEBB21320ECE974DE573 /* PBXTargetDependency */, - DCA24E419C376D17414A1E386D7CA906 /* PBXTargetDependency */, - CFBDB23CC3B368C9E47F9B89C3D654AD /* PBXTargetDependency */, - 6768976AA767ECD3F2A749C4430CA95D /* PBXTargetDependency */, - 33EF463B1179F094CB0A7A848E9DF608 /* PBXTargetDependency */, - 989DD4805755C093DBDD1CA5FBE937A2 /* PBXTargetDependency */, - 44C413E61C4D9F486C01E0358A8386DB /* PBXTargetDependency */, - 66006A3C717964909CCC2E9FAF92EC15 /* PBXTargetDependency */, - 50242EF05284B2F8F06DC32ACFC557A6 /* PBXTargetDependency */, - D0E754E040BEB81F04A487F7261266D2 /* PBXTargetDependency */, - 080B50F23E5B831F0A999FBAF3DD7151 /* PBXTargetDependency */, - 458487A4F01F002F55D86C37074636B3 /* PBXTargetDependency */, - 7138D6A0F7C31B1C60572E22D1C6E66D /* PBXTargetDependency */, - C4DC2413F81E9BD54E62FA195F2BD0F3 /* PBXTargetDependency */, - 27E42F48B3EA33E47A079C7A398E8481 /* PBXTargetDependency */, - B0E3EA9FF95B8408AD397D24872585BE /* PBXTargetDependency */, - 6BC7D20E95234C2A40E60D1573D5DA00 /* PBXTargetDependency */, - 5E90C74FB64DEEDBFC1665B524F091E2 /* PBXTargetDependency */, - 07188A5194D6C85B051AD7C64DA5DBFB /* PBXTargetDependency */, - 1D340AB003F2D6F481DDA398891FC6E9 /* PBXTargetDependency */, - 8D7F6466D784331D2B99ADCBE9D203A8 /* PBXTargetDependency */, - 699044D3309D560DF4E200D76B48F124 /* PBXTargetDependency */, - 466FCF6969F35752E1E07F209FA19DB5 /* PBXTargetDependency */, - 7B41B2E031891A392FB34AB6E9DDAF4E /* PBXTargetDependency */, - CC5851616CCAB2ABCB6BD2E4A5EF2E4F /* PBXTargetDependency */, - E52218E80D65892651A0293E94CEB6B0 /* PBXTargetDependency */, - 0CB69D4A1FE916CE45A9385BFD11FDC7 /* PBXTargetDependency */, - CA7CE761DF0386188A5CD9A8D9D3D4D3 /* PBXTargetDependency */, - A500D9DBE147FC103DD127FFA75CAC92 /* PBXTargetDependency */, - E3167913056EF89CD3FFEF72323CA7C9 /* PBXTargetDependency */, - 30FD54ADD3443E1CA65B22C7B6F4BD9F /* PBXTargetDependency */, - 9DA1CE33D2D7E937DCFD1C049577D296 /* PBXTargetDependency */, - 5E60F8B845E4F4EAB913F7EA28338458 /* PBXTargetDependency */, - 72BEE0743B315AD0B7AC544A7129F076 /* PBXTargetDependency */, - EB74C670C4BA75C5F49A5550C4E07E40 /* PBXTargetDependency */, - 0AE6962F5E01C973BB59E6F5EC87F669 /* PBXTargetDependency */, - 255457BD1485572E4EAD31DA76E96A7F /* PBXTargetDependency */, - E5C32F29310B976A2AE6B28CF44BE9D2 /* PBXTargetDependency */, - F6DF5A0780CA21C8FB678CBB969F6088 /* PBXTargetDependency */, - D13890A0C72AA57CC602024D3AC971AE /* PBXTargetDependency */, - F1639CB5E21201F7FB63B488BD2756D4 /* PBXTargetDependency */, - 4E22B9D9A88105993348AAB25E409963 /* PBXTargetDependency */, - 59736187E135D2274E5FCCC26C41C06E /* PBXTargetDependency */, - 727F724D7E994D9F0E026914C41C4AB5 /* PBXTargetDependency */, - 6A56935441A8CC8278906F6014984200 /* PBXTargetDependency */, - 5687706665AD1737B8BD5FB43B0E30AC /* PBXTargetDependency */, - B34E542847530FA7DB4C1F50A6668CAC /* PBXTargetDependency */, - E78101431008114E1D5D77C577CDF093 /* PBXTargetDependency */, - D6A5F10A4F534AA113F3CEC54A11CE4A /* PBXTargetDependency */, - 70C1456D0B21967C760B37F8FCA6F79F /* PBXTargetDependency */, - 1BB6278E12CB3F5C9857A9991FF2765E /* PBXTargetDependency */, - E6CA02BB38A312F57CD7A0371C7C479E /* PBXTargetDependency */, - 7E630A1EEAF04ADE2B17F8E6F78336C6 /* PBXTargetDependency */, - 9DBEDF95D6AB81CA9282E901A51C8AEF /* PBXTargetDependency */, - ); - name = "Pods-ShareRocketChatRN"; - productName = "Pods-ShareRocketChatRN"; - productReference = ABCA9F4CD6EE0D4686EBA505F526A436 /* libPods-ShareRocketChatRN.a */; - productType = "com.apple.product-type.library.static"; - }; 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */ = { isa = PBXNativeTarget; buildConfigurationList = 13415A5232D59FD50FC05169C8463FD9 /* Build configuration list for PBXNativeTarget "EXWebBrowser" */; @@ -27308,7 +28002,7 @@ buildRules = ( ); dependencies = ( - 05339B57C025443A24FBC541CD3829EB /* PBXTargetDependency */, + 1C0DF950D3CE1F50BEC4222EA2C285AC /* PBXTargetDependency */, ); name = EXWebBrowser; productName = EXWebBrowser; @@ -27326,7 +28020,7 @@ buildRules = ( ); dependencies = ( - 603622476674256AC9ACB20BF357F077 /* PBXTargetDependency */, + 13646960B12AAD847DBAFADF0A468D3C /* PBXTargetDependency */, ); name = "rn-extensions-share"; productName = "rn-extensions-share"; @@ -27344,20 +28038,161 @@ buildRules = ( ); dependencies = ( - 108E340D335807FCF19D107484DCE7C6 /* PBXTargetDependency */, + 8B21B104C4241BE3592151EE2AFE8CED /* PBXTargetDependency */, ); name = "react-native-slider"; productName = "react-native-slider"; productReference = 2B17A71888AA28CEFEC37B72F2A68A91 /* libreact-native-slider.a */; productType = "com.apple.product-type.library.static"; }; + A6C6505810958F0C9C95D987FDED0B8D /* Pods-defaults-ShareRocketChatRN */ = { + isa = PBXNativeTarget; + buildConfigurationList = D176E5CDDB6A63A80064971DFF78D106 /* Build configuration list for PBXNativeTarget "Pods-defaults-ShareRocketChatRN" */; + buildPhases = ( + 36A3C02157A0B3883650254BD62849D8 /* Headers */, + A2E4B23CBD0EB18CEBCD5E6B2EDA5C4B /* Sources */, + E0BD34EC65CAEF7CE2B492D302B2C5BB /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + BF06A4DA30B187027EE649C4416002EC /* PBXTargetDependency */, + 35F2068F5089F28FD0C1C72543D123E5 /* PBXTargetDependency */, + 540AEFD4E0B998F9CAEF97ECF642C6D0 /* PBXTargetDependency */, + 4F2CA01BF1BCD6C09AFBD24B51ABF231 /* PBXTargetDependency */, + BB30C7BC8BE9E2B5416E009841233B8C /* PBXTargetDependency */, + 912F30419CEDB474DA4A48579FCC0E75 /* PBXTargetDependency */, + 468DD33CC8E90DA3F0413BD0CC4C3E3B /* PBXTargetDependency */, + 404DD50A6A970EBA24C5CFFFFA98C56F /* PBXTargetDependency */, + A6BFF0532CB6F55C4662091A1E71291D /* PBXTargetDependency */, + 5A31532AA864DE91F52202CE3415F595 /* PBXTargetDependency */, + 9428CA7DB7151C77F7803371CE850B3A /* PBXTargetDependency */, + 823796A4C0E98DCC396C9AA407D1DFE2 /* PBXTargetDependency */, + FEBF1427FD046CF6AE289D25879720D1 /* PBXTargetDependency */, + E5E66B6CE137AC618BF3214A8CFAFAEA /* PBXTargetDependency */, + 012B50C688114AFD68C1F7BC3AB50AB8 /* PBXTargetDependency */, + DF914CE9E9D0FAFE0606F701ECF3A843 /* PBXTargetDependency */, + 29EE4183DBF296DC00BCBECB546FD062 /* PBXTargetDependency */, + 5B1529D24E32AD56AEABC92E20250640 /* PBXTargetDependency */, + BC8476572A9B63EC2D5CAA7739F06845 /* PBXTargetDependency */, + 5998F25937F9AE6B6E43F974AD9D3E9C /* PBXTargetDependency */, + C6EDFF640A57CFFC3C08037F6AEE5526 /* PBXTargetDependency */, + 4FE78A33B14E2338FABD4B9EE4B8E34E /* PBXTargetDependency */, + BDC286BD80870CB6585607BA03CE6270 /* PBXTargetDependency */, + 0FA9508DEA5A851C63900F532E0EEBCC /* PBXTargetDependency */, + 10B2EEE0FA82ADD87D6BF07D08B3FA1F /* PBXTargetDependency */, + FB366C0729CAE322D0C68785A0E9FACD /* PBXTargetDependency */, + 2338B563DD99794A35F281387F330CC5 /* PBXTargetDependency */, + 8AC136AC6F432B0101E71AC0E5B6E128 /* PBXTargetDependency */, + 847A9F10B1DA4C72B50BFC7C25A9895D /* PBXTargetDependency */, + D1B20225C88CB64DDA786EF69CF49FBB /* PBXTargetDependency */, + 4509D7E4C87981E196CDE151E33C0B06 /* PBXTargetDependency */, + 5ED68AD305087222F8C3BFF1C4D15D7A /* PBXTargetDependency */, + 646E65AA992C5AF1EFBFDDDEA56C7AFA /* PBXTargetDependency */, + CA7DBD4E95FAE6B920433CF996087DA1 /* PBXTargetDependency */, + 3697ED3E90D664E91A17BABECEDD0AC5 /* PBXTargetDependency */, + 2144C6F7AB5030BA77330F2638B3E850 /* PBXTargetDependency */, + 50C629C1597D46FB7A7BF1111779A7EF /* PBXTargetDependency */, + AE202D066604E3F7809FB45ED2C736FF /* PBXTargetDependency */, + 7E7ADDAEDAA0D9967DA3A7D2FE35E64A /* PBXTargetDependency */, + CDDFCD10D9783682B8DB266F1B226EB9 /* PBXTargetDependency */, + DEFDCFEE021AE9AAD4695315BEF5F0C1 /* PBXTargetDependency */, + 46E50001BF7E28582FD035D1E733C6F4 /* PBXTargetDependency */, + 37C4406C2078CF54AD3428FDCF9121FF /* PBXTargetDependency */, + 019625C2026536CFFA7C26E4128472D4 /* PBXTargetDependency */, + 8C05D589A3732CCF366C12EBE936BC44 /* PBXTargetDependency */, + 1E4F60C0C53D617A29964587D1FA4F6F /* PBXTargetDependency */, + 8915FF67466DEC7E432EC385AE442848 /* PBXTargetDependency */, + 7D9AC4564D7D0154FE46627CB052751E /* PBXTargetDependency */, + 06076EEB0CC0F0C3BCAE4BA27D050964 /* PBXTargetDependency */, + 0B22122829B782673806D4880C7DCCB0 /* PBXTargetDependency */, + E9763755D6DACA572ABF8C66A94F2B7E /* PBXTargetDependency */, + 1B7640976B4CA50F13C1D5C1B98BC75D /* PBXTargetDependency */, + 76C48D1B8020786E88EDD249B36E19CB /* PBXTargetDependency */, + C339760ADEC9BAC78C4F774799A7227E /* PBXTargetDependency */, + 5C7B8076F05E575EC024965B04C0AACC /* PBXTargetDependency */, + 4341FF37B61E5C33E2E22990019AD400 /* PBXTargetDependency */, + 16ACC4A08705A592AFCE17DDFD8E0CC1 /* PBXTargetDependency */, + E5F465D5D4A8F991CB41E4000B8ED967 /* PBXTargetDependency */, + C0DE9A01C0DB5CE1A14BBAB8ABEE00EF /* PBXTargetDependency */, + E92064082ACD3B0F499FB72DB6DB9475 /* PBXTargetDependency */, + 1FF78CC9411709036A02B91A60AA87C8 /* PBXTargetDependency */, + 43643D6CB52A37B643591C680E977FC1 /* PBXTargetDependency */, + FD23ADCF7021EC5B572E093263CBFCAE /* PBXTargetDependency */, + 755B21E7FA05B9D306B5DA1414397779 /* PBXTargetDependency */, + CC374F14E2BF1C6FAA534F55541D8C60 /* PBXTargetDependency */, + A2F279C4000ECF82614676151BFD89A1 /* PBXTargetDependency */, + 09E092BE133986A171B07BC6D8701CDC /* PBXTargetDependency */, + A548D607480591B926A2609F2DFAB726 /* PBXTargetDependency */, + A99BA617439AD486C27D0A6387BBA694 /* PBXTargetDependency */, + 7DE4C5AFFDA324D025F4828AC3C93F36 /* PBXTargetDependency */, + 3D77771D2585389294FEB991DC2C3A8B /* PBXTargetDependency */, + 2CF78968E4B6884F4606A0A3D36F10C6 /* PBXTargetDependency */, + 59A5120F13F4F0DE7199A33ADEAF9CF0 /* PBXTargetDependency */, + D144BB6321243FA5270AB0775E017226 /* PBXTargetDependency */, + 6371FCA331C0B9D30D36D41D14FD6203 /* PBXTargetDependency */, + 3B658EBD9BFF0578F2543F051AAA4ED6 /* PBXTargetDependency */, + E7D11169AA59A0801278A4C7FB01ECC7 /* PBXTargetDependency */, + E04F06A24E252EB11599BB3E58A3D693 /* PBXTargetDependency */, + BEA6338399F9C26CDDCD7F1B7528A329 /* PBXTargetDependency */, + D5D28F6BCDD37DC81C1BA0419D97F66A /* PBXTargetDependency */, + 3C635F5ED76C649F52D57D4EE23085BC /* PBXTargetDependency */, + 2F9CF5FD7CD50672DFE5A501F6DE45DE /* PBXTargetDependency */, + FCCFF6A7496C0BB925EC9F6CDB73A838 /* PBXTargetDependency */, + BF17236DD818C141290E6F15A813EDBD /* PBXTargetDependency */, + CCD5CA0D0D7909D656087E7C79600F8A /* PBXTargetDependency */, + 4611474658CDD1395454103CE9E13E37 /* PBXTargetDependency */, + A309C40D10520883185B4E786D50681B /* PBXTargetDependency */, + E2E25EE7424C54B988162B8E231BCCFC /* PBXTargetDependency */, + DB73B6D7C5A9D120379B216405FC23ED /* PBXTargetDependency */, + 0D981C6AC96FC2EF1A05A3C3D9198ED9 /* PBXTargetDependency */, + 5157D2FB1699708935F66385C7FE37AF /* PBXTargetDependency */, + A6BEA636F751F209751935C6E2D8812C /* PBXTargetDependency */, + 53019D2B80E7FD88CBFF395165FFC564 /* PBXTargetDependency */, + 2288E7188240A3D29D10D340B2DEF18F /* PBXTargetDependency */, + 104F5FD95776AE88144431C8EB2ED21B /* PBXTargetDependency */, + D9797CCD3BDE810368DAD8447BBC3987 /* PBXTargetDependency */, + 9FDDD1D85D03C35E942985C007836D18 /* PBXTargetDependency */, + 6458CA63ADC31AD6B9F67618CB6549F4 /* PBXTargetDependency */, + CD1E96E8D7FF1FB4EDAD0757E4F6B087 /* PBXTargetDependency */, + 0053F562863A62CEADC4443A8D7151DD /* PBXTargetDependency */, + ECB609B06595A143D5A1DC8396525694 /* PBXTargetDependency */, + 3D5F22723A63C1660DB73AC53068FA10 /* PBXTargetDependency */, + A8C736BBC8B7F9B687103544777C046E /* PBXTargetDependency */, + 0A530926521BF32BDC83CB3DC0B9AD06 /* PBXTargetDependency */, + 195293486DABAF93881FB907D850A976 /* PBXTargetDependency */, + FE7DA56FB7DF06C470DA171837DD5384 /* PBXTargetDependency */, + F5653FB8948E14F6DA2F4637A8D17090 /* PBXTargetDependency */, + 4E3E8D39F81C9D23D8257A9205539340 /* PBXTargetDependency */, + 3AC1AE7B59F3DE7CA19F40D5F7C24C91 /* PBXTargetDependency */, + 944131E27F171CD1A4B8406611D30F32 /* PBXTargetDependency */, + 7B2C2FEEB27514139F3F0BFCE54EBEA9 /* PBXTargetDependency */, + D2FF431D80F945D726D892129BD37CC6 /* PBXTargetDependency */, + 29F528A27A39F547A34C724EC85D65D0 /* PBXTargetDependency */, + E30A6847F6567E3E70C277802B48FDE5 /* PBXTargetDependency */, + AC95E102AFFE558A33F879BE13E98192 /* PBXTargetDependency */, + 2146ABD902E2DBEFDEC5C6F435FD526D /* PBXTargetDependency */, + 3707E37ED575B50AF9170891D383EC1D /* PBXTargetDependency */, + B84ED66D5698CD52FE11A40847006295 /* PBXTargetDependency */, + 06581BBE265A7DD3D1D2D8B47D3F1667 /* PBXTargetDependency */, + F6A8266C510FAA73CD250FFB3BBE48D9 /* PBXTargetDependency */, + 953DCB6F853DAF1192FD11D59796DF4C /* PBXTargetDependency */, + B79AEF0A52D4E0484D5D9A4EE9AC97C4 /* PBXTargetDependency */, + B0D4C9ACBAAD262DDE222AC1CF9F61A8 /* PBXTargetDependency */, + 636015982B0DB9925EA46AF2E05C641D /* PBXTargetDependency */, + ); + name = "Pods-defaults-ShareRocketChatRN"; + productName = "Pods-defaults-ShareRocketChatRN"; + productReference = 5A2E6B443111E31A19B7468C0E056A7B /* libPods-defaults-ShareRocketChatRN.a */; + productType = "com.apple.product-type.library.static"; + }; AC8AE887C706A43711D115E69B9D988A /* MMKVCore */ = { isa = PBXNativeTarget; - buildConfigurationList = DF601D777CBA420C18E34A42FDF73CFF /* Build configuration list for PBXNativeTarget "MMKVCore" */; + buildConfigurationList = F19D740CFF78BFA64B9E4484CA646557 /* Build configuration list for PBXNativeTarget "MMKVCore" */; buildPhases = ( - BFFA9CC6442AEA5616C8B194014FBE08 /* Headers */, - FE4EC1B0F0BCB0FE9D6C1EE4143FA487 /* Sources */, - 812110F7DD66EC78E9DEF964A5813E11 /* Frameworks */, + 29BA8B2C7623C5351C1C8EE6152D3634 /* Headers */, + 9869AABD974080C448DCE840823976FE /* Sources */, + 76EF700C7CE56E8F5B6D1C077D2FEF53 /* Frameworks */, ); buildRules = ( ); @@ -27379,7 +28214,7 @@ buildRules = ( ); dependencies = ( - 05EE31BAE59F7D9EFE0D77E61D3B46DB /* PBXTargetDependency */, + B235A1628124F37A24887F6E53ABDAE7 /* PBXTargetDependency */, ); name = "react-native-cookies"; productName = "react-native-cookies"; @@ -27397,7 +28232,7 @@ buildRules = ( ); dependencies = ( - 90E3300809FFB60422622E7DC3AB8F15 /* PBXTargetDependency */, + 9E6D5EB9736C5FE8529CBDCB6958006A /* PBXTargetDependency */, ); name = RNLocalize; productName = RNLocalize; @@ -27406,20 +28241,20 @@ }; B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */ = { isa = PBXNativeTarget; - buildConfigurationList = AF1463D36AD05140B01406F072152BB0 /* Build configuration list for PBXNativeTarget "Flipper-Folly" */; + buildConfigurationList = BC7F8E2AA591C192F73A2754053754BD /* Build configuration list for PBXNativeTarget "Flipper-Folly" */; buildPhases = ( - 4A4160B57741F2B378B9EA112492D93E /* Headers */, - B5E076F5FE832AE339A46EAEA1266006 /* Sources */, - B6E295F9D866D6BAA718B9F92139B904 /* Frameworks */, + 1E9C2DF63F8DD1D2DFE4FD76AC7384E7 /* Headers */, + 1862E471DF1A28889EF436357FE52D23 /* Sources */, + 25FE4B6AC8DFEABC185404F013EDF4A9 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 3BA4BDF861E59D3B12BCBCCA2D50903E /* PBXTargetDependency */, - 4E38847FF8203458445335430CCBBF49 /* PBXTargetDependency */, - 6C6B6F1C56DB4CD3060F1A4EA2021B02 /* PBXTargetDependency */, - D0DFE3F37548E4837210999FB091C544 /* PBXTargetDependency */, - 6CD7AE36D2577FBFEC497CA833229201 /* PBXTargetDependency */, + B69E088C9AD2EB9ED0B3B29B22C53E20 /* PBXTargetDependency */, + AB50C33D8845A3227D907A0F8FE0E847 /* PBXTargetDependency */, + E131BEB851C3E2348A5D6834F6B7A9EF /* PBXTargetDependency */, + E4D6AFFCD5BAAA44B1C7F444DE3CB88A /* PBXTargetDependency */, + BFF79C7C45409B15B744ACCD8DE68D7C /* PBXTargetDependency */, ); name = "Flipper-Folly"; productName = "Flipper-Folly"; @@ -27428,23 +28263,23 @@ }; B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */ = { isa = PBXNativeTarget; - buildConfigurationList = D0BED235A7B3AFCC1E675591479D6B1E /* Build configuration list for PBXNativeTarget "ReactCommon" */; + buildConfigurationList = E62AE5E60B73EFCCE2CF8FB52F16D64D /* Build configuration list for PBXNativeTarget "ReactCommon" */; buildPhases = ( - 9518294DD7AB829B129EEA0D7E5E499C /* Headers */, - E608B2CE0D90F098EDB9F3EAB025B603 /* Sources */, - 97BFD4C14847B6BEDB0845DB8D1EDF30 /* Frameworks */, + 5121B954037E49863E1114ACF316B1E9 /* Headers */, + FE4389CCCC6664F2FF0795F8155778B3 /* Sources */, + C36D034E8BA7B4FF22CE4D6F94D604FC /* Frameworks */, ); buildRules = ( ); dependencies = ( - 4C7C77E772FF4CE9CA880C97EC09037B /* PBXTargetDependency */, - 0B205F86026A38D1560A53C7E9F50AD7 /* PBXTargetDependency */, - 72361DA60237C2C21C9C3234027B2EF5 /* PBXTargetDependency */, - 71E4C02C278A98E1240F1D0A423DA804 /* PBXTargetDependency */, - 52E7BACD75EAF445825F2201021F3585 /* PBXTargetDependency */, - D8C29448EFAAE753BA64508F94FBB741 /* PBXTargetDependency */, - B52447CE2B12B18BDEE3350B441607E1 /* PBXTargetDependency */, - 3C62CF38E7EFA014C50191F2BA4DDA57 /* PBXTargetDependency */, + BB34106F59290DD57B273B7594375169 /* PBXTargetDependency */, + BCC42DB22DB9F828E4BCD13535A09546 /* PBXTargetDependency */, + CDF274EBAE3B49A7C14FC1D77B045D69 /* PBXTargetDependency */, + 0A1C848B756BA59CF4940A55BC43D1CD /* PBXTargetDependency */, + 2DDB3CB48851A1CF62C05ED464441CBF /* PBXTargetDependency */, + C50ECA261FDBEABE5E691520174EB43A /* PBXTargetDependency */, + 537E5420319C3BA21E7B75861789C1A4 /* PBXTargetDependency */, + 9FE03DE9F5E3B124AFBAF3CE18067012 /* PBXTargetDependency */, ); name = ReactCommon; productName = ReactCommon; @@ -27462,7 +28297,7 @@ buildRules = ( ); dependencies = ( - 1384E486CA759A1CC35BA01A7D52F46D /* PBXTargetDependency */, + 3AFDDE1ED80B0CFCC064C62576F26336 /* PBXTargetDependency */, ); name = RNGestureHandler; productName = RNGestureHandler; @@ -27480,7 +28315,7 @@ buildRules = ( ); dependencies = ( - 349865940F386292E979116819518AFE /* PBXTargetDependency */, + 9D0200E2B2272EE3D6C2508944090083 /* PBXTargetDependency */, ); name = "react-native-cameraroll"; productName = "react-native-cameraroll"; @@ -27498,7 +28333,7 @@ buildRules = ( ); dependencies = ( - 4C312A242AE486C8F1A8CD0128BD356E /* PBXTargetDependency */, + E0F0F21ADCAC508DB3916B4DB4D9A3D2 /* PBXTargetDependency */, ); name = "react-native-safe-area-context"; productName = "react-native-safe-area-context"; @@ -27516,9 +28351,9 @@ buildRules = ( ); dependencies = ( - CDF141EE05890E0D4EC71A6D3171FA3F /* PBXTargetDependency */, - 91FA8214D1270AB9DED8313DA8EE2B74 /* PBXTargetDependency */, - 1644BB5EDAC814913E90E359551F783A /* PBXTargetDependency */, + D003CBE4F90D0EF3F1F52C349F9D97CF /* PBXTargetDependency */, + 126200BB0A7DB902A5E4583D7FA1C8AF /* PBXTargetDependency */, + D2BE04B275C9A180C5DC373BFF8AEA0E /* PBXTargetDependency */, ); name = RNFBAnalytics; productName = RNFBAnalytics; @@ -27527,22 +28362,22 @@ }; C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */ = { isa = PBXNativeTarget; - buildConfigurationList = 6A216DB39BEB5AB0826C55ACC87A6ED1 /* Build configuration list for PBXNativeTarget "FBReactNativeSpec" */; + buildConfigurationList = F81785C975EC4B13D41AD12DB0FD45F4 /* Build configuration list for PBXNativeTarget "FBReactNativeSpec" */; buildPhases = ( - 39F2883A717B6D2F8D4BAFE8679E7F1D /* Headers */, - FF8A75CC4CBEC971D3827181BE6F5250 /* [CP-User] Generate Specs */, - DD8D6945B600427BB34E08C076BC22B6 /* Sources */, - 5B6C5E8708BE022B93EC8821E8564DA3 /* Frameworks */, + 8CD73E24A416482310BBB269007E9E14 /* Headers */, + A42E9530A98E0D506CF859F67001A8D6 /* [CP-User] Generate Specs */, + C8935F11AC9EE2D5F5BB6D52AE2EB925 /* Sources */, + A4475EB91C5C44D2A349A2ECD6B17401 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 79EBB970282AF117D4325E444509EEBA /* PBXTargetDependency */, - BC1D70594C71CB3E909A1DD98372EEF3 /* PBXTargetDependency */, - 4DDFF0EF00E3FA69FC6B5FBB550893C3 /* PBXTargetDependency */, - D9548602BBD2FF95C2BDD875F010675A /* PBXTargetDependency */, - A2B8FBB3C6B2854E1B66D04224304C53 /* PBXTargetDependency */, - 95A9C761487FC422B1C1BA402723DE26 /* PBXTargetDependency */, + 7607AB3C9EC6B3A72C00D50CB3A821CE /* PBXTargetDependency */, + 8D7EE01FA93D2BBA756CAB08A3845403 /* PBXTargetDependency */, + F294E455EBF719EAAB955B19244E25B0 /* PBXTargetDependency */, + 0C5A32F38B6CE8A97EB60D21AE865E1C /* PBXTargetDependency */, + 49C3C7AEE2D1479D1EC24809CCED9687 /* PBXTargetDependency */, + A3380830A9E04BED95BEA0AC33DBDED2 /* PBXTargetDependency */, ); name = FBReactNativeSpec; productName = FBReactNativeSpec; @@ -27577,7 +28412,7 @@ buildRules = ( ); dependencies = ( - D498FBDD7BB22D67844830ADEC9A7C62 /* PBXTargetDependency */, + 89BBCAC7B66E9F858377D08C0C3F2D6C /* PBXTargetDependency */, ); name = "react-native-notifications"; productName = "react-native-notifications"; @@ -27595,7 +28430,7 @@ buildRules = ( ); dependencies = ( - 30762117455C53F08CDD3FDAAEA9C252 /* PBXTargetDependency */, + 17ACD7CA5C5454197BEF004B20B06C45 /* PBXTargetDependency */, ); name = RNCPicker; productName = RNCPicker; @@ -27604,11 +28439,11 @@ }; D0EFEFB685D97280256C559792236873 /* glog */ = { isa = PBXNativeTarget; - buildConfigurationList = 8CECF1AFD6816F97BE236FAB739E03E8 /* Build configuration list for PBXNativeTarget "glog" */; + buildConfigurationList = A2C87C07AF568B319F6753B5DE9C2B83 /* Build configuration list for PBXNativeTarget "glog" */; buildPhases = ( - 2F3176871B9AC229CDFB289E6AC70D98 /* Headers */, - 72954C038EB809717171C89706BF9E16 /* Sources */, - F2A91F276EDF715851512B40C6E9B8C0 /* Frameworks */, + 52544AF49BD4CF6119A6BDB68C1440BB /* Headers */, + F3D28482F2CED5839FB231BDE0E94C8C /* Sources */, + 772FAED248537EF7AAB5D93B26AC1D88 /* Frameworks */, ); buildRules = ( ); @@ -27630,7 +28465,7 @@ buildRules = ( ); dependencies = ( - DF1F89F4D99E51D305A356CB45ED0901 /* PBXTargetDependency */, + E4F73A52909E705812C5CC0689A0E9B1 /* PBXTargetDependency */, ); name = "react-native-document-picker"; productName = "react-native-document-picker"; @@ -27639,19 +28474,19 @@ }; D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */ = { isa = PBXNativeTarget; - buildConfigurationList = B87EBF8041FBBEF19BC45A5765C73118 /* Build configuration list for PBXNativeTarget "RCTTypeSafety" */; + buildConfigurationList = 9C2CA449B96F068665DD62E672E64BED /* Build configuration list for PBXNativeTarget "RCTTypeSafety" */; buildPhases = ( - 7264037671C3452F8260B850A12B5AA2 /* Headers */, - 828F714DDAA75E7F73D0A0B3B22B9A29 /* Sources */, - D129FC3FF503A5CD4363809D0E08AC6D /* Frameworks */, + 6ED5BB983BE2B68121F58CF0130C9D59 /* Headers */, + E2228FD4AC6E29FB6D8F41180467CB2A /* Sources */, + 36F26C4C734E8588E99C9754140D3669 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 1B7A9C65AB8C03C068E897287740620C /* PBXTargetDependency */, - 994B157DF652DEC4154F76F75E1BC979 /* PBXTargetDependency */, - 9752782B23E16F9293010A39D93A66E4 /* PBXTargetDependency */, - F913AD43F8F87D7E6A83F75152CDE864 /* PBXTargetDependency */, + 1BCA757D0AA08E35912F102956D96688 /* PBXTargetDependency */, + 694F56AC29D43B98B04458D541BC0C64 /* PBXTargetDependency */, + 78B2E5AE87E6B268B7BD81B0A7CDF53F /* PBXTargetDependency */, + 0AF313A6EC833C599932A15C6DFCD05D /* PBXTargetDependency */, ); name = RCTTypeSafety; productName = RCTTypeSafety; @@ -27660,11 +28495,11 @@ }; D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */ = { isa = PBXNativeTarget; - buildConfigurationList = C6E771129A3EB2B9828941707D3AE966 /* Build configuration list for PBXNativeTarget "nanopb" */; + buildConfigurationList = A8727C6D45B3C78272F861736A333F16 /* Build configuration list for PBXNativeTarget "nanopb" */; buildPhases = ( - 45CC46305811E14A8739A5A4957507AD /* Headers */, - 5D0039F04D32BA48380DD0E86FC0B1AF /* Sources */, - 059449D46D8FD6C685DFF43B725C34E2 /* Frameworks */, + B332962D4B98D6565A6C92E826E60CCA /* Headers */, + A083F8EF5ABE7519458E8356FD0BC478 /* Sources */, + 16D542A505F9763CF89BAE7EAC972694 /* Frameworks */, ); buildRules = ( ); @@ -27686,8 +28521,8 @@ buildRules = ( ); dependencies = ( - A485EE75E2DA8E421674186457B6D059 /* PBXTargetDependency */, - 5B66A2F99044AAA7F8CFEAE9CE446A11 /* PBXTargetDependency */, + 7B1E1D0C1C62815667D8003848A1782F /* PBXTargetDependency */, + 872C042FDFDA796DF43FD0060E88CD45 /* PBXTargetDependency */, ); name = "react-native-jitsi-meet"; productName = "react-native-jitsi-meet"; @@ -27705,7 +28540,7 @@ buildRules = ( ); dependencies = ( - A2C1836FC2484E5905D5E329483ED926 /* PBXTargetDependency */, + EB2E014AD89BAA33B6F3075F0D9BEA3D /* PBXTargetDependency */, ); name = RNDateTimePicker; productName = RNDateTimePicker; @@ -27723,130 +28558,130 @@ buildRules = ( ); dependencies = ( - 0712702CD3B2ED8E580F66C41DAEF0E8 /* PBXTargetDependency */, - 350EF498F610D16D2495DB086EE30B49 /* PBXTargetDependency */, - 60F32C1CA0F8721971FF6A440D6CE8DC /* PBXTargetDependency */, - 5F5C658721E2266D5DA1C7C070B6F24F /* PBXTargetDependency */, - 25C3BE95697028D55E6F86989E76E13A /* PBXTargetDependency */, - 9037AD878676963D14D92997AB4A16F7 /* PBXTargetDependency */, - C0E0B97DD44BF97248316F655515DB6A /* PBXTargetDependency */, - 1C4C2A78AC5F9D15A937D94211FCF206 /* PBXTargetDependency */, - 53BB32552DD417B4D619F27CB2AE34D6 /* PBXTargetDependency */, - 74DF7C20CAF1CD91CF1F7C2CB1565B87 /* PBXTargetDependency */, - B8AC712E583B50D1E923DA57F66D5590 /* PBXTargetDependency */, - 18C2D2640CDB8B74806F733F15289EF1 /* PBXTargetDependency */, - 60321B4A16F5F2B4D6D9F26B3DD46E0E /* PBXTargetDependency */, - 41207C02F42FB30A4BCCEDC0B37FDCEC /* PBXTargetDependency */, - BC9D59E0D93AF1D641DF2981DBE8A769 /* PBXTargetDependency */, - 3D434031E8DE1107439544E667868DC6 /* PBXTargetDependency */, - BE545AD1D715F64803079DB3B992B83F /* PBXTargetDependency */, - 5FAD91536FF7ED34EE7DC5BEE50D715D /* PBXTargetDependency */, - 36A71334BA3B085CDB918EE3D087F270 /* PBXTargetDependency */, - 8679DFF0B2CDA194FB8DA712E6067958 /* PBXTargetDependency */, - E0AEE8DAC0ED73D52F77C9B9E5B5434B /* PBXTargetDependency */, - C99BED17C691119A6B91C9FEACE75C43 /* PBXTargetDependency */, - 9203A95548E3C69E7406207B019872E5 /* PBXTargetDependency */, - AE331AB8CDDCB8AC701B84EAAC9BC957 /* PBXTargetDependency */, - 5305B6B7C8CC9A0B84CDC7C8E4162A19 /* PBXTargetDependency */, - D474E0B9B6C8E58F96BC8E05BAB9DC42 /* PBXTargetDependency */, - 54A84DF59F0DE6982F4F441427E92312 /* PBXTargetDependency */, - 9CF0D73292D8D02F896FC730D13A818B /* PBXTargetDependency */, - B8C3812A21A9AF6E2B8F5485D346DC71 /* PBXTargetDependency */, - 088EC20A6A2738360CBF0F39D61B62BB /* PBXTargetDependency */, - 647B328C1E55315B655A1CC5E9401B37 /* PBXTargetDependency */, - 03A231019A79C605B057C2BE1E723CA5 /* PBXTargetDependency */, - 065290059B4249852EAE3B5789D147FA /* PBXTargetDependency */, - 0868A2B3636440830D4AA1CD5889F452 /* PBXTargetDependency */, - 02434207851482BCD7005B51C0FDA192 /* PBXTargetDependency */, - C5F3550D959276D7F0A7B819380AB9CE /* PBXTargetDependency */, - 5513286923969850F60B0B6FA9C29CE8 /* PBXTargetDependency */, - CA37AB5174331D3B5180A442E2DBB9EA /* PBXTargetDependency */, - CF81461178FABB620CE624EACA9FFC23 /* PBXTargetDependency */, - 836E0AAAA42C3017035463E1A85A3686 /* PBXTargetDependency */, - FDD434862C6B23139B5B5E69C018F75F /* PBXTargetDependency */, - 0A4240B0F26F5552FEC3B7EB707DAE7D /* PBXTargetDependency */, - 195FF2D404F48F5A3211FA5B3A8D6BAE /* PBXTargetDependency */, - 7201EF3B6767D6DD96255EDC8263F005 /* PBXTargetDependency */, - 3B92D0291B76336932646C04FD159F0A /* PBXTargetDependency */, - 9A4E3F9CC293ACDA58D7A8B7B716BDE4 /* PBXTargetDependency */, - F422348DEB82064E2109E2F22BEB0B2D /* PBXTargetDependency */, - 431C40237AF3ECD80FFADAC3D3BF7781 /* PBXTargetDependency */, - 719F8A7AD6114C0CAE7C80466CD17367 /* PBXTargetDependency */, - BEE6D8663C50AD6AB117C2B082558F6A /* PBXTargetDependency */, - 0206754235B184F84F40617B572ED173 /* PBXTargetDependency */, - 134AFE8F6CE5DCFF4067133A4B36BAD4 /* PBXTargetDependency */, - 55E3ABE7F4F99F86BB02D13B0EE9B988 /* PBXTargetDependency */, - EC3FE58BE10F25AB1CB995DB92860035 /* PBXTargetDependency */, - 367EF5000A90A05E5ACFD2D9D85E31D9 /* PBXTargetDependency */, - FE4A3198DC6180AC7B31B5BEB08C88F5 /* PBXTargetDependency */, - DC8007637B61CB401B41D9856739B47F /* PBXTargetDependency */, - AB79E0D71419447F9F556D8DB047829C /* PBXTargetDependency */, - 47678E0F07B5CD0B41C0DA98CDD85DB3 /* PBXTargetDependency */, - 78C4CDC0144C5AE5A061D05763F8F1E0 /* PBXTargetDependency */, - 2191378D56A200F5B530D92CA1B7C47E /* PBXTargetDependency */, - A5A2BAB44BF45233CBD5E55697B10E9A /* PBXTargetDependency */, - 8B8B845D5AD744B36246BCD891BDFED3 /* PBXTargetDependency */, - 09A97FB7E10BB6CAFA867A53A51AEBED /* PBXTargetDependency */, - 483F8116BF3121547F3A841662E010EF /* PBXTargetDependency */, - 5892B50CAB363B83BF6603D6BC451492 /* PBXTargetDependency */, - 14C2320CC16572192BD289F8C969EEE3 /* PBXTargetDependency */, - 18798BADCA689383B2406DC98F61820F /* PBXTargetDependency */, - 1DDEAF931DAF7A55DCA2D63F504CC6F0 /* PBXTargetDependency */, - 3100C7A358130615A0760E7ACA799CCF /* PBXTargetDependency */, - 533CA3099416AB004E2EB0EF8A58A3E7 /* PBXTargetDependency */, - 644E8C8911F01758B22E1E4B478566CF /* PBXTargetDependency */, - E039F7B592BE1B248B00C1CC2F173A5E /* PBXTargetDependency */, - 41DD81F9BF53FFDDC69039355E6FBFEF /* PBXTargetDependency */, - BF41D1877D528FE1C848F5BFAA213250 /* PBXTargetDependency */, - C771B7287EF550D2B2417F7A6506299C /* PBXTargetDependency */, - 72A474C8BE84D10AAA2AF9A546A43407 /* PBXTargetDependency */, - F0954DD1DEEEB47E552F3354CEF55516 /* PBXTargetDependency */, - 6834F3E93F458369F858ACDB51A5112A /* PBXTargetDependency */, - 47A875B925CDABFC01997B8725FA4B6A /* PBXTargetDependency */, - 170F841BD96C7C52761E6387385A8D50 /* PBXTargetDependency */, - 99C02CA1D07DA39AA7EC70EFF92982CC /* PBXTargetDependency */, - 7F24731FB15B8144EE83762895C62EF2 /* PBXTargetDependency */, - 9C2D84473A846AC144390B48D4F1589C /* PBXTargetDependency */, - 0DD2FA282EDE8A147464A6756721B95E /* PBXTargetDependency */, - 3AACD1563B635025363C55F0E1F539CD /* PBXTargetDependency */, - 13049E73B1A66E991B2BC2446F823081 /* PBXTargetDependency */, - 85A322782D685D4F8BF9A4C17BB3645C /* PBXTargetDependency */, - 293FB68C9C21609E0A04203E52EFE233 /* PBXTargetDependency */, - 9DFC307448ADBBDD1EAE2E195BA21838 /* PBXTargetDependency */, - FD0DDB5F22C6B87617592406FB07BA40 /* PBXTargetDependency */, - C06021964546226D9DC0A95524578A5C /* PBXTargetDependency */, - E50EAA45BDBE726AEC7A9025B3ACC137 /* PBXTargetDependency */, - B1F45058D1948457BAC0DB7A6FE26809 /* PBXTargetDependency */, - AA5782B5BE88B5E8C461FE00F9EC5ADD /* PBXTargetDependency */, - 4266C2B10BF03619EAD5ACAED5DEB7B2 /* PBXTargetDependency */, - 114BF8F729A8FC00AB5BCD4404499E23 /* PBXTargetDependency */, - C6DE071D75D15A4577C5106FFFD5EB5B /* PBXTargetDependency */, - C30C6C57FC88E571277F8EAEB0CCE4F1 /* PBXTargetDependency */, - B882BE4440A02DEC5ED34F6633978848 /* PBXTargetDependency */, - 056FD8AAB2D1CBE3520027387FDDE07C /* PBXTargetDependency */, - 446A850A0E6CB2B3F739FB1F78D2D8B8 /* PBXTargetDependency */, - 137EE0DE45A0A6B6BBF91C0A73561ED0 /* PBXTargetDependency */, - E607B1406DA6033E1EEC8D5C0C247C26 /* PBXTargetDependency */, - 2F042CA71A8F2D1ACD6B6B3BB7AA3018 /* PBXTargetDependency */, - 3244E0A4B62450DE4D5C90B01EF58845 /* PBXTargetDependency */, - 1CAD7F73ED91BBD87FE1C4FFBF05409A /* PBXTargetDependency */, - 427E5CD11D2DE89856CD6C1D719CC110 /* PBXTargetDependency */, - CBE2C1D6A2EA425F650D63A77DEE72B5 /* PBXTargetDependency */, - 9881DABC0DE13E36B944F601450864D1 /* PBXTargetDependency */, - CA9E25FFA1207B278DF9F17A509202C2 /* PBXTargetDependency */, - 812B0565D57263C237343983B027BC13 /* PBXTargetDependency */, - D465CE1252F8BF478910D32CCD5EE693 /* PBXTargetDependency */, - 9BE34AAFBA51D744B005BE81820FDC86 /* PBXTargetDependency */, - 54C79F312FCCB473720966DAFA674B16 /* PBXTargetDependency */, - 8CF330F95A2DE5F9294F1A6C3F98E4C2 /* PBXTargetDependency */, - 85FEB1C676F1ABB980DD61D335D33290 /* PBXTargetDependency */, - 5AED0A08671698B8718145A4C65324BC /* PBXTargetDependency */, - DD9477014B54D29B9381C9ABC8081756 /* PBXTargetDependency */, - C6B18F3F41C4C2DD80D490AA4BFFA0BB /* PBXTargetDependency */, - 423E5FB7842A6D87389E999D6C1A98A2 /* PBXTargetDependency */, - 8F92A4250472607F7291E106F039B1DE /* PBXTargetDependency */, - C4D577534958299C738114DC34F1AE24 /* PBXTargetDependency */, - 30CF11F23CC1407D838A979C21B92A6B /* PBXTargetDependency */, + E663E0746AF9587E187140088C9A78A1 /* PBXTargetDependency */, + 4C40519348AC841056306D05B3CD57F9 /* PBXTargetDependency */, + 328C25E036DD2059C6C521AC8A7ADAA9 /* PBXTargetDependency */, + 42CF772E2CAE2702952A36487804CFA3 /* PBXTargetDependency */, + 6990DA9422941E6EDFA9F5FF2F7EACB7 /* PBXTargetDependency */, + 03D40E0662C808B82B9A8D4B9533A2F8 /* PBXTargetDependency */, + 629D67B1099A6011DF7C552DE14B49CF /* PBXTargetDependency */, + 41242D1647ADB5D532DD19B3ED2D82DF /* PBXTargetDependency */, + EBD453A1B6979DF3C69F87C620C7AAAE /* PBXTargetDependency */, + 7E249BB832DE8FBB57AA5B659EA65C83 /* PBXTargetDependency */, + 1E9913FA513BEBF6AE70956B1AFE5D32 /* PBXTargetDependency */, + B3028CE87DE05E05D31CB80820A69DFC /* PBXTargetDependency */, + 5231FD2A12D72DB5705C671DAAB0D7F9 /* PBXTargetDependency */, + 047B114CFAB96C8E9FC828083BD2FDD1 /* PBXTargetDependency */, + 350E1BF2FB151C29E80B7B57B810F0F7 /* PBXTargetDependency */, + B528DD4EDFED9FF14A611546C824888B /* PBXTargetDependency */, + 9E426F33134A6FFA66DC6649B1829689 /* PBXTargetDependency */, + 5D9E40B0BB971DDCCC0102DA0F8805C0 /* PBXTargetDependency */, + 151F44BDFC518BBE6E894E2E9750A082 /* PBXTargetDependency */, + BC578291E8C752C915611E1ACDA7A703 /* PBXTargetDependency */, + E474B96A8FFB4DA88BF3962AF3EA2F3E /* PBXTargetDependency */, + 72C3F27A35D127B05EDFBF1AF400150B /* PBXTargetDependency */, + 7669584C5BC540E89EC0F67FA9F4BF9E /* PBXTargetDependency */, + 34691FA1A36ADAE6706806629A78C056 /* PBXTargetDependency */, + EC14546B8305C367EE5ED23568D2F576 /* PBXTargetDependency */, + 08B7AB3C00FAAC06D3E3D0591B84262C /* PBXTargetDependency */, + 318F5C89073F380A0FCEAA7180A5CD98 /* PBXTargetDependency */, + FC5354EE17A31EAF2B6882494B07D22C /* PBXTargetDependency */, + ABB38B51F5A8BC5D6E4CA139461E0911 /* PBXTargetDependency */, + 78615C059CBCC9AD5AA446383BF37BC3 /* PBXTargetDependency */, + 8EC659CCB54C4E8BD5A89D96EE6ABD73 /* PBXTargetDependency */, + 3100524DE1047157AEAB1617D9C82D56 /* PBXTargetDependency */, + 2AA5EAFA1EEA176F1AF7C410163ED11F /* PBXTargetDependency */, + BA2A5F0115F8EA0F1BB92F1396642E4B /* PBXTargetDependency */, + D3B311CD2DEFD819DFE46F255EE02E74 /* PBXTargetDependency */, + 31A76CDDD7A6D147FCC84A21933490A7 /* PBXTargetDependency */, + 119FDFB4BE7D18B2381E3245FE29726D /* PBXTargetDependency */, + 6EE8D2D7F4BF3096ED0B794181D42FC6 /* PBXTargetDependency */, + 24062F53418DEE51F2832C1FCCE58807 /* PBXTargetDependency */, + E98952DD1B78AE4734CB8DCEDEABF4F4 /* PBXTargetDependency */, + E4A94790CC4BB4AE1422985FE8D974DF /* PBXTargetDependency */, + C65D8D3964447301CC6EB34D738C1E04 /* PBXTargetDependency */, + F0C3C40FA6CD6456B010C47CFA649207 /* PBXTargetDependency */, + 830D0DDD1ED7766FDCC9E4B2D19035B6 /* PBXTargetDependency */, + 993D396F38E7691A8B7DD2E339CCF3D0 /* PBXTargetDependency */, + 396354C3F8F7F3A3F7BA013F08A51799 /* PBXTargetDependency */, + 8E31B98BBCD7D7BFE0DB9591D67792E5 /* PBXTargetDependency */, + F37245A494C296BC8E6A6811053DD10D /* PBXTargetDependency */, + 089071F102DA6BC109E6A2695ACE1C7A /* PBXTargetDependency */, + D15B3B0D97C6A345D9F4F610AFC539C9 /* PBXTargetDependency */, + D07515D6E26FC63DA484C9E05CE2FD5A /* PBXTargetDependency */, + 1DF1C9A2345BCC4298A73F5E3126F989 /* PBXTargetDependency */, + 36B46C316A1D5196A53123E13D9B4592 /* PBXTargetDependency */, + 06D4285144A100292AFDCA1D58852D0B /* PBXTargetDependency */, + 163AA5542D65AAA9BB944EE197510840 /* PBXTargetDependency */, + 2D370361D464E9C4956561EBB8DA7F9E /* PBXTargetDependency */, + 027EF64EA4E3408C7AEE8CFB19DE1380 /* PBXTargetDependency */, + 4291BCB513BB1143CE9BA33CA24FA5BE /* PBXTargetDependency */, + 852A93058D3CA3352A3626F4F2AA6BAB /* PBXTargetDependency */, + ABF0ECFDF6971328F366D60A4CC81820 /* PBXTargetDependency */, + 26C05BD48A8B9E01C9357778890FF06F /* PBXTargetDependency */, + 0AD8247BBC433D6F5FB85D1294D42584 /* PBXTargetDependency */, + D8DE82F0DF3F721853BACDFB56EE7764 /* PBXTargetDependency */, + 2F1B957F1A0A4D2D7124E1F8FF005F3C /* PBXTargetDependency */, + 1DACC56C9BEFCFF8040790175FD8DC07 /* PBXTargetDependency */, + C8B554847D661498D93C694CE292ACF9 /* PBXTargetDependency */, + B467BE6B73FEFA4AABDD74FAC3AE4002 /* PBXTargetDependency */, + FE63B51A148341C5FCC033BC5854D9D9 /* PBXTargetDependency */, + 25A15BB584DF1AD1AC6535D29755BBF8 /* PBXTargetDependency */, + 9C3F7A036E96D2D712EC3BD41027D85F /* PBXTargetDependency */, + B1AEDE526BD2211524894775B2F2135B /* PBXTargetDependency */, + 73E3778CF5046F50B245E46249B8A3A1 /* PBXTargetDependency */, + ED9A1D0F419D42BED5FBCDB087B3F0AE /* PBXTargetDependency */, + 912F7723DC302F388B571775F8AD3D67 /* PBXTargetDependency */, + EF67CC0694C727BBFE7DE264E204B8D9 /* PBXTargetDependency */, + 756D66FC7D36EB2AE1DD3D9DDA8A5716 /* PBXTargetDependency */, + E1F239D9D7ACFA74B87C9CEBA02F84B4 /* PBXTargetDependency */, + 28383F21FCF4CC7DED783148AC34FFDC /* PBXTargetDependency */, + DB2E58A92DCFF90E53B3C95EE16EDBA1 /* PBXTargetDependency */, + 6BD216FAE1ADEC54703BB5825C378127 /* PBXTargetDependency */, + E5EDED7A21AE2D5E2B5D649010ADCEB8 /* PBXTargetDependency */, + 0DF0EFEA719F6A4CE1333BF522CB2E90 /* PBXTargetDependency */, + 35D272A655A858621BC248300D9BDC55 /* PBXTargetDependency */, + 2A79286BCCD4640263A2C491CB90C1A9 /* PBXTargetDependency */, + D71B533AC48BA617148D71BB6CA35E59 /* PBXTargetDependency */, + B4D00B7760C3FB0828263C5D8DD72369 /* PBXTargetDependency */, + 59F8129ECA3ABCA858B9461A639774EB /* PBXTargetDependency */, + 6430415BFFE66A38B8BCA85297BC3ADB /* PBXTargetDependency */, + 294BB13EEFE7E474D46C4A7C115C03AD /* PBXTargetDependency */, + 9964CCD69F6A51C5BD50045ED16F6104 /* PBXTargetDependency */, + 734CC2BE7CBA5BBD183F2618924A27EA /* PBXTargetDependency */, + 0B1B7338467B7AA28DD0F843A7F1CEA1 /* PBXTargetDependency */, + 61833198A2228192E41DFB30E491725C /* PBXTargetDependency */, + 01DBE5A23CC9D0BBC91B821776DF660E /* PBXTargetDependency */, + B83DC780E4EF4161377AD35B535FED02 /* PBXTargetDependency */, + 6A3D07447F7B60121AB0CF00C5FA0E0D /* PBXTargetDependency */, + 9DC93C1D6F5EA0E5CAE692445145CB0D /* PBXTargetDependency */, + 832D84E40B4FCD08BFD68EFBE912221B /* PBXTargetDependency */, + 1CD3A11F4AAE64D05E1094AA22888A38 /* PBXTargetDependency */, + 684E541BB09DB70D03416F52F9EC2636 /* PBXTargetDependency */, + E0EACE4355A49D6F4BAF19F72787B61A /* PBXTargetDependency */, + 3DD2BB25E78CFF29333432907DAE2CE5 /* PBXTargetDependency */, + 45184D9F60E265D302870523053E04B3 /* PBXTargetDependency */, + 6AF1A1E396C297515D404EB5B9BDCCBE /* PBXTargetDependency */, + D165BAD22A479804300CF27DCC65F8D0 /* PBXTargetDependency */, + 8D401A4598BB50D0B34669CE8B9F9A27 /* PBXTargetDependency */, + 33E5AA1A990EA43BC1E306B7932AF65F /* PBXTargetDependency */, + D4431ECC0E32ADEEE07B4D8B68B85047 /* PBXTargetDependency */, + 1EC1EE1701812A211E97839EABDD917C /* PBXTargetDependency */, + 3443D01329680AE9C6620387ABDD19E1 /* PBXTargetDependency */, + 16596F20E08FD754A3E7562A786D03A8 /* PBXTargetDependency */, + FEE98C4DFE5A8AC903082490D75C78F7 /* PBXTargetDependency */, + 209F9CAC95D18BDA5E50029C965456FD /* PBXTargetDependency */, + A111437F7EE9EB56A7032A77CF85E626 /* PBXTargetDependency */, + 0654A81AA98E5A9FCA37E4E038B32185 /* PBXTargetDependency */, + 97190226766EE7B191866EEE7133DD98 /* PBXTargetDependency */, + BDB2E275B63CEF8C3B1FAAADF342FD72 /* PBXTargetDependency */, + F22A6C16A990D09ADD1651FE73475406 /* PBXTargetDependency */, + F6DF5C4F280A98925433989B7AEBEE75 /* PBXTargetDependency */, + 521B2483558BC702A7B5C7CBF390B5B2 /* PBXTargetDependency */, + 3C2BB3A1052D82CDDD919A8ABDD2F043 /* PBXTargetDependency */, + F0D55E9BEA4B8E97AF76FA1D54E4ABF6 /* PBXTargetDependency */, + 8F4984529BF991F7323B437FA5714B6A /* PBXTargetDependency */, + C24D39E04D848AE308781FA9B547BAEF /* PBXTargetDependency */, ); name = "Pods-defaults-Rocket.Chat"; productName = "Pods-defaults-Rocket.Chat"; @@ -27855,11 +28690,11 @@ }; D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */ = { isa = PBXNativeTarget; - buildConfigurationList = 5BC98C1FF8351AD5E83B0A4D428530D5 /* Build configuration list for PBXNativeTarget "Flipper-DoubleConversion" */; + buildConfigurationList = 895CF15E24078E27F2D10A5015747042 /* Build configuration list for PBXNativeTarget "Flipper-DoubleConversion" */; buildPhases = ( - 35609435CEE616A0665549572517E55F /* Headers */, - 47963DF00B478904B0422482A368CC47 /* Sources */, - 8DDDBE31E70E0E99552D64EE81951650 /* Frameworks */, + 11D9999534E0F0C2D0E856D26C2380A8 /* Headers */, + 7F3457C2E3E1A04D3D2A5919C7B2D397 /* Sources */, + C496617F801558CE8BE3D307D72565D3 /* Frameworks */, ); buildRules = ( ); @@ -27882,8 +28717,8 @@ buildRules = ( ); dependencies = ( - EA63745C8BAA5B3BD6BB093AAD6C7000 /* PBXTargetDependency */, - A65F5DBF991472086B036A42684CF2D3 /* PBXTargetDependency */, + 1B0CEB4B460BC0DB66DF4D7816E79262 /* PBXTargetDependency */, + 702CDDDED4A1FB819B07CC2F3AB1B2F3 /* PBXTargetDependency */, ); name = "react-native-simple-crypto"; productName = "react-native-simple-crypto"; @@ -27892,21 +28727,21 @@ }; DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */ = { isa = PBXNativeTarget; - buildConfigurationList = 5EB38E0B2CBF501D6F94B3D80C8F5603 /* Build configuration list for PBXNativeTarget "React-jsiexecutor" */; + buildConfigurationList = 6BC19C369914219214088AA704D90DDB /* Build configuration list for PBXNativeTarget "React-jsiexecutor" */; buildPhases = ( - CA4DCF6A29E09F48F0B08F2C126F4CAF /* Headers */, - 11E0616F34797320731061A9FFEC4C56 /* Sources */, - 519223573291ADBF9B2C4AC20E3A498E /* Frameworks */, + 9B501F7CA708C4A2E6FE4AC772517F27 /* Headers */, + 8A77D8B8D92A8EE133B6BBADDB93E574 /* Sources */, + 06A3F9F481ED5BA74F32721A55EC4EED /* Frameworks */, ); buildRules = ( ); dependencies = ( - 3549F7DDCBC23A8BF7D23D58E9FAB99A /* PBXTargetDependency */, - F6F1D1421AD28B7018018689D8525F60 /* PBXTargetDependency */, - 5EC53EB0225D44E8867635B59F8B7D92 /* PBXTargetDependency */, - 5D44EE5ECFA50FA0002FBC6ED7D2112B /* PBXTargetDependency */, - BD2378143242261608F299A82A8462E2 /* PBXTargetDependency */, - 03972F3790D6CAA911C853153B1F9F22 /* PBXTargetDependency */, + 10C3E41DD5D1E65AE1D108DC9A22B515 /* PBXTargetDependency */, + A04AA6C8A345271CCBE97DD920683301 /* PBXTargetDependency */, + 877930B14A21B2DD3CA569D5013960B7 /* PBXTargetDependency */, + DB8DFC0B0074CD32D8DF89293CA3F6E9 /* PBXTargetDependency */, + 77E761B5F1D6766129F18CABBE5FF8CC /* PBXTargetDependency */, + A51EC2E02846BD88420A5D704F349AB0 /* PBXTargetDependency */, ); name = "React-jsiexecutor"; productName = "React-jsiexecutor"; @@ -27915,11 +28750,11 @@ }; DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */ = { isa = PBXNativeTarget; - buildConfigurationList = A3ABE524C9FD671CD9689C303E8C4C3E /* Build configuration list for PBXNativeTarget "UMCore" */; + buildConfigurationList = 1BA8C2D2B578BBF04BD6E5D7EAB9F481 /* Build configuration list for PBXNativeTarget "UMCore" */; buildPhases = ( - 19DCFF59BF5EEF41F3DBE8D273DFBC24 /* Headers */, - 208049B160B702B9C20D544985B8C84A /* Sources */, - 0476D78B811E978A754D00AAD4EA9AE0 /* Frameworks */, + 8EF4BA14C36A9A298DD1301C1B152BF8 /* Headers */, + 22AD6F821D6EF956B44DA31ADA09C64B /* Sources */, + D53569BC185C8976331FD2E0EFEEFFC7 /* Frameworks */, ); buildRules = ( ); @@ -27932,16 +28767,16 @@ }; DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */ = { isa = PBXNativeTarget; - buildConfigurationList = 238F95FC1A404408AF1561DEE61150A4 /* Build configuration list for PBXNativeTarget "React-RCTText" */; + buildConfigurationList = 58CDAABA5D527B39D63C6E72BEB30A65 /* Build configuration list for PBXNativeTarget "React-RCTText" */; buildPhases = ( - B240E15DDFD041B3732B83CF1C92ED4F /* Headers */, - 6D430090E2AD66DCD42988920210CEFD /* Sources */, - 5088B630745F116C1C6C62B6D1AC4DA6 /* Frameworks */, + 887231A49B759C36385E79455FF2F17A /* Headers */, + 3EC4407101D2CE414935D852F85AA221 /* Sources */, + 47DD1A475E3F12C74B93009CC32A35D4 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 993068B1F7FD6B97B647192DFD3E16AF /* PBXTargetDependency */, + CDEEE02194E117B9BBD5EA21885CF0E2 /* PBXTargetDependency */, ); name = "React-RCTText"; productName = "React-RCTText"; @@ -27959,7 +28794,7 @@ buildRules = ( ); dependencies = ( - AB20C219F2A97A218B54F8DCE89DD07F /* PBXTargetDependency */, + C20622F01960C6F9567A44E625308DE8 /* PBXTargetDependency */, ); name = RNConfigReader; productName = RNConfigReader; @@ -27977,160 +28812,19 @@ buildRules = ( ); dependencies = ( - C4FDC56A5A79BDB4B7E097EF3309CDB3 /* PBXTargetDependency */, - 132E5683B014FF6E7DA3A7480A32A12F /* PBXTargetDependency */, - 4EBE9E116D1DC68A57FDE264D8F8E3ED /* PBXTargetDependency */, - 2992A9E2EDAE9E6849BCB78E1F89301F /* PBXTargetDependency */, - 185160E8E9609D63821506DC88DBB7B2 /* PBXTargetDependency */, - EDF85A6167C5E810F6209F00B32A3662 /* PBXTargetDependency */, - A976B49624F7672D5526F856FD779905 /* PBXTargetDependency */, + 8DE89D6131708EA9CAC3A5888D377DE0 /* PBXTargetDependency */, + 1C7FEF4B4C014B9CF974F44BDC559731 /* PBXTargetDependency */, + D5162B0143962B0E320119E579ED3B2E /* PBXTargetDependency */, + 3B0731AA6168E9E572B96F007CCDD59A /* PBXTargetDependency */, + 81E734B2DCC71BF039F2D3598F9F3365 /* PBXTargetDependency */, + 67161DFCF32EFEB374D6501A4479A451 /* PBXTargetDependency */, + A8F5A0B69DD894612BA6763FFFF5237A /* PBXTargetDependency */, ); name = "React-CoreModules"; productName = "React-CoreModules"; productReference = 6771D231F4C8C5976470A369C474B32E /* libReact-CoreModules.a */; productType = "com.apple.product-type.library.static"; }; - E2816A8094E8D1BCDC0C50D2C832730A /* Pods-NotificationService */ = { - isa = PBXNativeTarget; - buildConfigurationList = F8F3AE9F70811C8960D0E88C72765C96 /* Build configuration list for PBXNativeTarget "Pods-NotificationService" */; - buildPhases = ( - 4D71CA6F881C95FDC58B3DDE54DBD3BC /* Headers */, - E303C721D4F58E43DB50888BC3C3AB5B /* Sources */, - 2A324E4746DB80E29874AA089755B1E9 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 10691041578E74CFE6F0767F4AF5E6F8 /* PBXTargetDependency */, - 1F2C1C79A8E896A48A75E651C453ACC4 /* PBXTargetDependency */, - 54BC8A77FC561587993C5BC3C627C71F /* PBXTargetDependency */, - AA9078A0BAA4DF12502FEEA8ABCB04B0 /* PBXTargetDependency */, - 25CD8A0830E640E68E95D1FB595234D2 /* PBXTargetDependency */, - 73EA4C28D3710F28E2D3284DC25FB99B /* PBXTargetDependency */, - 05AC085C58F97472E4BDDC0B1EADD12A /* PBXTargetDependency */, - 8D0BE544E9E6641903F059F6C8780D13 /* PBXTargetDependency */, - 674141F56D0A4CEAB7FA46A815B91A78 /* PBXTargetDependency */, - 328548BAF9B9755B6F4BAD921A71B4B8 /* PBXTargetDependency */, - 5003F45533FD1BC7D69761665B619875 /* PBXTargetDependency */, - CA2CAE6221E61E3DB95060115B828AF3 /* PBXTargetDependency */, - 6C9411BD10E37E85D86A6D284C9E3517 /* PBXTargetDependency */, - 360ADC6EEE7A36DC4F17424F45F06973 /* PBXTargetDependency */, - B43351D862E2F86840B49BC34F9AF68C /* PBXTargetDependency */, - 170724400E39FCCC293FA86EA674B645 /* PBXTargetDependency */, - A53D93CB0ABC9DDB9A291C3272069572 /* PBXTargetDependency */, - C51816DA7D20FB302F87D63FA6E3136F /* PBXTargetDependency */, - E6E5A8E789658EE85CA54F984780BCF6 /* PBXTargetDependency */, - B0F76603EB5B51C7723713D5B4FC6DFF /* PBXTargetDependency */, - 519B95E62599E72DA844FCE5D9EF262C /* PBXTargetDependency */, - 2F8F23A4263C4EF33BD1DCC6087A90F3 /* PBXTargetDependency */, - 23F3ADD1F6B429862273C9C5E24A784D /* PBXTargetDependency */, - D848CBF22954276124F0FD6BE0F4E179 /* PBXTargetDependency */, - D18AA4588642F3537AB91FBC5BF2819F /* PBXTargetDependency */, - FD0C19F570690B32768DEAF1FF02F6D8 /* PBXTargetDependency */, - FBB8A3E7746B88121F832967B098041A /* PBXTargetDependency */, - 5B8ACDD49BA3B3A803357A63B9EF8DC3 /* PBXTargetDependency */, - FB2E67DA43311EA61E2E6F176DE6DA30 /* PBXTargetDependency */, - BC91AB19C9A5307793E95A51A843CFEB /* PBXTargetDependency */, - 2E06E30ED462ACB73CAB32FA9AAB517B /* PBXTargetDependency */, - 1EB9AEAF51473ABBA4EB357AE36FB4C3 /* PBXTargetDependency */, - 20E1A860FDBEC6179B23F7E6AB9AC709 /* PBXTargetDependency */, - 5372FD071460813012D2C2AFED70EF27 /* PBXTargetDependency */, - 3C9123AA4E1B4E07FF697E800A8F6DCA /* PBXTargetDependency */, - 5CFAD9D0F0F0492F67390721BA8BDDF7 /* PBXTargetDependency */, - 84974E748F6A1B47AE5B2C168A98AB20 /* PBXTargetDependency */, - EFC9C84C884F3246F6D541A46B039160 /* PBXTargetDependency */, - EE27ECE203244873A089A66EB9252653 /* PBXTargetDependency */, - A53B58FB727BB0AC2FF4DF7B759964A6 /* PBXTargetDependency */, - FF69AA2B858CB397CA4F9880001F25C8 /* PBXTargetDependency */, - CDC86084189D1B288158977775A71AF6 /* PBXTargetDependency */, - F378C8EE6A1A27701041F23E650D9124 /* PBXTargetDependency */, - 49CCAA57C95F406317CA851BBBEB8D1D /* PBXTargetDependency */, - AC7A132FFAA2FD9A0EDBAA1460236E4D /* PBXTargetDependency */, - E9623F02BA3295AD5699D7B7637A91A5 /* PBXTargetDependency */, - 47CA79421D93921D18D7D73238A835A7 /* PBXTargetDependency */, - CA27CF685C2C2B9B5DC953139A41D202 /* PBXTargetDependency */, - 896FB65E83A0F0967ECBB0763CA07D33 /* PBXTargetDependency */, - 7BE0F5456697C597C180D724507D05C4 /* PBXTargetDependency */, - A198B81BF5928317CC6C8EBB6ACEA6E7 /* PBXTargetDependency */, - 470437DF541B1F66C9FF7D83C6919E91 /* PBXTargetDependency */, - 475F34BAAE333529CCABC3D9B27A3078 /* PBXTargetDependency */, - E761FAE0B11F4FA9DAFCD7160A6272E1 /* PBXTargetDependency */, - 3E5E230A2A762DD40CF99B890417C92F /* PBXTargetDependency */, - C951F343C7D421AD554A20E9CF3196F5 /* PBXTargetDependency */, - 0F7ABB870DDE53404ACCA10ED02A96CE /* PBXTargetDependency */, - 39C7ADAE6EA4DAD5D577FE39890311E1 /* PBXTargetDependency */, - 8634CFD59CDC18738AEE6F1C931F878F /* PBXTargetDependency */, - D5762F2C470DEFCD63E19CA36BE813D9 /* PBXTargetDependency */, - 59D9667A4573F411E4C33191FBBD7ABC /* PBXTargetDependency */, - 0C86E44A391289E0DEDE1DE1BF410D2C /* PBXTargetDependency */, - B4F8FA3F8325821AE09EEEDC18CF4C80 /* PBXTargetDependency */, - 9FF5C46A0F73F73304E5C013301018CE /* PBXTargetDependency */, - B9A953111C6A4A9A92DFB549B83B8CEE /* PBXTargetDependency */, - 0949708E490500E203DA010EDC98CFE6 /* PBXTargetDependency */, - A1253F4A61836B241D551161DBB25E24 /* PBXTargetDependency */, - 029D360797CF8B7112E5E1A7C051EDFC /* PBXTargetDependency */, - 87E82EEA1562BB3464DCC6C77B0FECBF /* PBXTargetDependency */, - AE5CF0A042C1E02F74187FC52F7FCFDD /* PBXTargetDependency */, - 0341BE929FF64F101D083F7E47001150 /* PBXTargetDependency */, - 7D1853B13D11B0BB63EF5ECDDCF0C855 /* PBXTargetDependency */, - 66ECFBAA9153347B5BAA4964C71B485C /* PBXTargetDependency */, - 3481FF9274FE3C0C84263210EAEB33D6 /* PBXTargetDependency */, - FADE0E7AF59E6B051430A3A3C32BDBF0 /* PBXTargetDependency */, - 30E6ACB8D2E78BA79C5D87B663E60C86 /* PBXTargetDependency */, - AB9D643A2778F437910CB4E74A3912D0 /* PBXTargetDependency */, - 2A233D99BA38AFCF332820ED9BAF8A5C /* PBXTargetDependency */, - D8E7F2302A36A4CC444DAAF727966D1C /* PBXTargetDependency */, - 2D8D46C7B9E9E29E3DD3F42D2D1CD027 /* PBXTargetDependency */, - B5A38E1B5B03AEA2778124FF9592B93E /* PBXTargetDependency */, - 3D0C2DA9CC0FAC649B45E3088054FEFA /* PBXTargetDependency */, - 4797C6AC427B26B28188B81B0F1777E7 /* PBXTargetDependency */, - 1494C55B9B242688EFA326E37400464D /* PBXTargetDependency */, - 9150434D5CEC9E0C2917AD6824C5A4EC /* PBXTargetDependency */, - 43F7EFC3B29523B6EC71E76B278CA648 /* PBXTargetDependency */, - CB5004AE270D20718A435586D148F26A /* PBXTargetDependency */, - 440BCBFB1D4B531843056F550C5103E2 /* PBXTargetDependency */, - FF9DAE30960033E8EA675143053A8D61 /* PBXTargetDependency */, - 54CB0E039FC6CA0AF4E23BEAA4FE114E /* PBXTargetDependency */, - 738638F318D6654C8492145AFC78F5E0 /* PBXTargetDependency */, - 667B4A4717B0959C5AEC75B68512EFB7 /* PBXTargetDependency */, - 5DB1DF50D90E943E178C926B61D71053 /* PBXTargetDependency */, - FBC57AE5A8843134EB552B32BD90A900 /* PBXTargetDependency */, - 30CEFCE915973F521F2D612AA3CE35A2 /* PBXTargetDependency */, - 5F2F685CCA21BAEC901DDE59E1E0A716 /* PBXTargetDependency */, - F948194BA29DC6CF49AFEA12E83FC69F /* PBXTargetDependency */, - 8DD3AB20DCA67D4FBDC243BF585B58B9 /* PBXTargetDependency */, - 27E7C38A661F1731C568E0CB8F7E8C44 /* PBXTargetDependency */, - 238BA55FCFCCF66DC0F1C6AC99CFE53C /* PBXTargetDependency */, - 6014764B5B26675A1F4D973CBD0838C1 /* PBXTargetDependency */, - 069FCFD1909C968B070BCD6DFCC09B6B /* PBXTargetDependency */, - B6B9F48545DE7579E2B5D4A8304D5CCD /* PBXTargetDependency */, - 3262E6854BF9C3AEB18E17E4DCEB8B3A /* PBXTargetDependency */, - C18795B671BB4C00F5FA1AC19FAAFA5F /* PBXTargetDependency */, - D1634CCFDECE27700E97108882D4314D /* PBXTargetDependency */, - 268CEEC7A58EBB0F00B9426FC8808A31 /* PBXTargetDependency */, - 6A41B2EAEA851666B6483B6DD60FD8CC /* PBXTargetDependency */, - 1FE8C3DB98BE5C9C8158F8C911D9856A /* PBXTargetDependency */, - 552A297816403E5CA6F6A6C1453F83E1 /* PBXTargetDependency */, - 32E6D55612EB31631569A9DABE168F74 /* PBXTargetDependency */, - 755B7B4E6B65C48EFE1949E1D4C4AF2D /* PBXTargetDependency */, - 61A3436B268BE12C5D42EB17A734E903 /* PBXTargetDependency */, - 86FD64F8969727638DD7161E95E94094 /* PBXTargetDependency */, - 9950D38AEBB43822AA9D543E3D45B1D0 /* PBXTargetDependency */, - CAFB57F8AE93FEA0CA00B1B414FCE9E1 /* PBXTargetDependency */, - CE96F699C73DE6CC07B83890B7996683 /* PBXTargetDependency */, - B5A35BFE8E9DC1FC9B2212DC34CFADD8 /* PBXTargetDependency */, - A888882B88EE55C0472294E5BBA7D301 /* PBXTargetDependency */, - 10EECE4977A9A9FFC78CDB4EB71B5178 /* PBXTargetDependency */, - 56A2B67B2AB9B086A9753900EABA62B3 /* PBXTargetDependency */, - AA0C4C45643859FADF3115EC3AAE60EF /* PBXTargetDependency */, - C749AB792CCFC0225BB932760640AD34 /* PBXTargetDependency */, - A4D5335067720FCF8F69B066BE03CECA /* PBXTargetDependency */, - ); - name = "Pods-NotificationService"; - productName = "Pods-NotificationService"; - productReference = 563E0A0FEB65B564D6A02A0A948B2E62 /* libPods-NotificationService.a */; - productType = "com.apple.product-type.library.static"; - }; E3573FB7AF659C42B699003C73722241 /* RNFBCrashlytics */ = { isa = PBXNativeTarget; buildConfigurationList = 5B2A57B655D0C4D73337CAB3CAD9D412 /* Build configuration list for PBXNativeTarget "RNFBCrashlytics" */; @@ -28142,9 +28836,9 @@ buildRules = ( ); dependencies = ( - 48AC1934869BE853D16810B5A658B431 /* PBXTargetDependency */, - B992DAB4100665B6923638355B74247E /* PBXTargetDependency */, - E7E0438C48AD2682AE8A21615347DB17 /* PBXTargetDependency */, + 7A2F78619B9DA1DA26C4C2DF17D10040 /* PBXTargetDependency */, + B097C6CC688C0DC611360588B51A3A19 /* PBXTargetDependency */, + 9FC9F16B91C53985F4203E72D7906D9C /* PBXTargetDependency */, ); name = RNFBCrashlytics; productName = RNFBCrashlytics; @@ -28162,8 +28856,8 @@ buildRules = ( ); dependencies = ( - 858A30736566284AFCB22578F9D57224 /* PBXTargetDependency */, - 560A9861EE2200F889F8E14AE0656404 /* PBXTargetDependency */, + 61950E67A93F97858EDFCE1632BE83C5 /* PBXTargetDependency */, + 5160311C4B3DF8B82A18573769318B2E /* PBXTargetDependency */, ); name = Flipper; productName = Flipper; @@ -28172,19 +28866,19 @@ }; EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */ = { isa = PBXNativeTarget; - buildConfigurationList = 828F5B605C8DC1442926371115831966 /* Build configuration list for PBXNativeTarget "RCT-Folly" */; + buildConfigurationList = A9418F3356E9D639DE3B582A62A0F26E /* Build configuration list for PBXNativeTarget "RCT-Folly" */; buildPhases = ( - AB94978733A144B09A9793540B934EFD /* Headers */, - AEB0983C23E34F4CBDCDEF6E1D7FD6C0 /* Sources */, - 2B132CE394FCB8CCA93CEA9D8D02B288 /* Frameworks */, + 80FB1444113C9E94F05E53D15C6F9A4F /* Headers */, + 05BEC13212AEDEC17ABAA4DE825335CA /* Sources */, + 922C8248D4EBD9723ABBB0E242C6B7D8 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 9583E03D8E941A8372D181958314B4BA /* PBXTargetDependency */, - FFAF67F825660FE311706C0C0641A082 /* PBXTargetDependency */, - 759E477B614A8CE32E6B50FA36D7D487 /* PBXTargetDependency */, - 6EF6B9F884C5DCBB578520C24F4B4C29 /* PBXTargetDependency */, + 6CDFF65E190BEC7742DFD0C47B1BAC57 /* PBXTargetDependency */, + 479960C4AA6B3A33AEA092B857CB012F /* PBXTargetDependency */, + CA9798E332A9E07CF824D14FCE414241 /* PBXTargetDependency */, + CA5FD549A66016727AC9192BF15184C9 /* PBXTargetDependency */, ); name = "RCT-Folly"; productName = "RCT-Folly"; @@ -28202,7 +28896,7 @@ buildRules = ( ); dependencies = ( - 839BDD075DF6A3EF6036619397AD7967 /* PBXTargetDependency */, + 2D2BC283507A1CDC452274D1184C30B9 /* PBXTargetDependency */, ); name = "react-native-netinfo"; productName = "react-native-netinfo"; @@ -28220,7 +28914,7 @@ buildRules = ( ); dependencies = ( - E62DFA4D8E7A21B0EF106F65D035C9B6 /* PBXTargetDependency */, + 928C21EA797C87A395A5946C53F95C49 /* PBXTargetDependency */, ); name = "react-native-blur"; productName = "react-native-blur"; @@ -28229,11 +28923,11 @@ }; F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */ = { isa = PBXNativeTarget; - buildConfigurationList = 2D6DC0F9E73C954C5DA69EF3CF51E07C /* Build configuration list for PBXNativeTarget "React-perflogger" */; + buildConfigurationList = C5BB32007235C20C0E8E3DFE7283D558 /* Build configuration list for PBXNativeTarget "React-perflogger" */; buildPhases = ( - 3061C6E23E4532D1501E805F32BF0CFE /* Headers */, - 5869A35A0A66BD0093C0B09651733978 /* Sources */, - 729AE33DAFDEBCFB9094CE1AD63D23BF /* Frameworks */, + 2F123C27578F21D69D6E5335E49EE008 /* Headers */, + 88DEBFC710596C8B85EDED1F6FBE8F0D /* Sources */, + 0A1622D4B45E86D4BA47153B70CCC6E8 /* Frameworks */, ); buildRules = ( ); @@ -28246,16 +28940,16 @@ }; F3966F664F3CFAEFAB57C40FB54D3788 /* TOCropViewController */ = { isa = PBXNativeTarget; - buildConfigurationList = 57CB7E47EEB806CCA7CA064EB60E17D8 /* Build configuration list for PBXNativeTarget "TOCropViewController" */; + buildConfigurationList = D3635C43092350A9658F45219FDD06BB /* Build configuration list for PBXNativeTarget "TOCropViewController" */; buildPhases = ( - A98E4E386B7222DCB9EC327DC1DF49AF /* Headers */, - 3159DB4BED1A73C226D1CE2D3B2ACA32 /* Sources */, - F62EDD4DF1D3907A2654586BAA0918F7 /* Frameworks */, + CDFEB92254204B59215A657C81EDF8EF /* Headers */, + 828495AB72C71455A73BC8E18217A0D9 /* Sources */, + 886C32514753C74BF10F98AD5099DBFB /* Frameworks */, ); buildRules = ( ); dependencies = ( - 019C4C6643743BEA8A69E00DC633E6E2 /* PBXTargetDependency */, + E0AFAFB364F2415037F442019DDB462A /* PBXTargetDependency */, ); name = TOCropViewController; productName = TOCropViewController; @@ -28264,17 +28958,17 @@ }; F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */ = { isa = PBXNativeTarget; - buildConfigurationList = 3D494A38765ED2F8B39FE06E64F5433D /* Build configuration list for PBXNativeTarget "GoogleDataTransportCCTSupport" */; + buildConfigurationList = F458FE1B19CFE8F0B657E816011EB44C /* Build configuration list for PBXNativeTarget "GoogleDataTransportCCTSupport" */; buildPhases = ( - 8085B93DCC0D00D391B4C35F5B780197 /* Headers */, - 84A390822F79C568AF66B74E3EDEBE14 /* Sources */, - 43DF9D2E68C9F501A6A8FBE4F4039887 /* Frameworks */, + 3CEA2DF12B20CE68007F12E6148E43D6 /* Headers */, + 43A119EF14E22939F23C607A1640763F /* Sources */, + B16361FAE64D27E46BE21FB0DFE5B6CF /* Frameworks */, ); buildRules = ( ); dependencies = ( - BB00768C8A6E84D0EBE7A0BB7EB48AD7 /* PBXTargetDependency */, - 672CEE53EEAD62935288D4216A350D52 /* PBXTargetDependency */, + C5374E851E61A1466AF6097849D2E157 /* PBXTargetDependency */, + 3DB878DC35EB343695DFAC78AC7E6C0C /* PBXTargetDependency */, ); name = GoogleDataTransportCCTSupport; productName = GoogleDataTransportCCTSupport; @@ -28283,16 +28977,16 @@ }; F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */ = { isa = PBXNativeTarget; - buildConfigurationList = E135E7DCA7F6DDAD113154CD5ED19C2A /* Build configuration list for PBXNativeTarget "UMPermissionsInterface" */; + buildConfigurationList = E90E1F1D1CA0986675C407B246AA0762 /* Build configuration list for PBXNativeTarget "UMPermissionsInterface" */; buildPhases = ( - 2A0148173367380F9952BA24F9D6491C /* Headers */, - 993FBFAF26E930FD76B5DC5A4059DA5A /* Sources */, - 29B38A9214567FC3B57159D039FDD113 /* Frameworks */, + 5478F662965269BAE2BA99EDD5EAC7E8 /* Headers */, + 7F3B84595DB6781E0A0C8CE1129FFEAD /* Sources */, + C44BB04015DF2257CD7DBA77075BE16F /* Frameworks */, ); buildRules = ( ); dependencies = ( - F619AEDAC3C244703388E482BE1F8338 /* PBXTargetDependency */, + 42A98B3B6148F4B205FDBEA7B4226514 /* PBXTargetDependency */, ); name = UMPermissionsInterface; productName = UMPermissionsInterface; @@ -28301,11 +28995,11 @@ }; F7D033C4C128EECAA020990641FA985F /* React-jsinspector */ = { isa = PBXNativeTarget; - buildConfigurationList = 3CABF77111E4A1C661C6971691AF48EB /* Build configuration list for PBXNativeTarget "React-jsinspector" */; + buildConfigurationList = 3E9771AB8600DE7494AE5916BEAC47CE /* Build configuration list for PBXNativeTarget "React-jsinspector" */; buildPhases = ( - C94AB11A8A52FCAB0B093160DEABB768 /* Headers */, - 15D8989A8DB58A283793EF1F4668CB01 /* Sources */, - 3167ADB16552EC0C486D6A1939E4B9ED /* Frameworks */, + 7FB1440899B31631197424CB3C537FAC /* Headers */, + E8861E1DBD8B874B1A985DE947DDE3BE /* Sources */, + 4927BD1B98A84A2C86C7AB0612955C10 /* Frameworks */, ); buildRules = ( ); @@ -28318,19 +29012,19 @@ }; FA877ADC442CB19CF61793D234C8B131 /* React-jsi */ = { isa = PBXNativeTarget; - buildConfigurationList = 9BC97C68D22AA24AB9502BF342AA3322 /* Build configuration list for PBXNativeTarget "React-jsi" */; + buildConfigurationList = D7BAC07A83F765F4B109C68135DE7246 /* Build configuration list for PBXNativeTarget "React-jsi" */; buildPhases = ( - 964EBE035A4A01988A8816A99B8806D0 /* Headers */, - C4C88AB37EF6D7928A0E34583350DF03 /* Sources */, - 50182B37454594304796B0F32F8BEC80 /* Frameworks */, + 33D4CDB1F7C602C0EF2DE2B86E4E2B88 /* Headers */, + BCC991817AE4F19B3009D52EE4D80827 /* Sources */, + E12E6A6310A53994D5F1643B28B9BCCF /* Frameworks */, ); buildRules = ( ); dependencies = ( - E5568ADFFBD97BA8A0131F0CE8E1F880 /* PBXTargetDependency */, - 4C8A5AE6099EE73BC03E0FAB7C723E5D /* PBXTargetDependency */, - AA10360EA96B3F16142C7E06DDCB6E30 /* PBXTargetDependency */, - 76A41FCA012447A3DFB8DCFCBF1D5132 /* PBXTargetDependency */, + 95B9F3BCA83B8222EFBEEE623EC62AB7 /* PBXTargetDependency */, + 48E0C5099E0CB4EBE379D7880E3D5156 /* PBXTargetDependency */, + 2D29D6D3D6B8D209F463606A0C6E8DD7 /* PBXTargetDependency */, + 9FC16006E154CCC6FA16881BC112BEEA /* PBXTargetDependency */, ); name = "React-jsi"; productName = "React-jsi"; @@ -28348,7 +29042,7 @@ buildRules = ( ); dependencies = ( - 6BFDEAFF52B418B9A17FD47F9A130B60 /* PBXTargetDependency */, + 454D18E4665AA10CD37FD76389ED4004 /* PBXTargetDependency */, ); name = RNReanimated; productName = RNReanimated; @@ -28373,7 +29067,7 @@ Base, ); mainGroup = CF1408CF629C7361332E53B88F7BD30C; - productRefGroup = 8BCDA242335B32DDD47E0EF491D17437 /* Products */; + productRefGroup = 4F324F96B78624E3B6F2EDE9CF6B621A /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( @@ -28421,10 +29115,10 @@ AC8AE887C706A43711D115E69B9D988A /* MMKVCore */, D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */, B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */, + 482EBDE650175DC0388C6A050B3C0173 /* Pods-defaults-NotificationService */, D83FEDBB2D35218BB7BD3780EF08216C /* Pods-defaults-Rocket.Chat */, 28666AA448F927736F4533C70E448907 /* Pods-defaults-RocketChatRN */, - E2816A8094E8D1BCDC0C50D2C832730A /* Pods-NotificationService */, - 9C801345ED2C78BD1674053E7BE5D6ED /* Pods-ShareRocketChatRN */, + A6C6505810958F0C9C95D987FDED0B8D /* Pods-defaults-ShareRocketChatRN */, 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */, EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */, E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */, @@ -28513,83 +29207,65 @@ /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ - C8DED2F9F8835B3C5659AB6E7B909B72 /* Resources */ = { + 00E0BDC305BAB9E57DA2B8EE7636DFDB /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - B4D4AF9AFE2324B8A207F103EDD4EA84 /* en.lproj in Resources */, + 873D5BBC800EC81BA055921080E0AD26 /* en.lproj in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - D0E2FFD6DBE103B472C725575BA19023 /* Resources */ = { + 1CDF264D79F4FF1E8BFA81C7C3CE6617 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 202CD1E9F709F74D3D66FA9C3DACF84E /* de.lproj in Resources */, - A266E9C3ABF1F4CFE0BA14F5C413C025 /* en.lproj in Resources */, - 9AB665363DBEC2441685B31EC5B000A7 /* es.lproj in Resources */, - 795739149A59029B97F12365B5431537 /* fr.lproj in Resources */, - B5866A63F3253F84C282A517193EFE62 /* ja.lproj in Resources */, - A18553482DDA095E2AE84E1085A93465 /* pl.lproj in Resources */, - 10BFD52B0129013FE1E0D708F1E55AE5 /* QBImagePicker.storyboard in Resources */, - FC62DB02C03A33AF70758C0D69A44FEF /* zh-Hans.lproj in Resources */, + F3D1277CC08C275020B3DCDDC03630CF /* ar.lproj in Resources */, + 1356281DF6E2E54C8DD966A31CCCC430 /* Base.lproj in Resources */, + CC3B88AB958F404688AE62BDA3A6C3A5 /* da-DK.lproj in Resources */, + 6AD7DAA8CF490793B3134CD081131277 /* de.lproj in Resources */, + 7764F4863A8FA97FD68D7978A7679691 /* en.lproj in Resources */, + 07D433A912EDD1208E6C857BFDAAAA46 /* es.lproj in Resources */, + C36D239092F494BA227E1E009150FA44 /* fa-IR.lproj in Resources */, + D208C88D025D7E970BB9010A96C747C1 /* fa.lproj in Resources */, + C51547B8E83E413BD853C0992A778242 /* fi.lproj in Resources */, + 92470F6719AB3B3AAA122E66ED371ADF /* fr.lproj in Resources */, + 5FEE5BDBDE95EC8E66EA8D23D50D2EF8 /* hu.lproj in Resources */, + 996D279A4E7172BE58B81521E7A164B3 /* id.lproj in Resources */, + 33325583D03F08A5A8004F9B8219253E /* it.lproj in Resources */, + 284D8A228174B9C50C29853A1D48BCD5 /* ja.lproj in Resources */, + 53C524B776B176967BC868CF2F36B40F /* ko.lproj in Resources */, + E51BF3266E364412BE10CFAF038B0327 /* ms.lproj in Resources */, + 4DEE22EEF03836691A02E9D3A4A77664 /* nl.lproj in Resources */, + FC68F89AE74DF9CAEBBECD03626CDAB7 /* pl.lproj in Resources */, + B90BC90D6C772811A4998C72B965F487 /* pt-BR.lproj in Resources */, + 3F5457418BEF647D02B131A6E0470981 /* pt.lproj in Resources */, + F53E3E1E16D23A3C1C612D460BB12515 /* ro.lproj in Resources */, + 4A71F821E54673C99BC36A7E0C8559DD /* ru.lproj in Resources */, + 901A21999171DB399A3D9A5EFE5F3982 /* tr.lproj in Resources */, + 668A490D69CB85D2AFC31BFCACAAD08D /* vi.lproj in Resources */, + 635D49C9DC370EF32ABABED4F2A82DC7 /* zh-Hans.lproj in Resources */, + 6E4370E000F3BCE9094F9EC550AFCE42 /* zh-Hant.lproj in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - FF9E0D0B9F8E979F55D35C6A1268ABAC /* Resources */ = { + CE184DB926BB1665815AA7E15DE3C0CE /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - DE47991D1CDF1A1F43FC1AFD8C200FC9 /* ar.lproj in Resources */, - 751D2C350219EB880A1B9DEE8C51441B /* Base.lproj in Resources */, - 77088ADE71874C98046D954DA2F058B1 /* da-DK.lproj in Resources */, - DC430A28D94C37FFE31A9ED77DED3466 /* de.lproj in Resources */, - E8448A1715E1C4CBEE54E6836D59A41B /* en.lproj in Resources */, - 481BF56C645B82E3B0640F02951A2455 /* es.lproj in Resources */, - 8EE469971B328501E2E8F04A467A4B16 /* fa-IR.lproj in Resources */, - A036DFBE8301122DE965A54873D9D0F0 /* fa.lproj in Resources */, - 9589E7EDCD0886FB47F4A713A2FFB263 /* fi.lproj in Resources */, - F9DA7D890B5CB3C39FFDA2285340FDC2 /* fr.lproj in Resources */, - 526F0CC77789C3A290062381040C7EBA /* hu.lproj in Resources */, - 6904BF5CDF8D2AA26BA286FFDBDD1B60 /* id.lproj in Resources */, - 2D4FE0938607838BFAC573BEBFAD0122 /* it.lproj in Resources */, - 0F2B4915D36BF1173E7CC15B017BED0B /* ja.lproj in Resources */, - E8C33B73A5C15DAEB0C27FF66FEB62F1 /* ko.lproj in Resources */, - 8E2FB2C0A1987D6BAA20F55A5AC58841 /* ms.lproj in Resources */, - A55DEC19D0E234AA49E6F653521B336C /* nl.lproj in Resources */, - EBE743321D1922E1F07C4DA939ABDDF8 /* pl.lproj in Resources */, - 29BADE187404392AD5D7EA743766A18A /* pt-BR.lproj in Resources */, - 0BB2E79C262053EBD06EE4DAEA1CA5EE /* pt.lproj in Resources */, - 1E285F790E65BA60FF9100B55FFAEA57 /* ro.lproj in Resources */, - 91EDB0A1B5CA4AC9F68124D62ED5ED43 /* ru.lproj in Resources */, - 6F4CEC567BF207A4EB8D2C7159DA20F4 /* tr.lproj in Resources */, - 9596D712D8C904315E0E08E14F0AE12A /* vi.lproj in Resources */, - 95FA315B184648E897206379AFAD1783 /* zh-Hans.lproj in Resources */, - 9DA81FADCAC891782DD7BFA80365F23D /* zh-Hant.lproj in Resources */, + 8C02B4C2C15F9CE5B9E2E6093EF8F870 /* de.lproj in Resources */, + 5FD7A5D93B82A94BF6C30EAD75A929CD /* en.lproj in Resources */, + 50F61412775FE7D4FE7BBF73B6AC4B8F /* es.lproj in Resources */, + C6D877AC27DE164D09C71E13AD485D57 /* fr.lproj in Resources */, + 8F655760E09FBC3301FAA0051E37D708 /* ja.lproj in Resources */, + 80A1125795308BA217DCA8B8694A9BD5 /* pl.lproj in Resources */, + ED5D88309179900553D4065574C01DC4 /* QBImagePicker.storyboard in Resources */, + D2307735353F2006466FDE9A67651D61 /* zh-Hans.lproj in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXResourcesBuildPhase section */ /* Begin PBXShellScriptBuildPhase section */ - 1126CC5B0FFEFD83641F0C13987585FC /* [CP] Copy XCFrameworks */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "${PODS_ROOT}/Target Support Files/OpenSSL-Universal/OpenSSL-Universal-xcframeworks.sh", - "${PODS_ROOT}/OpenSSL-Universal/Frameworks/OpenSSL.xcframework", - ); - name = "[CP] Copy XCFrameworks"; - outputPaths = ( - "${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/OpenSSL-Universal/OpenSSL-Universal-xcframeworks.sh\"\n"; - showEnvVarsInLog = 0; - }; 18136A62297395E492773A030744F323 /* Copy generated compatibility header */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -28614,24 +29290,7 @@ shellPath = /bin/sh; shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/react_native_simple_crypto/react-native-simple-crypto.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/react_native_simple_crypto/react-native-simple-crypto-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; }; - 8A457D31C71892981F1B9D17D2EAAD44 /* [CP] Copy dSYMs */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "${PODS_ROOT}/hermes-engine/destroot/Library/Frameworks/iphoneos/hermes.framework.dSYM", - ); - name = "[CP] Copy dSYMs"; - outputPaths = ( - "${DWARF_DSYM_FOLDER_PATH}/hermes.framework.dSYM", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/hermes-engine/hermes-engine-copy-dsyms.sh\"\n"; - showEnvVarsInLog = 0; - }; - 9D9B393568FBF72B52A30BA814D97FA8 /* Copy generated compatibility header */ = { + 1823C66040CEB06687F1EF0782B7BF34 /* Copy generated compatibility header */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( @@ -28655,7 +29314,25 @@ shellPath = /bin/sh; shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/YogaKit/YogaKit.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/YogaKit/YogaKit-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; }; - FF8A75CC4CBEC971D3827181BE6F5250 /* [CP-User] Generate Specs */ = { + 3E210BA784CEBA16D1C0882FF8BA30F7 /* [CP] Copy XCFrameworks */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + "${PODS_ROOT}/Target Support Files/OpenSSL-Universal/OpenSSL-Universal-xcframeworks.sh", + "${PODS_ROOT}/OpenSSL-Universal/Frameworks/OpenSSL.xcframework", + ); + name = "[CP] Copy XCFrameworks"; + outputPaths = ( + "${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${PODS_ROOT}/Target Support Files/OpenSSL-Universal/OpenSSL-Universal-xcframeworks.sh\"\n"; + showEnvVarsInLog = 0; + }; + A42E9530A98E0D506CF859F67001A8D6 /* [CP-User] Generate Specs */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( @@ -28673,30 +29350,47 @@ shellPath = /bin/sh; shellScript = "set -o pipefail\n\nbash -l -c 'SRCS_DIR=/Users/diegomello/Development/Work/Rocket.Chat.ReactNative/node_modules/react-native/scripts/../Libraries CODEGEN_MODULES_OUTPUT_DIR=/Users/diegomello/Development/Work/Rocket.Chat.ReactNative/node_modules/react-native/scripts/../React/FBReactNativeSpec/FBReactNativeSpec CODEGEN_MODULES_LIBRARY_NAME=FBReactNativeSpec /Users/diegomello/Development/Work/Rocket.Chat.ReactNative/node_modules/react-native/scripts/generate-specs.sh' 2>&1 | tee \"${SCRIPT_OUTPUT_FILE_0}\""; }; + B2DB92034D1C262AA0075292C432E764 /* [CP] Copy dSYMs */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + "${PODS_ROOT}/hermes-engine/destroot/Library/Frameworks/iphoneos/hermes.framework.dSYM", + ); + name = "[CP] Copy dSYMs"; + outputPaths = ( + "${DWARF_DSYM_FOLDER_PATH}/hermes.framework.dSYM", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${PODS_ROOT}/Target Support Files/hermes-engine/hermes-engine-copy-dsyms.sh\"\n"; + showEnvVarsInLog = 0; + }; /* End PBXShellScriptBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - 01B4FBCB34E77F767333F283150C6F8A /* Sources */ = { + 01D752F3625FCDBCE657487CEBFB4116 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 05E77B648246D77D11F8487FE79AD0DD /* RCTLinkingManager.mm in Sources */, - A3C7DCDAB374842BAC330E9F4D151C5D /* RCTLinkingPlugins.mm in Sources */, - 1EF23FA5CBF0EECAEBE6CD385D71F14A /* React-RCTLinking-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 031E5A53D908EAA0475B987C0185CAF3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 51D328B6248073AD2A1C01608AD92C2F /* RCTDataRequestHandler.mm in Sources */, - 27F06AE04C9486BF65CF66EEFF871CC6 /* RCTFileRequestHandler.mm in Sources */, - 144E1EF9CC157B0C5CE2335286425B23 /* RCTHTTPRequestHandler.mm in Sources */, - ECEACE161258048A1E49B45A4C988C2C /* RCTNetworking.mm in Sources */, - 3923379BE61AD6AC93DD1AA4630E92C5 /* RCTNetworkPlugins.mm in Sources */, - 2A76C529B1E22D29A02C4644EF8A8A60 /* RCTNetworkTask.mm in Sources */, - 0940F0F6BA3852CC2F799EEAB3D95E89 /* React-RCTNetwork-dummy.m in Sources */, + 78947210A83984AF9CA92D5382835733 /* FirebaseInstallations-dummy.m in Sources */, + B417219BDCE735A0005816B083301995 /* FIRInstallations.m in Sources */, + 0C9592D63976BC9282601AFCF81F19EF /* FIRInstallationsAPIService.m in Sources */, + 7E6F72747D10C9B7CD78587E9FE6884E /* FIRInstallationsAuthTokenResult.m in Sources */, + B69795678AEC78B288B9535BB47CFA19 /* FIRInstallationsErrorUtil.m in Sources */, + 2D9A653571B1C70BDE32D6C5314F0B6C /* FIRInstallationsHTTPError.m in Sources */, + 6347D3083AA8E9A98638C444C394A08E /* FIRInstallationsIDController.m in Sources */, + 786EAC74EB45E325C2F7139A5BFB2D88 /* FIRInstallationsIIDStore.m in Sources */, + E81E93C14C4A2EF29E40389982ED4E00 /* FIRInstallationsIIDTokenStore.m in Sources */, + 6F82B689E48C467E2CF41A3B6A759380 /* FIRInstallationsItem+RegisterInstallationAPI.m in Sources */, + 3C80B23F1A75FFF0AE88382E90F6110B /* FIRInstallationsItem.m in Sources */, + 27BB0973F6FF125510D96C52B8733B1D /* FIRInstallationsLogger.m in Sources */, + C0494C79337EC8400F085386EFCEC26C /* FIRInstallationsSingleOperationPromiseCache.m in Sources */, + 4B0AA0FF47AF0C550C254EA7E5479004 /* FIRInstallationsStore.m in Sources */, + 12D4E6E233529E574209605F3F1B6187 /* FIRInstallationsStoredAuthToken.m in Sources */, + ECEB3AB42101DDB0A76B27EE16178031 /* FIRInstallationsStoredItem.m in Sources */, + 740BDFD795EEEC91E8A49EF49555734B /* FIRInstallationsVersion.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -28727,6 +29421,194 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 05BEC13212AEDEC17ABAA4DE825335CA /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + CCE3AC1E9995394EED23A43954C1756C /* Assume.cpp in Sources */, + DC0EB06A66F21984C2EB2E996098C5DF /* AsymmetricMemoryBarrier.cpp in Sources */, + FE91D4CE8EB1E5645B5EA03FD8AF7A5B /* AsyncTimeout.cpp in Sources */, + C2A9A93881649082F6BC3B439811FD4D /* AsyncTrace.cpp in Sources */, + F480B6E9D345916E799C85E993804112 /* AtFork.cpp in Sources */, + A6E6A61A5926512C598F2D930D4E4454 /* AtomicNotification.cpp in Sources */, + 37113E6861E12CD3E0C84DC1757B96FF /* Barrier.cpp in Sources */, + D157303F63B79D99F4E20DE11AF439B5 /* CacheLocality.cpp in Sources */, + 16007FC7639A9F54CCC0A44512716282 /* Codel.cpp in Sources */, + 3EADD986136F129665CF13F57A204699 /* Conv.cpp in Sources */, + A7023EF767996520E6C1098B4D640123 /* CPUThreadPoolExecutor.cpp in Sources */, + 1D0679D726977001CE033A643C628E85 /* CString.cpp in Sources */, + 234D274F9F5FFD3DA770F18B5B82BFDC /* Cursor.cpp in Sources */, + A47017A92B6E1B7454CAE81AC13B6D51 /* Demangle.cpp in Sources */, + 36E0163696574F8B786D05BA08F3D391 /* Demangle.cpp in Sources */, + D92DF2B418F87CF4D9ED49621C1EAB78 /* DistributedMutex.cpp in Sources */, + 8EF24FBD4186CB3967B9A668798F0EA4 /* dynamic.cpp in Sources */, + 283AFD452334B12F42705D0863AE779D /* EDFThreadPoolExecutor.cpp in Sources */, + 43F303705A6DC66874C32187C20F45CF /* EventBase.cpp in Sources */, + 50631BB3515A42658EE5F6727B379DC2 /* EventBaseBackendBase.cpp in Sources */, + C3CC5C2D318326E54F2BCE9CCC8D7D91 /* EventBaseManager.cpp in Sources */, + 7941AC9AFC2BDE8C9F65E4C1633F1AD8 /* EventHandler.cpp in Sources */, + 238014D7C36D9F7526816B138E188F1A /* ExceptionWrapper.cpp in Sources */, + E220520B33F0E2BB0B58F5DB6E7BE855 /* Executor.cpp in Sources */, + C7BF157D628A84C29ACDC5C41CB2D195 /* ExecutorWithPriority.cpp in Sources */, + A77D6938B7F3D9408D0B3B7EDD44D72F /* F14Table.cpp in Sources */, + CA4BF0650049C0816C537A89740D27E3 /* FileUtil.cpp in Sources */, + 23BE38F41651FCA01863B7A6577A49FC /* Format.cpp in Sources */, + AF2FEA8132BFD8DF55EE2EC0B9A17984 /* Futex.cpp in Sources */, + FA0C73AAE530EE6055621F5CDC948D93 /* Future.cpp in Sources */, + 930062A5A8C222364AD62FB680436D33 /* GlobalExecutor.cpp in Sources */, + 9A0EEA24210537F43E8DA92336DA3F8C /* GlobalThreadPoolList.cpp in Sources */, + BCECA4F80E7AE8459C0C0D8DF87D5DB9 /* Hardware.cpp in Sources */, + FA079F4E038F040BC1393469199594D3 /* HardwareConcurrency.cpp in Sources */, + 0BFA5DDABBF0AFF8F2A011E4BD9CD4B6 /* Hazptr.cpp in Sources */, + 820A37B2380C9A5F617F676F1BD63079 /* HazptrThreadPoolExecutor.cpp in Sources */, + 7D617B334260196169E0FE8AD7D20FCF /* HHWheelTimer.cpp in Sources */, + 044B767FF1D713F3352E021519FD4646 /* InlineExecutor.cpp in Sources */, + C23992AD3B76C2513FC792700ED6576F /* IOBuf.cpp in Sources */, + EF763F9D299027011E7E2D9D77FF645A /* IOBufQueue.cpp in Sources */, + D619026D176024695BC48B605229A5CA /* IOThreadPoolExecutor.cpp in Sources */, + 9CD7A18C212E1348BF32FF6AF5A105C1 /* json.cpp in Sources */, + 82B7894B29F805155E87F73CD2336CEC /* json_pointer.cpp in Sources */, + E4A0F70A4C1573A50E12ADDFCAB1818E /* MallctlHelper.cpp in Sources */, + 6E3A38C95DA5C2389A7AC4E99D7F7A29 /* MallocImpl.cpp in Sources */, + EAA8AEA1DF510379312DCF16E8ED4DA1 /* ManualExecutor.cpp in Sources */, + 327589EC8A6265707CCFE874EA642053 /* ManualTimekeeper.cpp in Sources */, + 303544A415680F1EDFE79AA7B091CEF5 /* MemoryIdler.cpp in Sources */, + 1ED9C70CDE3DDD6999ACAB0AA9FE9BAE /* NetOps.cpp in Sources */, + 7AC001C3E4B80BCF42D9B631D7DADABC /* ParkingLot.cpp in Sources */, + 6D4A26D55E85DEC9A4AACDECE47C81D8 /* QueuedImmediateExecutor.cpp in Sources */, + A6F4F2B55EAD7992311E5DB8727F38E7 /* RCT-Folly-dummy.m in Sources */, + F42FE2DAABBD5FA9F6CD238D8F09EF5D /* Rcu.cpp in Sources */, + 58913D434D1F05CD24A2CDB16D9E6986 /* Request.cpp in Sources */, + 34FEF1A443ACECD48D8BAF56D4E467AF /* SafeAssert.cpp in Sources */, + D8B8414B0EEDB283573099875A60B927 /* SanitizeThread.cpp in Sources */, + 509D010F95001E7A8176186A276EC9E8 /* ScopeGuard.cpp in Sources */, + 5E8C2383E95A9ABDEA362756F0EF1949 /* SerialExecutor.cpp in Sources */, + 1CCA91BC3B96B07AAD25258D201A58E6 /* SharedMutex.cpp in Sources */, + B2459278296D4635FAADE93B461C7330 /* Singleton.cpp in Sources */, + 04310196A7DE34EE6C10BACBB7BA0A07 /* SingletonStackTrace.cpp in Sources */, + 52D293AD9A91867323F5D527B2D6FD2B /* SpookyHashV2.cpp in Sources */, + 3A033B1083DF60512428067B1FAE1217 /* StaticSingletonManager.cpp in Sources */, + 66850B455CF11F763B39531A79717335 /* String.cpp in Sources */, + 9E52D50A55E938F8DDEBFCA82EA88363 /* SysUio.cpp in Sources */, + 3C0325CDBA1A56CDCD0C36F821AA4F3A /* ThreadedExecutor.cpp in Sources */, + CEB6202FE80A2AD4486BCF529B2352A8 /* ThreadLocalDetail.cpp in Sources */, + 4437790AFB5B075D85F7B21FEED15681 /* ThreadName.cpp in Sources */, + 2BB815DC23FADD07BD442AC043C800AE /* ThreadPoolExecutor.cpp in Sources */, + 4E08FBF5C951665935FE86F50D5658AF /* ThreadWheelTimekeeper.cpp in Sources */, + 2BE074B6CB1F2AC2A40231A8A4B80BC4 /* TimedDrivableExecutor.cpp in Sources */, + 8BA94BDFAEBC1986F5E16919F3DFD3CF /* TimekeeperScheduledExecutor.cpp in Sources */, + C9EF7E847E879A6A606BE532188EF26F /* TimeoutManager.cpp in Sources */, + ED95056D908C3FE236BD332F2DA1549D /* Unicode.cpp in Sources */, + EF43B0B2935894B2E28A9745F76C33BB /* UniqueInstance.cpp in Sources */, + FFED6BCFDE9AD6E6887401D22FF5D9C3 /* VirtualEventBase.cpp in Sources */, + 6BCB044CC249C1016C650C7BFD223F52 /* WaitOptions.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 066DA302594018DDE82D9C06013CF433 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 4ECA09D18B0433F6A20F7DB163F4A44B /* RCTDataRequestHandler.mm in Sources */, + DC41021FE286A094DCAC89B11B6E4B99 /* RCTFileRequestHandler.mm in Sources */, + 19A859C754D9D92295FCE3E2925B68AD /* RCTHTTPRequestHandler.mm in Sources */, + C7AF7002CDF38300F56C322257D16E4E /* RCTNetworking.mm in Sources */, + EB24DBDCAF2863C9CBF16FBA8F968E22 /* RCTNetworkPlugins.mm in Sources */, + 009339B67D32BCE08D732F434B0A34EF /* RCTNetworkTask.mm in Sources */, + 964568B7F177E0B89B43306339455E72 /* React-RCTNetwork-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 069C3EC6AB38AF5395FEBEA123AD52DB /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 4876BA2C3E410BDFB2D33AD5D5FD6246 /* crashlytics.nanopb.c in Sources */, + 58A2CFAAF578864F9A77830CE86EE050 /* FIRAEvent+Internal.m in Sources */, + C087E4ADE4EBFE4CD26F1C47857ADE15 /* FIRCLSAllocate.c in Sources */, + 1650CE838AC29A642C71D87CF42362F5 /* FIRCLSApplication.m in Sources */, + BDA86160C344F123B4DFC750293BAD3B /* FIRCLSApplicationIdentifierModel.m in Sources */, + 1E32F7CE1D3CF957B543C046354F1217 /* FIRCLSAsyncOperation.m in Sources */, + 726550DFA7415A96DF508C5DB3E9D1A6 /* FIRCLSBinaryImage.m in Sources */, + 9344AC8DA1CA95B1279D92A28B9BEF50 /* FIRCLSByteUtility.m in Sources */, + BFBC129906C693DBA91C528843C87CF4 /* FIRCLSCodeMapping.m in Sources */, + EB59014043847D75B55B6F7FE01BF13E /* FIRCLSCompactUnwind.c in Sources */, + 6E663C0E9CDDACF0984A08465FBDD414 /* FIRCLSCompoundOperation.m in Sources */, + 8E2A6C95A1BB81D7E57A02DCCD8A2C2E /* FIRCLSConstants.m in Sources */, + F5BD0E6B6DF3CB46CF3A1BCF73ADDE09 /* FIRCLSContext.m in Sources */, + 58DDE1BB125D4D4F64A9A661E08F1CD3 /* FIRCLSCrashedMarkerFile.c in Sources */, + FE90F7C86A82F529B56E6F539A53D5E7 /* FIRCLSDataCollectionArbiter.m in Sources */, + C448184D7074A255FA942FAABF63BE3E /* FIRCLSDataCollectionToken.m in Sources */, + 847355C63F4362007816EEEC9C478601 /* FIRCLSDataParsing.c in Sources */, + 85125DBD7C968CF0836266E8C810EC87 /* FIRCLSDemangleOperation.mm in Sources */, + BA329500D43B9B6E482F57767412CB67 /* FIRCLSDownloadAndSaveSettingsOperation.m in Sources */, + 507BC7D36F26735B7FAE621BCBEF1F36 /* FIRCLSdSYM.m in Sources */, + DCB591F70D024C7AAC42AA36CCB49F25 /* FIRCLSDwarfExpressionMachine.c in Sources */, + B8B7AAF4D7B596C9248BB611E889DDCB /* FIRCLSDwarfUnwind.c in Sources */, + A15F4392D179EEA136BA24FEBE1BE4BF /* FIRCLSException.mm in Sources */, + 22B0D872A32EB9D92B78C88E5132F47A /* FIRCLSExecutionIdentifierModel.m in Sources */, + E08EF91F51F1271B2BD7F533727AB7BC /* FIRCLSFABAsyncOperation.m in Sources */, + 4193CD12C3490067C1BE06595D7E0E8A /* FIRCLSFABHost.m in Sources */, + 21EC8C03E63160300BFABE8195A35C64 /* FIRCLSFABNetworkClient.m in Sources */, + 55FD51B36E2F32FBC86416608362E437 /* FIRCLSFCRAnalytics.m in Sources */, + 0443589566EC27782B2D8A322A5C48B5 /* FIRCLSFile.m in Sources */, + 182098CB0D0FEC18AF86F463EF9378F0 /* FIRCLSFileManager.m in Sources */, + A1697D24BEFB10575F03B2B164735B84 /* FIRCLSHandler.m in Sources */, + D9816DA79E4A89D012EDC77D599C79CD /* FIRCLSHost.m in Sources */, + 6D256E9CCE5CBB06F9901AA759E569D5 /* FIRCLSInstallIdentifierModel.m in Sources */, + 02ADEABAF9B955E505BA66F7ADCD0667 /* FIRCLSInternalLogging.c in Sources */, + 336AF32DA88EC4C2FF4831C3A7C3D0F3 /* FIRCLSInternalReport.m in Sources */, + E32572B49BE011598A41D34DE5749AA7 /* FIRCLSLogger.m in Sources */, + 76DB1847A3A19D8DB784D90F6148BA56 /* FIRCLSMachException.c in Sources */, + 3E6ECF43672534E568332758BCCB14A3 /* FIRCLSMachO.m in Sources */, + 580AF9B17AF0DC866C596952274164B9 /* FIRCLSMachOBinary.m in Sources */, + 1D5245C3295FF95AECC56EDEAE5E589E /* FIRCLSMachOSlice.m in Sources */, + F496D87AA8C7371E866779C107874687 /* FIRCLSMultipartMimeStreamEncoder.m in Sources */, + 57A2877226035C314F1E3DB50EA716AC /* FIRCLSNetworkClient.m in Sources */, + 400B2D5426EDD7BB687E105A535FFC4F /* FIRCLSNetworkOperation.m in Sources */, + 96C813DD10F6E8310B8CF558F76E9EC0 /* FIRCLSNetworkResponseHandler.m in Sources */, + CF8B47CC905105974FF7ACAE6FA8A302 /* FIRCLSOnboardingOperation.m in Sources */, + EC301CF66B7105F0C3976DECE6A4014D /* FIRCLSPackageReportOperation.m in Sources */, + BBA3BA78EE75EE6BE23A64B27B6B7FFB /* FIRCLSProcess.c in Sources */, + 663E76306372562B3B9FB297D1B691A6 /* FIRCLSProcessReportOperation.m in Sources */, + A561094B2C1666262F94C267FDA7E1F3 /* FIRCLSProfiling.c in Sources */, + D372D81C9F919B230772EFF5A44BAF7B /* FIRCLSRecordApplication.m in Sources */, + 1F9F08A55FB89C661C517E18FFCD4CF3 /* FIRCLSRecordBase.m in Sources */, + 9BC0D67BD4D38C4DA73406E7E3B61A54 /* FIRCLSRecordHost.m in Sources */, + E4D7C5E29BF0B21F741392FDF5BD9615 /* FIRCLSRecordIdentity.m in Sources */, + 0E4F2F8E81779EB7E92527D8A48ACAAE /* FIRCLSReport.m in Sources */, + 8E73B3FEAAB27D443738E8A7E1F37E81 /* FIRCLSReportAdapter.m in Sources */, + 05E1F59E2BB7A27A16D0A159585E953D /* FIRCLSReportManager.m in Sources */, + D436A5EE1529A25F83A9CFE1B803E04D /* FIRCLSReportUploader.m in Sources */, + B33CE41C4988FB62274C9435DC7AC7C4 /* FIRCLSSerializeSymbolicatedFramesOperation.m in Sources */, + 3278DD4E8C945A15F7BD4A4D15A2DB70 /* FIRCLSSettings.m in Sources */, + E4D551EFA6582D7F0F98EE42615DB46C /* FIRCLSSettingsOnboardingManager.m in Sources */, + 4D1594E5EFD6E781FB4620B93DB5881D /* FIRCLSSignal.c in Sources */, + CC36D278983BC52DC73CCEB939A04CB9 /* FIRCLSSymbolicationOperation.m in Sources */, + D924EBBC6FC0EAA7CD07BCA4407045B4 /* FIRCLSSymbolResolver.m in Sources */, + 5669798FA515371E08A7DAF4BDC87760 /* FIRCLSThreadArrayOperation.m in Sources */, + E20F8D73A5558DB8A285D2348303FBB5 /* FIRCLSThreadState.c in Sources */, + 93B9DC0C3F92C778B215E563CC2BFEDD /* FIRCLSUnwind.c in Sources */, + 3068CA0DD0D8EC9304B89DCD5E2711FD /* FIRCLSUnwind_arm.c in Sources */, + 70BAF6CCBA1760F825DB9CAF1FFACE87 /* FIRCLSUnwind_x86.c in Sources */, + 38160C63D11A43E440FF35A7E4DF1233 /* FIRCLSURLBuilder.m in Sources */, + 20B9950C8682BAC51156EA4C7B830D77 /* FIRCLSURLSession.m in Sources */, + B25B6061C19470C58F3C94B4AA16A79E /* FIRCLSURLSessionConfiguration.m in Sources */, + 21D5FFFD0D7BF76BB7A8811DCAF73A7B /* FIRCLSURLSessionDataTask.m in Sources */, + D4DFA298781F60CC6ACB3953617F78C7 /* FIRCLSURLSessionDownloadTask.m in Sources */, + FA84A09F9FCCD5CC3B296E3569081596 /* FIRCLSURLSessionTask.m in Sources */, + 9D5946C6E9DFE4704357CB5F9284E4DE /* FIRCLSURLSessionUploadTask.m in Sources */, + DCB4C62D443119ED8477FC9E8B8D97FC /* FIRCLSUserDefaults.m in Sources */, + DB24AFA9CF5BE1A91B8F5ECE5C2E31C2 /* FIRCLSUserLogging.m in Sources */, + FD54F13C5360061F3D62D4CFF0190D4E /* FIRCLSUtility.m in Sources */, + F7A8CFC115E01C98F9E257A450DB654C /* FIRCLSUUID.m in Sources */, + DADF7CC02FCF98E38F97F37C36E88327 /* FIRCrashlytics.m in Sources */, + 84DF6CCEF557C0A6293198D98F755141 /* FirebaseCrashlytics-dummy.m in Sources */, + 39BAE3ED446B4441CFDD20EF58C47848 /* FIRExceptionModel.m in Sources */, + 21928F97CB8DD68D56445C0FE0A4C01B /* FIRStackFrame.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 0894B033947CB6AF5339C5E1D60BEC64 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -28754,13 +29636,89 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 11E0616F34797320731061A9FFEC4C56 /* Sources */ = { + 0FD50EA1E347276D2ABE00A0568C0CAF /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 8705E479C0F70C65AE414EA6F8FEF6B1 /* JSIExecutor.cpp in Sources */, - 7079923D9F4E8867CAE967C5A089137B /* JSINativeModules.cpp in Sources */, - 7ED84AB73DA9EA8E20459F68E109836E /* React-jsiexecutor-dummy.m in Sources */, + 5F18435162F79A70F22EADF7AECE81AD /* RCTSettingsManager.mm in Sources */, + 64528F0D2C0894F24DE6341F006E9940 /* RCTSettingsPlugins.mm in Sources */, + 499C74045DCD37C361CC7956644C6648 /* React-RCTSettings-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 119F6C97B7BCED275EA0A8CD8D1D6249 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + CCBFCD926376358EA3F8C9CE60AD0690 /* NSBezierPath+SDRoundedCorners.m in Sources */, + 89CEE170B3342EB702B3A9B2C1AD7861 /* NSButton+WebCache.m in Sources */, + 8EF11F21E7E5930C0D6029D97BA6ACD4 /* NSData+ImageContentType.m in Sources */, + 07AFE129202F2514C8261BD85F4F9870 /* NSImage+Compatibility.m in Sources */, + 11D675AEE1B6499C38A71F9837ADE553 /* SDAnimatedImage.m in Sources */, + 279A852563A70AD5D906A401684F2160 /* SDAnimatedImagePlayer.m in Sources */, + 3A79003B3C6161DBD186FB8AEE8336D9 /* SDAnimatedImageRep.m in Sources */, + 38F3A9FF95E7EC5B6862FD37BE263AAB /* SDAnimatedImageView+WebCache.m in Sources */, + 1E45AD76507CCAB53A38EEEE1D9C153A /* SDAnimatedImageView.m in Sources */, + 3C3A894C2424566C1BFE2F179BD639B6 /* SDAssociatedObject.m in Sources */, + B040F8366135289459EBCF6D0D6AD2E7 /* SDAsyncBlockOperation.m in Sources */, + 8167843771E3B47476358AFD9885E554 /* SDDeviceHelper.m in Sources */, + 9EBD5A167465C22DF34E58C565104D32 /* SDDiskCache.m in Sources */, + AE2B61A3969F93747B7A340C844157AE /* SDDisplayLink.m in Sources */, + F4A418B2450656A9D2987B969129CF86 /* SDFileAttributeHelper.m in Sources */, + 9E48A1068E67EEC3A9632F1BAA053634 /* SDGraphicsImageRenderer.m in Sources */, + 2EC50908C0DF2E0175B0838A6C05871F /* SDImageAPNGCoder.m in Sources */, + 28098F9A22E786BB01EE05A3138AADE9 /* SDImageAssetManager.m in Sources */, + BE1EC289878D8BA4F3AC01EC2E153E53 /* SDImageCache.m in Sources */, + EE3C85BC78098BB8342507D78A02E897 /* SDImageCacheConfig.m in Sources */, + 11FBC5BAA3BD1ED52108D9962D3AACD9 /* SDImageCacheDefine.m in Sources */, + 4A54C761EC622CBC62B5E12C272849A0 /* SDImageCachesManager.m in Sources */, + 0F7CC1A3FD78376CE863CBFC09ED9F28 /* SDImageCachesManagerOperation.m in Sources */, + 040C2CC1E0708C8B9BA00967505E4020 /* SDImageCoder.m in Sources */, + BD31373787DBDBEBB6B55B5DB5B9FA1B /* SDImageCoderHelper.m in Sources */, + 4619A961B733255DDD743C68A831E543 /* SDImageCodersManager.m in Sources */, + 4A83FF8540FC1E5AC6F8B3D3AB4BFCE1 /* SDImageFrame.m in Sources */, + 02A6D160F23F2906666849BB8CE6C735 /* SDImageGIFCoder.m in Sources */, + 6C0797F3576DA1417BDC75D89B6BCEFD /* SDImageGraphics.m in Sources */, + 76107C17DBE52BD14D380C97394F867A /* SDImageHEICCoder.m in Sources */, + F2DE71C4957C076193C528C12CE4C299 /* SDImageIOAnimatedCoder.m in Sources */, + 5DA4CAD43BDF62B98AEFB3665BA2F268 /* SDImageIOCoder.m in Sources */, + 8A7548CF5CC84894C8EBD3F48A997860 /* SDImageLoader.m in Sources */, + FE048CEB029685ED3CACC21E42F5FEB6 /* SDImageLoadersManager.m in Sources */, + 77AFB32048D3F0BF36FA708D486F5AC2 /* SDImageTransformer.m in Sources */, + AD614F6A78B1F5CDB4EC03DFB6E8A148 /* SDInternalMacros.m in Sources */, + 17F234096E694DD37AE892CFCF12E038 /* SDMemoryCache.m in Sources */, + 0E147C9D63E0EC905C4E458392D377F2 /* SDWeakProxy.m in Sources */, + 9B9514F43EC1D5BEFC4033B1E6E204A6 /* SDWebImage-dummy.m in Sources */, + 813B0A04E9F0D15D00BC41403564F37E /* SDWebImageCacheKeyFilter.m in Sources */, + 976824E60D18ED9C1634C1DEC3770977 /* SDWebImageCacheSerializer.m in Sources */, + CCD630CAA821C053BC16E2FFCF600165 /* SDWebImageCompat.m in Sources */, + 694EC39CF5027061C2DBA2242F788C81 /* SDWebImageDefine.m in Sources */, + 2E88B98AACD8D9D2134933AB6CA36C8A /* SDWebImageDownloader.m in Sources */, + 07F9FC2A0F2CF7D7BF484E7E8C8626AA /* SDWebImageDownloaderConfig.m in Sources */, + 3167828D81549108E01BC503CA5EB814 /* SDWebImageDownloaderDecryptor.m in Sources */, + 5757B9E2D363214326CFF9EB235140B0 /* SDWebImageDownloaderOperation.m in Sources */, + 981C079E747231C729CA0D5E793AA6EC /* SDWebImageDownloaderRequestModifier.m in Sources */, + CFA9E0CDEB5E1E0ACBA68783BFCD46DC /* SDWebImageDownloaderResponseModifier.m in Sources */, + D95040C0CF3CAC10FF5AEA99C35E1E58 /* SDWebImageError.m in Sources */, + EF8EC827EA6C28C10C06AE297C7C4558 /* SDWebImageIndicator.m in Sources */, + AB05625C8EC4E6CA1BB7948F7D17E02C /* SDWebImageManager.m in Sources */, + 41DB830C3D2569D21C9BDA61E0277EFC /* SDWebImageOperation.m in Sources */, + 2D8EE7B807FBD6FDA457C1EAA7D36002 /* SDWebImageOptionsProcessor.m in Sources */, + FB11F5CB79F19A60348E516F49319F5C /* SDWebImagePrefetcher.m in Sources */, + 749D9ED1D5046AA077A8117DCE9060A3 /* SDWebImageTransition.m in Sources */, + B63DE8331AD5905142273EE181380953 /* UIButton+WebCache.m in Sources */, + 35DF1072ADB110CFF3A06D61D16DE76C /* UIColor+SDHexString.m in Sources */, + E52247D7B717F25E749A7C0F6098820D /* UIImage+ExtendedCacheData.m in Sources */, + 20500299F95F8C983CB80993D67BB4CF /* UIImage+ForceDecode.m in Sources */, + AFC5D6776D35A4051489751846E0DCBF /* UIImage+GIF.m in Sources */, + 4507F49E7950BB9955DBAD3428A8AD42 /* UIImage+MemoryCacheCost.m in Sources */, + 93615681DC11EDA378DE5A6DA28FF2C6 /* UIImage+Metadata.m in Sources */, + 07F56F01327AA18E32704E5E53BB55C2 /* UIImage+MultiFormat.m in Sources */, + 8FD0D61258D48BD6FBAD941A36B02F05 /* UIImage+Transform.m in Sources */, + B642186F4E6D94051FBB0F12F04B2A39 /* UIImageView+HighlightedWebCache.m in Sources */, + D3C9B0E55EDFD3B00CDE51CF4FEC5843 /* UIImageView+WebCache.m in Sources */, + 8927E0F08B36EF9815D7A476CE9E753F /* UIView+WebCache.m in Sources */, + 96651362E3E2662033FFC90FF27D3907 /* UIView+WebCacheOperation.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -28787,19 +29745,21 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 15D8989A8DB58A283793EF1F4668CB01 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 90B72549F0CE756A6EF4649666C7BC22 /* InspectorInterfaces.cpp in Sources */, - DB33AD22673372B02DDC3AC3545D1B66 /* React-jsinspector-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 16ED42DE09CDA0417100A9BE8A2EF395 /* Sources */ = { + 14B03CEF51D9346A3693784B0048D10A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + 667682D83524A8EF4189EF4D71A4980B /* RCTConvert+FIRApp.m in Sources */, + 6B5A31480789AC447C5D5AB82535FC71 /* RCTConvert+FIROptions.m in Sources */, + C694C902CB6B08D83BF780CD3242470A /* RNFBApp-dummy.m in Sources */, + D8DF1DD9A5F06AEFC5CE19ABD243C9AF /* RNFBAppModule.m in Sources */, + F8531266741C25FBB15DC1B26005C9BA /* RNFBJSON.m in Sources */, + C7A4F66306C901380D5E82734D65BFCC /* RNFBMeta.m in Sources */, + 90044CACDD6007A10615C083AB31992C /* RNFBPreferences.m in Sources */, + ACE3F48B3A5120CDE5F4C8DDD67A6F41 /* RNFBRCTEventEmitter.m in Sources */, + 33DC591EFDAA7BD1D9D6B57E95171696 /* RNFBSharedUtils.m in Sources */, + 320B341D246BF6670B88F45ED45F35C8 /* RNFBUtilsModule.m in Sources */, + 6F16CB6B1386F1F35A15E6D88064CF44 /* RNFBVersion.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -28813,19 +29773,281 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 17B853CD1F965037D02366EEF4D9E34B /* Sources */ = { + 174E1BF540D3AB822C2632DC54CE8780 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - AA6F899522BFDE950EA57580E4E051A9 /* bignum-dtoa.cc in Sources */, - A8A6EB4D4A99E980FF1CA0E9A4CECC5C /* bignum.cc in Sources */, - 031CED41E155F6368D950FC90813B919 /* cached-powers.cc in Sources */, - B94BD9E370A5E29B80E4C0B95FAD5042 /* diy-fp.cc in Sources */, - 65B26085E631DE5FFBCD13CF99890000 /* double-conversion.cc in Sources */, - 363D2E7D5F715C3FDD8325EB7DDF5371 /* DoubleConversion-dummy.m in Sources */, - ADC4EE2B042F113F15E71AD58956FBE2 /* fast-dtoa.cc in Sources */, - EAADA7F1540429683EAC1A0FB2B54179 /* fixed-dtoa.cc in Sources */, - 92F05E33FFE965E97E2B8972B84C0ED4 /* strtod.cc in Sources */, + E286B125FB87DD987B73E01676C9DF73 /* alpha_dec.c in Sources */, + 9B9A827789220660BD62DB1C2D0702C4 /* alpha_enc.c in Sources */, + 6EB17A2C35F93B589374CC71B641941A /* alpha_processing.c in Sources */, + 6A6BC7C740587DDFC30448AFC965AD5D /* alpha_processing_mips_dsp_r2.c in Sources */, + 30863A08BF81155B3C301BA2C93883AC /* alpha_processing_neon.c in Sources */, + 006424C155BE0EC47CE00FA3AECED4BF /* alpha_processing_sse2.c in Sources */, + CEDC5C22EEC8745138C80BC61242BDC3 /* alpha_processing_sse41.c in Sources */, + 028D89356A953848F9B55822B92BA1F8 /* analysis_enc.c in Sources */, + 829E92AEC5D3847D88CF8C71C82874B4 /* anim_decode.c in Sources */, + B6C272BCCC4F51420570C8209ADEA2D1 /* anim_encode.c in Sources */, + C7E766F4F82FADDE4BCDE8E6DF6ADB6D /* backward_references_cost_enc.c in Sources */, + 6016B9B2BAC17596F20366A9BDCCBF14 /* backward_references_enc.c in Sources */, + 963C344D6CDE8CC99B00F13A7ABCEAB0 /* bit_reader_utils.c in Sources */, + AAB5C5B03C4B35890CA385F194E30F0D /* bit_writer_utils.c in Sources */, + 46258E4E4DB9DACC7E53B7947578268E /* buffer_dec.c in Sources */, + CA151941369D6E7C1501824B9461475D /* color_cache_utils.c in Sources */, + B1917338B3C536A39D7472DF946BD906 /* config_enc.c in Sources */, + E51EA6F839FA559C21E7EB6626BF236B /* cost.c in Sources */, + 3EA5765463A3C9866CA7D04931BF88DB /* cost_enc.c in Sources */, + DB40E542043D4AC2BFCDC4174D8AE521 /* cost_mips32.c in Sources */, + 7F2C6B04937DE29D98E39DF427E81959 /* cost_mips_dsp_r2.c in Sources */, + 05DDD47A2C554C681F329F08C81CC89E /* cost_neon.c in Sources */, + BD7457227DA7BF85700073928C5DAC6B /* cost_sse2.c in Sources */, + 9D0157C2516C902B0C5668F1D7ECE8B4 /* cpu.c in Sources */, + FED7CB0111233FDDE983BD43A60EAFF1 /* dec.c in Sources */, + 7F545E647D39C256AD2575EC05D96D09 /* dec_clip_tables.c in Sources */, + 4F904BA5741A0BA71D31FEC303F92216 /* dec_mips32.c in Sources */, + A168A5FBE5A246193CE358644F7987B5 /* dec_mips_dsp_r2.c in Sources */, + A1C723DD6E878F903B55C583CA39F0C4 /* dec_msa.c in Sources */, + 095F489B200D86C5BFB9B9ECD73E6B07 /* dec_neon.c in Sources */, + CB508CC193CBEAD7FE7C1FEDF3911E98 /* dec_sse2.c in Sources */, + 9163C28767CEFDD971EF06E1A97CD6A8 /* dec_sse41.c in Sources */, + 21FD0E8961C0BC063CDA41227DE1731A /* demux.c in Sources */, + C95C73195D66781C2965906E821593AF /* enc.c in Sources */, + 7AC267FD6E65A190C5750F40D88B6FD9 /* enc_mips32.c in Sources */, + 84EA0952DF11169AA9927BCA0AD50CAB /* enc_mips_dsp_r2.c in Sources */, + 94770C3B5FCE6EA75207AB1A811C6604 /* enc_msa.c in Sources */, + 6158E244F532062055A91802715E341C /* enc_neon.c in Sources */, + AA1EAFD3C6E9238FEF569EBABC26F334 /* enc_sse2.c in Sources */, + CDA331C833BF7FDEFDED3067EA1790EF /* enc_sse41.c in Sources */, + 949928E6C313A91D09BB1AABDF665E67 /* filter_enc.c in Sources */, + 72AECF8F7F70957CF01216736807D921 /* filters.c in Sources */, + 6F198B6796FC75BF8EB121B170497165 /* filters_mips_dsp_r2.c in Sources */, + 14768B0E04F9D20B36A81C8053DE7593 /* filters_msa.c in Sources */, + 618A90B3C7E52FC0DD62F1283AC35A9E /* filters_neon.c in Sources */, + 18FEE97804D02EBF8548F403287A8E13 /* filters_sse2.c in Sources */, + 382EFB561844FBD4A301E24BB7552F19 /* filters_utils.c in Sources */, + 35F500EAF587605B1E45BA1D934062F4 /* frame_dec.c in Sources */, + 610100047A3B2943C1E775BD951913A4 /* frame_enc.c in Sources */, + F78BDCE200CF17AE1A5CFD0DA4EE3649 /* histogram_enc.c in Sources */, + 3DD324A83D2A3296E4A68434DFD24495 /* huffman_encode_utils.c in Sources */, + AE264A0FE866E63BFC8F65FAA747BBAF /* huffman_utils.c in Sources */, + 673D16F24EC51395DA2AF82A3B2AA8A4 /* idec_dec.c in Sources */, + EEECF7D9260ADCFC3B9947694DE24B59 /* io_dec.c in Sources */, + 5AAE28F93F533CF23C21399546C6AF83 /* iterator_enc.c in Sources */, + FBBBB3541F7462AF3C858EFA9BC186D9 /* libwebp-dummy.m in Sources */, + 0EC8C2ED9AE8572B3AF3E760EB1853F3 /* lossless.c in Sources */, + 0B5A737B18094E1088257B7A1BDA859D /* lossless_enc.c in Sources */, + A700FD1BA7E3BDF2459BCAA513D69E42 /* lossless_enc_mips32.c in Sources */, + DD4F379A9919A17472C3446915D48F66 /* lossless_enc_mips_dsp_r2.c in Sources */, + 878C0A25C824EF3B277CC512A0220D8A /* lossless_enc_msa.c in Sources */, + 7B5E02FC04FA92D42BE4FB2F809E4FC5 /* lossless_enc_neon.c in Sources */, + 1B0A3A52DDBB21A37E4DB0E7E6665289 /* lossless_enc_sse2.c in Sources */, + 81DF7074ADBE7B72728CF21BAD425B47 /* lossless_enc_sse41.c in Sources */, + C0D6679739C9A0F93BCA9B8766246421 /* lossless_mips_dsp_r2.c in Sources */, + CC61627241CDCD59428B70C9024D03E2 /* lossless_msa.c in Sources */, + 2521F9856149979A42BD40EC1A36DC2E /* lossless_neon.c in Sources */, + 8578DDFE959A8B9E849C90273A27334C /* lossless_sse2.c in Sources */, + 0E42668C70E847678AFFBE1C8C9D2860 /* muxedit.c in Sources */, + D78258F296A9A39EBBDAD892C9BEFE1E /* muxinternal.c in Sources */, + 74283D7AF59E59C2A67C57FD1270C185 /* muxread.c in Sources */, + DF6155000965C82531C7D91B846B7BA7 /* near_lossless_enc.c in Sources */, + C82C3F004F3331A254FE01488C0CB011 /* picture_csp_enc.c in Sources */, + 22F714CC10EAB443B6ABDAC10220B7DB /* picture_enc.c in Sources */, + 70525EE2AE0A8EAB9E09D6E5EEC75709 /* picture_psnr_enc.c in Sources */, + 3FCA43963CFBB1D7B26C2ED0E70CF540 /* picture_rescale_enc.c in Sources */, + 7EE009D01AF9BF64E81BE23BEE6F844B /* picture_tools_enc.c in Sources */, + CB21F25297C33C46791DC1D290564FCF /* predictor_enc.c in Sources */, + 99D81E8323CC7858CFB0611AA7A21D02 /* quant_dec.c in Sources */, + 8F7A04661F3A22BE0E2663332D2A6A8D /* quant_enc.c in Sources */, + DCE446F21BA7F3772780ACCD62C28739 /* quant_levels_dec_utils.c in Sources */, + 0BFABFC5DFB416EBB3B2D399F54F6D73 /* quant_levels_utils.c in Sources */, + 2D10CBDE9447CF713F4462E36482F0D8 /* random_utils.c in Sources */, + DA91A5760E369728340BAE8F57D0A9A8 /* rescaler.c in Sources */, + BC8F5A06EB0ED683D5CA55D7E6D84C44 /* rescaler_mips32.c in Sources */, + CBE16D2BBDA9C7A285BD7EB7F33EC804 /* rescaler_mips_dsp_r2.c in Sources */, + 9719CB28665F8595C191B9535932CC5E /* rescaler_msa.c in Sources */, + FBBDEC2BDA59B862344D0590603D6153 /* rescaler_neon.c in Sources */, + 6462F738AC590747E44531D71D470C07 /* rescaler_sse2.c in Sources */, + BD19592FD2EE47C1DF3DBB4264F6BD9B /* rescaler_utils.c in Sources */, + 869311CB33FA7DDC918D26F9477BD90C /* ssim.c in Sources */, + 23ED68709D70B2CEEA2C60ED444BDE7C /* ssim_sse2.c in Sources */, + 953F85698B627AE09C3DD80D5CDDBC0E /* syntax_enc.c in Sources */, + 5A81F2512F2E55549E9044D9D8DF322F /* thread_utils.c in Sources */, + 0F9130F61FA3B645FE44EFAD1A479346 /* token_enc.c in Sources */, + 755886C6600CA19D2131AC31F915C1F8 /* tree_dec.c in Sources */, + 2BA96075480427D00E22DD8824A6F6B0 /* tree_enc.c in Sources */, + 35CDAB6F50715003C03DC9B2DA983D22 /* upsampling.c in Sources */, + 2834EA176ACD637355B57D95609C2F08 /* upsampling_mips_dsp_r2.c in Sources */, + 6F710F7118FC5A2ECFCE14AD2C1A3AB0 /* upsampling_msa.c in Sources */, + B6969C5DD8443C58885144AF099B195A /* upsampling_neon.c in Sources */, + D7A7DAC5E6DDFA5D837FF09AF577F7B9 /* upsampling_sse2.c in Sources */, + E7597C7ED2697CB348881A37BE1F38AC /* upsampling_sse41.c in Sources */, + A3FBFA622F9CB74AEEF3B54D50D134A7 /* utils.c in Sources */, + 6F77535C9D8949A90B14C03B87365550 /* vp8_dec.c in Sources */, + 26DBB145EBAD40456F69AF3485472A66 /* vp8l_dec.c in Sources */, + AF248CBAA17691DB46F5335818C47F44 /* vp8l_enc.c in Sources */, + 955E1266974E8A5514883D7147B2915A /* webp_dec.c in Sources */, + 4C0FB38752F52422B68F00B61096DA81 /* webp_enc.c in Sources */, + 21171CB95AC7DD57CE2BC6091A8C9747 /* yuv.c in Sources */, + A395D179AB5A02E082760F7058AB581B /* yuv_mips32.c in Sources */, + D6CDDF35F148CC13038E00192E23F228 /* yuv_mips_dsp_r2.c in Sources */, + 4F426F9B6B60D20CB43D55A9B2C7CA41 /* yuv_neon.c in Sources */, + 373A62DDF62516AF417A05F1F09DC021 /* yuv_sse2.c in Sources */, + 229A5016DE40AB05A69EE93DE3FD7CD3 /* yuv_sse41.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 1862E471DF1A28889EF436357FE52D23 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 909575A23DA3834C241BB2951C78C9B9 /* Assume.cpp in Sources */, + A2E682F4C51FB0D40F11E29E16B98DAA /* AsymmetricMemoryBarrier.cpp in Sources */, + 0E67453BFB0635F64536D04BEB572DAC /* AsyncPipe.cpp in Sources */, + 4E49985A76A0E9C42B0A7FCAA6FB6963 /* AsyncServerSocket.cpp in Sources */, + 0E20698DEA1CA8991DE22CAB3880CC54 /* AsyncSignalHandler.cpp in Sources */, + CB664A38E158F561D73C35981A9D3413 /* AsyncSocket.cpp in Sources */, + 546CDA51CECAAD8E40A35673B6AF16EC /* AsyncSocketException.cpp in Sources */, + 3C96271835A0B32B50C211AC15AB4203 /* AsyncSSLSocket.cpp in Sources */, + 1CCF39EBFA3B0F687CB1FBD4825BCD3B /* AsyncTimeout.cpp in Sources */, + EBEA8CA3A1E924E17947C277172F2B33 /* AsyncTrace.cpp in Sources */, + 51214DB5A30202B500A2B7D03E56E343 /* AsyncUDPSocket.cpp in Sources */, + 2FF87901C9FB5CF83D1E7452BE807E64 /* AtFork.cpp in Sources */, + 0C2E7DC258AE40F7DCFD9BF97E0CE7BD /* AtomicNotification.cpp in Sources */, + A7EFAF3E7361E6F92B0B20F6F3506DB8 /* Barrier.cpp in Sources */, + B2D3DE2F11BBCE706EB59DB6070B2B58 /* Benchmark.cpp in Sources */, + 9F36780B8C742E37C036EE4F8A2B5370 /* Builtins.cpp in Sources */, + E7C452B9BC1F38B436C532BFDE929F52 /* CacheLocality.cpp in Sources */, + FD8A5A31FCD9651F2760850EA6316217 /* CancellationToken.cpp in Sources */, + 42B7254FC96318A55B9ED899ADCE7753 /* Checksum.cpp in Sources */, + 19EC8AE3BE8DF10A03B36ED6A32716E6 /* ClockGettimeWrappers.cpp in Sources */, + 970F38B31FF7C1E2F02ADE0593EA6557 /* Codel.cpp in Sources */, + 64F562359BABBDFA268CDA6D272F0AE9 /* Conv.cpp in Sources */, + B059169033D13B19976DC2F48C6C3D55 /* CPUThreadPoolExecutor.cpp in Sources */, + DE2671A20D07FD176748B24C52A40828 /* CString.cpp in Sources */, + 6B5E337646B5C75DFA036C6BF3E7802C /* Cursor.cpp in Sources */, + 13E1A2D5F0A75E3420CD568358A24BC5 /* Demangle.cpp in Sources */, + 28A194AC1159FD8D578C2EB3AFBCDA00 /* Demangle.cpp in Sources */, + 0E15DB2C9F2CE2F0E86FC42C7668D03E /* Dirent.cpp in Sources */, + 0D6873742750ADEF4D505AE59C78F02E /* DistributedMutex.cpp in Sources */, + F8AF944A4ED054C3018E552E279D5065 /* dynamic.cpp in Sources */, + 7FA84C7CD5E366109C6B77E2A129C827 /* EDFThreadPoolExecutor.cpp in Sources */, + 3C488B3D05385A680DB1E77F826DEBD7 /* EventBase.cpp in Sources */, + B45A660C46CF428C44680BE932076DC0 /* EventBaseBackendBase.cpp in Sources */, + 6D22D1AD550585E38EE88565B9B3BF11 /* EventBaseLocal.cpp in Sources */, + 6B44DC3251C1E6AB1A5A258E5D9518BA /* EventBaseManager.cpp in Sources */, + 79DD0BAADE65E8C839FF8CEA48FD77AB /* EventBaseThread.cpp in Sources */, + FD57B92590D98B6BEAE8C764B166793B /* EventHandler.cpp in Sources */, + 2EFB459B385D80E031BF573FF6A128C3 /* ExceptionWrapper.cpp in Sources */, + DCC4E9743FB4D744B3F776C28E2CA9BC /* Executor.cpp in Sources */, + F4B02419BA3DFF8783C2541D0104A8CF /* ExecutorWithPriority.cpp in Sources */, + B6118CFF7DE16573F36615E1EE3D51FA /* F14Table.cpp in Sources */, + 2A88D2578399C204312EB28F3D5FB7C2 /* Fcntl.cpp in Sources */, + 8A352045E1BAAC27B90EF7BE3CB24C1B /* File.cpp in Sources */, + 6FCAE02A315A815A3FE09DEB876CC22A /* FileUtil.cpp in Sources */, + C7A8454E5AF2F4AE893EDD450EC30FF0 /* Fingerprint.cpp in Sources */, + 283D05532A3E76E3D39078DF6620984E /* Flipper-Folly-dummy.m in Sources */, + 06D5DBF1E9E955ED20FB07B829C42A34 /* Format.cpp in Sources */, + 3C23CE96F170FF3CAEB7DFB8F6FEE7CA /* Futex.cpp in Sources */, + 12DC73C66B5673AC2354F73B39215E13 /* Future.cpp in Sources */, + B75618877550F3FC1A675F1A92F09E8D /* GlobalExecutor.cpp in Sources */, + 5862194834EAEBC5983B2B6DE7F7D8BC /* GlobalShutdownSocketSet.cpp in Sources */, + 758815415A1F6F013FCEBA1E8506A336 /* GlobalThreadPoolList.cpp in Sources */, + 26FC4635EE2D1635ED3F5F0CDDAD50C9 /* GroupVarint.cpp in Sources */, + 5C58024B37BFE04C0F8CA568438113E8 /* HardwareConcurrency.cpp in Sources */, + 1392EFE34F5351584A0BFC54B6E9B122 /* Hazptr.cpp in Sources */, + 6B62D86C0B32288E0B4C91EDAC0E08BD /* HazptrThreadPoolExecutor.cpp in Sources */, + 6E3875895687D5E24DAEB1F699A93853 /* HHWheelTimer.cpp in Sources */, + A0D84F19DF6A2644B90B33F30528E60D /* Init.cpp in Sources */, + 3B8202F37017BCF36C9E1187A99CF2E6 /* InlineExecutor.cpp in Sources */, + 9A9583FD6786C84B93880BB30FF5C1AF /* IOBuf.cpp in Sources */, + 73F234DE8E462A14D565BD660373F0EB /* IOBufQueue.cpp in Sources */, + 56E7F7A5D57875476E4E42193B33772E /* IOThreadPoolExecutor.cpp in Sources */, + 37F728E6C65C0376778980D627EEEA0B /* IPAddress.cpp in Sources */, + 2BF37E22CAE988ED80A04EC372271304 /* IPAddress.cpp in Sources */, + D9E56CAFC3D3CA6E9278C409750D1D92 /* IPAddressV4.cpp in Sources */, + 4CBED6F5F7B278DF05D1712F2B57F771 /* IPAddressV6.cpp in Sources */, + B456AADA44B434304D44DB6CDED80B31 /* json.cpp in Sources */, + A3F02B5565BA3484B7A7776FD60043D7 /* json_patch.cpp in Sources */, + FB364DE81C0EDF06910F910E3ACA8AE5 /* json_pointer.cpp in Sources */, + 7B103045F2399439212CA76D5FC9F459 /* Libgen.cpp in Sources */, + 55C7553AC2432769683FCFA6743ECDD0 /* MacAddress.cpp in Sources */, + CDF8D44C2F9F90A60B89872332770571 /* MallctlHelper.cpp in Sources */, + AAA732D139B9BE837D80B39EC68181E3 /* Malloc.cpp in Sources */, + 2FB8C5E4C5631954EAD3757441F763C9 /* MallocImpl.cpp in Sources */, + CF3993166467D7999DCB674C42CDADBF /* ManualExecutor.cpp in Sources */, + B36E026BFA975B0E2972DC9E4FD2F913 /* ManualTimekeeper.cpp in Sources */, + BE82ACD42D28685F5C61C944DD7C167F /* MemoryIdler.cpp in Sources */, + 0D1704056A0737B8445048529611C1DA /* MemoryMapping.cpp in Sources */, + C01CF57D26F45814D82273CE3DBDC613 /* MicroLock.cpp in Sources */, + 37F3E3931EE30BFF95688AEE1C609630 /* NetOps.cpp in Sources */, + C48D2F9E3CEBF11D9A51339919A361F7 /* OpenSSL.cpp in Sources */, + 21C46952977D276ECC73AC5161C4249F /* OpenSSLCertUtils.cpp in Sources */, + ADC23879FB31CC882AE2F80096C8AD2A /* OpenSSLHash.cpp in Sources */, + 4028F4A2FA61F7F522E740ACA1631462 /* OpenSSLThreading.cpp in Sources */, + A954EEA377C1E08A74957C57229BF3D0 /* OpenSSLUtils.cpp in Sources */, + 8C72EEB1093407065DF28EFD78615266 /* ParkingLot.cpp in Sources */, + 9E5E374A990E869A862DB188F141597C /* PasswordInFile.cpp in Sources */, + CDBE4F53CF3FD78516D49F0BC0795396 /* PThread.cpp in Sources */, + DAC5C94AF7AB1BA34AF6931A68C5EEA4 /* QueuedImmediateExecutor.cpp in Sources */, + 0B3A750D51632C3862C135538908444C /* Random.cpp in Sources */, + CD99725614EF09BD6C2DE0E7B16332B9 /* RangeCommon.cpp in Sources */, + 854CAD54469506BFE668C1A805B1ECDE /* RangeSse42.cpp in Sources */, + 24F696A8C818E37AD166CEEBF8F06EF8 /* RecordIO.cpp in Sources */, + B294E1F5467A401A4FC3A346B25C5426 /* ReentrantAllocator.cpp in Sources */, + 8E4CD8279B03971C20A8662740220463 /* Request.cpp in Sources */, + B2D0A495E7EEBC80157C48FABCD74630 /* SafeAssert.cpp in Sources */, + 8C611C1AB3CC92E4D9AFCC6B2E3159DB /* SanitizeLeak.cpp in Sources */, + 8952518B702D1DCBAB0EB6FA822A7BBD /* SanitizeThread.cpp in Sources */, + 9228FBB2923CDAF3D6791B69E6835A65 /* Sched.cpp in Sources */, + CD3A30F730893D1F4841FD531134835A /* ScopedEventBaseThread.cpp in Sources */, + 3C28036859ED2DDAFAD9A8446165E5EB /* ScopeGuard.cpp in Sources */, + FDD08C701ED7B16D211FA23D3C53BAF8 /* Semaphore.cpp in Sources */, + D57C62ADF8D8109993292B4D8CF6839D /* SerialExecutor.cpp in Sources */, + 174E670016BD2714AE0B8268DF4E2814 /* SharedMutex.cpp in Sources */, + 1ABBF71F4DFE8FF9E8C6D409691E1FE1 /* Shell.cpp in Sources */, + 75FFA5D4DAF4B30AB4670DB7ABCEB7B2 /* ShutdownSocketSet.cpp in Sources */, + 65A6C5944DBF78D1CB3D02CB39F3B9A4 /* Singleton.cpp in Sources */, + F97495E352CF05902D9B5F5C6A10E2B7 /* SingletonStackTrace.cpp in Sources */, + ACB5C9060E7EFFB2CDC6585D543B1C5D /* SocketAddress.cpp in Sources */, + 9745509726C4E9561C274CF4B498643A /* SocketFastOpen.cpp in Sources */, + 7BD251B6597B6A64B8B3E0E06A70216E /* SocketOptionMap.cpp in Sources */, + 5D9ECFBF9393943065377394556F052B /* Sockets.cpp in Sources */, + C4EC8520030171572ACEBEDC3F411692 /* SpookyHashV1.cpp in Sources */, + ED9A4149E250CE19F6B6ADFF81DBE62F /* SpookyHashV2.cpp in Sources */, + A2E97D51F262F31E91DA87975BB2285B /* Sse.cpp in Sources */, + 61D13734DEF38BF8839408FEF25C758E /* SSLContext.cpp in Sources */, + FB5AF1D223AF92E6A9EC5CA178A5758A /* SSLErrors.cpp in Sources */, + 2D7787C5A1E5784F81E3DFADA0C2F91B /* SSLOptions.cpp in Sources */, + 3CFD6EF64399B69E630C48EBDC973198 /* SSLSessionImpl.cpp in Sources */, + 9107C33AC303B0FDBF48960A1C38A25D /* StaticSingletonManager.cpp in Sources */, + 586AF66AA034395EF22197C56E9C3041 /* Stdio.cpp in Sources */, + B524795FE267A021CBB88BCD94E9ED79 /* Stdlib.cpp in Sources */, + D84CC55B6501F56A726E04E5767D2901 /* String.cpp in Sources */, + 8F4D3FBC5A6E396605A910B085F498A4 /* String.cpp in Sources */, + 428CBF6659DFC01912B8FCD0FCA5F01C /* Subprocess.cpp in Sources */, + 5C0E80E34CD7B0260A5748BDAE50A077 /* SysFile.cpp in Sources */, + 296CD68624835C2269CB492288E28911 /* SysMembarrier.cpp in Sources */, + 7852ECB633DB5C7D5A1B5D95F81FA77B /* SysMman.cpp in Sources */, + 5314F052CBD1660721A471757A6960A2 /* SysResource.cpp in Sources */, + D5B239CA770C23F84A2E2CF134FC8BFF /* SysStat.cpp in Sources */, + 4F3BD3BE852B39C37BC0B057226C3AFD /* SysTime.cpp in Sources */, + A328868CCCC1DA31336386A7BE4ED320 /* SysUio.cpp in Sources */, + A79A31C80EE85DF62E6D0AEDED9919D9 /* ThreadCachedArena.cpp in Sources */, + 19600F12693B457DBCED7262CE692645 /* ThreadedExecutor.cpp in Sources */, + 0B5D6E4F52F253DB4C51AF1BC0C17C78 /* ThreadLocalDetail.cpp in Sources */, + C25EE53FE53FC768EB023382FA5B9F23 /* ThreadName.cpp in Sources */, + C2BA80FAE37E31948F0DF31B11EF0C61 /* ThreadPoolExecutor.cpp in Sources */, + A963EA2AB502E00FF947FDA166E2245B /* ThreadWheelTimekeeper.cpp in Sources */, + 00A7B48C3E8BA90F90E4F1F4E7389C7A /* Time.cpp in Sources */, + 6078026A3F3104A6A5182525FA596CE0 /* TimedDrivableExecutor.cpp in Sources */, + 2C152D0255D34823A94655288092C778 /* TimekeeperScheduledExecutor.cpp in Sources */, + B1FE94297DF545970CC7AF2A9176D4A1 /* TimeoutManager.cpp in Sources */, + A3728DFC1D081CD0D9AE67AB8083DFEC /* TimeoutQueue.cpp in Sources */, + A71A0589A9470E137E62B8499CE12F37 /* Unicode.cpp in Sources */, + A230A636EBAA3FC7C21F16C0CB813B2C /* UniqueInstance.cpp in Sources */, + 014BF8C7B22928C76013CA44AE2DCD41 /* Unistd.cpp in Sources */, + 579403A7E23A3D1B484B09EDFBABF685 /* Uri.cpp in Sources */, + A7EA91E9ED828D185AE4832A3C5C14BD /* VirtualEventBase.cpp in Sources */, + 0D75B9D576357B83D4357CB7250F21C2 /* WaitOptions.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -28857,54 +30079,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 208049B160B702B9C20D544985B8C84A /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - FD106E8B4EE6CAA3AC704DE7E7AB4134 /* UMAppDelegateWrapper.m in Sources */, - 9DE520CCB223332D4204438DE49F51C9 /* UMCore-dummy.m in Sources */, - 7FB772A2445883A7FDBEECAAF7B6092E /* UMErrorCodes.m in Sources */, - 38CAE38772E19A5724E4F15A32601B2A /* UMExportedModule.m in Sources */, - FE2F392744491ED39068B4D26A3140CB /* UMLogManager.m in Sources */, - 224A1953E3875F36646B8FB0D74B7CDB /* UMModuleRegistry.m in Sources */, - E9BB3460FF5066265AD48C8E6DEF80DA /* UMModuleRegistryProvider.m in Sources */, - 5F0D913D1B98E1FC9CD011A651053307 /* UMSingletonModule.m in Sources */, - AA9A0BC87A6CFC3676C9CBDFA96BB9E6 /* UMUtilities.m in Sources */, - E0280F71D9916D399E7EEAC0AED82CB5 /* UMViewManager.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 20CDCEE96672F19824ADE9F87DF66F24 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 7D87ADC12BFC6A713541E78E60C1DE60 /* buffer.c in Sources */, - 24C6A5AB0C5D41B6055A48FA088B257A /* bufferevent.c in Sources */, - EBBDC830262CC6A94FBD4DBAF311D871 /* bufferevent_filter.c in Sources */, - CC4EDAF839AE6AF02012B2BF32D67D1D /* bufferevent_pair.c in Sources */, - 42F71410E28092FB0EE0C47F44AC5277 /* bufferevent_ratelim.c in Sources */, - 3C617E2539553EF457C6158039E4710A /* bufferevent_sock.c in Sources */, - A53A380D07A4D8DE49FCCBCC063BBDCD /* evdns.c in Sources */, - 55BAC00887B7585BC94A31906FF35477 /* event.c in Sources */, - 9FC2D6DC818C2FB3B26CFA8A12A1BCF3 /* event_tagging.c in Sources */, - CDC1AF775E101B11CB53C8D353ECC4EB /* evmap.c in Sources */, - 3C05265C3D54545533D27ED509AE6198 /* evrpc.c in Sources */, - 674C32C125FA54A29A31FFE90CE1C08F /* evthread.c in Sources */, - 2F2CC6938C0B7A00BD85CD2A37D8A5A6 /* evutil.c in Sources */, - 954A46149565FDAF3203F0CA639E21CC /* evutil_rand.c in Sources */, - E278380EF8CEF766A5A20E0C27CB3DE8 /* evutil_time.c in Sources */, - 566C611302AD7F00BDF5718E3F40949F /* http.c in Sources */, - D4DA57B0F2DE4236A38709ACE2587563 /* kqueue.c in Sources */, - E24CC29D5F85C3BD523EDC2D9BE20006 /* libevent-dummy.m in Sources */, - 470683E77C5E1021107DD1A2D51C91DB /* listener.c in Sources */, - 3CA2FC7DBA7152E6D589D30F901C6763 /* log.c in Sources */, - 9BAA07BFC8AF7E01432B414A3B3BE28B /* poll.c in Sources */, - 99C5D1A2505C37F559A725DF9EBEE1EC /* select.c in Sources */, - 7BB43190E8130CE506658E17F57220B8 /* signal.c in Sources */, - E3239B9D7511E2FD8198BD173EED3C7C /* strlcpy.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 214C4C45537C4A7BCCB5D24C0C34245E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -28916,6 +30090,23 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 22AD6F821D6EF956B44DA31ADA09C64B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E51E9B99FFBC62320E3D6E7DDA2AB29B /* UMAppDelegateWrapper.m in Sources */, + 74460AAD747CE1FDC52AF07443FC5AE7 /* UMCore-dummy.m in Sources */, + 543FD4FAA346F4E1FC73BD3C0AC0F7CA /* UMErrorCodes.m in Sources */, + 8140514C7C64A055A01F738AF5FE076D /* UMExportedModule.m in Sources */, + 941365C5D1C3695EA97A505E64FF0BDC /* UMLogManager.m in Sources */, + 5F05F5021A2CEDD9E8394C7F1EC08142 /* UMModuleRegistry.m in Sources */, + E4005B3330ADF61EE793B59F23C2C6F2 /* UMModuleRegistryProvider.m in Sources */, + CEA334A548F00533CA7D6C97630A1361 /* UMSingletonModule.m in Sources */, + 7FC128EEA44FBE52AFF124900D4154CF /* UMUtilities.m in Sources */, + 9C9DB4ADD6FC782042C672782FC7F9D4 /* UMViewManager.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 23714B87EF4E358934144DF1ADFD019B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -28934,38 +30125,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 26F4382AF73CC615CE82074F574752F1 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3159DB4BED1A73C226D1CE2D3B2ACA32 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - CECF9B007DE9090D1E1A46E169820DE1 /* TOActivityCroppedImageProvider.m in Sources */, - B0F364EF3F557656C5A3AB1B1BE49171 /* TOCropOverlayView.m in Sources */, - 6942AFA01BD8A3007C04C3AE0771B54B /* TOCroppedImageAttributes.m in Sources */, - 8CF2F757F0A1C6A27E0F36579A466610 /* TOCropScrollView.m in Sources */, - 85AA2BA8184B6058D271D4EF78F9A77F /* TOCropToolbar.m in Sources */, - 321E75F3E1BAA38BC4543A98D81358E6 /* TOCropView.m in Sources */, - 589DAB7B8C5F8E56A37E17F0B8B6033F /* TOCropViewController-dummy.m in Sources */, - E2E48AEC67BF098BED6273BF509A95FF /* TOCropViewController.m in Sources */, - 47F0B3110F5A6417EF26F4AB80E0E7DF /* TOCropViewControllerTransitioning.m in Sources */, - DC41E7B6211AA15B2E8AB03B6C8BC00B /* UIImage+CropRotate.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 32D839B0EE02CDAB87BDF6A982BD5803 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4D4BD957CD7F1CA4AE3C82636B555645 /* Pods-ShareRocketChatRN-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 354A9311001ED108958088EA7FF587E2 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -28989,6 +30148,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 3BFA16AE1B7566BA6AB59F625FE6A36B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BD8C01AEC83FACC176791E1F09374054 /* Pods-defaults-NotificationService-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 3E0DEF9FC3A26DB1726EB23389D8FB65 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -28999,6 +30166,41 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 3EC4407101D2CE414935D852F85AA221 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + C3662E2AE7983EC94BDF96703E99BC9F /* NSTextStorage+FontScaling.m in Sources */, + A3B5C8FA91E861C82F13D5F1B46D4BE3 /* RCTBackedTextInputDelegateAdapter.m in Sources */, + 6F167C246E753AD7AECF421830191574 /* RCTBaseTextInputShadowView.m in Sources */, + 3D8BB01FBCC4609E0DFCEA30883AA71F /* RCTBaseTextInputView.m in Sources */, + 68D5D6DE29118FE09F709E43DAC3E138 /* RCTBaseTextInputViewManager.m in Sources */, + 4793A678C35D5580DBB3D441A00985E0 /* RCTBaseTextShadowView.m in Sources */, + F542426BD34A99AA4D65072269298C3F /* RCTBaseTextViewManager.m in Sources */, + B42B61CA53608ED500BF6F4844DFF698 /* RCTConvert+Text.m in Sources */, + 77FB0A04BCF38560BCF66548826A35A0 /* RCTInputAccessoryShadowView.m in Sources */, + F58A750DFFCE00A7F8C473C4394C935A /* RCTInputAccessoryView.m in Sources */, + 58CE638F9A39594D5B03261D56EF3679 /* RCTInputAccessoryViewContent.m in Sources */, + BEC08D7CAEEBEA53D39B959B139BADB8 /* RCTInputAccessoryViewManager.m in Sources */, + 8C6DB584B29654F57187DA7D2307DC7F /* RCTMultilineTextInputView.m in Sources */, + 6355F5DDE186A325C9963BBEEE4AD1F3 /* RCTMultilineTextInputViewManager.m in Sources */, + 2D980EA7799AB6230B2E6EBA169EB09A /* RCTRawTextShadowView.m in Sources */, + 65E9FF4CA5F9EED15A6209842F87864F /* RCTRawTextViewManager.m in Sources */, + 72252121A1DE75FC3545164356F2EF7E /* RCTSinglelineTextInputView.m in Sources */, + 3118025E4549BE00C617F4F6ABA09DEB /* RCTSinglelineTextInputViewManager.m in Sources */, + C6FECF61DE6E81971764C4B0ECA900D5 /* RCTTextAttributes.m in Sources */, + 965AE4D5DF4F8752CE18FB9D7A9EC758 /* RCTTextSelection.m in Sources */, + 9D195665137A6FD3B32E5032C6AA28F4 /* RCTTextShadowView.m in Sources */, + 44D6110F384D2495E7F4134D0323B894 /* RCTTextView.m in Sources */, + 3D4EF1FC24ECF3F028C557D2021E8172 /* RCTTextViewManager.m in Sources */, + 3005B9C27D2B3D431E6F151C2ED6D8F7 /* RCTUITextField.m in Sources */, + 6BAFB26E5D55CD25EFC7642EDF1928A1 /* RCTUITextView.m in Sources */, + 414499A93680D2FAF99296FF7CA077C7 /* RCTVirtualTextShadowView.m in Sources */, + 93740B1B6CE3C60E0001A5B562F5E602 /* RCTVirtualTextViewManager.m in Sources */, + 79C100BDA09644B75240324EC18ECF02 /* React-RCTText-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 3F60380169397A413BAE8DFCDC551BE3 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -29034,25 +30236,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 40C02EF5E2C495C919A34833127D829E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - A6321E685DA34D34296031068EC1A1C5 /* CxxNativeModule.cpp in Sources */, - 77CE6AEC9E65B50830AF7D27AEA87810 /* Instance.cpp in Sources */, - 8C76BE1FF23265DB87D319D3EF570A5A /* JSBigString.cpp in Sources */, - C09482001515A5198E9D89B64396BF1F /* JSBundleType.cpp in Sources */, - 4380C5A5FEB9ADA73E31B9B68BF35E28 /* JSExecutor.cpp in Sources */, - 5B1594260D4D2CF170638245549BF444 /* JSIndexedRAMBundle.cpp in Sources */, - 864F4F1FF8C36D5EB725FDCAD3DB1777 /* MethodCall.cpp in Sources */, - E61A6566E957C7A870CEA56B3B403446 /* ModuleRegistry.cpp in Sources */, - 28E2370C25AA7DE72105BE669C72CA60 /* NativeToJsBridge.cpp in Sources */, - 61C70BFC0670410898AFA40A5141F7E4 /* RAMBundleRegistry.cpp in Sources */, - 24D80F0B1345727771ACFAAD9730E0AF /* React-cxxreact-dummy.m in Sources */, - 1FD458B29A66B080EE5034B9A73EC850 /* ReactMarker.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 40DC3EDAD369A482BB48B1163145E554 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -29067,100 +30250,17 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 433F1EB3438235C0E8342D2BF10F98B5 /* Sources */ = { + 43A119EF14E22939F23C607A1640763F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - E6252CA803E06BA5B648E4AFBD94F7A4 /* BaselinesAsyncSocket.cpp in Sources */, - 0A6EAF5A2D903AFE5E24E54C1F675D56 /* BaselinesTcp.cpp in Sources */, - 06AB0279D15839BE8B9B98CC40BF8444 /* Benchmarks.cpp in Sources */, - 40F57760E6F24BA9F94823CBC597AF86 /* ChannelRequester.cpp in Sources */, - 33B8D32088C658F82BB48171E1D877C1 /* ChannelResponder.cpp in Sources */, - E59759EAF192CD7CB1A2BDAA3E6060BC /* ColdResumeHandler.cpp in Sources */, - C70964CDC023CACDC91D3E5ED472BE24 /* Common.cpp in Sources */, - 6764DAC07D242CA0189257175BC53570 /* ConnectionSet.cpp in Sources */, - 461CB2BC5CCFDABB21DB065C259C8B65 /* ConsumerBase.cpp in Sources */, - 83AE5F2D83383E82F4A6BFDF82EE51F4 /* ErrorCode.cpp in Sources */, - D47BDC467C8A4711F0F267FCE4B39338 /* FireAndForgetResponder.cpp in Sources */, - 31CED738383A9976CE5C8C5D853E2365 /* FireForgetThroughputTcp.cpp in Sources */, - D2C1D2EDB1CCF7AA9217E2DBEED0EAD0 /* Fixture.cpp in Sources */, - EB9B9C247D3DE9BD355A9B43EE76DE27 /* Flipper-RSocket-dummy.m in Sources */, - DD7237B98108490885E4BAF5E8AF6EB4 /* Flowables.cpp in Sources */, - 574959DEF7B547B0332B1963FF6C2C38 /* Frame.cpp in Sources */, - 581F7785B0AB703B54F377FFB0B702D1 /* FramedDuplexConnection.cpp in Sources */, - 6F893431A861E609DCAC50AA3F47B8A6 /* FramedReader.cpp in Sources */, - 53E1D767755D5399682FFE2E2E352A68 /* FrameFlags.cpp in Sources */, - ECF4130BF930908C2B2BEA31D7911C77 /* FrameHeader.cpp in Sources */, - 6D2E7F2751ED37508CF9C22663588C8D /* Framer.cpp in Sources */, - FA453026E75C53BDB51D10BAC3000B89 /* FrameSerializer.cpp in Sources */, - D2F8EBBAA3709B5E428A78A91D56D425 /* FrameSerializer_v1_0.cpp in Sources */, - 3229540C0A7865FD25CBD70402DA0C35 /* FrameTransportImpl.cpp in Sources */, - DB99EB0A32181DCD61F85DBAB6B42247 /* FrameType.cpp in Sources */, - 3B8C0F8CD9C4C6E1042F602594FCB5F8 /* KeepaliveTimer.cpp in Sources */, - 1490D5EBA637274976D8792419FEBD10 /* Observables.cpp in Sources */, - 723F30C4D481DD8144C891A58A87293D /* Payload.cpp in Sources */, - BF32CBCC76B709BED1E3B73274406472 /* ProtocolVersion.cpp in Sources */, - FB935D5698A86459CFAF28FA69DC4680 /* PublisherBase.cpp in Sources */, - 3854F084264013AF986F5BFD587BB854 /* RequestResponseRequester.cpp in Sources */, - E8C7F376FE11D9B84E58F477C70340A9 /* RequestResponseResponder.cpp in Sources */, - 7970032B2380EB6A8628C5F17E6886AB /* RequestResponseThroughputTcp.cpp in Sources */, - 5DA9B5A85587D6E331F795D0F9B0C196 /* ResumeIdentificationToken.cpp in Sources */, - 27B2C3BD3F4C21382A6C4BC7BBF8CDC1 /* RSocket.cpp in Sources */, - 1223CCC3161B6A19FAD9F7EFFE14E801 /* RSocketClient.cpp in Sources */, - BA34695A8A48209A201345E8B3FBB569 /* RSocketParameters.cpp in Sources */, - FC62A22814B7F79904F95093CD5334D2 /* RSocketRequester.cpp in Sources */, - CC02B44932594CFFE5B5F6D237E0D5CF /* RSocketResponder.cpp in Sources */, - 6DCA4175D201CD9776ED2AF423713DB5 /* RSocketServer.cpp in Sources */, - EBDEAEE4309EBDED877600C31B7EB552 /* RSocketServiceHandler.cpp in Sources */, - F7171D4031DC7E6CE5D0B3C3BDA7C526 /* RSocketStateMachine.cpp in Sources */, - 1DFA73AE7AA2E82594DDAD45A913857E /* RSocketStats.cpp in Sources */, - 9842D63EB263A8791A5B8A8BE3D551C0 /* ScheduledFrameProcessor.cpp in Sources */, - 93BA2401D00BEA1D9A054E7FAF6230FE /* ScheduledFrameTransport.cpp in Sources */, - 0E007318F430B309E38C0D74CEAFA5F0 /* ScheduledRSocketResponder.cpp in Sources */, - 3684AFAD991F04A665C07A458F999C32 /* ScheduledSingleSubscription.cpp in Sources */, - 6AAFFCA2F7AD3D12DD6AAB52C294F9C4 /* ScheduledSubscription.cpp in Sources */, - 8102EC8FD6B413398F99189C0CB9161B /* SetupResumeAcceptor.cpp in Sources */, - 7FB9D6751FF39DA25B51C378653BD0DB /* StreamFragmentAccumulator.cpp in Sources */, - 06FFE0F8419E3521E01DD52D6ACE4451 /* StreamRequester.cpp in Sources */, - 7C3AD62F632F18AE5B2E676F5A2E9949 /* StreamResponder.cpp in Sources */, - CE8DFA45D76A6B2B6B82BBA7E038EF91 /* StreamStateMachineBase.cpp in Sources */, - CE9FF264619B1F1663D8A47C88AB0ED0 /* StreamsWriter.cpp in Sources */, - EF12769A2BF7AE53EA1B5E52B3B24647 /* StreamThroughputMemory.cpp in Sources */, - 057BF600E57868CF3F1DB507EFD4236E /* StreamThroughputTcp.cpp in Sources */, - AC59529807A704486024AE5B57842127 /* Subscription.cpp in Sources */, - F1A6B6B2EA7CCB4AA1A695C13CF854B6 /* Subscription.cpp in Sources */, - 25CBAA9304AAAF32F35C2C4C2D48BA1D /* SwappableEventBase.cpp in Sources */, - C84173121CA8086C72E706B418B02819 /* TcpConnectionAcceptor.cpp in Sources */, - DA323FFCFF624A6EB3DC5FE1608F4B27 /* TcpConnectionFactory.cpp in Sources */, - 3EF97537A8FE1D130B9AAC87AF69FF2E /* TcpDuplexConnection.cpp in Sources */, - FFCC22D95D0DB92D6C4E1060B140B875 /* WarmResumeManager.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 450370CDE8A64A01A08B03948A6683DA /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 55F04A0412532CA8D0254B1D7C18341A /* FBLPromise+All.m in Sources */, - C2395C7CEF72E3402F78305804A0957A /* FBLPromise+Always.m in Sources */, - 872A28D5BC91AF8EE1D2AFC6671BF3A0 /* FBLPromise+Any.m in Sources */, - 7ED35590924A69BD3F4743E7CA357D04 /* FBLPromise+Async.m in Sources */, - AB0930E36F4ADC78248E2DD2185D3139 /* FBLPromise+Await.m in Sources */, - 428E14AADB610E7FC986B56F1D079335 /* FBLPromise+Catch.m in Sources */, - 050B6A1F36D337A7719911102490B273 /* FBLPromise+Delay.m in Sources */, - 1CA0A8E452C5D7878A41DC79A81C698E /* FBLPromise+Do.m in Sources */, - 1806341AA2FAF9EB873BF4F5025B3EB6 /* FBLPromise+Race.m in Sources */, - F6F1CAE84E62574EE60295D78F5D2CA9 /* FBLPromise+Recover.m in Sources */, - DB0000E6D0AF3CDDF957D43DFC579FFB /* FBLPromise+Reduce.m in Sources */, - 054523ED1FDCE6BE115A4F4A1664F1D8 /* FBLPromise+Retry.m in Sources */, - 6B7FDC65428AE2923E6A70EB2B176FFB /* FBLPromise+Testing.m in Sources */, - A601DFC7B7CDB8CB3656334BE1584A5A /* FBLPromise+Then.m in Sources */, - 967093221D7E3F5899024EC3E8EF3709 /* FBLPromise+Timeout.m in Sources */, - 2475FC51EDFCB1F9F9F4677E1DDBBB4C /* FBLPromise+Validate.m in Sources */, - E3235463E1CF44E7439F108EC9102330 /* FBLPromise+Wrap.m in Sources */, - 2333A71A79A955983484EE2BD894846C /* FBLPromise.m in Sources */, - 8EA9309A3F09E71B6810A8AE244EEF9E /* FBLPromiseError.m in Sources */, - 41C0DD100F80338C8844F09FBB834D80 /* PromisesObjC-dummy.m in Sources */, + C035DD39E1A7B709C3EA4B0B04A4558F /* cct.nanopb.c in Sources */, + E394E8C024891B64EECB0EE9D1E5A0C1 /* GDTCCTCompressionHelper.m in Sources */, + 230DD04E738438C0BB1D05464F2D3A36 /* GDTCCTNanopbHelpers.m in Sources */, + 72718F504B4599F50C6A9FFE7DA6A11D /* GDTCCTPrioritizer.m in Sources */, + E2C0076B7E76F787D079378C56AFB9E4 /* GDTCCTUploader.m in Sources */, + B6B8D90E1D9071ADCB74D1E342D9EF52 /* GDTCOREvent+GDTCCTSupport.m in Sources */, + 45E9F1F4ECA95E205CA5F3BAA5DDD435 /* GoogleDataTransportCCTSupport-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -29174,43 +30274,79 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 47963DF00B478904B0422482A368CC47 /* Sources */ = { + 4A45652BC3533F744487E687413FA07C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 5310380B33DC212FC0AF78E54D4B5E0D /* bignum-dtoa.cc in Sources */, - C26022AE4E0AF9C7657F9A63CE7550F4 /* bignum.cc in Sources */, - 932D71D8D97CE94C6662B5BAB83E84C2 /* cached-powers.cc in Sources */, - 40195431D14A75B81EBE63BB015C2F01 /* diy-fp.cc in Sources */, - A88C39183F2A8FFFC799523086233DCD /* double-conversion.cc in Sources */, - 3EF5FD74035E006AAE06DE79060A186D /* fast-dtoa.cc in Sources */, - 34ACCAF00BE9EC0C414BA0F36459537D /* fixed-dtoa.cc in Sources */, - 02E196B05996FA3627989B9F1F70A48B /* Flipper-DoubleConversion-dummy.m in Sources */, - 84737955FFECD24F403BC8D3423B71AF /* strtod.cc in Sources */, + 762BE04B82F75E8D3186DED12EEC1A2E /* FBLPromise+All.m in Sources */, + 853E8B3E4B9502AC2D1B8BA984123FA2 /* FBLPromise+Always.m in Sources */, + C39C5C5F077C288B8E7969B9469E6FDD /* FBLPromise+Any.m in Sources */, + AD4255A67BE6756205F692B2552700E3 /* FBLPromise+Async.m in Sources */, + 31E825642E6F8923F689DCF2BCED6740 /* FBLPromise+Await.m in Sources */, + 868340B25C4BA08F09F7064CEF2C97DB /* FBLPromise+Catch.m in Sources */, + 65C74D2584D6797A3E0D97AF23CAA48B /* FBLPromise+Delay.m in Sources */, + 28B8EFF1F2B56609C0BD6A08F5B0007B /* FBLPromise+Do.m in Sources */, + 21D8D2EB50CDC73DCD4D46F5B2CA9F3E /* FBLPromise+Race.m in Sources */, + 146446DE8FDB7D752B6D05DE8AC1F4FE /* FBLPromise+Recover.m in Sources */, + 8779CE84F6D672DD69A5443A229CB3EC /* FBLPromise+Reduce.m in Sources */, + 78405647A6A7F00C7D6F2517B828F704 /* FBLPromise+Retry.m in Sources */, + 79BD2B37C24FCEA4D340749EB6DBA603 /* FBLPromise+Testing.m in Sources */, + 5C2E8B571A9425AC10B3CA0A964DDDF1 /* FBLPromise+Then.m in Sources */, + 704DE8D9DD360A4DA69CCC3F2833D9DA /* FBLPromise+Timeout.m in Sources */, + DF85E8B7E8DA2537CB6C5868CFAE92A6 /* FBLPromise+Validate.m in Sources */, + D2E12B7DB0913B55C4CF2D24C1AE4B7A /* FBLPromise+Wrap.m in Sources */, + D2C18CE6DA881FC9208B52198C458A61 /* FBLPromise.m in Sources */, + 23BB62BE51D77E2B43E962B7694233AB /* FBLPromiseError.m in Sources */, + F413973DA3F708F736163BDA441E6923 /* PromisesObjC-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 525392756DB79E99570CE323800481FE /* Sources */ = { + 4C7B4C2EAF97FA345A877D832CA1E0A6 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - A2948548A6DB9F642A401081E32DAC07 /* FIRAnalyticsConfiguration.m in Sources */, - 68868113F87D612A4ECBBA1A9A85D95A /* FIRApp.m in Sources */, - 1E5DAD43ADFAC3E94B8241F7083D276F /* FIRAppAssociationRegistration.m in Sources */, - A4D637C159834E68345DB6B8196C0B44 /* FIRBundleUtil.m in Sources */, - 951625D6B6D09794C3CDD210CCA7E835 /* FIRComponent.m in Sources */, - E02F1491F16B8B79AF9002E9058B104F /* FIRComponentContainer.m in Sources */, - 518A3D3AC0E367395A42C6C5148EBA03 /* FIRComponentType.m in Sources */, - DF723ACB675EA209AAF7AA94150D5CF3 /* FIRConfiguration.m in Sources */, - 750878C63987EFD84915F2254DEA9505 /* FIRCoreDiagnosticsConnector.m in Sources */, - 970BAA44A636AAB071E407195FAEB03A /* FIRDependency.m in Sources */, - 397B207B5278E89CD90487DD4A52A92A /* FIRDiagnosticsData.m in Sources */, - 80CADFE7A596119BCDBDC582F27DAE21 /* FirebaseCore-dummy.m in Sources */, - 404E9E2CE9BE7FDDA0F623C82D08B7BC /* FIRErrors.m in Sources */, - FCEEC4C8952A40718D87720EC7F55B87 /* FIRHeartbeatInfo.m in Sources */, - E9C876E03CF1D6446B322B7D003D276D /* FIRLogger.m in Sources */, - E65842D2EF1D0C0A6551B80B2C12D123 /* FIROptions.m in Sources */, - 4D25EF5D0F46BD6D3B2B758AACE87553 /* FIRVersion.m in Sources */, + 89A9FCC7ABF5C38919E8F045224CC8BB /* FIRAnalyticsConfiguration.m in Sources */, + C020B7AA6210B61D38BE6D61E8872D1E /* FIRApp.m in Sources */, + 2AE38FB5DC67BDC738B19935A3748C41 /* FIRAppAssociationRegistration.m in Sources */, + 50A46F9B51069B9DB316D8C0D4FF127B /* FIRBundleUtil.m in Sources */, + B895839B7E06B29CAF736BAA351D01B4 /* FIRComponent.m in Sources */, + 1A452B01BC619B891ADB3D961851437B /* FIRComponentContainer.m in Sources */, + BC7D90C5BB326EA7771348567FB2BF44 /* FIRComponentType.m in Sources */, + 54BD891D56D4AC60DB75C0BDD22BB108 /* FIRConfiguration.m in Sources */, + 9B818382C927F7F0DE02D30CE78C27D5 /* FIRCoreDiagnosticsConnector.m in Sources */, + D32AD22F447180DC0416C806572DD1BC /* FIRDependency.m in Sources */, + EB6336F6D097B9A2678B064AE483EB45 /* FIRDiagnosticsData.m in Sources */, + ABC045BE3432367241A03F4AFC7F7D57 /* FirebaseCore-dummy.m in Sources */, + 963FAD9160F07C085CC97E4732801A76 /* FIRErrors.m in Sources */, + CF9D6BE88091A67009ED603CF200C617 /* FIRHeartbeatInfo.m in Sources */, + 3A773AC8A639262A73ED3F671D3DF883 /* FIRLogger.m in Sources */, + 17A9BA44633DF846494EA2883A19B344 /* FIROptions.m in Sources */, + E1E7F6AE0FA5552149A6DAF46A638E17 /* FIRVersion.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 5307C0CBEB3F5BD0F31A1E948D6ED430 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 5387423A40B18CF901D255B022BC483A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 53B9592D24C6B9A1B59A7588DCDA1094 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + CAB146FAC6468A8D16B74FCEABAE5013 /* UIView+Yoga.m in Sources */, + 55862533AF8EB81C065EBAE19625B899 /* YGLayout.m in Sources */, + 28666E2FF035B67FFC6B707C397B53C4 /* YGLayoutExtensions.swift in Sources */, + 1048ECC158B691331C5D792EB0D90734 /* YogaKit-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -29236,15 +30372,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 5869A35A0A66BD0093C0B09651733978 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 5B07F8233797F81DC6C21A0EBB7CB9F2 /* BridgeNativeModulePerfLogger.cpp in Sources */, - E6F8ADE0B72846BBD1BA94FADA423A50 /* React-perflogger-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 5AB7759E96E70C9A91FB3422BE09DEB5 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -29257,6 +30384,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 5C103A2A787BFA1A9C1D4144082DCE47 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 5C490FAD72E2F4147E14AEB455E29969 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -29266,17 +30400,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 5D0039F04D32BA48380DD0E86FC0B1AF /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 3FC033E935E90F055DF59511DC010C3E /* nanopb-dummy.m in Sources */, - D0F4B5A89DAF267184E07CC08B725384 /* pb_common.c in Sources */, - 8A3BEF16382F6DAD4AD25CBEA38B5C07 /* pb_decode.c in Sources */, - B202923B85E9EEB18004980422A47D56 /* pb_encode.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 5ED0681D0B0483EFB813699D6C3CA48F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -29305,26 +30428,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 647E38E6B5EB871B1696B5ECC7F7B2F2 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 7DA9B28F9CBBDF6527AA0DCBFFF82F06 /* event.cpp in Sources */, - E7088FAF68578CFF3A9F1202998130C5 /* experiments.cpp in Sources */, - 4209032F1CE0727A3E35FB2D974FFDDB /* log.cpp in Sources */, - 3762C411FCA3D9A1E233BC9197139636 /* Utils.cpp in Sources */, - 166783C3D585CED3AA4C71A179DD95B9 /* YGConfig.cpp in Sources */, - C147901966B3F66F598F310C7384A6CE /* YGEnums.cpp in Sources */, - D6B32C3AD42324A5518538A12FAE8B94 /* YGLayout.cpp in Sources */, - A9B8B050C53CC227C9045AE1DFEE6367 /* YGNode.cpp in Sources */, - 44FA64358289FCB056F7B3E8560B1866 /* YGNodePrint.cpp in Sources */, - C29383C95DAA4151606860668D3457C0 /* YGStyle.cpp in Sources */, - 92771FAAC4C0BBB0F80182818B230F8A /* YGValue.cpp in Sources */, - 791F6B2497C03747522DD2742315E28C /* Yoga-dummy.m in Sources */, - 8550954396173933925FC4FDAB941AF1 /* Yoga.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 664E25A32130E7ADA646BACA35918F29 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -29342,25 +30445,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 68708F3A5EC554CD1F8C7E38AC0C7B83 /* Sources */ = { + 66A76100C73E978C5E5AC9393A7FA0E3 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 01975E822DBD1E23C44C65C2566F7D98 /* GDTCORAssert.m in Sources */, - 430FDAFD86C1C1542C67225AE887888A /* GDTCORClock.m in Sources */, - E337A352D98F019135869A85CEDF4D41 /* GDTCORConsoleLogger.m in Sources */, - 4372DD4E96A683A68A0516409BD662EC /* GDTCORDataFuture.m in Sources */, - DCADDE3A158A8723350275DB2579DD73 /* GDTCOREvent.m in Sources */, - 070DCFEE3F8AAB5103BD17C0ACF80B52 /* GDTCORFlatFileStorage.m in Sources */, - 013D04BA39E994F22EB1A90D1B964D9A /* GDTCORLifecycle.m in Sources */, - 8D8C2479A21CD15D82930E473DD29F08 /* GDTCORPlatform.m in Sources */, - FE5DF35F8C343E370B43A62E04722AE1 /* GDTCORReachability.m in Sources */, - EF23BAF6AC5064B5EEDB1435462ECF78 /* GDTCORRegistrar.m in Sources */, - 3E0505A9EA57B19245B94D10D1081340 /* GDTCORTransformer.m in Sources */, - 1F769B493BFFDEDBB7B7BC8B1BCB73B3 /* GDTCORTransport.m in Sources */, - 84D0DF1ACA7F8664F9604E1FA444CA75 /* GDTCORUploadCoordinator.m in Sources */, - A9E9BF3EE6DD53C838700FFDA559D5AC /* GDTCORUploadPackage.m in Sources */, - 4D9CA903FD9C443E38E23CD0B3FA1A37 /* GoogleDataTransport-dummy.m in Sources */, + 66CE684CFE1E3A9D776867C8DB343E9C /* RCTBlobCollector.mm in Sources */, + 58E2F5D71ADB5020DAF740BCD132F6E7 /* RCTBlobManager.mm in Sources */, + 89566524B54CD995DD46313D083F8E2A /* RCTBlobPlugins.mm in Sources */, + C90063E06BC4D2C17D1A547337D1889D /* RCTFileReaderModule.mm in Sources */, + 872AD763BA18B8492B37B7F874738366 /* React-RCTBlob-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -29374,72 +30467,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 6A84CBEBBDFEA5BD7C76A34EADB29413 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - E3F24F050E10E05C03542DBADB501F66 /* BSG_KSBacktrace.c in Sources */, - DEEEC939BBAB6D133EE4AF8517F3D6C8 /* BSG_KSCrash.m in Sources */, - 8734047203EB4D44AEBFDDE512D54454 /* BSG_KSCrashC.c in Sources */, - 41E400AD1889A376A264B2970E070011 /* BSG_KSCrashCallCompletion.m in Sources */, - 62E7088038382BEF6327FD627025C0C4 /* BSG_KSCrashDoctor.m in Sources */, - 948DC7DF2AC15E1AD8D421D34AEA37D7 /* BSG_KSCrashIdentifier.m in Sources */, - 26CE1DA937FFD3F4C82ADEE87ED14556 /* BSG_KSCrashReport.c in Sources */, - 8A3C214369E1E31F6977C8A87F15800A /* BSG_KSCrashReportStore.m in Sources */, - C7E3C7A5D4F591E8A5C64877734D5083 /* BSG_KSCrashSentry.c in Sources */, - 3AD45C124773ECBF45B12422CEE8F2A6 /* BSG_KSCrashSentry_CPPException.mm in Sources */, - 37D3D4A4248C6E9E7054B826DCB62C4F /* BSG_KSCrashSentry_MachException.c in Sources */, - A6E670FE51ED41A843039A08EB813375 /* BSG_KSCrashSentry_NSException.m in Sources */, - 7CC680E4F051DE8B4455E6940B26347B /* BSG_KSCrashSentry_Signal.c in Sources */, - D570E8D48A9B65FEA255788B0CCCE60D /* BSG_KSCrashSentry_User.c in Sources */, - 3D10FBEEA5E96CDFF5C03798B6436A5C /* BSG_KSCrashState.m in Sources */, - FD21DF81C6B29D9B1928FBA33A9703EF /* BSG_KSCrashType.c in Sources */, - 7D4E8AE7A62A6DD917E1E814C7EDA130 /* BSG_KSDynamicLinker.c in Sources */, - 508ECA38C00615D6966711BD85284545 /* BSG_KSFileUtils.c in Sources */, - 1C1B0F31633C386387B9FFC1702D1CC0 /* BSG_KSJSONCodec.c in Sources */, - 09F3D38C2BAD56F608FD7A7F26E29DF7 /* BSG_KSJSONCodecObjC.m in Sources */, - CB3524DC3E17FC8B7F57599ECFA16F1B /* BSG_KSLogger.m in Sources */, - 5BE6A1FCFA61602F65CE8B0B42522D77 /* BSG_KSMach.c in Sources */, - C03F07C44F05DC644F9089A4D36603A8 /* BSG_KSMach_Arm.c in Sources */, - 169FF1C3989DA62B55580EBBAFA9F872 /* BSG_KSMach_Arm64.c in Sources */, - 7DAC8D1C648535F28188CF1A488A058E /* BSG_KSMach_x86_32.c in Sources */, - 5FE471218D8F0BB8CC9A398122D9FD45 /* BSG_KSMach_x86_64.c in Sources */, - E384FD68FEA058A67C14E8D1AE72AEE0 /* BSG_KSMachHeaders.m in Sources */, - 150EF86CF0788F5503DEC19015BA32D6 /* BSG_KSObjC.c in Sources */, - 2B17A882D955D4800EE9197F9264EE62 /* BSG_KSSignalInfo.c in Sources */, - D52C85AFE270ABCF61A5371751645F85 /* BSG_KSString.c in Sources */, - F0A59984C7AD739EBBE9EC452277A526 /* BSG_KSSysCtl.c in Sources */, - 3524A6F091C5B793A3B11F534888F706 /* BSG_KSSystemInfo.m in Sources */, - 4499F682B7B571AD8CFFC9346B2BC24E /* BSG_RFC3339DateTool.m in Sources */, - 1BA6F8501E04CC203524D4E58EEB0B9C /* BSGConnectivity.m in Sources */, - FBECD87EB71D407DDA663FB0B1EAC488 /* BSGOutOfMemoryWatchdog.m in Sources */, - A0EC8226305F7CDF45D626B173A78142 /* BSGSerialization.m in Sources */, - B58D29E8C21C8791878961048FE86458 /* Bugsnag.m in Sources */, - 21B4FE8D442D5B6A6FF02399D74F9C1A /* BugsnagApiClient.m in Sources */, - 7AFE6099E59B8F4F449DF3ADA1EDDF20 /* BugsnagBreadcrumb.m in Sources */, - C6DD7662A66E9530CD7725875E9DE9CA /* BugsnagCollections.m in Sources */, - A5A541FA67495AD139777D6FE3535E22 /* BugsnagConfiguration.m in Sources */, - 82EDEDA1EAE1EAC14FE6ED7A201CB435 /* BugsnagCrashReport.m in Sources */, - C65749698B8885CA2132F429F6C086E2 /* BugsnagCrashSentry.m in Sources */, - CE3A8EE442E180BAF013357781A8BA77 /* BugsnagErrorReportApiClient.m in Sources */, - 3A51A443E2906CE79ADEE3B83147A147 /* BugsnagFileStore.m in Sources */, - 10C9516F6633D6B558B24F5F7036E9E1 /* BugsnagHandledState.m in Sources */, - 44E45A607DB236E95A5F4D73BE6FF44D /* BugsnagKSCrashSysInfoParser.m in Sources */, - FC07B1636D14A8DBE8118B1D56FB3162 /* BugsnagMetaData.m in Sources */, - FE1031E6595D84FDB9438C96248A0F55 /* BugsnagNotifier.m in Sources */, - DE907C27F82487B7CFD1CE3DF43BB72D /* BugsnagReactNative-dummy.m in Sources */, - EE2569EF94D0E8FF82F0FCE18542BAF5 /* BugsnagReactNative.m in Sources */, - E10D5565299FCDC9BAACFBA2698A5584 /* BugsnagSession.m in Sources */, - B03BF08C9580DF4D4659EC16D969361C /* BugsnagSessionFileStore.m in Sources */, - 174CE79CBC127FF8CC43C11C9D7134E2 /* BugsnagSessionTracker.m in Sources */, - 73199B5E3AF28C3E0484B8026C585B06 /* BugsnagSessionTrackingApiClient.m in Sources */, - 075CDC4189D947C1386933C65EF9CE11 /* BugsnagSessionTrackingPayload.m in Sources */, - CA016AE200109D8BD1A48291712FE5A3 /* BugsnagSink.m in Sources */, - 145A361BB0B2257288DEA70D785630A3 /* BugsnagUser.m in Sources */, - EAC01F056C09E5240270A5B8A15F0EBE /* NSError+BSG_SimpleConstructor.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 6B0FBD908131B1C839F3816054B87F76 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -29450,41 +30477,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 6D430090E2AD66DCD42988920210CEFD /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4D11FBDA59E6CC38A57C8A5DF81271F7 /* NSTextStorage+FontScaling.m in Sources */, - 2EB9621C454378070D7618DF1FBB2B0B /* RCTBackedTextInputDelegateAdapter.m in Sources */, - 2DCC88ED89CA612FAFD2184094E1DC40 /* RCTBaseTextInputShadowView.m in Sources */, - 5098697CDCFB8B4468E52DF0609663F7 /* RCTBaseTextInputView.m in Sources */, - DEEF43CE8752A67BD4D3C2EF4CB10764 /* RCTBaseTextInputViewManager.m in Sources */, - 0ED07F1E06CCD572E91918A933D8B1D3 /* RCTBaseTextShadowView.m in Sources */, - 587B4AD0E95C8AEF88FF8E0CA1F6BE2D /* RCTBaseTextViewManager.m in Sources */, - 26655BA93D0A835A85DD91FFADAAE0AD /* RCTConvert+Text.m in Sources */, - 96B99449236C7362C76637F4F5E2ECBB /* RCTInputAccessoryShadowView.m in Sources */, - F628297FD5ECE8EB931DF6D545B7E4FD /* RCTInputAccessoryView.m in Sources */, - 0191298D8B56273B4DF2F74D2254ED63 /* RCTInputAccessoryViewContent.m in Sources */, - 8879FC468B9A43BD653DB24D3B9550A2 /* RCTInputAccessoryViewManager.m in Sources */, - A11ADF78862987C9E224E155AD213FF0 /* RCTMultilineTextInputView.m in Sources */, - F71D00D32966A21180DE4624B6DDAF80 /* RCTMultilineTextInputViewManager.m in Sources */, - 8A0FB5731D30DEE6CC6ABD2712A38551 /* RCTRawTextShadowView.m in Sources */, - B21BCAD9EDD7ADF40DB87D5A07B9AC1F /* RCTRawTextViewManager.m in Sources */, - 9D5CEABE3CF80403EF074E9F52F0FAC1 /* RCTSinglelineTextInputView.m in Sources */, - 8846F50819DCE36877AF3114E53727C1 /* RCTSinglelineTextInputViewManager.m in Sources */, - 47CF1F80E639EBC2EC65FF17D004F33D /* RCTTextAttributes.m in Sources */, - 7D545BE5A0AD36CCCBEB4391CED71E61 /* RCTTextSelection.m in Sources */, - C1DDA6616CA61F08B39CED694C92DD94 /* RCTTextShadowView.m in Sources */, - 67AD9AFFA41E524EA809D55E826D6716 /* RCTTextView.m in Sources */, - 46EC6BBB8B9F86B1686A62703710FF03 /* RCTTextViewManager.m in Sources */, - E8DC21B0BF4EF75793E8204B2110A761 /* RCTUITextField.m in Sources */, - 7A6BD696A5C14B9CEA6F7882E30FA1F9 /* RCTUITextView.m in Sources */, - 716958B6B3387C19FDEAAD5DF7BEB086 /* RCTVirtualTextShadowView.m in Sources */, - D3A2C8EA7A047D17A4541373EA9EE652 /* RCTVirtualTextViewManager.m in Sources */, - 817034A55851912C5DEDA6271809EACE /* React-RCTText-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 6D52977D378DDC5FE8ACB13D3706933B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -29510,6 +30502,149 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 6FA161C4BC7EA036AD68A9EB649A5CB8 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + D2196EA9298C2730B852270880A3D2A3 /* AutoAttachUtils.cpp in Sources */, + 4CB58B352ED63496F6BA9A68A54D0F23 /* CallbackOStream.cpp in Sources */, + 350AE613C31DFA3D74DD3EBABEE7883D /* Connection.cpp in Sources */, + A9F1F8D1A6634F8DF7AAD9A9EC25C55E /* ConnectionDemux.cpp in Sources */, + DBEA75B0AE2F043D833BACC0A562B65A /* HermesExecutorFactory.cpp in Sources */, + F78AD42E06E698509C976499DFF58EE2 /* Inspector.cpp in Sources */, + 14856DAD4A55594243BC23FA9EF84730 /* InspectorState.cpp in Sources */, + 184A2738957445716377307432FFB525 /* JSCExecutorFactory.mm in Sources */, + AA558F7C06E2B933D3E83076DF8F60FE /* JSITracing.cpp in Sources */, + 304AC0416D078BC7F11EE314363C4AD3 /* MessageConverters.cpp in Sources */, + 2BCB8213F928827594F54D71B96F1C30 /* MessageTypes.cpp in Sources */, + 2F6652E46DC338548662367B81915F25 /* NSDataBigString.mm in Sources */, + 63903477E986678EEF4D66961AF6E752 /* RCTActivityIndicatorView.m in Sources */, + 8DE75F8DC93F2864EC9A6B622E944672 /* RCTActivityIndicatorViewManager.m in Sources */, + 7EE4BC1ABEDBA90659B24F141AF2AE91 /* RCTAssert.m in Sources */, + AF51E183E8533478637F6D604F2A4C37 /* RCTBorderDrawing.m in Sources */, + 4333F98005E818C3C8ECF8E67A7446BB /* RCTBridge.m in Sources */, + 1EAF0E603E4703193505672F7C408F88 /* RCTBundleURLProvider.mm in Sources */, + A5D95892398465BC514EE0762F274222 /* RCTComponentData.m in Sources */, + 19A604CDD4BB3615C930FD458FB317C7 /* RCTComponentEvent.m in Sources */, + 0E7ECDC6B6EC7025AE39E85209C03639 /* RCTConstants.m in Sources */, + 1BB9DF24C3C74F8AB123E0C43DC8D3C2 /* RCTConvert+CoreLocation.m in Sources */, + 9D182943C7340DBD8F9573412ED42D84 /* RCTConvert+Transform.m in Sources */, + A2AE641A8D2B83A7B992D6949D1CFEE4 /* RCTConvert.m in Sources */, + 13EE8936994DA886A78F3DDB94CE6158 /* RCTCxxBridge.mm in Sources */, + 6DAC0A5F611F20734DCBF0D37C24D85C /* RCTCxxConvert.m in Sources */, + 298153CBD5834911CF7F5E38F56BF310 /* RCTCxxMethod.mm in Sources */, + 7F8BAADDB284D0971026D330A2F1205A /* RCTCxxModule.mm in Sources */, + 17BEA2B9B80399632CD7633B7F79F475 /* RCTCxxUtils.mm in Sources */, + F717871519E8CD3340D51DE6CAC298E2 /* RCTDatePicker.m in Sources */, + 72C0EDDBB8B83ED74127F63F35B2861E /* RCTDatePickerManager.m in Sources */, + 8CBD6D0CB530855D2D1E3DC8A7034F91 /* RCTDevLoadingViewSetEnabled.m in Sources */, + 72098E2C4C902E4CDD614A1784A1BD33 /* RCTDisplayLink.m in Sources */, + B3332A84D9912EB7F5ED71A1311D3D0A /* RCTErrorInfo.m in Sources */, + 7430009CA2DF5FF39941A4DEEB74F68D /* RCTEventDispatcher.m in Sources */, + 47C3A7F9187D9740C31AB36F6018C7B8 /* RCTEventEmitter.m in Sources */, + C8F768C639AF094247415FAA7DFEEA67 /* RCTFollyConvert.mm in Sources */, + D8D97FEE8590A66A86E60AED24888D48 /* RCTFont.mm in Sources */, + A987BB2EFCFDD16AE5272D1504F2D53E /* RCTFrameUpdate.m in Sources */, + 8D165B355BDB7DE684E2F22405105A8D /* RCTI18nUtil.m in Sources */, + 7A0933F0E3D652CF12F1731560BD8207 /* RCTImageSource.m in Sources */, + 3CDBA62C0981F9265B1854CFB8F28EDF /* RCTInspector.mm in Sources */, + 3FC6FC4AFD6E249471A5B1357DD1DC35 /* RCTInspectorDevServerHelper.mm in Sources */, + C56C88C4EF0ADD5B7799CB8F250F2CBC /* RCTInspectorPackagerConnection.m in Sources */, + D9AA422172FB18F295A44E0E50907FCF /* RCTJavaScriptLoader.mm in Sources */, + 4359488778D841642E8F1A87B9909D9D /* RCTJSIExecutorRuntimeInstaller.mm in Sources */, + 9B502C3D5C2C88FD044031F5629F9620 /* RCTJSStackFrame.m in Sources */, + 27B2383E0B5A555A167FBA7411E909F3 /* RCTKeyCommands.m in Sources */, + EE6B2DF70DF2108CA2E097E4FBBC8A02 /* RCTLayout.m in Sources */, + 22D21580A36305FED693B1D815397CEC /* RCTLayoutAnimation.m in Sources */, + 5DF803DC1FA30F567356E277663E433B /* RCTLayoutAnimationGroup.m in Sources */, + 9BA8009B2521899A38C7CAC400260168 /* RCTLog.mm in Sources */, + 82E7A8035A91E672B4BDCA59E4E21E99 /* RCTManagedPointer.mm in Sources */, + 57BC0C321B24948DE44EB7D7F8B5D7E7 /* RCTMaskedView.m in Sources */, + F726406A8833FEB1EDF44B032CBB3C11 /* RCTMaskedViewManager.m in Sources */, + A82DB05881F02CBAEEBED5C8718D0CA6 /* RCTMessageThread.mm in Sources */, + 3DD38D40F94071D2CED71A2CB4EB6462 /* RCTModalHostView.m in Sources */, + 65C0148ACE376DDC06D427B338BC7650 /* RCTModalHostViewController.m in Sources */, + 87D24C209ED7E58108EBB3064EA2EE45 /* RCTModalHostViewManager.m in Sources */, + 9DBF53CC7EE3CC11DF8C5654E85D1D5A /* RCTModalManager.m in Sources */, + 952C03C87320F5421BFC44147C0754F5 /* RCTModuleData.mm in Sources */, + D73DF66D11E2F433F4565EA01E85C62C /* RCTModuleMethod.mm in Sources */, + 71A9ACF58258BB5E6D877E50E89456B5 /* RCTMultipartDataTask.m in Sources */, + 736593F49220248663C77052CDA35D96 /* RCTMultipartStreamReader.m in Sources */, + 7802283CA511FAB7381AF5F5130ABBB9 /* RCTNativeModule.mm in Sources */, + 8D9011DAC5D088182EA6F8AF8D9416C4 /* RCTObjcExecutor.mm in Sources */, + 1182339CF6F392E970580632952143BC /* RCTPackagerClient.m in Sources */, + 00BDCD58EA8B54F256C20B5BB191BE69 /* RCTPackagerConnection.mm in Sources */, + E91A24F10E4E63BA9511C3AA3B608772 /* RCTParserUtils.m in Sources */, + D9DFBDF32AB87D1C4EB6859F8A76C74B /* RCTPerformanceLogger.m in Sources */, + D92C788B6791E1E36CF211895BB1F275 /* RCTPicker.m in Sources */, + 6DD6E2BDA043C5ED618E8F663927D0A4 /* RCTPickerManager.m in Sources */, + F0005D0971491565CD5110C617DD4E5C /* RCTProfile.m in Sources */, + 7421731FA748A63961375FB27388E154 /* RCTProfileTrampoline-arm.S in Sources */, + 587AFE04A5B41C8A9141EE2635529E04 /* RCTProfileTrampoline-arm64.S in Sources */, + 7B33FB22F1E51564603732E2C0E5CD31 /* RCTProfileTrampoline-i386.S in Sources */, + 51EAD4304BBE7F35D895B0B7CA19B049 /* RCTProfileTrampoline-x86_64.S in Sources */, + E02250DF77C1E2EAA629A4823968E917 /* RCTProgressViewManager.m in Sources */, + EE47B233BA980AE3837F75CC6B7D2CE4 /* RCTReconnectingWebSocket.m in Sources */, + A4F70A8EA65D11D1C2EF962CA3C9D9CA /* RCTRedBoxExtraDataViewController.m in Sources */, + 5D18FE936D740AB24774604FA78258C5 /* RCTRedBoxSetEnabled.m in Sources */, + 4C445E6747B8E94B019FEEF7C21F7DED /* RCTRefreshControl.m in Sources */, + E7650BE94EC3643FD0EDFFB53BF239DF /* RCTRefreshControlManager.m in Sources */, + F8B01FF90F9647EBEC9472A1F0CE3FAE /* RCTReloadCommand.m in Sources */, + 9B91F23E1812387F4DFEF1005D75EE0B /* RCTRootContentView.m in Sources */, + 84ACD61B97AD00786A33F91D32FD4992 /* RCTRootShadowView.m in Sources */, + D0986605E0627CFF3EB4026422617121 /* RCTRootView.m in Sources */, + D6588F6CE574B0985EF73B75894AA779 /* RCTSafeAreaShadowView.m in Sources */, + 38FD81FB7631F917EDD0E9E29097F3A4 /* RCTSafeAreaView.m in Sources */, + 4495C89C7717888F591DEE349A4F6F96 /* RCTSafeAreaViewLocalData.m in Sources */, + 815232FF104ADC5B9E035083E4E29634 /* RCTSafeAreaViewManager.m in Sources */, + 8706AFEFAB22494BE072E1FEA9EAAE3B /* RCTScrollContentShadowView.m in Sources */, + F8581013E9700E95EFB3B792418EE3BD /* RCTScrollContentView.m in Sources */, + B1B20AF0F14E4DD36E6CC45CA1EB7CC7 /* RCTScrollContentViewManager.m in Sources */, + 2B2CF2FBBEE55C4718C13D17AF5ED129 /* RCTScrollEvent.m in Sources */, + 493A139909EC2A35A95110A6B5FD438E /* RCTScrollView.m in Sources */, + C9077969FC06CED405C91255F82B5E47 /* RCTScrollViewManager.m in Sources */, + A5E2BA2B8B10761D4471CB6F249BE824 /* RCTSegmentedControl.m in Sources */, + A7CEAC9EFCB3B1F5252F52B12F7C3F07 /* RCTSegmentedControlManager.m in Sources */, + A743EF1695A5EB316B236F4632BC0C56 /* RCTShadowView+Internal.m in Sources */, + DF7AC9B4F2B180734337D0063EF08A6E /* RCTShadowView+Layout.m in Sources */, + 30EB71AF68C1EBBC1A4D190075FC73B5 /* RCTShadowView.m in Sources */, + B2BDB48F0761D9CE87E8893D3EA0162E /* RCTSlider.m in Sources */, + 43866C275CB5A92A40CB8CD8048E9853 /* RCTSliderManager.m in Sources */, + 2D05F352298AEA840027E18E284108F1 /* RCTSRWebSocket.m in Sources */, + 05EC7EFB420CDEA0D13DA075C985FFDA /* RCTSurface.mm in Sources */, + 39B794E176F65B8F2A766370B31996D7 /* RCTSurfaceHostingProxyRootView.mm in Sources */, + A2E4E857A1D8BFFEE31E4221565D5EA5 /* RCTSurfaceHostingView.mm in Sources */, + F3A5DC70729A04DC781EC89C2BF28DE8 /* RCTSurfacePresenterStub.m in Sources */, + F7B1E491A90F97D1FBB88B009239465A /* RCTSurfaceRootShadowView.m in Sources */, + 3BAB342428D70E0BD373376061AA0D9F /* RCTSurfaceRootView.mm in Sources */, + EC08FBF9D42E49D3830F7EE7F7EDF9CB /* RCTSurfaceSizeMeasureMode.mm in Sources */, + 08DC66360C319586D994B46451C4CFA2 /* RCTSurfaceStage.m in Sources */, + 2C47B3E9B2BE6E9A18EB65E07A4D4CF6 /* RCTSurfaceView.mm in Sources */, + 4D7CEF19C85F6BC5460961BC5485FC18 /* RCTSwitch.m in Sources */, + DD169F5C2F1D754944D10F6145EAD5DC /* RCTSwitchManager.m in Sources */, + 90D4E356DE236811912A53AF5685871C /* RCTTouchEvent.m in Sources */, + 7B0539B2F5676BAC20F7F72B52A3DB81 /* RCTTouchHandler.m in Sources */, + 97E3759E24C3B2EEF1771F0A1320B8AB /* RCTUIManager.m in Sources */, + B3C78FBA541D3F4F79A193E9A54BAF3C /* RCTUIManagerObserverCoordinator.mm in Sources */, + 7CAE789754D569EFA0A1E48EEA8BCDC7 /* RCTUIManagerUtils.m in Sources */, + 0021ADEDCC7BDF2873BCAA2932A94973 /* RCTUIUtils.m in Sources */, + BBBD6E8CB02C498A552D18842EE4D1D9 /* RCTUtils.m in Sources */, + F8450B01C250F8071A2E452265156B8E /* RCTUtilsUIOverride.m in Sources */, + E45C3A5908024632B4833F497CB23688 /* RCTVersion.m in Sources */, + 9EA5F1348EA8C3A44969FF0B1F1F0D19 /* RCTView.m in Sources */, + A7D487DEFB60AB98A44CA314D89B8562 /* RCTViewManager.m in Sources */, + B4159B42027607464FD854F55FCFA0BB /* RCTWeakProxy.m in Sources */, + 6F5F811E0EBD3A9488F59B825FA147CA /* RCTWrapperViewController.m in Sources */, + 8576C2E6FE0D4B9F83AE7BE0B466E1CB /* React-Core-dummy.m in Sources */, + 5F9D5E361C41CF262D91F88F47740F1F /* Registration.cpp in Sources */, + 72549412543114AF2370F5106413C22A /* RemoteObjectsTable.cpp in Sources */, + 62F98BA5412B5FB7570380992EEF3FEC /* RuntimeAdapter.cpp in Sources */, + 49C0B183B4F5FFE194CB004E12946AF0 /* SerialExecutor.cpp in Sources */, + EF070EC98256E60B908537CA9A022E54 /* Thread.cpp in Sources */, + BA39E72B3E5987D3570AB7E33150CDFE /* UIView+React.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 70640FD248F2E3D0FE08AE2069A9C431 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -29532,94 +30667,18 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 72954C038EB809717171C89706BF9E16 /* Sources */ = { + 763F378568628874D9438F483AD8700C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - C5C01FEB3DE38C2BF5335818F8A3C645 /* demangle.cc in Sources */, - 5A64D5AA5E9E1D63CF0F1D140F7B085E /* glog-dummy.m in Sources */, - FB66016E3F1C1B753A5DBD26BE80C184 /* logging.cc in Sources */, - BA16542A99D85602B6A5A5C45DF73816 /* raw_logging.cc in Sources */, - F28F4E1DC276F25E634D1633A2E4AD89 /* signalhandler.cc in Sources */, - EFF3802BE12C8864F596F298ED7C9571 /* symbolize.cc in Sources */, - 7ECA478038C904DAFA0A2BE69499B9DB /* utilities.cc in Sources */, - 0524CD83E5473C16A5E3A9FA502A2994 /* vlog_is_on.cc in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 7819616A93A2BF95E014E4B384A1D4D8 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 3AF211C26522625F518378B75B041689 /* NSBezierPath+SDRoundedCorners.m in Sources */, - 2FE3744EBB9D1A964C77748D06B544ED /* NSButton+WebCache.m in Sources */, - BA6AD5A154CFD348FC33E64698DED623 /* NSData+ImageContentType.m in Sources */, - 7AFDE03A6B9F781CB26EFAF62876158C /* NSImage+Compatibility.m in Sources */, - 7259042A7B13FDB1BE439B9A1C1F7DC0 /* SDAnimatedImage.m in Sources */, - A344CA3BE4A8959F371E1465EC26C02B /* SDAnimatedImagePlayer.m in Sources */, - D033FD51797A9CE8A87D9E92317A581B /* SDAnimatedImageRep.m in Sources */, - 40E0037555EB81608BFF2A8D5FED2A48 /* SDAnimatedImageView+WebCache.m in Sources */, - C8A338C8BE98F7EA7521441E89790845 /* SDAnimatedImageView.m in Sources */, - 2D4114DCE33C61C1838C79395E3F25EC /* SDAssociatedObject.m in Sources */, - 2132DFD0E025D1095CF4D6A5300CEA6D /* SDAsyncBlockOperation.m in Sources */, - 723463D7C71568E7121DF8271F874B2A /* SDDeviceHelper.m in Sources */, - 4D30A2081A32337F2BA3129EBB6E0A38 /* SDDiskCache.m in Sources */, - 70728DE148B745B7DA5DF107F3DAF24C /* SDDisplayLink.m in Sources */, - 8A381701CE199626875385A565A005E2 /* SDFileAttributeHelper.m in Sources */, - 576686AB1696E397C29DC170EA3BC6BE /* SDGraphicsImageRenderer.m in Sources */, - 983FA7C34B432DDB885AA1DADFA1CE93 /* SDImageAPNGCoder.m in Sources */, - F68FBC70D4692D6C5C32D9FFD7E9809D /* SDImageAssetManager.m in Sources */, - 77054ABB346D0F3935D5AC4757BC0C1F /* SDImageCache.m in Sources */, - 34D2FC28544720844C8807FC6AC7841C /* SDImageCacheConfig.m in Sources */, - 4378FF2DD49055B00AF3A04660AD1F8E /* SDImageCacheDefine.m in Sources */, - 973F133058C5C8E3816C64D648CC404C /* SDImageCachesManager.m in Sources */, - 0C26C9518BC55F88DA71C4696E5FA681 /* SDImageCachesManagerOperation.m in Sources */, - 2E6A233749E50E1E4C4700749DF1C12E /* SDImageCoder.m in Sources */, - A41761F3BDD323CB9DE64AA112B7085E /* SDImageCoderHelper.m in Sources */, - 0CF2D9782C0E2282B9A54A0384E3F4FC /* SDImageCodersManager.m in Sources */, - 5469C18F9197DC7E7D30F8E2365BCFD4 /* SDImageFrame.m in Sources */, - 132ED3CB6ED90E07C21BCAB683F19E24 /* SDImageGIFCoder.m in Sources */, - 9859AF689B767EA33EBBCA0FBCB4D8E7 /* SDImageGraphics.m in Sources */, - 7988115843704D8FBCCF8A3F53AF1318 /* SDImageHEICCoder.m in Sources */, - 2088B036AE4C61A585EB38C8F94E5027 /* SDImageIOAnimatedCoder.m in Sources */, - 11F5D6BFBE2DF5D3C59E1A8AB6A0DC38 /* SDImageIOCoder.m in Sources */, - C826EB90D1A9F3FA578350CDA5629F9D /* SDImageLoader.m in Sources */, - 405074D90F7083BAD97EECF6CC3539DE /* SDImageLoadersManager.m in Sources */, - CB7FA644601BC9BD11E0C52E632D96B5 /* SDImageTransformer.m in Sources */, - 46945F0A02E8CF7606AF37E0013B16F1 /* SDInternalMacros.m in Sources */, - 83086E1702478A2D2D4234EC2D303C11 /* SDMemoryCache.m in Sources */, - D9C42EE9452E591C5BBCCBDE6C0BFAA6 /* SDWeakProxy.m in Sources */, - 12CD71CE972D957C297A8DA7E00F6D88 /* SDWebImage-dummy.m in Sources */, - 8C99E49ECBB4576ABFFFCD2D33CC80D3 /* SDWebImageCacheKeyFilter.m in Sources */, - 61FCAED7CE5503DC0B68F4795F75F255 /* SDWebImageCacheSerializer.m in Sources */, - 1C67D097B109BA9D021B3A10C83D015D /* SDWebImageCompat.m in Sources */, - 5EBE41DCD95B17DAC7A4F2289AF24911 /* SDWebImageDefine.m in Sources */, - 9580138E6C22394CC1EEF68FBA633BE4 /* SDWebImageDownloader.m in Sources */, - 3CC1DF5BA991F1C779876D2A4DFE0ED4 /* SDWebImageDownloaderConfig.m in Sources */, - C097205645B7E94B66D690CC07083D1A /* SDWebImageDownloaderDecryptor.m in Sources */, - E63FAB97D6D24DE9AC74D6E1CA7230BA /* SDWebImageDownloaderOperation.m in Sources */, - CD3402479B3B68645EA36F84C6DD71CE /* SDWebImageDownloaderRequestModifier.m in Sources */, - CE959CBE4EF0CC3E221C7F25F5D4EA48 /* SDWebImageDownloaderResponseModifier.m in Sources */, - E5CE5843FC54AC6DFBD2FC372CD03186 /* SDWebImageError.m in Sources */, - 759F9A6379A9C117F5A71A8D37028D11 /* SDWebImageIndicator.m in Sources */, - 1B7E45086741030F76FD355C8A706D3D /* SDWebImageManager.m in Sources */, - 77D38C5367727C49BA9A54272490F6E1 /* SDWebImageOperation.m in Sources */, - C1502005908A186AC9A30DEA43FEAC04 /* SDWebImageOptionsProcessor.m in Sources */, - 5119E167EB01FC58F1A9D2C8908481B8 /* SDWebImagePrefetcher.m in Sources */, - 8E4DA017E6B261A12284CEB285594F61 /* SDWebImageTransition.m in Sources */, - C585CA023A459EF884487FB67BE827C9 /* UIButton+WebCache.m in Sources */, - ADD7AF5AB44803B59EF61295F5811125 /* UIColor+SDHexString.m in Sources */, - 24256D1F260DBFF4302E3D08DC0E99FA /* UIImage+ExtendedCacheData.m in Sources */, - 887847B8682558ABE425E359B9C9E7EA /* UIImage+ForceDecode.m in Sources */, - A89EB640E4BFEE7E1A3E589F901592BA /* UIImage+GIF.m in Sources */, - 1CEC824D83F8C270FAA9E38AC825746B /* UIImage+MemoryCacheCost.m in Sources */, - 2ADB15951C58DDCF953FB378C6277EC4 /* UIImage+Metadata.m in Sources */, - 23340A2737910BD3C9B667F7C741BFE1 /* UIImage+MultiFormat.m in Sources */, - CF6BA204DAD8E3F3E2B3A7A7D0E7939C /* UIImage+Transform.m in Sources */, - 99EF56ECB29F8B259A2CD05C40BE8ADE /* UIImageView+HighlightedWebCache.m in Sources */, - 71433F2B02B300705E51EDF8B3EC611A /* UIImageView+WebCache.m in Sources */, - F3F8F07E7A943E6DD08FCF13FC866C2E /* UIView+WebCache.m in Sources */, - 09EB11F972206499481C2687DC199725 /* UIView+WebCacheOperation.m in Sources */, + E90955012B852D78214EA864F1EB2B9C /* demangle.cc in Sources */, + 83474599635C0AB87BD99C9475E49771 /* Flipper-Glog-dummy.m in Sources */, + 77A67E4E97A48D847F86420983FAC694 /* logging.cc in Sources */, + EE9C7AAB735A46CF2BD44DE9B71A4A6B /* raw_logging.cc in Sources */, + AE6CD51389F55D84C7C2A9F3C6CDCE3B /* signalhandler.cc in Sources */, + FF6E1A5BD1EE2C973778ECB8437F8381 /* symbolize.cc in Sources */, + CAA1D5E69DFF645CDB4B918BC511F924 /* utilities.cc in Sources */, + 17B62C34B0212E5F525DD2DC5CBB4046 /* vlog_is_on.cc in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -29708,6 +30767,31 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 7F3457C2E3E1A04D3D2A5919C7B2D397 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 6CBDD8B277C6EAD6FE2FE166EE895F14 /* bignum-dtoa.cc in Sources */, + FBF7EFB6C67314E259032F2DFC7848A8 /* bignum.cc in Sources */, + C71804C09B6FFDDDB87274633968E06F /* cached-powers.cc in Sources */, + 206FE56E79C9810CE8BB59594B2194DC /* diy-fp.cc in Sources */, + 791B49A6260449B26C147F7ECD101762 /* double-conversion.cc in Sources */, + 55CC116AF16D57CDC38060B2AFE35B50 /* fast-dtoa.cc in Sources */, + 0AA2C42953DBAC4F4F9D86F6F5497720 /* fixed-dtoa.cc in Sources */, + 2CEEF0B606087671DF4FDE83D5D6AC5D /* Flipper-DoubleConversion-dummy.m in Sources */, + 0383250E9997F99EECCC20594F9507B4 /* strtod.cc in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 7F3B84595DB6781E0A0C8CE1129FFEAD /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 06EFE2E466BB6FA26C078AE7F59312F7 /* UMPermissionsInterface-dummy.m in Sources */, + C79D3C861913BECF40F5A4EFCDE0E522 /* UMPermissionsMethodsDelegate.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 821716E3B1AE515B5F06F83CDE55ECFB /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -29727,27 +30811,125 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 828F714DDAA75E7F73D0A0B3B22B9A29 /* Sources */ = { + 828495AB72C71455A73BC8E18217A0D9 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FCB3233E61B0AF7B777AE598A3E551CD /* RCTConvertHelpers.mm in Sources */, - 673D421E1AAB394C7019810A9B8EF0B9 /* RCTTypedModuleConstants.mm in Sources */, - 3568C26D7C02DBD04796A7245C464BDA /* RCTTypeSafety-dummy.m in Sources */, + 647B2902910277BA44ECE069B54E33FE /* TOActivityCroppedImageProvider.m in Sources */, + 5313E8917DB2674A66D9B5BD586D9284 /* TOCropOverlayView.m in Sources */, + 178418AB535645E5813031843C43EDB3 /* TOCroppedImageAttributes.m in Sources */, + D57AACE4DA19F9E8ED579B02426AED39 /* TOCropScrollView.m in Sources */, + 0BD0332EF081BC071AC1592D998F8712 /* TOCropToolbar.m in Sources */, + 34A3DED0678C7C9230EEBB6D3516425A /* TOCropView.m in Sources */, + 2360957858DAAB5C4427FBFC56EA02F8 /* TOCropViewController-dummy.m in Sources */, + C8A5CBB006E2DC0331B7AD53115A8B72 /* TOCropViewController.m in Sources */, + FD36059DEE8DB7CAEB95981C66A449B8 /* TOCropViewControllerTransitioning.m in Sources */, + 9599EE47E7D00E7669EF97CE21CE0F82 /* UIImage+CropRotate.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 84A390822F79C568AF66B74E3EDEBE14 /* Sources */ = { + 875EC651EA7F61E6E4A011780F9540F4 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 497C7A7DCCD7D7DE450CF7784C5F8103 /* cct.nanopb.c in Sources */, - 016FB189E6D8FA58D61358EB57472A87 /* GDTCCTCompressionHelper.m in Sources */, - 8F4BF41141B12FFF4CF8A5F8C8394B7D /* GDTCCTNanopbHelpers.m in Sources */, - E5D2B0AC62E03EF785B1EC188C73335F /* GDTCCTPrioritizer.m in Sources */, - 36202FAF63044E66EC54994F13E81BFF /* GDTCCTUploader.m in Sources */, - CA357C1A85C269D378851D6768D81EFD /* GDTCOREvent+GDTCCTSupport.m in Sources */, - E92873E7086DF05653F9CE694E21A56F /* GoogleDataTransportCCTSupport-dummy.m in Sources */, + EE5459EB7041FBE34FA586F697DF57C2 /* BSG_KSBacktrace.c in Sources */, + 3D458A73BE03264CC6356E19A9BDF408 /* BSG_KSCrash.m in Sources */, + EB2099304CD314EEFF0206113176CE9C /* BSG_KSCrashC.c in Sources */, + 73E652BF7E0000DE1560E4173FD963D6 /* BSG_KSCrashDoctor.m in Sources */, + 03B4B5F630ED44205E4E7C4A6403A863 /* BSG_KSCrashIdentifier.m in Sources */, + BEA051E333B51EA6833E9916AC3ACEDB /* BSG_KSCrashReport.c in Sources */, + AB99634DA96321A237AE20780AF99442 /* BSG_KSCrashSentry.c in Sources */, + 806D0A8C4C3A3CCCAE6FE0905BE8A994 /* BSG_KSCrashSentry_CPPException.mm in Sources */, + 79448E08B4EC193283F9709AC0475F49 /* BSG_KSCrashSentry_MachException.c in Sources */, + 7AA21B533D5798C73B2EEACC345DA1A3 /* BSG_KSCrashSentry_NSException.m in Sources */, + BB3D2B73FB11475D233EC0141BA67FD3 /* BSG_KSCrashSentry_Signal.c in Sources */, + E18E958D2C730FEF152AF9E45CB29DE0 /* BSG_KSCrashState.m in Sources */, + CEEEE8755AB696A190B0B8D14314E5A5 /* BSG_KSCrashType.c in Sources */, + 471C23EFC3B4EB699E9706D4D70B983A /* BSG_KSDynamicLinker.c in Sources */, + D7D4DEEE9049C83D3E986C0D603E0EB3 /* BSG_KSFileUtils.c in Sources */, + 39F4FE38925F09D6917B09C17FC395D7 /* BSG_KSJSONCodec.c in Sources */, + 66698945FC4D14442C3E342CD678DF93 /* BSG_KSJSONCodecObjC.m in Sources */, + C391D6D135F86F6C014A27F72E5BF051 /* BSG_KSLogger.m in Sources */, + 3772ADCA3BF208AE5047B9C835BA547D /* BSG_KSMach.c in Sources */, + BE6D9D39189D07C4D778D76C8C6C8ADD /* BSG_KSMach_Arm.c in Sources */, + 5885A380130872574F2275F30DB28F49 /* BSG_KSMach_Arm64.c in Sources */, + 5530E15FC0D84020B802A86170A1AD19 /* BSG_KSMach_x86_32.c in Sources */, + 3297803A1036B923EA911A24F231B3A5 /* BSG_KSMach_x86_64.c in Sources */, + 983C07B9FA7CD711227A49EADA39E4D3 /* BSG_KSMachHeaders.c in Sources */, + 1C0D5DB4CB91116A6DEB3474D537120C /* BSG_KSObjC.c in Sources */, + 4ABE8705BDB321574F4F61F889C3859B /* BSG_KSSignalInfo.c in Sources */, + D63727DCE35DE5DD0587FA1FD2B24E75 /* BSG_KSString.c in Sources */, + F9B3090242E6375F92F75FFF4FB52EA0 /* BSG_KSSysCtl.c in Sources */, + D9DB265BD5ECBEB3A4CA1F30BF923A0E /* BSG_KSSystemInfo.m in Sources */, + E55CB5FD7795FAC2F29E4E2B5B827F08 /* BSG_RFC3339DateTool.m in Sources */, + 6138767A374766B39CCF6C2C0230EE70 /* BSGAppHangDetector.m in Sources */, + 6394657ACB0503D2648B5ADDE06E60D8 /* BSGConfigurationBuilder.m in Sources */, + 5E950C4119D60003FE6444EC34C04393 /* BSGConnectivity.m in Sources */, + FD7AFFC6D5C5A0AB19D7A299DCF80C53 /* BSGEventUploader.m in Sources */, + 0E75A51375C4953BB8691BF8B6359CD3 /* BSGEventUploadFileOperation.m in Sources */, + 838B6C9A10FAB50834AF50D067369F63 /* BSGEventUploadKSCrashReportOperation.m in Sources */, + 9FF8AD4003970A7474066E65DB8DAEB5 /* BSGEventUploadObjectOperation.m in Sources */, + 5F99BF5C6B9D8326C29B9B132D4E3F65 /* BSGEventUploadOperation.m in Sources */, + 219DD23CD8486CC2AA835B51ABF754AB /* BSGFileLocations.m in Sources */, + 28E338037BD6C773C461C4A323E4F264 /* BSGGlobals.m in Sources */, + F5F3A2C47046A40E8452C02B8209E5E0 /* BSGInternalErrorReporter.m in Sources */, + 32C8655D48F40867932997718E4CFB01 /* BSGJSONSerialization.m in Sources */, + 3D9FF20B4F86C86E56A22BF9F06F6072 /* BSGNotificationBreadcrumbs.m in Sources */, + 83EE56FE1B991A5596F66613FF207E3D /* BSGSerialization.m in Sources */, + 7F78D9D983D7313785567B09AD93F9C2 /* BSGStorageMigratorV0V1.m in Sources */, + 13955229B8A946EEFEF1D5D623011D34 /* Bugsnag.m in Sources */, + 3CEAFD78911BA6D587B7AC4E39BB8846 /* BugsnagApiClient.m in Sources */, + 94EF6F8203070585CB312B152F7CCEB2 /* BugsnagApp.m in Sources */, + 8E4B38B0A7C618B7C40A651DBC09933C /* BugsnagAppWithState.m in Sources */, + 9745BB9C64BB16CDB4F6652AFB49C74F /* BugsnagBreadcrumb.m in Sources */, + 8A5A286273E341E6CC3BBCF13EE92739 /* BugsnagBreadcrumbs.m in Sources */, + CFF1CD9585A08783617CCBE27165930E /* BugsnagClient.m in Sources */, + C7912E805DDDEA5097A95753ADD42CD0 /* BugsnagCollections.m in Sources */, + C9146A02C705D1F930D4F7A4F6EA2BAA /* BugsnagConfigSerializer.m in Sources */, + 58D7F9C57D9E8C42867BC4BD992FE79E /* BugsnagConfiguration.m in Sources */, + F71E2166131BB9A8CA28F29B0683CC0D /* BugsnagCrashSentry.m in Sources */, + 5FD56362A5ABA26F2BDD438F96F264C2 /* BugsnagDevice.m in Sources */, + 0A6E2C66791B2BF331A358B7F6E92483 /* BugsnagDeviceWithState.m in Sources */, + C654408A00FA87DE8365928FF35EB9A9 /* BugsnagEndpointConfiguration.m in Sources */, + 1C2B7BB5F971DDDF39FDE99579055823 /* BugsnagError.m in Sources */, + 490962D63AE09938A0AE80A4D42EABEE /* BugsnagErrorTypes.m in Sources */, + 830EB97DC135460E1D5778A13B643A56 /* BugsnagEvent.m in Sources */, + 0ECABF3238BC16C0456A9A55D13E78C7 /* BugsnagEventDeserializer.m in Sources */, + A9F2A2B5D8116181ED2BF0A26D866044 /* BugsnagFileStore.m in Sources */, + 4F10400EB72C276F310ADA233A70702A /* BugsnagHandledState.m in Sources */, + B2AD496BCA1C18C8EE984FB2210866DA /* BugsnagKeys.m in Sources */, + 8316E4D799B9260284EC4C167E7C9C81 /* BugsnagKVStore.c in Sources */, + E60B6DC94775A5650B20341846210269 /* BugsnagKVStoreObjC.m in Sources */, + F3CD94B46A7D70F303A1A7B69A1D7FF9 /* BugsnagLastRunInfo.m in Sources */, + 8F91450DD2DCB3F9006CB4AB7EBB9A78 /* BugsnagMetadata.m in Sources */, + 45B84991F3DDB761174CA1018A4ABCED /* BugsnagNotifier.m in Sources */, + 69357FB22F7AA63DE7A488CB1AA950FA /* BugsnagPluginClient.m in Sources */, + F7701AA1791854F24F2B744B6A3F331C /* BugsnagReactNative-dummy.m in Sources */, + 7F8D9FA55E2B841AEE4E3E70D09BFF35 /* BugsnagReactNative.m in Sources */, + DF41FDC835C9BCC2D838A0AD84DBF932 /* BugsnagReactNativeEmitter.m in Sources */, + 2E2A420D51F91B0C7470EFADB38581D0 /* BugsnagReactNativePlugin.m in Sources */, + CB65070F7A8D8C6D2C6C72FA4C6C28E5 /* BugsnagSession.m in Sources */, + E2E18A2DBE2732797495B41D2EE5416C /* BugsnagSessionFileStore.m in Sources */, + 7F0A0E39C4B92F83FED7F63723E33BFF /* BugsnagSessionTracker.m in Sources */, + 6025DB2810AD9610FE29F2358937B917 /* BugsnagSessionTrackingApiClient.m in Sources */, + 6C72993BF92D000A3B4A2E293C217D52 /* BugsnagSessionTrackingPayload.m in Sources */, + 4366D90D10E2A1395FAC0E032CA3CE50 /* BugsnagStackframe.m in Sources */, + B875EABBD116B4987FD2958D90290146 /* BugsnagStacktrace.m in Sources */, + 19B01D769D300D03144CE77C90F0E24E /* BugsnagStateEvent.m in Sources */, + 7037271A15F2CB08758C6BEDFB9051A2 /* BugsnagSystemState.m in Sources */, + 0F2C447A8B2E00B012ED4BA187C11448 /* BugsnagThread.m in Sources */, + FF4B834692E782EFFC462685C3C08329 /* BugsnagUser.m in Sources */, + 05E8768ADFF5C698243A41CE2CF7437E /* MRCCanary.m in Sources */, + 8CAB8CB4895B8C60422A6632042C3366 /* NSError+BSG_SimpleConstructor.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 88DEBFC710596C8B85EDED1F6FBE8F0D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + D2B3C29CBC3E151E266D33F83C27BDC6 /* BridgeNativeModulePerfLogger.cpp in Sources */, + 58061F438DF6EACD997877BB0B2EBBCA /* React-perflogger-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -29760,6 +30942,16 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 8A77D8B8D92A8EE133B6BBADDB93E574 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 3AF04B5480C7868A38CFD0AE3E12ED86 /* JSIExecutor.cpp in Sources */, + 35568ABDF4D98AB458321E04288A84BA /* JSINativeModules.cpp in Sources */, + 0E39E30826C84D175DAD1DB562D03E70 /* React-jsiexecutor-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 8ADFCC1717402B23B97B7EFAD649E3EB /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -29768,6 +30960,16 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 8E200C66CC7D7B4EBFFEEFF1D3BFE5CD /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 18975E03D53D1621B2A98B40A41F173E /* RCTLinkingManager.mm in Sources */, + 86B534E23C762F4C102C3D057E28B99F /* RCTLinkingPlugins.mm in Sources */, + AEEB4B35435D6890705DB189DE95AAC1 /* React-RCTLinking-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 92F607A08329CDF388A92DBE7EDA019B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -29790,22 +30992,60 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 993FBFAF26E930FD76B5DC5A4059DA5A /* Sources */ = { + 9869AABD974080C448DCE840823976FE /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 793EB1804ADE4C8DFE76868A630594A6 /* UMPermissionsInterface-dummy.m in Sources */, - 7DD0FF0859AE4D9FC810F1A528EE4755 /* UMPermissionsMethodsDelegate.m in Sources */, + FACBA11E2FEAFBCC29029092787EE507 /* AESCrypt.cpp in Sources */, + A13D2953A26A78E54FF5F10BDCC20A73 /* CodedInputData.cpp in Sources */, + DF181CC0649D43E56891EB25905C1BAB /* CodedInputData_OSX.cpp in Sources */, + 9CB817E466F6B428CA0564B061F94D5B /* CodedInputDataCrypt.cpp in Sources */, + 6680CD80FDFCE26A84446A5540610C29 /* CodedInputDataCrypt_OSX.cpp in Sources */, + B248E08537C1D8181641399AAC23D4BE /* CodedOutputData.cpp in Sources */, + C7067CD5CB8611FA35C12D47EF3C85FE /* crc32_armv8.cpp in Sources */, + FE2C22D7DC3B0FD7E2030EA23CA5F8D9 /* InterProcessLock.cpp in Sources */, + B669576911541B17F8E380C2F8125FC5 /* InterProcessLock_Android.cpp in Sources */, + D719FD0D9C43804E35518A8345E76621 /* InterProcessLock_Win32.cpp in Sources */, + 0CADF1F6BBA5D799CEAD99DA2FEAC140 /* KeyValueHolder.cpp in Sources */, + 4BD77697149811C1F407A76DA3E9A104 /* MemoryFile.cpp in Sources */, + 9C1969845430F861B1864B23D09116D1 /* MemoryFile_Android.cpp in Sources */, + 773B10943F29DDC184B12F4C754EC61D /* MemoryFile_OSX.cpp in Sources */, + C579D78A093916EDC93710ECD7155D17 /* MemoryFile_Win32.cpp in Sources */, + 4892B1BDBB7D346D4997009A7DF67E70 /* MiniPBCoder.cpp in Sources */, + 5E5740A839F22A3B1F1E82EEE037ABB1 /* MiniPBCoder_OSX.cpp in Sources */, + FD39BB86380813E98FCFAF982373FCE5 /* MMBuffer.cpp in Sources */, + F25843714AD080F571DFAB9C7B6E4925 /* MMKV.cpp in Sources */, + 4351A141FCB441D627EF3F1FA731FEF0 /* MMKV_Android.cpp in Sources */, + 07F09290FE59F32D9775E507056C06C1 /* MMKV_IO.cpp in Sources */, + 6C07DD3F535691C84DFDF5413E3FC550 /* MMKV_OSX.cpp in Sources */, + FAD9E0CD359A697C70B85ACE2A0AE80C /* MMKVCore-dummy.m in Sources */, + 65EC54AD1DDB7484A796D13D3349B2FF /* MMKVLog.cpp in Sources */, + C17DF4E10EDA251A28D14E0D2595D4F0 /* MMKVLog_Android.cpp in Sources */, + 6B3E6EA5D791F205EA3D76CD13C1D706 /* openssl_aes-armv4.S in Sources */, + C40D96F3F09D91117D896EF643057452 /* openssl_aes_core.cpp in Sources */, + 2648771F3EE08F9A7300249832B31AC6 /* openssl_aesv8-armx.S in Sources */, + 9887978226B50484F4C32672E5A66385 /* openssl_cfb128.cpp in Sources */, + A5E1FF257FB3D23FC44DCF57A2B01DCD /* openssl_md5_dgst.cpp in Sources */, + 7BC05BE6D3004430297C9058BCCF689C /* openssl_md5_one.cpp in Sources */, + 667D90AB55A64D2CD23330A89227CA31 /* PBUtility.cpp in Sources */, + 6070CCA6F9A616F45577C94FBD984F9B /* ThreadLock.cpp in Sources */, + 21338B20D39BB99556A31FAFB41A8902 /* ThreadLock_Win32.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 99B97B9EEA95C334A3DF4AC2B262470A /* Sources */ = { + 98995ED7E2028AF31651990ED98C4112 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 0AE99F347A382B2E6F625FD689D4AAC0 /* SDImageWebPCoder.m in Sources */, - E6D521219F0327587E34E3EA6245F21E /* SDWebImageWebPCoder-dummy.m in Sources */, - 95BAE69E483B821C1B50A08887664B84 /* UIImage+WebP.m in Sources */, + 1EA668840F5AFF314318FFCE80179EDC /* bignum-dtoa.cc in Sources */, + 1672C114754B6CAAC3BC69A31C9525AA /* bignum.cc in Sources */, + A3466D1CD3E5ABD9DC1A6EFC5A4DA647 /* cached-powers.cc in Sources */, + 32EA84EA6DE44E1C762DFD5A7368D1D6 /* diy-fp.cc in Sources */, + CD6AF50A5B8935155294A78A2118C81D /* double-conversion.cc in Sources */, + F42C8BF58D5B89A62977257C8D106EE5 /* DoubleConversion-dummy.m in Sources */, + 3630703BA714A7B643C662E8F4C9B5E6 /* fast-dtoa.cc in Sources */, + 6ED1741AE0930CF58147E317CCD6F91D /* fixed-dtoa.cc in Sources */, + FFF03AE42095BE4F7E20384AD7AA1742 /* strtod.cc in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -29817,137 +31057,22 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 9C309EE5F94E8D325959269E4788DCB7 /* Sources */ = { + A083F8EF5ABE7519458E8356FD0BC478 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 583045FA1C121D1BE4F8F5E45F2E74EB /* FirebaseInstallations-dummy.m in Sources */, - 785267EEB563FC2CCFF860B1FE70AD5D /* FIRInstallations.m in Sources */, - 3031749720BF0BF00F871DCF67BACE1E /* FIRInstallationsAPIService.m in Sources */, - 4B0A9EDD8487716DA6A49751D766EB79 /* FIRInstallationsAuthTokenResult.m in Sources */, - 1DCB1C8383A62D49B3FD1E256E273B19 /* FIRInstallationsErrorUtil.m in Sources */, - C8B9E1AC869E039A7C341ADFF07E6018 /* FIRInstallationsHTTPError.m in Sources */, - 03DAEAE5FAE0256DA943CDD2F2F3EEB0 /* FIRInstallationsIDController.m in Sources */, - A2F3185241EB14D0A3E7EF848BC90E97 /* FIRInstallationsIIDStore.m in Sources */, - 28ABE6903D5320AF2655598017862DBC /* FIRInstallationsIIDTokenStore.m in Sources */, - 6A3C7249931403F099973BB0CD8C5A00 /* FIRInstallationsItem+RegisterInstallationAPI.m in Sources */, - AD614B9B1EF1A9D7448F4E86E776C00E /* FIRInstallationsItem.m in Sources */, - 99772E5FC785F88A7A79E0CC2B83497B /* FIRInstallationsLogger.m in Sources */, - 58BCD6F3329315F2532EC6093610E759 /* FIRInstallationsSingleOperationPromiseCache.m in Sources */, - 8A81D21C4AC741B2D6B5C65597671711 /* FIRInstallationsStore.m in Sources */, - 81116C5228CC9E3EEF0B49B4EF385D9A /* FIRInstallationsStoredAuthToken.m in Sources */, - CBAA4BECCB18DC6B03C986FA8A3E4B2E /* FIRInstallationsStoredItem.m in Sources */, - 59DD4ABCE69BD6765B7FD2FF7D1A6D07 /* FIRInstallationsVersion.m in Sources */, + 10984B4E10D608B72B31D7E8925F75E9 /* nanopb-dummy.m in Sources */, + 2878DA8AB79437BE25FD83B8BAC93A39 /* pb_common.c in Sources */, + ECA65EB0676276BB1A6987E7DA9AE058 /* pb_decode.c in Sources */, + 8BD59AB174FB17C09F5A44A5632B9D84 /* pb_encode.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9FC3A851A5B8D599AEDBE7DADE6A6C20 /* Sources */ = { + A2E4B23CBD0EB18CEBCD5E6B2EDA5C4B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 9731936760A661DC932C9E800A4FE786 /* RCTVibration.mm in Sources */, - 02DAE424FDDFF1A69DF81CEA0AE15118 /* RCTVibrationPlugins.mm in Sources */, - 78E9260DC3A4E506E03CB1B1424F6541 /* React-RCTVibration-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A41D60B3E1070B6690F275D3FE51351A /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - B1041EDA823212B5AFDA698835C94AB6 /* RCTSettingsManager.mm in Sources */, - 8525BFBF4B2B4EF21E7E530E78A32568 /* RCTSettingsPlugins.mm in Sources */, - CFF3C1D309761F67BEE88FF97D90A94A /* React-RCTSettings-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A43EDAC78DF808F2F5324033BFAB207F /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - CB5BA34E553A19B398F371E4C40F90EE /* crashlytics.nanopb.c in Sources */, - 3FF1E30E35970C2120600CA9E4FD256E /* FIRAEvent+Internal.m in Sources */, - 51B68A31C45BEA3AE33B86F1F1D064C8 /* FIRCLSAllocate.c in Sources */, - AA592CE68140FC8E367190B0880C7DB4 /* FIRCLSApplication.m in Sources */, - 8739A440984502A55767625628D76132 /* FIRCLSApplicationIdentifierModel.m in Sources */, - E740C69498B9F0B88D6A5099B839C687 /* FIRCLSAsyncOperation.m in Sources */, - 389BA58E8373E5DB69932EEF264DABE8 /* FIRCLSBinaryImage.m in Sources */, - 7AE35382E3DD00CC922717F76964F7C4 /* FIRCLSByteUtility.m in Sources */, - EF9B15038C3EE1070127B90340F80400 /* FIRCLSCodeMapping.m in Sources */, - 3EFBB05AF7B45A334808F28C0567B9C1 /* FIRCLSCompactUnwind.c in Sources */, - DEFC9E125F84D6F8E772B1CF4D916A07 /* FIRCLSCompoundOperation.m in Sources */, - 697FEB715CFA7494A9007B8A251C7672 /* FIRCLSConstants.m in Sources */, - 41CC6B39EF4198876A6721D28A25E0BC /* FIRCLSContext.m in Sources */, - FFC32AB96982CC68D074B1777D0879A7 /* FIRCLSCrashedMarkerFile.c in Sources */, - 8C5E8438EAC7E0CEB042DCEC97040AC2 /* FIRCLSDataCollectionArbiter.m in Sources */, - FC1B782A5C7C57D6326D0AA99F7B3F7A /* FIRCLSDataCollectionToken.m in Sources */, - 4DA8B1D619375996D0887F0994EDFDB4 /* FIRCLSDataParsing.c in Sources */, - 2B21A04A7813F437DE3C7AA0BEECCC6B /* FIRCLSDemangleOperation.mm in Sources */, - F906BBF277C1C13C8DE3217929441C97 /* FIRCLSDownloadAndSaveSettingsOperation.m in Sources */, - F8C4F12EF79EFDC9FD59AD8FE322F5BC /* FIRCLSdSYM.m in Sources */, - B0AEDB93D15C1D49589432164E0A0DFA /* FIRCLSDwarfExpressionMachine.c in Sources */, - 04DD5F982496C3A9BCEBF3F75745CA52 /* FIRCLSDwarfUnwind.c in Sources */, - 7C81BC8A3A0BC244F1D1F71350F2C2E1 /* FIRCLSException.mm in Sources */, - 10BFF1ECC1F244483DBA8BFE191024E1 /* FIRCLSExecutionIdentifierModel.m in Sources */, - 674C7B4D78655585688DD0F8A34BC790 /* FIRCLSFABAsyncOperation.m in Sources */, - 14AA90CBA8C91F49826B4921D455222C /* FIRCLSFABHost.m in Sources */, - 21A948891A53A7F15D008E5377F9D1E0 /* FIRCLSFABNetworkClient.m in Sources */, - 900498AC6B8C0EBDE2BD1F722CEB99D2 /* FIRCLSFCRAnalytics.m in Sources */, - 0F991D549006E82642609CAD4D4878AB /* FIRCLSFile.m in Sources */, - F6FCE041682C9851DE84BBFBE2CA0D03 /* FIRCLSFileManager.m in Sources */, - 7610401B8FF393D8D2D1324B067B44D1 /* FIRCLSHandler.m in Sources */, - C61F9FC05E49A74638DD7F61C4743917 /* FIRCLSHost.m in Sources */, - FBB5C3336306487F5F61796B00E669BF /* FIRCLSInstallIdentifierModel.m in Sources */, - 85FB65FE338D881E8440BB25BFFBED28 /* FIRCLSInternalLogging.c in Sources */, - 1DB88E39F519B1B19A0CFF53507025DA /* FIRCLSInternalReport.m in Sources */, - 78813B3AD82F3DC8D6C9F87FB1DED6AB /* FIRCLSLogger.m in Sources */, - 262F8B940D5B9417D26C5E7AA2BBFEDC /* FIRCLSMachException.c in Sources */, - D1CF36D112CFA630EFAC4224BD2F3F37 /* FIRCLSMachO.m in Sources */, - 3E108EBAAAEF3285BC72EC4704E12DB5 /* FIRCLSMachOBinary.m in Sources */, - 4770F52570ED1E1528E93C6CEEE0CB0A /* FIRCLSMachOSlice.m in Sources */, - 7F7F98CF1D338BE8D43345CAF1F00BBA /* FIRCLSMultipartMimeStreamEncoder.m in Sources */, - 1E191B681F527B1B39FFDEB503538464 /* FIRCLSNetworkClient.m in Sources */, - 386A08AAF2A745D747214FF40FF84FFE /* FIRCLSNetworkOperation.m in Sources */, - 5C57DC14CFE6505D66E57395AB50845C /* FIRCLSNetworkResponseHandler.m in Sources */, - ACBCCA9DE8DE930FC5E07307C32B8496 /* FIRCLSOnboardingOperation.m in Sources */, - 6C11B33A8A71534CA2D8FA9F35321F56 /* FIRCLSPackageReportOperation.m in Sources */, - A662A7DAFAE85E95A8B9ED1263FFD15C /* FIRCLSProcess.c in Sources */, - 270D5F9E8FB6FA355955B1B4C445950C /* FIRCLSProcessReportOperation.m in Sources */, - 7A9B8BBC0A939B0521FAF3170F08B80B /* FIRCLSProfiling.c in Sources */, - A285F287E3910C9C4B6EADBF224AEE1D /* FIRCLSRecordApplication.m in Sources */, - 24351005C3E7139C8DD331A7F8C2D1CE /* FIRCLSRecordBase.m in Sources */, - A3031CDC1FBA0BB3258BF144444D16A7 /* FIRCLSRecordHost.m in Sources */, - A1E742A282E57E69D1D8AC45902F2D98 /* FIRCLSRecordIdentity.m in Sources */, - C96494FD735C4FC73914D8B02E1240CE /* FIRCLSReport.m in Sources */, - FABB13441AC008E4956109563D55B445 /* FIRCLSReportAdapter.m in Sources */, - 19E92824F7E2B48E9F718D8D9F90520F /* FIRCLSReportManager.m in Sources */, - BDA5EAFC37948EA0397FA37DC751853F /* FIRCLSReportUploader.m in Sources */, - AB6FEFD9E6C1FD9CC76DBE30F2E6D36D /* FIRCLSSerializeSymbolicatedFramesOperation.m in Sources */, - 491834486F7476618C6FA9E517C8E5BA /* FIRCLSSettings.m in Sources */, - 9117C01451CE97C7F3D42A02DD74B509 /* FIRCLSSettingsOnboardingManager.m in Sources */, - 575A39E812DA65BEDA065EA8B085E32D /* FIRCLSSignal.c in Sources */, - 9C3AA42A8FD832C36F7A32030EFAA1C1 /* FIRCLSSymbolicationOperation.m in Sources */, - 9FF35C97498281E43410CBAE761F9FE5 /* FIRCLSSymbolResolver.m in Sources */, - B765B44F69E81C883C0FB4C0E4060385 /* FIRCLSThreadArrayOperation.m in Sources */, - 431370BCC99FFA5B84DC35E298403669 /* FIRCLSThreadState.c in Sources */, - A4684845170A902C70952CDB13A07606 /* FIRCLSUnwind.c in Sources */, - 3ED437AFECAD66D631D4BC4EC777E487 /* FIRCLSUnwind_arm.c in Sources */, - FF80D9C411BDBF0BFF5F9CCD4F227C44 /* FIRCLSUnwind_x86.c in Sources */, - 1E14DFA4C04B8243FD9A55ECA73415AA /* FIRCLSURLBuilder.m in Sources */, - DF2CE038D932876A40DCC80498C14B17 /* FIRCLSURLSession.m in Sources */, - 0B088EE7C11C5BF8BCCBBA6C52779525 /* FIRCLSURLSessionConfiguration.m in Sources */, - 2C70A5677DB4FC9F1B6016B0CBC8B686 /* FIRCLSURLSessionDataTask.m in Sources */, - 0064B236332CFBC00BFAB76B001AFC2F /* FIRCLSURLSessionDownloadTask.m in Sources */, - 26C20C07FCD50D475B4786FF662D7107 /* FIRCLSURLSessionTask.m in Sources */, - B215AFC4D7F1C5873E5C98E094E5BE30 /* FIRCLSURLSessionUploadTask.m in Sources */, - 354ED464519AB071AFDEFBC348815268 /* FIRCLSUserDefaults.m in Sources */, - 0DFB77BC01A7C3CC91ED646FE2A0A02C /* FIRCLSUserLogging.m in Sources */, - B1F1901CEB255C6FC20EF9C73D90389B /* FIRCLSUtility.m in Sources */, - ED0B07E6C8EF7E0E16D8AC7C78FC43A4 /* FIRCLSUUID.m in Sources */, - 16156898E939BF4227EE2E7E0168ED8F /* FIRCrashlytics.m in Sources */, - B977C97199E6A31796E29C5535E90188 /* FirebaseCrashlytics-dummy.m in Sources */, - 3D5FBD93C7B945B223CDC5B18A16437A /* FIRExceptionModel.m in Sources */, - 510B58409DFFE76471261A006F839374 /* FIRStackFrame.m in Sources */, + EE842B3A40BD13FA6EF8C6C17304AA3B /* Pods-defaults-ShareRocketChatRN-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -29960,87 +31085,58 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - AEB0983C23E34F4CBDCDEF6E1D7FD6C0 /* Sources */ = { + ADF251BC5EA8DAB367F97065FFE9DB22 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 2E72E47AB830163FB8AB1FDDEE55782C /* Assume.cpp in Sources */, - 63227716728C55ABF741C081AC7E721A /* AsymmetricMemoryBarrier.cpp in Sources */, - 1858D59BC7A8FC067C5F36ADFC1FA91D /* AsyncTimeout.cpp in Sources */, - 51210DDC300ABBEAF5254B6097E5E28D /* AsyncTrace.cpp in Sources */, - CB7BE0DE0518E43F7FB4E62F1CE760FD /* AtFork.cpp in Sources */, - 9CDE874B5F8A3450DA04E06CEA2F7DFC /* AtomicNotification.cpp in Sources */, - 3052744B8509E5CB8A66180865A0A520 /* Barrier.cpp in Sources */, - F0A4C88788A527F9EECD7F3A1BC435F2 /* CacheLocality.cpp in Sources */, - E34DE4DDE53B27536429559F370BC7E0 /* Codel.cpp in Sources */, - 94B4873A40503DFF996F12D1256B7547 /* Conv.cpp in Sources */, - 2EB55FB7B2A6107656AB449BC639B016 /* CPUThreadPoolExecutor.cpp in Sources */, - 46F6C2DA184370375A08A79588D4D2A1 /* CString.cpp in Sources */, - 70BD9B2F2793EB9D64BDB9845CC02725 /* Cursor.cpp in Sources */, - 0AF9CD5704D29D0A2BE0B7FCD20487B4 /* Demangle.cpp in Sources */, - 963828E717410AB81FE2D33085FEB401 /* Demangle.cpp in Sources */, - D182D0BF3DADE78B6689411CAC9BCFCA /* DistributedMutex.cpp in Sources */, - C5E123DAA022BA23098E21BFAA523FB2 /* dynamic.cpp in Sources */, - 12549937CBB2355022E2BD0F409A3347 /* EDFThreadPoolExecutor.cpp in Sources */, - C4564D9CC9FCA5A75FE31071364E9ABD /* EventBase.cpp in Sources */, - 225CE077D507315DD848BEC2F3100F69 /* EventBaseBackendBase.cpp in Sources */, - 88D27AC49E4DA6DA63507E1DA7B4DED9 /* EventBaseManager.cpp in Sources */, - D30DD85EAF9B877F834B6C37FB115269 /* EventHandler.cpp in Sources */, - 82A461DB41688B941D47D1C1AFF5284B /* ExceptionWrapper.cpp in Sources */, - 408B7E4C81DC16EDE8640CAB4162CA16 /* Executor.cpp in Sources */, - FF7A540FBD760B81A5AC8C790ACFC30F /* ExecutorWithPriority.cpp in Sources */, - A8DE9B6998154A180867D834270E977F /* F14Table.cpp in Sources */, - 87E1EA8CF3DC8EBA8B8C8633D8445583 /* FileUtil.cpp in Sources */, - F06C49CEDD5BFDF07059776AC3BFA4C5 /* Format.cpp in Sources */, - 0C1DA4769BF825F6F459A065355AF7D2 /* Futex.cpp in Sources */, - 3554C6FD21AB7548491F4DC45492E983 /* Future.cpp in Sources */, - CD72921CBE89270EA3400182F3C335D9 /* GlobalExecutor.cpp in Sources */, - FEB9C27C7B21F1082FA9A9F138F7506A /* GlobalThreadPoolList.cpp in Sources */, - 1011E4925DDDA75245F62F5EE0128E23 /* Hardware.cpp in Sources */, - D340B0F6688F4968DFA889FDECBB74BA /* HardwareConcurrency.cpp in Sources */, - 0E35144A2D079A1D20357D472A864EE2 /* Hazptr.cpp in Sources */, - 61BE994D2F7078DB2843E024D5D01616 /* HazptrThreadPoolExecutor.cpp in Sources */, - 9269A08DFD1D6E9D293C6AB2B565BC96 /* HHWheelTimer.cpp in Sources */, - 50E50AE92549FAE67A72B9B8F39FF633 /* InlineExecutor.cpp in Sources */, - 9EBD72336ACC0C90DD4297A7AB12622A /* IOBuf.cpp in Sources */, - E93C77A5DF946F465493E5C24C8E08F6 /* IOBufQueue.cpp in Sources */, - 0702DE9B5D10A6DED6C78854EAD198A3 /* IOThreadPoolExecutor.cpp in Sources */, - EFEABA453610212041249B9E2C4C44C7 /* json.cpp in Sources */, - 01EEB05CAE544467B80ED4E75FCFEDE2 /* json_pointer.cpp in Sources */, - C092722397B8BF01DA62B022C82E29B6 /* MallctlHelper.cpp in Sources */, - F548D6BF33E92270294A87E2679B892B /* MallocImpl.cpp in Sources */, - 3543678784873048A26355B6BACA3944 /* ManualExecutor.cpp in Sources */, - C9F091EBFCD1B28579C37C1295E00F0F /* ManualTimekeeper.cpp in Sources */, - F41ED9D7784D3526428A0D58FF30E1C3 /* MemoryIdler.cpp in Sources */, - 4893BEB9D6EEEB180C681E83C19B1FA0 /* NetOps.cpp in Sources */, - 475A28F37D7A524981FF770A8E42B5C8 /* ParkingLot.cpp in Sources */, - 948E689D0943BFD42300E232031039D8 /* QueuedImmediateExecutor.cpp in Sources */, - 89A5839C1836A902832DDDB250B040AB /* RCT-Folly-dummy.m in Sources */, - 4A13081C0F9834A4821026611944038E /* Rcu.cpp in Sources */, - 7B2173FEEB8E653F8777509B00B4DC03 /* Request.cpp in Sources */, - AB4B1E844D00E6DFD9C3F848D6BAA0A4 /* SafeAssert.cpp in Sources */, - C75E3A1BBECEDAE8505FD827F3D80D05 /* SanitizeThread.cpp in Sources */, - D72B98A4B8C84CC69B1484B9EEC337BE /* ScopeGuard.cpp in Sources */, - 6E691F1FCC1CA9F2B95AC43B12E4791F /* SerialExecutor.cpp in Sources */, - 5A0618F7310974C74061256F3E65F065 /* SharedMutex.cpp in Sources */, - 6CEB2297FEFED25BAC9015FA22A65292 /* Singleton.cpp in Sources */, - 2F8FE53F0D6AD4464B623495D75F2CC7 /* SingletonStackTrace.cpp in Sources */, - D57242EEA45E10DEA9B85529CD0F6D1E /* SpookyHashV2.cpp in Sources */, - 73B13B6183953AE797BC0644C78364EB /* StaticSingletonManager.cpp in Sources */, - 7390CA76672DB8642217CD87EB6A70B2 /* String.cpp in Sources */, - 85E2C20A0ABC6C424BDDAEA79A59E0DB /* SysUio.cpp in Sources */, - 103A73088A86D47E2746BAC11340FEA7 /* ThreadedExecutor.cpp in Sources */, - 8755878EF9A2D2643F2A5096B84321F1 /* ThreadLocalDetail.cpp in Sources */, - 8FC107D74CE5C4C4DC234E85012D98DF /* ThreadName.cpp in Sources */, - 173B124AF455F287C17A73A18BF838B1 /* ThreadPoolExecutor.cpp in Sources */, - 83B79CBFF090D1980468451601BD08CB /* ThreadWheelTimekeeper.cpp in Sources */, - 4C8DCCC3164563FE10E84073F83A54AA /* TimedDrivableExecutor.cpp in Sources */, - 63D0DFA1AAC44EB1C9413878BEFD8548 /* TimekeeperScheduledExecutor.cpp in Sources */, - 633EE6A21ED6870836333924336D93B1 /* TimeoutManager.cpp in Sources */, - 8516BD2AA173117F1779CEE74DFB15F0 /* Unicode.cpp in Sources */, - FBA6B332A427459389E4775C1DAB82E3 /* UniqueInstance.cpp in Sources */, - 3CAA24B0C95A2174B0F96C73EF1FE543 /* VirtualEventBase.cpp in Sources */, - A1FC73385AF83AEA5D0268FA16406CDC /* WaitOptions.cpp in Sources */, + 09AEC5DEC14AB7D111C1DF36DFD7A1AD /* RCTAnimatedImage.m in Sources */, + E5558D09A1CAA1BF0B765E9A32E030D9 /* RCTDisplayWeakRefreshable.m in Sources */, + DC6E6A1A98E8B24F39EA0D6181805A66 /* RCTGIFImageDecoder.mm in Sources */, + 1E30EEB7D6B9759D49F69E1416E3B440 /* RCTImageBlurUtils.m in Sources */, + 56A21965CF32BA684B8581838BE19F35 /* RCTImageCache.m in Sources */, + AFB718D73456E3985F6A9536B44D463C /* RCTImageEditingManager.mm in Sources */, + 3B2098DABCFE776E94FEE04DF9557CF0 /* RCTImageLoader.mm in Sources */, + 689A03B1331EB2ECAEF60397C3C14027 /* RCTImagePlugins.mm in Sources */, + 3C83A352957F4D0F78D2A55A9EF7D879 /* RCTImageShadowView.m in Sources */, + 2C7498F371D225A59784DD693611FB7D /* RCTImageStoreManager.mm in Sources */, + 9A530787EE154EC14A1E0C2D94DA0B5D /* RCTImageURLLoaderWithAttribution.mm in Sources */, + D1F3694BF15942027B96B7B51C44037E /* RCTImageUtils.m in Sources */, + 115EFCFD35A75A5E936E522290FAAD1A /* RCTImageView.mm in Sources */, + EB33AEF5874FE6570CCB62F87298A82E /* RCTImageViewManager.mm in Sources */, + 30C84494833989A226DDE968247C8173 /* RCTLocalAssetImageLoader.mm in Sources */, + 09F15827B9B30D7FAFB16A3ADF53557B /* RCTResizeMode.m in Sources */, + 3FD1E2BAF8E02708AD77D0CF6ACEDE76 /* RCTUIImageViewAnimated.m in Sources */, + 5B354EA4FB84CF6F18B858676BC0ED74 /* React-RCTImage-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + AEC588E7FA59437E1592077629529090 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 08CC00DC6F526AAF0A9121114A369342 /* RCTAdditionAnimatedNode.m in Sources */, + 708596174C426482EAB10A939EE95A73 /* RCTAnimatedNode.m in Sources */, + 4FE8D98987A6FDD3B1A738A9BC1BD9A1 /* RCTAnimationPlugins.mm in Sources */, + B73A17158667F865B59F6FF3974C9AD7 /* RCTAnimationUtils.m in Sources */, + 2881A409DC377A1F6222AAC4B5A19F0F /* RCTDecayAnimation.m in Sources */, + 1AEAA393B0602568C6A83EFEBD5890DA /* RCTDiffClampAnimatedNode.m in Sources */, + 7B36A14A4EFCA658EDF10D5D5239D94F /* RCTDivisionAnimatedNode.m in Sources */, + E2DB19525BA7F7B8A4FFBD0D59429E8D /* RCTEventAnimation.m in Sources */, + 2649DFD21575F940A3F141DE39D20B6F /* RCTFrameAnimation.m in Sources */, + 620BBD004B46D6532436B369989B8805 /* RCTInterpolationAnimatedNode.m in Sources */, + AE4B01E7A1BAD40332ADE43828CB8170 /* RCTModuloAnimatedNode.m in Sources */, + 748FDF3139F4EEBF346D3E4511BCE23E /* RCTMultiplicationAnimatedNode.m in Sources */, + 8209AB28F2C10DE6E05725D67980B868 /* RCTNativeAnimatedModule.mm in Sources */, + 290D481DD7BD973CB373FF1082807305 /* RCTNativeAnimatedNodesManager.m in Sources */, + 460676F48B947C7C92DE87157A4977C6 /* RCTNativeAnimatedTurboModule.mm in Sources */, + 789AF8DAA29E045F7DAEC605CFE51B6A /* RCTPropsAnimatedNode.m in Sources */, + 121897906ACB87FDAEFB104BC38BC0FE /* RCTSpringAnimation.m in Sources */, + 4CC475EAFA33E11FCEC6CB223DFDF4DB /* RCTStyleAnimatedNode.m in Sources */, + BA2EC5894867731AC833E5117AC88C1D /* RCTSubtractionAnimatedNode.m in Sources */, + C628502E7671AF7DD973E0C886FA4D81 /* RCTTrackingAnimatedNode.m in Sources */, + 3B5D0BC23D913CFC18B4AB92B50CE407 /* RCTTransformAnimatedNode.m in Sources */, + 610E940BDD71169498ECD3AA2234C11A /* RCTValueAnimatedNode.m in Sources */, + 2AB7867E0D3A0245079044891019401A /* React-RCTAnimation-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -30078,309 +31174,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - B4DD86F1C94D21EF3FB8CF73A9EEB524 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - AE73C6FA4EFB0E0D7E31CD9BBE857CC6 /* alpha_dec.c in Sources */, - ADFF494EB8BFF97EDC8D91C69CF1F31F /* alpha_enc.c in Sources */, - D2BF86335890522417EEBB4EBA7E17E7 /* alpha_processing.c in Sources */, - CFB7BF555DF79252AC2EE212826AE604 /* alpha_processing_mips_dsp_r2.c in Sources */, - F127391E5E7EB0DF5B897220F9EABB02 /* alpha_processing_neon.c in Sources */, - 87669BBD749638ADA37D20CD9301AD36 /* alpha_processing_sse2.c in Sources */, - 3B63613C7DA61F6D02769ABAEB2E75D2 /* alpha_processing_sse41.c in Sources */, - ACCB783FDC8CC8A0BC3FB108E4866035 /* analysis_enc.c in Sources */, - E29BA7D776737CB8A0161E8D4D48569D /* anim_decode.c in Sources */, - 6D6930054A2802F3610A9657D7A383FE /* anim_encode.c in Sources */, - B37D65BDA0F63C2D2678FC8C25048625 /* backward_references_cost_enc.c in Sources */, - 6BE26AD65D9B73EA9D6E16B8F86AC1C7 /* backward_references_enc.c in Sources */, - E1200C7EEF81966A8D8DA8B96352E2D4 /* bit_reader_utils.c in Sources */, - 3F3F5BC1B5B20AF5E257DDBC42EA09C5 /* bit_writer_utils.c in Sources */, - 20E81AF87B4573091F067D454837C1AF /* buffer_dec.c in Sources */, - 30F575F047BA438CC4050289F684D24A /* color_cache_utils.c in Sources */, - A9D6A9F7AE48373388EB2A16E065A315 /* config_enc.c in Sources */, - C7245F17C026B0EFDDEDE3DEE0FBAEF9 /* cost.c in Sources */, - 8A0E6E0B51AD7E17CB274663F7422D32 /* cost_enc.c in Sources */, - 189A38D0828F5ABA3F69404C9683E91A /* cost_mips32.c in Sources */, - DF887D34E44D534ABE630EBC09666D91 /* cost_mips_dsp_r2.c in Sources */, - 2013F5326F318140ECCF7E5037DEBD3F /* cost_neon.c in Sources */, - C62313BAF82E4F36D5A6992675B008E9 /* cost_sse2.c in Sources */, - 7926FCBDE88888670900800071EF2D96 /* cpu.c in Sources */, - 7FF11CB761B34E4B8F03FA972DBC626B /* dec.c in Sources */, - 48A52A9477761D9EF10B6EB3094E58DB /* dec_clip_tables.c in Sources */, - 4C212A8AF02142391DA5A5D7ADDA22D6 /* dec_mips32.c in Sources */, - DBEDE29DC3CA3CD032C223DAD9F5E29C /* dec_mips_dsp_r2.c in Sources */, - 3397A2D7BB300BC921181207418D826D /* dec_msa.c in Sources */, - 23B5BB578B129845B7DAD4F4560D776C /* dec_neon.c in Sources */, - F1C5DFE2502E7275324BB874907A543D /* dec_sse2.c in Sources */, - 8EA786B0D42D615DBA1B530027750D66 /* dec_sse41.c in Sources */, - E9EBC98A1C5436405C1FBCD50D15CDF8 /* demux.c in Sources */, - AB9FB6976149CA1E01306B33B06CDB57 /* enc.c in Sources */, - 665AC3693C8C0E4094DEAEFA9D28B16B /* enc_mips32.c in Sources */, - F0A02DB06A05404974BEAC7AE12CD4B3 /* enc_mips_dsp_r2.c in Sources */, - 9AF64436659585BF77711DA1CF03E533 /* enc_msa.c in Sources */, - 605AFF0E786AE801CFA85CB31555B92E /* enc_neon.c in Sources */, - 86DB7A4F33302597616F5B9ECA487623 /* enc_sse2.c in Sources */, - 3FD01E9ECE8C4E46C0AF5BB5D04750F0 /* enc_sse41.c in Sources */, - A89928EDCA178C6E56D93AFF76FD969C /* filter_enc.c in Sources */, - 88E5DB0CF8ED047EDDF28C48DC88590B /* filters.c in Sources */, - 2F58089F385FF1CC8DC0AD827B4B8265 /* filters_mips_dsp_r2.c in Sources */, - 0F6932B9BD897BB2ECB873A1A98922B9 /* filters_msa.c in Sources */, - F91310E08203E5D831790851FB243BCE /* filters_neon.c in Sources */, - E9EADC4B4F07240F317BAC8448D9B77E /* filters_sse2.c in Sources */, - ED3DE750CDF388D1F5EB034C7D1EAA03 /* filters_utils.c in Sources */, - 775C4E53C6C889C7133DD9F5CBCA3898 /* frame_dec.c in Sources */, - 6D1DA6DB291DDE16DAA47F4DA79C1DBB /* frame_enc.c in Sources */, - EC59095B6757520663D6148CC426AC24 /* histogram_enc.c in Sources */, - EEDE9DBF81AEACF1FBE67C6E9AD61A77 /* huffman_encode_utils.c in Sources */, - 17E84EACBC65BAF111B637160F4F63F5 /* huffman_utils.c in Sources */, - 6231534842F0997AAD698682F8349974 /* idec_dec.c in Sources */, - 8F3EEC566EFA73F57828D1A367EB5080 /* io_dec.c in Sources */, - 9AEC57CC7409696DE53FFEFB034FD0FB /* iterator_enc.c in Sources */, - 8D5E3926228EC99AA98C8BB5E52426C0 /* libwebp-dummy.m in Sources */, - 2F0F1DCF9898B1E1A68B992318A91E66 /* lossless.c in Sources */, - 276D1449F6BCD6C58D425038B4027C48 /* lossless_enc.c in Sources */, - 089E4D9F3C8C908CBEA1E912133E73DF /* lossless_enc_mips32.c in Sources */, - F628FFF7169AE07A3F0275BC9FB7D864 /* lossless_enc_mips_dsp_r2.c in Sources */, - 21A6C315B989ED87CCCEAD93B37E888E /* lossless_enc_msa.c in Sources */, - 5E170A4E0E96E85293C5E77B7EC84C8B /* lossless_enc_neon.c in Sources */, - 658C090D11BB7D2452914D2372D2BC80 /* lossless_enc_sse2.c in Sources */, - 1BB9A61DCB5839594F13D0E27C8FA832 /* lossless_enc_sse41.c in Sources */, - 6C2419B20BB154A248C4821740B2A303 /* lossless_mips_dsp_r2.c in Sources */, - AD8F82B5CE40F26AF430FAC55BB077A4 /* lossless_msa.c in Sources */, - A9AA9CDE56BAF643450BF7D00C02F463 /* lossless_neon.c in Sources */, - BA742431DAB521727B4EF3438D0D4767 /* lossless_sse2.c in Sources */, - F0074FC32FA2838BFBE9F3A364991BA9 /* muxedit.c in Sources */, - 01782AE3BB6C014FB7658BABDCDC126D /* muxinternal.c in Sources */, - 85197273AE3359A249C630DA2757F3AA /* muxread.c in Sources */, - D55CCB9642A3528250A3B1E3231FCD54 /* near_lossless_enc.c in Sources */, - E0F4A1FCDBCAC49E10D1CFBBEF678B1E /* picture_csp_enc.c in Sources */, - 51B497E76E5C5DB4CA63992980EFC23A /* picture_enc.c in Sources */, - 9EB80F29CEFAB1E7786440A2BEDA6DAF /* picture_psnr_enc.c in Sources */, - AD17F5E1FB50FEF945BF251757D45D63 /* picture_rescale_enc.c in Sources */, - CC3173CFD0C36AEE56899DBF0FD36B63 /* picture_tools_enc.c in Sources */, - F3C8914FFA21DF9BDCA40FAA01B46D02 /* predictor_enc.c in Sources */, - 988B3373C0000C51E23D2175FDFFE9E7 /* quant_dec.c in Sources */, - D28D75DAAE56917719D8170B98F0FA5D /* quant_enc.c in Sources */, - F3AF45B9B16BA74C9D703FABB3B5E6DB /* quant_levels_dec_utils.c in Sources */, - E823029BBF62C205DF08F7304A4AC7B7 /* quant_levels_utils.c in Sources */, - 83C55012BFF7C1540153C8C7C024D2A1 /* random_utils.c in Sources */, - 2F1002C9C00669E4BA2827B814512106 /* rescaler.c in Sources */, - DE1739256BEBB8B308A4D3372925DDE8 /* rescaler_mips32.c in Sources */, - 57CC5A306BFF41C4E5ADDAF14D932B35 /* rescaler_mips_dsp_r2.c in Sources */, - 1B74EEC1E1D0E465CB15A49BAE27F7F1 /* rescaler_msa.c in Sources */, - BBFB67ADDDF938347BD74D90E99C8C8B /* rescaler_neon.c in Sources */, - E35141DAC06BD31C5A25C318DBD30C88 /* rescaler_sse2.c in Sources */, - 2FA80364473B3775E333CF1A426D408C /* rescaler_utils.c in Sources */, - B12F2D71ACB5082D9E1D8018D71904EE /* ssim.c in Sources */, - F04DEAA0A6BF74229F8A9F61EEC6BF76 /* ssim_sse2.c in Sources */, - A4349126CC036613DEC92C2A2230E03B /* syntax_enc.c in Sources */, - 607ED1D713DDA0D6C14F6425A1F2AE58 /* thread_utils.c in Sources */, - A263BFB0D23C860117DC757FDD54EB2A /* token_enc.c in Sources */, - 7FA50B6EBF221F4B5A2D20272E20AC7D /* tree_dec.c in Sources */, - 931C4C1487E0F0C8177E0C8202E8E5E0 /* tree_enc.c in Sources */, - 5AB9B276C9DB16433FD388B6A3FA5E22 /* upsampling.c in Sources */, - 1CBD1EE8A3498F7F6A41883B0FA4088D /* upsampling_mips_dsp_r2.c in Sources */, - BF40CB68DCAFA3F0942CCE37A02F3107 /* upsampling_msa.c in Sources */, - 7A97A809BDF6C1F77E0A32612B59958A /* upsampling_neon.c in Sources */, - E6EB8FAC3237E420DDD23971C2E2D1C3 /* upsampling_sse2.c in Sources */, - 854784B4A718F3ACFEEDDDD92AA179BE /* upsampling_sse41.c in Sources */, - 60FB153F0CC33E63B19E47EA743C1E88 /* utils.c in Sources */, - E0F7F9C64E82E9B5773758CCEB3EA788 /* vp8_dec.c in Sources */, - 5DD97ED80463ADDFDE8364D1F67538D3 /* vp8l_dec.c in Sources */, - CBBAEA519940464F344C345D766E104F /* vp8l_enc.c in Sources */, - B2DE5654A944556BF20ECCCFFD1FAC9A /* webp_dec.c in Sources */, - CCE9497BF1ABDBD37B0B6CE34C2561B4 /* webp_enc.c in Sources */, - C9866DDDB6564356812930FAC1B7D651 /* yuv.c in Sources */, - FDE18A761428C6A08A9C22B079570550 /* yuv_mips32.c in Sources */, - FD467196C5A62A25EE608EDCFEDE3D0F /* yuv_mips_dsp_r2.c in Sources */, - 4C5D877FD3713D91B6EF13C0A06B6D32 /* yuv_neon.c in Sources */, - 59BFA7911303A641671CD31ACE5D5E7F /* yuv_sse2.c in Sources */, - 0C122089B7B3F3207EE5F3BAE0BB7D15 /* yuv_sse41.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - B5E076F5FE832AE339A46EAEA1266006 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - D868C791C7090946449BDF4A8B622530 /* Assume.cpp in Sources */, - 08FFF06065F981F224B0C9066D0286B1 /* AsymmetricMemoryBarrier.cpp in Sources */, - 60A0A6161E19273739D1E87ABC31F4A5 /* AsyncPipe.cpp in Sources */, - 000B12094CFEBD27FB23F00C1D9000C4 /* AsyncServerSocket.cpp in Sources */, - 63C534967795B4961726EBCB0216B36D /* AsyncSignalHandler.cpp in Sources */, - 694BDDC94CB0765A60A8CA58EDF3A5A4 /* AsyncSocket.cpp in Sources */, - 860C2C26F70A78C2E11A816C800660B9 /* AsyncSocketException.cpp in Sources */, - 68898F4252C355A86346472172D6B456 /* AsyncSSLSocket.cpp in Sources */, - 9852866E2A42A22C90381178A792BD7E /* AsyncTimeout.cpp in Sources */, - 0E2F80D2A8897E789F6CA4501536A629 /* AsyncTrace.cpp in Sources */, - 596054CD1EDB1EA16C310CC7B3C46BCC /* AsyncUDPSocket.cpp in Sources */, - A799CFA650578189FC32BF32246EF7F1 /* AtFork.cpp in Sources */, - AC0A6F40B50AB72EB81DA6A2FC45FB27 /* AtomicNotification.cpp in Sources */, - ECB236DC9525D658CEE8213EC873800C /* Barrier.cpp in Sources */, - 02F83AFC31A83AA3D22CC67C4AC6818E /* Benchmark.cpp in Sources */, - FB85F16B8EFB2EF83F305E119A2EEE55 /* Builtins.cpp in Sources */, - 8A336ED6CF064845C2E72273A6E8B30C /* CacheLocality.cpp in Sources */, - 6E01DCD66A927C1BE06753E7510B632A /* CancellationToken.cpp in Sources */, - 8C13E9563A921EE081786B80F9657DEC /* Checksum.cpp in Sources */, - FE58DBF705551EB5890276F998B8B51C /* ClockGettimeWrappers.cpp in Sources */, - E2B428F0083AE8D04B8E7A27456E34A0 /* Codel.cpp in Sources */, - F77848E2B1CEC321E45A1F12E1BE79B7 /* Conv.cpp in Sources */, - 60D78FD845B65B24380B100848DFC336 /* CPUThreadPoolExecutor.cpp in Sources */, - DD655438562A2CA74B65D9DAF0843833 /* CString.cpp in Sources */, - 75551D43EDF1FF46DC5DF99CCECCE23B /* Cursor.cpp in Sources */, - 81A2080A9E54A0F2E1CCF57F23D0F503 /* Demangle.cpp in Sources */, - 0AAAD956D306A4A8AC302CA1E65E71D4 /* Demangle.cpp in Sources */, - 7710A8D1F03F369498FE7ECF98E40D2B /* Dirent.cpp in Sources */, - DC02A348C83446CB68ABB15F665514F4 /* DistributedMutex.cpp in Sources */, - 22CB7EA56AA63997139897F5E57B7449 /* dynamic.cpp in Sources */, - 61CC9743AF994598E9544B6CC592CE0B /* EDFThreadPoolExecutor.cpp in Sources */, - 5ACDA435BC6B3C2B9A85DE3EC5286BB1 /* EventBase.cpp in Sources */, - F4B3F770970EFDAF6203DDFFD1F6EDD2 /* EventBaseBackendBase.cpp in Sources */, - E6E0711599AC6072DA2A600246852D68 /* EventBaseLocal.cpp in Sources */, - B39D3E474DC765CF375273B41C501B96 /* EventBaseManager.cpp in Sources */, - C38517A6615EFA7230325766EF37867E /* EventBaseThread.cpp in Sources */, - 22835226D8EC17C8400811B91F52205E /* EventHandler.cpp in Sources */, - 88D179497DEB1D64001E74B069D6EA77 /* ExceptionWrapper.cpp in Sources */, - 3B01427E1FA24250FE189EA50B116A87 /* Executor.cpp in Sources */, - B1EA69629A24FB56EB83185DE0BCD66A /* ExecutorWithPriority.cpp in Sources */, - 7CE5D69CAC0FB24EAAECD91BFFEDD891 /* F14Table.cpp in Sources */, - 3C387441AD7A451A3EE11476BE66BBA1 /* Fcntl.cpp in Sources */, - 25995F6706FF64C10B2F3F5F94282B9E /* File.cpp in Sources */, - 205E735F64205C7D6E8A833AD61876B6 /* FileUtil.cpp in Sources */, - 5157C16FE7FEE7B587EF8B0B7A6B61C7 /* Fingerprint.cpp in Sources */, - 77863B47F1CFF045133EABEC12E843C3 /* Flipper-Folly-dummy.m in Sources */, - 70F7066F9C64DFB14B80AE5B308F78B9 /* Format.cpp in Sources */, - 9676852A42DF6BFD14E6CD7510BF8F06 /* Futex.cpp in Sources */, - 4C5DB143B44EF98E124E3C30844F6C60 /* Future.cpp in Sources */, - F8B587EECA82B073D9A863A110BDA265 /* GlobalExecutor.cpp in Sources */, - 4B3A8BA13E818176C818CC70A7DB9051 /* GlobalShutdownSocketSet.cpp in Sources */, - B930FD8CA7AB3F5DB69E3E84ABA1F13F /* GlobalThreadPoolList.cpp in Sources */, - 1B19687A6CE3F746160F01A82EF1C561 /* GroupVarint.cpp in Sources */, - A704344862B1CC3C3281FB107C47F309 /* HardwareConcurrency.cpp in Sources */, - 6B2BF8C6EE3978A7BEDDDFCC1A163F45 /* Hazptr.cpp in Sources */, - 0B4DB9690F07C3AE8D04316C33070468 /* HazptrThreadPoolExecutor.cpp in Sources */, - 6B716391A489A4A3933E6A29CE54509C /* HHWheelTimer.cpp in Sources */, - 816EA15EE7B5595B80A9B8AED2E98E32 /* Init.cpp in Sources */, - DFC0957D191C9C66AA9B842ABC8215A0 /* InlineExecutor.cpp in Sources */, - 98CAC655201F7823AA1E0DDA98F034E8 /* IOBuf.cpp in Sources */, - C7FE7FB93B2ED06F208703EE04B43D07 /* IOBufQueue.cpp in Sources */, - 7BE243874B7D051DBDD92E7803F11E29 /* IOThreadPoolExecutor.cpp in Sources */, - 467D091D07338B2E49A3F8E550DB30D7 /* IPAddress.cpp in Sources */, - 9D47E8478072E94F433A31DF2AC28316 /* IPAddress.cpp in Sources */, - 32A5BD70AC3E15BD3C018A75843F047E /* IPAddressV4.cpp in Sources */, - DDE6B41F7094F1C60CB1ED6956E903FE /* IPAddressV6.cpp in Sources */, - 1EB76B603E467B36F8AC80782F723A08 /* json.cpp in Sources */, - E387AC80127AF773EC4191DA2EF93C2E /* json_patch.cpp in Sources */, - 97F421A5ED692B474FE9A02EF0E88B2F /* json_pointer.cpp in Sources */, - 8A01BB6AD1A514C1055039835A416C10 /* Libgen.cpp in Sources */, - EE7B472F4F4FE938D3385C50E1BC8A32 /* MacAddress.cpp in Sources */, - 5F8FA87F6FC610621843CFB4E2C3D9CC /* MallctlHelper.cpp in Sources */, - E6D9AF440D16FD792F97842ABCC2439B /* Malloc.cpp in Sources */, - 4FC0CB97B26835A024476757460588B0 /* MallocImpl.cpp in Sources */, - EA8F515B42070FCB021CEA65A17CC3EA /* ManualExecutor.cpp in Sources */, - 54AFA736241C04BD6B37B279A163BC80 /* ManualTimekeeper.cpp in Sources */, - 23CD4E3889CD23CBD2323700C5FD69DC /* MemoryIdler.cpp in Sources */, - 96970099E6900637B0CE1B47FF4073A8 /* MemoryMapping.cpp in Sources */, - 402900868A67D952C1BC90ECEAD7CBAA /* MicroLock.cpp in Sources */, - 0EB6FEE08A8FBAE5267ED2621E0333F2 /* NetOps.cpp in Sources */, - DC1B79ED45D977B2D98E7BA55FBE9338 /* OpenSSL.cpp in Sources */, - 9045E03D53BAAC694704403214B4993A /* OpenSSLCertUtils.cpp in Sources */, - E45B11B652B4F0F6A84E02B3DA8C2391 /* OpenSSLHash.cpp in Sources */, - 5E8E44E839AEB982C7CDC861DD923474 /* OpenSSLThreading.cpp in Sources */, - 9942698E2787E31B6E78FA530EE28AE6 /* OpenSSLUtils.cpp in Sources */, - F7388FA0AD49DE48B7D34E3E68E389B5 /* ParkingLot.cpp in Sources */, - 78A9CEE905A4944E912D251B1E3BA84B /* PasswordInFile.cpp in Sources */, - 0BD68F11D82D4F8C6E98D2241A4FF77B /* PThread.cpp in Sources */, - 81DB6B244BEA795C70DAC9D12EAF7697 /* QueuedImmediateExecutor.cpp in Sources */, - 8D176871C154B5383584859DF43A6DF7 /* Random.cpp in Sources */, - 9FC3813B0D0DB1D1D608353DC276CE4C /* RangeCommon.cpp in Sources */, - 91899FE5EDCF2AC801F52BA0CF7D816D /* RangeSse42.cpp in Sources */, - BF1FB723523FBBCF304DFEA53549C8B2 /* RecordIO.cpp in Sources */, - 0616164C2E1DE7848A52F5822D01BB6A /* ReentrantAllocator.cpp in Sources */, - F3B713A3E80FC0CF2D82EF15D53C8DE0 /* Request.cpp in Sources */, - 93AAE9218A474CB4A6A9CE5590F6D94A /* SafeAssert.cpp in Sources */, - D2131FA279278426DD17C64005108DB9 /* SanitizeLeak.cpp in Sources */, - BFAEA5D97DECDB082C552F0E72872834 /* SanitizeThread.cpp in Sources */, - A26B7CEDFAF43088884FE4F5EC8C49D0 /* Sched.cpp in Sources */, - 1BD213A81BD72A27DAD95549520CFA64 /* ScopedEventBaseThread.cpp in Sources */, - B23916E810235023294CAE7298D5D6A1 /* ScopeGuard.cpp in Sources */, - 4B37E0ED8B91B663F0EAFEDA179A38CC /* Semaphore.cpp in Sources */, - E91638D212748D1CDF3B9451F563CE5F /* SerialExecutor.cpp in Sources */, - 6D5A30B108F0A703889C4CCC77418B49 /* SharedMutex.cpp in Sources */, - 5446953D16BE4586487B9165BC9D0C29 /* Shell.cpp in Sources */, - 0791A4939F03B2D8EFDB92F6EFDF4FA4 /* ShutdownSocketSet.cpp in Sources */, - F2482E8001CCABBFB5602BF4B1AAB2D9 /* Singleton.cpp in Sources */, - 38E01A0AFB1EBBB9D5151E0C9F22776B /* SingletonStackTrace.cpp in Sources */, - 841DD1FD281C89C036B486AF2C6E09A3 /* SocketAddress.cpp in Sources */, - 5075A4E8BD4B6F9A1351E242314BE3D8 /* SocketFastOpen.cpp in Sources */, - 2ECF049DBCDEA5135E68104923F47B51 /* SocketOptionMap.cpp in Sources */, - ACC15545A3B867AFD9934A6204B866EC /* Sockets.cpp in Sources */, - 333A1B25E4CA1EC4C72D34D14B91B32B /* SpookyHashV1.cpp in Sources */, - 0A1C6AC8ED95B39137F3F749D2FE7C6F /* SpookyHashV2.cpp in Sources */, - E415E0C759C0124DEF47E663C9C067B9 /* Sse.cpp in Sources */, - 3999FF9872D82CA0ACBBDDE7FE2114B4 /* SSLContext.cpp in Sources */, - 2B5D48193BD33F817ED2EC666D53DD44 /* SSLErrors.cpp in Sources */, - 5E2925E963CF0C75629FE0F80FCF0D32 /* SSLOptions.cpp in Sources */, - 8534AF5D74395F54040F7119A17F2054 /* SSLSessionImpl.cpp in Sources */, - D1BFFA6549997B10B94E89080A58C54A /* StaticSingletonManager.cpp in Sources */, - ECE7C5AE72A41E523B9FFBBA19A87F8F /* Stdio.cpp in Sources */, - B7366623A279813B35396370231AC5D1 /* Stdlib.cpp in Sources */, - C40EF30753A2D6FDDEE70FE80955D848 /* String.cpp in Sources */, - 5EB02539E9213DB2A643A7B68DEEF4DE /* String.cpp in Sources */, - BFE5F3EB96097C7B22C5A8D5C694BB08 /* Subprocess.cpp in Sources */, - 672854309DE2C76F2A5D8F77B90FE51B /* SysFile.cpp in Sources */, - F56DFBA280DD106D888ADD9A6BD09FFF /* SysMembarrier.cpp in Sources */, - 975D883BCF41BBBB2F7D9FE954A2DB8F /* SysMman.cpp in Sources */, - F77D0A1AB7C54B86A8A46520872DB1C6 /* SysResource.cpp in Sources */, - 470EB91C2FC4F316076E54D582665526 /* SysStat.cpp in Sources */, - 9CE262072BF0E1C32DC1CF6CFADF4D2E /* SysTime.cpp in Sources */, - B413FD58BA8E09B6F94E5F07BFCA02D4 /* SysUio.cpp in Sources */, - 4581E6AF52F5345F0A7A7A80AE068CAB /* ThreadCachedArena.cpp in Sources */, - 6DCD04D9846F7F1D1A81FC5017EF4E8D /* ThreadedExecutor.cpp in Sources */, - FBE4C04DBFE284C7B588EA8721DA96C2 /* ThreadLocalDetail.cpp in Sources */, - B115AE242FE15EDD3B5D8F37AAC10FD2 /* ThreadName.cpp in Sources */, - A9A686A4663EDA1F43F565653E42D328 /* ThreadPoolExecutor.cpp in Sources */, - 6E49A83ACF4FB8AEB1BE651DFB653AF9 /* ThreadWheelTimekeeper.cpp in Sources */, - 5095F37153E9631F0FA8A129EE1F6271 /* Time.cpp in Sources */, - 2D4350E03C78E39A3BAC18A254C21E6A /* TimedDrivableExecutor.cpp in Sources */, - 09F98E709A07E4F5D97533B5A158268A /* TimekeeperScheduledExecutor.cpp in Sources */, - 8F3DC51F12812E6CCC59C5F61F590786 /* TimeoutManager.cpp in Sources */, - D5E1A1C1D6E093187239787342FD4906 /* TimeoutQueue.cpp in Sources */, - 9DED79BA4098B49C3182CEFE238443AF /* Unicode.cpp in Sources */, - AD26007B5184B8FC633AB94DA6CFDE65 /* UniqueInstance.cpp in Sources */, - 5D4F02B0139593FC3BEC900C18D55A8A /* Unistd.cpp in Sources */, - A39F5E0DFD1980FF36C3009C6C3F4EF9 /* Uri.cpp in Sources */, - C7A9EBB8B1EF2EA2969A43802F0CF471 /* VirtualEventBase.cpp in Sources */, - BB18DFF3D4E68865EF9AB7939CE9775B /* WaitOptions.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - B82EABD9363D8E5DB135C8383050D80E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 982C8FB9D0E76EC1A0958FDDB77A0866 /* RCTAnimatedImage.m in Sources */, - 3385379F22AF46A20D46E97F789B1C06 /* RCTDisplayWeakRefreshable.m in Sources */, - 9E3C56E4ED62B0E9416DACF38811F665 /* RCTGIFImageDecoder.mm in Sources */, - E31DA284BBDEF115C9066C6B6B838354 /* RCTImageBlurUtils.m in Sources */, - C7B0DB3B4CA5214CF159193B9ACE6794 /* RCTImageCache.m in Sources */, - 9A3147B466AE7998605B8908D1CC4C72 /* RCTImageEditingManager.mm in Sources */, - D2FD6483BDCA4DACB29A7F55BEF92BB4 /* RCTImageLoader.mm in Sources */, - 079AEACD210AB47D3B989F7E01628EC7 /* RCTImagePlugins.mm in Sources */, - CEA0041A9189F89EFD7DEA5303718668 /* RCTImageShadowView.m in Sources */, - 5D3C736E09C0A34298106DFE759839D5 /* RCTImageStoreManager.mm in Sources */, - 0AF31585CCF99402287770F6B492C3D9 /* RCTImageURLLoaderWithAttribution.mm in Sources */, - C6E59E5EB55E0C8BCEFAC58933F3CE75 /* RCTImageUtils.m in Sources */, - D3D07E02BBB41E576E28BB2CC81B555C /* RCTImageView.mm in Sources */, - 11C7FA4D922C7532EB525D748A5FD51D /* RCTImageViewManager.mm in Sources */, - 7C7CBE2E1F60A3B5611708962EEB2EB7 /* RCTLocalAssetImageLoader.mm in Sources */, - 13B8268C29E02F9FD4F499283BBCF8F8 /* RCTResizeMode.m in Sources */, - 75DB6E3782C8B2E9A38AE7A9B64F9C3D /* RCTUIImageViewAnimated.m in Sources */, - 949896117AA04666920F85948D42AD77 /* React-RCTImage-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; BB2024E24D71D2142A09DA6E749DBF5B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -30404,6 +31197,89 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + BCC991817AE4F19B3009D52EE4D80827 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 6A1F7261235C2DD375F9E7FE4EF2F98F /* JSCRuntime.cpp in Sources */, + 3271B61D5311B0A1E22EA540F1C0948D /* jsi.cpp in Sources */, + 038E2DBE07A1E347E75CDCA8AD1D1AB2 /* JSIDynamic.cpp in Sources */, + 7BF8D79B86FDBA7350E8460C878E2DA4 /* jsilib-posix.cpp in Sources */, + F9DB58EDFFBD2FF300718C58DA7CE7EC /* jsilib-windows.cpp in Sources */, + 6251A02DB72390A5C0ECDBAEBFD1E020 /* React-jsi-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + C08A6AE727D4D6D3A9FAEA70756BB5EA /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + A6684C723B4BA6FF7F1E3F582A221488 /* BaselinesAsyncSocket.cpp in Sources */, + 41A9798E0250EB919ACBAEE90FC8DA76 /* BaselinesTcp.cpp in Sources */, + 63673DE21DB1F119EC1D939438DB6D92 /* Benchmarks.cpp in Sources */, + F095FDC20B3FDC932972555EA99830D2 /* ChannelRequester.cpp in Sources */, + 1BD74BD6F353B5DF14065F07B357F5F9 /* ChannelResponder.cpp in Sources */, + A579CFA764794FC388DF642548112395 /* ColdResumeHandler.cpp in Sources */, + 6ED0B77BA74C2B218B0EAE9971B70E2C /* Common.cpp in Sources */, + 95D9A4E9C6C22BCD760F0B4F98D75CFC /* ConnectionSet.cpp in Sources */, + 3D63EB42FBA44BC88FAD046B11549673 /* ConsumerBase.cpp in Sources */, + 7EF5228B349A0A9705737D3366EF9FE6 /* ErrorCode.cpp in Sources */, + B53EF4FF2D793FB3C7F88D716621F395 /* FireAndForgetResponder.cpp in Sources */, + 72AFFE897E8DA214C265F5DC15B4AA97 /* FireForgetThroughputTcp.cpp in Sources */, + A3494010791A1B02EDFFFC93611785D1 /* Fixture.cpp in Sources */, + D8A40B9FDC860CC977827E0A51177CBC /* Flipper-RSocket-dummy.m in Sources */, + 41DC8D5C155C60A9D369996F19991671 /* Flowables.cpp in Sources */, + 55D4426FFCD98521C5E8B02841D11556 /* Frame.cpp in Sources */, + D9A4B1CEC3F8F1E58D71FC63B7157A77 /* FramedDuplexConnection.cpp in Sources */, + 4B2B14B11BBAB7061E32994C675ECB52 /* FramedReader.cpp in Sources */, + 3ECA2ACAD23C3C43D52D7E5864567544 /* FrameFlags.cpp in Sources */, + 7DE99E010F718BBD8EA0270E477F2618 /* FrameHeader.cpp in Sources */, + 770623923B88E39E0AC5D3D95AF462A9 /* Framer.cpp in Sources */, + E3C0B7A799C90330E6182830EA35F0B7 /* FrameSerializer.cpp in Sources */, + 8EEF7CD07FA75F69C2C5859CD72C4F17 /* FrameSerializer_v1_0.cpp in Sources */, + 6811D0C627954C82912E0B0FBCD71ED2 /* FrameTransportImpl.cpp in Sources */, + 1F63274583B5A8D8520FBA89792D4368 /* FrameType.cpp in Sources */, + FD1C5DE1C8EA4DD2B3A7C534407DAE22 /* KeepaliveTimer.cpp in Sources */, + 8219A72DF5F0D9ADF8EE6548F22B1012 /* Observables.cpp in Sources */, + 93A006518188D01FA30E1F6365DC975D /* Payload.cpp in Sources */, + A0810DC5994E2B656E998C7B0700374B /* ProtocolVersion.cpp in Sources */, + D7B16A5FCA924A6B5753536F5BA2C70B /* PublisherBase.cpp in Sources */, + DDFF865D8D064E0B6075E1461369807B /* RequestResponseRequester.cpp in Sources */, + BCE6AFFBB228B0AB83252F2EA6716C7F /* RequestResponseResponder.cpp in Sources */, + 6BA48DB67AB9CA5A4192C9D3C9C26AFC /* RequestResponseThroughputTcp.cpp in Sources */, + 6E9F108D7D1F600FA41DD8FD7B34E427 /* ResumeIdentificationToken.cpp in Sources */, + DA0273ED3C6B6C8E35B2179344B3425E /* RSocket.cpp in Sources */, + 2F67DA389E43964EE5271FB02C284A56 /* RSocketClient.cpp in Sources */, + F9D870A3B72CBE475B83E1ACB9A0C764 /* RSocketParameters.cpp in Sources */, + 1A8BE41F96349EE0FF79E0AE076BBF15 /* RSocketRequester.cpp in Sources */, + 037C957FDE25B5F43759C4F0BA107AF8 /* RSocketResponder.cpp in Sources */, + FC1B5FD19FCDCAF216292C28BE46E018 /* RSocketServer.cpp in Sources */, + 61CBD9E97EBD2B6F2F92C3C0EB28BD38 /* RSocketServiceHandler.cpp in Sources */, + 26CE6ADE5C4058BA9884954DC249CDB4 /* RSocketStateMachine.cpp in Sources */, + 33D7E712B6D5A211E267078385732A82 /* RSocketStats.cpp in Sources */, + C0EAB7F81C5DBB752E7A7A6287547EB9 /* ScheduledFrameProcessor.cpp in Sources */, + 219FCD15E8D1202D62E2225EB1CC36F3 /* ScheduledFrameTransport.cpp in Sources */, + 299283C7E20E0AD83A0737430AED1042 /* ScheduledRSocketResponder.cpp in Sources */, + 1D309C64B4D69A23E8630807F8AA238A /* ScheduledSingleSubscription.cpp in Sources */, + 79E9F5A233FE519BCD4C17C56B7CB560 /* ScheduledSubscription.cpp in Sources */, + F71B248075F1936754E6DDDC27E61B0E /* SetupResumeAcceptor.cpp in Sources */, + 99972D38A478C11F945900513A5B25AA /* StreamFragmentAccumulator.cpp in Sources */, + 41F5664F2892AE0931988788DE71F5B8 /* StreamRequester.cpp in Sources */, + 3A0EBA9C20A091090BCC639E8D8BA6DB /* StreamResponder.cpp in Sources */, + 5F1AFE6A2C8A803A0110BAC9966A2E33 /* StreamStateMachineBase.cpp in Sources */, + 8D810A73247D24216F6C059D1B33842C /* StreamsWriter.cpp in Sources */, + CAF3E80D9F68C3ED544BBBF1CD35C3C7 /* StreamThroughputMemory.cpp in Sources */, + 33E2AC6E5506D025DF52F40BA239CC9C /* StreamThroughputTcp.cpp in Sources */, + E87F01115D4BD92EA8565C73AD975317 /* Subscription.cpp in Sources */, + CD85334FA3FB2C48BDDCFD5B7582A33A /* Subscription.cpp in Sources */, + 69C7BE94793C6FDF6F1C67B14956F741 /* SwappableEventBase.cpp in Sources */, + F55D50D48DDECD7537EBA6D3AE0AF38D /* TcpConnectionAcceptor.cpp in Sources */, + 00807FAA7AEECF6ED98F32666568B370 /* TcpConnectionFactory.cpp in Sources */, + 71F37F6A18744FC71A4B25E1C978793B /* TcpDuplexConnection.cpp in Sources */, + B1B15F99542746BAD493CB3FD93D7A70 /* WarmResumeManager.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; C0C32886C6A5FAE4C6D4815A54525659 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -30414,30 +31290,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - C2EDFA1CDC096A56ECA505AEBECA294D /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 476374FF9ADD8C4F38F86023D1A59195 /* UIView+Yoga.m in Sources */, - BB912E27167B0C11C86C2B280779C8FC /* YGLayout.m in Sources */, - FEAAE853A3F106E71E7DD29953544145 /* YGLayoutExtensions.swift in Sources */, - 30061922CC302DEF2FAAA8AF3B0F8203 /* YogaKit-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - C4C88AB37EF6D7928A0E34583350DF03 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 46845A0DA38A0A7510A53DDC2386F2E3 /* JSCRuntime.cpp in Sources */, - 4E66A05EBC440E58FEDAC1A111DA2316 /* jsi.cpp in Sources */, - E5A65FAA530FE18419CDEF38DD7A73CF /* JSIDynamic.cpp in Sources */, - FEF232259D22D6FD1213FA21C7C01C01 /* jsilib-posix.cpp in Sources */, - 6DFBD9A9044A45547AE30BF3B345195C /* jsilib-windows.cpp in Sources */, - DF2CE400AE17613CBF36FAC15EA1E5A4 /* React-jsi-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; C6F8C9157A210B1E89DACCCE456DAB6E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -30447,25 +31299,36 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - CB272EAEE940FC0EC9D9CFC8C256ED2A /* Sources */ = { + C7242F219CF42105F543D0FB645E7367 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + ABEEBD0673B548D627CC5B3F80BD92D1 /* GoogleUtilities-dummy.m in Sources */, + FEB65AD9CB5FDC801700767B929391BE /* GULAppDelegateSwizzler.m in Sources */, + 98B07CD7F6BC44CEA3E8579EF59EC375 /* GULAppEnvironmentUtil.m in Sources */, + D043B51DB08FE072B47051B436D37103 /* GULHeartbeatDateStorage.m in Sources */, + 5C62820C2BA76DFE7B38ED75B95B5DBD /* GULKeychainStorage.m in Sources */, + 4A038EE7E83F410033B3E4F908E1A2BD /* GULKeychainUtils.m in Sources */, + 8ED434F65C6CD8B824D294363AF15573 /* GULLogger.m in Sources */, + 54215A72743129B3F6E99C1A98273D4E /* GULMutableDictionary.m in Sources */, + A058862E9D28E12FD2BBED5B2C4639EF /* GULNetwork.m in Sources */, + 064607851859163A371F8B63692DF256 /* GULNetworkConstants.m in Sources */, + BE23A68225DE90277929A9DB9E0EBA18 /* GULNetworkURLSession.m in Sources */, + BD162DFD42C21940FDF960095DEF6686 /* GULNSData+zlib.m in Sources */, + 8918DC8B349ABC5E0F857B3F3A79D075 /* GULReachabilityChecker.m in Sources */, + E248DDA578AB249E354FF39B372C5B20 /* GULSceneDelegateSwizzler.m in Sources */, + EA7C749C114B176E77A7E80384C2B23A /* GULSecureCoding.m in Sources */, + 42F0C73EE19E2178BA4ECC0FD2E9835C /* GULSwizzler.m in Sources */, + 52FC8D37FC21A6A1729B415C479B0A45 /* GULUserDefaults.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - CB510AC0584676A07D9CE41AB32EF09D /* Sources */ = { + C8935F11AC9EE2D5F5BB6D52AE2EB925 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 87CC0A8D57DA07BF70F0676A40F906B4 /* demangle.cc in Sources */, - C348C64EBF69F3657D82EF1069B12786 /* Flipper-Glog-dummy.m in Sources */, - CBE810423FAB7CCF9CB2114BE153A744 /* logging.cc in Sources */, - 095F43DCADE91D7938E598F215DF8317 /* raw_logging.cc in Sources */, - D247ED174D1AD98E5ACCAF6E5E5B1CAC /* signalhandler.cc in Sources */, - 91C45888F530937FA343C482E222B988 /* symbolize.cc in Sources */, - 05BAAED191FCC45A5C65B45B23797F92 /* utilities.cc in Sources */, - 209F115B9EA906EBDBFCE1C900C9EBC6 /* vlog_is_on.cc in Sources */, + 1FDAF175D4A758961788CBF5F77DB38A /* FBReactNativeSpec-dummy.m in Sources */, + B8EE199139365259464A9A4E63FB031B /* FBReactNativeSpec-generated.mm in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -30484,6 +31347,26 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + CE43AC7EA78FCFF268F3EFD6B4C3F832 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 6EBC739B30CA8FAD48C3951AFCCA66B6 /* FIRCoreDiagnostics.m in Sources */, + 23F8CC4360DEF34ADA9029CC0CAAC322 /* firebasecore.nanopb.c in Sources */, + B496E304F33DC09768D039910FBFEE55 /* FirebaseCoreDiagnostics-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + D1A788E06A778C565109E2A44D8F75F0 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 37FD29FAC19693BF91BA579CD22F86D3 /* RCTVibration.mm in Sources */, + 65AD94D38D856A41614DFA5415ADC2B8 /* RCTVibrationPlugins.mm in Sources */, + 2858B9CE1458A308A88FBB080973A2BD /* React-RCTVibration-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; D40C93F5D78BCBC2DB2A7E44D19D96C4 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -30532,49 +31415,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - D970F708032E43B20EDBDAF3786F9BE7 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 1382733393A672B19C4790FAB075FB8E /* FIRCoreDiagnostics.m in Sources */, - 1F347B0B4E335CD866F153FF6624F433 /* firebasecore.nanopb.c in Sources */, - DE8AAFD75F72F9350D0F14B73468990F /* FirebaseCoreDiagnostics-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - DBC701217A2AA14B45CD6593FEC3D593 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - D287512894095C23778F97D18579BF75 /* GoogleUtilities-dummy.m in Sources */, - 7EFEF14B66CD2196875F302DC27DCAA0 /* GULAppDelegateSwizzler.m in Sources */, - D46E620C751EC79F37B27D8568520CFF /* GULAppEnvironmentUtil.m in Sources */, - 08BF8286A50E6B3F5229F415F5F046F9 /* GULHeartbeatDateStorage.m in Sources */, - 1FE898BD82B2237F46BE09A378337081 /* GULKeychainStorage.m in Sources */, - 2C388A1AD22D60FB71D974D33126F53B /* GULKeychainUtils.m in Sources */, - AED868A17728B12215B3D613600B5CDB /* GULLogger.m in Sources */, - 7AA790229FB275A0F510573E9170E47E /* GULMutableDictionary.m in Sources */, - F0A3347A6631D62E870AE8AB122BE849 /* GULNetwork.m in Sources */, - 549A96F99EFBCF9B25A6970FF8305F9C /* GULNetworkConstants.m in Sources */, - 809EADED90885D167F794D3D8E66E2C1 /* GULNetworkURLSession.m in Sources */, - 25CEBDCF24E21688AD8EA83F6DD84849 /* GULNSData+zlib.m in Sources */, - 4897C59E796E1439A40A10E143D78F04 /* GULReachabilityChecker.m in Sources */, - 5AED903BBC0B97A1204D6B68159F8258 /* GULSceneDelegateSwizzler.m in Sources */, - CDF918B53BB741CF59B09E5F5CC09603 /* GULSecureCoding.m in Sources */, - 0CF7970F3F985342BDCB63319A493A18 /* GULSwizzler.m in Sources */, - BA5650A5664AE35B6EEC5FBA0C1CF37C /* GULUserDefaults.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - DD8D6945B600427BB34E08C076BC22B6 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - A84CFB959809E2E995380C1737DE43C6 /* FBReactNativeSpec-dummy.m in Sources */, - 4D98F0870323F5517D699E8BD66D6A6D /* FBReactNativeSpec-generated.mm in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; DF039F9E2801C3241F76BE8CBFB51241 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -30601,29 +31441,32 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - DF8402252AF59D34E0ABB8369905B289 /* Sources */ = { + E2228FD4AC6E29FB6D8F41180467CB2A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 8B95E90764A6F1C63D21A740E1E7CF31 /* RCTConvert+FIRApp.m in Sources */, - BAE031A7A3DD3A318F307613DF420CAD /* RCTConvert+FIROptions.m in Sources */, - 466F5DCD5675A5E7E5465057E8D0A313 /* RNFBApp-dummy.m in Sources */, - 31330B81AD7392C99D05C6AD12990EFB /* RNFBAppModule.m in Sources */, - 9D87A525D1513285CEBE82E04980E6BF /* RNFBJSON.m in Sources */, - 35115A263B27EEBFF0F6EE4B2655360D /* RNFBMeta.m in Sources */, - 6A98D50895B8DEC2D98F7F596BF54964 /* RNFBPreferences.m in Sources */, - 615D3FA3DEAFEED5C369D524A44025D6 /* RNFBRCTEventEmitter.m in Sources */, - 9CCA423E7F658356254C660D47E3669F /* RNFBSharedUtils.m in Sources */, - C119C3F9E83F2247F749457FB83282BA /* RNFBUtilsModule.m in Sources */, - C0B78C5B829C2C6B87C83B9B646235D8 /* RNFBVersion.m in Sources */, + 9C7735F2163F420136DB896DE154101D /* RCTConvertHelpers.mm in Sources */, + CAFFC17E94ACA75D2EECDB6D7BA90684 /* RCTTypedModuleConstants.mm in Sources */, + 4F26EBD2749025287A7A88728765E0DB /* RCTTypeSafety-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - E303C721D4F58E43DB50888BC3C3AB5B /* Sources */ = { + E468314F3DA7F4FB7C59EEDAB31A45C5 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - AA0852ACB57A6324AA958B84F2A182B0 /* Pods-NotificationService-dummy.m in Sources */, + E24306CF618953F06E4CEFE26434420D /* CxxNativeModule.cpp in Sources */, + 9C38EED02588E7C20459E10CDED18D31 /* Instance.cpp in Sources */, + 21E6B0A439E4AC6DF9B18FAB2FD60242 /* JSBigString.cpp in Sources */, + E6B8C0201823B78660AFB9CD89094146 /* JSBundleType.cpp in Sources */, + 1E317E04BF342BB3DAB443FD72BB9F5B /* JSExecutor.cpp in Sources */, + E16B561E1E6DD97CFF1FE312FFAD1FA5 /* JSIndexedRAMBundle.cpp in Sources */, + 045000FCEB1B5F5CB4B35EEA57AF018C /* MethodCall.cpp in Sources */, + 3F1B71A9630F8C25208DD6D8011BB669 /* ModuleRegistry.cpp in Sources */, + 76A2FE9AAF994264132E9FAFB1E9D14D /* NativeToJsBridge.cpp in Sources */, + 0E975B760052C9632F66B2F4DB4388E0 /* RAMBundleRegistry.cpp in Sources */, + B59C06871DCE000F9A508FAD6FB2432D /* React-cxxreact-dummy.m in Sources */, + 31BDFEFC6ED8283237E1FAFD05763978 /* ReactMarker.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -30637,22 +31480,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - E608B2CE0D90F098EDB9F3EAB025B603 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 5B034E81C0E9C77BB70A4900412B0D15 /* LongLivedObject.cpp in Sources */, - 5ACFC14723F9255D12B62564DDDFEB37 /* RCTTurboModule.mm in Sources */, - B39588BD010531FD4B244E28DBA83D76 /* RCTTurboModuleManager.mm in Sources */, - 6F1F1CF59C9679D2CE1912F93F9D7B87 /* ReactCommon-dummy.m in Sources */, - 654BF49ABD48B4C1051AAE01EE384235 /* TurboCxxModule.cpp in Sources */, - 3FB6906B2B9FFEB7F8D7A543954EF6B7 /* TurboModule.cpp in Sources */, - 0F029D5EEC0458A1AD8329700E92D6F6 /* TurboModuleBinding.cpp in Sources */, - 356E6276D7F82FFBC316669109A865F7 /* TurboModulePerfLogger.cpp in Sources */, - 06D20036ADAEBDE62611FBD3D6AD6E6C /* TurboModuleUtils.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; E77E7992CBE562A712485A193A2D90C5 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -30662,6 +31489,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + E8861E1DBD8B874B1A985DE947DDE3BE /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 69FC648BAC90824D3423DCFC56C2FEEC /* InspectorInterfaces.cpp in Sources */, + 0705C20C343C509BFF1B5CA41BDE05B1 /* React-jsinspector-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; E99F2F415284E622B0B66CA80C7E4E8F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -30671,6 +31507,26 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + EAAA44F6927E6769C213B4E505BE7D75 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BFECB647E8A5B6D24DF0DD022EFF5C4F /* event.cpp in Sources */, + 5A1801ADF0F9E33B736EECEF44836F82 /* experiments.cpp in Sources */, + 6FA871B54E72B4E9FF0F5F7933D29E7E /* log.cpp in Sources */, + D2C6862CA0D2BE7734CB670D76F5F41D /* Utils.cpp in Sources */, + D972F5EC4D1CE557AB25C327414C72B1 /* YGConfig.cpp in Sources */, + 66C800A732BB3C65E5F12F4933B66993 /* YGEnums.cpp in Sources */, + C6F8F9EE91335E210D1EB79F6CF83C0D /* YGLayout.cpp in Sources */, + 0CC3D1EBC4B98E88BA86BFE488146684 /* YGNode.cpp in Sources */, + 23576D738C9549A2D6CF08392F1968E8 /* YGNodePrint.cpp in Sources */, + 0EB4F2CD7C83F53EE8507A549B82376F /* YGStyle.cpp in Sources */, + 0AD210E18C425316C4AF682A50FFEA56 /* YGValue.cpp in Sources */, + 668839311B0563511CDFFCC224FAA9A4 /* Yoga-dummy.m in Sources */, + 3EB02BA4EE079C232B94963033B65C33 /* Yoga.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; EC4FB09447977D6D891704EEFDDFA5CD /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -30704,146 +31560,59 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - EE7FB3F0E2C081CA05BEBC2F606558AF /* Sources */ = { + EF198BC1489771EDEC3ADECD0EFE1C7A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 0CAD225F88342B218A38A95A7D076557 /* AutoAttachUtils.cpp in Sources */, - 694D3A3CFB666D72F12443EBD0862B75 /* CallbackOStream.cpp in Sources */, - 6FBB95E43E9F961B0479D2365754EEA7 /* Connection.cpp in Sources */, - AAE0DA4DAAEDFF116B89344166832D69 /* ConnectionDemux.cpp in Sources */, - FEED472709EDBE4C8CF060454F3B51A9 /* HermesExecutorFactory.cpp in Sources */, - 9FA554EBAA6C6E6593FFA3DF1725AC44 /* Inspector.cpp in Sources */, - D212327C84977742B0DB17D99593791C /* InspectorState.cpp in Sources */, - B72C46D9D66F2E67AA2925F77648DE56 /* JSCExecutorFactory.mm in Sources */, - A405A60C3D679AD6C3F72464A0EA546D /* JSITracing.cpp in Sources */, - D55FB1347969B0F41503588C7C558D38 /* MessageConverters.cpp in Sources */, - B93A901388CD05FFB6BB11421DBD8A32 /* MessageTypes.cpp in Sources */, - B5179AC5CCF5BC23C85CB3A49F38528F /* NSDataBigString.mm in Sources */, - 871B336D8AE74B3980F8713BF4E334B2 /* RCTActivityIndicatorView.m in Sources */, - D16DE515D8344421701B7A512DF153F3 /* RCTActivityIndicatorViewManager.m in Sources */, - 787F334AFAE2E52B7A0BFEF00D87522A /* RCTAssert.m in Sources */, - 5FD51114837633F07B4AC58B3BD5A15E /* RCTBorderDrawing.m in Sources */, - 78BA5D55A9B732171F2F7DF3BB395E69 /* RCTBridge.m in Sources */, - B41DDCB897C25F6B9FAFFD56E28E974F /* RCTBundleURLProvider.mm in Sources */, - EE8D99A6E979BFE2D5D0C68FE1FF4A97 /* RCTComponentData.m in Sources */, - F4F471BA104DE7D780CA07C4AB24C439 /* RCTComponentEvent.m in Sources */, - 246B8F33C6D7C26541224312036955DA /* RCTConstants.m in Sources */, - 7445438B7EC58C88763FFE2CEAAD6C85 /* RCTConvert+CoreLocation.m in Sources */, - 66144E422A014AAEC707E8C7381803CC /* RCTConvert+Transform.m in Sources */, - C6D559847B799DD140EEED1460C7F6F4 /* RCTConvert.m in Sources */, - 3C1E00D47634B711DA034154CC26F559 /* RCTCxxBridge.mm in Sources */, - 7034D4F7BDED3DE2E40E1C039017BC0C /* RCTCxxConvert.m in Sources */, - C18426DF4189F67B152E5BE63772FEBE /* RCTCxxMethod.mm in Sources */, - 4BB42F66A36DBC6FA9E442860D5D36E1 /* RCTCxxModule.mm in Sources */, - 6D9E22573017D8C29C3031B70ED825CF /* RCTCxxUtils.mm in Sources */, - 7FE1865B2B4836D63A18787AB6FBD20A /* RCTDatePicker.m in Sources */, - 13D73F1B9AA3F9C0C3AC0D71D0175187 /* RCTDatePickerManager.m in Sources */, - BC875CAEF53539746800651BCD300033 /* RCTDevLoadingViewSetEnabled.m in Sources */, - 705D47189A3D730703D6DB27B1A48E15 /* RCTDisplayLink.m in Sources */, - F036B0715A951B6C01B4616207D37236 /* RCTErrorInfo.m in Sources */, - BF1C0AC2AEBD330465A27CCB83FC0B60 /* RCTEventDispatcher.m in Sources */, - 9FB6FF7CB396FFD7C2ED8B747F154785 /* RCTEventEmitter.m in Sources */, - 8E025AC5934977C0897825A06231512E /* RCTFollyConvert.mm in Sources */, - 812322C3CC87B65108E87C59381BB278 /* RCTFont.mm in Sources */, - 2186154575368A3C26EDAEA875CDE281 /* RCTFrameUpdate.m in Sources */, - 1E6DBCF11AFFE8011E678C0E13DDFC5D /* RCTI18nUtil.m in Sources */, - A52F7B2DC937D6247E19729A5A808708 /* RCTImageSource.m in Sources */, - CD7E96E24046A883539E7495B9F71D08 /* RCTInspector.mm in Sources */, - 2BA6F1AFE97F8E56ABBB199B49558448 /* RCTInspectorDevServerHelper.mm in Sources */, - F79E170A0756EAB31555917C3C4D0D79 /* RCTInspectorPackagerConnection.m in Sources */, - 06496A4DAD1093C4889AD3425DF6A3B4 /* RCTJavaScriptLoader.mm in Sources */, - 7F1CF1C4A667973FC8031E01BCE1A7B1 /* RCTJSIExecutorRuntimeInstaller.mm in Sources */, - ABE8513BBC56B266CE1C7CE47EC0AC17 /* RCTJSStackFrame.m in Sources */, - 877731A0E0D4164ADDECBC2D9DC1C584 /* RCTKeyCommands.m in Sources */, - C65E75965EF403FBEB399FF19D6534F7 /* RCTLayout.m in Sources */, - 5D21A8AF997B08A38CE2F2384690D50A /* RCTLayoutAnimation.m in Sources */, - 891616D49632B3D08341F5CAC101D619 /* RCTLayoutAnimationGroup.m in Sources */, - F57DB4C09456DA6D33DB815ABD0916ED /* RCTLog.mm in Sources */, - 31D5668481DBDF53A6689063AD02C9E9 /* RCTManagedPointer.mm in Sources */, - 5735894CB4D66B06676A8558AE6CEDA4 /* RCTMaskedView.m in Sources */, - B8B16C3D93BE51E210430FB7B6502C47 /* RCTMaskedViewManager.m in Sources */, - 6BDE53A82B9A2BF10FF04D46CF942136 /* RCTMessageThread.mm in Sources */, - EA9C7BD1D00D049F4D82E67239E4A843 /* RCTModalHostView.m in Sources */, - 12990CE669624274E82B9CCA98067722 /* RCTModalHostViewController.m in Sources */, - 5A0C8AEE3F0BCCEB7E121BF2DFD75A8E /* RCTModalHostViewManager.m in Sources */, - A42B2D6C9C895BBF10D96F0B9BA51F96 /* RCTModalManager.m in Sources */, - 20982025352DA30BC7CE7D65593F80F8 /* RCTModuleData.mm in Sources */, - 0B02CB1E18FE16FC56EFA77FEA870535 /* RCTModuleMethod.mm in Sources */, - E3AC056FC9664BC9837604638EAC7650 /* RCTMultipartDataTask.m in Sources */, - B4048F3E7E850F52D9921AE029F1C4A8 /* RCTMultipartStreamReader.m in Sources */, - 4364A051DFF57EDAE4855768F729F2D0 /* RCTNativeModule.mm in Sources */, - 8981BE6CBD2FE854DA15E350C601F887 /* RCTObjcExecutor.mm in Sources */, - 2509860E27D4BF6C6E8EA1FF7B0976F0 /* RCTPackagerClient.m in Sources */, - F166E495A558037E52CF8D058C505491 /* RCTPackagerConnection.mm in Sources */, - 1707EB344AB7A8595690A1CB1646467C /* RCTParserUtils.m in Sources */, - EB5591507046F7B57BD7198F1A72D2FC /* RCTPerformanceLogger.m in Sources */, - 4D91C425E4333E710C932962FE507C19 /* RCTPicker.m in Sources */, - 1F429B266C685571083ED07FD862037C /* RCTPickerManager.m in Sources */, - 42C8733D6C86EC0EEF1431D62FE8EFF5 /* RCTProfile.m in Sources */, - C04E268E7EAAB326E18AD5C56B102AAE /* RCTProfileTrampoline-arm.S in Sources */, - 1B87F6FD6538D9DB41D566F1C5E82D89 /* RCTProfileTrampoline-arm64.S in Sources */, - 60AA9A7BD5DB716E1B35A392CE8075E1 /* RCTProfileTrampoline-i386.S in Sources */, - 0A8A63C5910D8280E0F142BF75F5AA83 /* RCTProfileTrampoline-x86_64.S in Sources */, - C86E6AEDB0A3465CD70282876E7905C8 /* RCTProgressViewManager.m in Sources */, - 8C0E75013E850C9F1CB951B57ABEE8C6 /* RCTReconnectingWebSocket.m in Sources */, - 9B11B6E6291F4F3098D973DAB8B269B3 /* RCTRedBoxExtraDataViewController.m in Sources */, - C1FFCC96EB6F537B8C0BDE6E21B6FC79 /* RCTRedBoxSetEnabled.m in Sources */, - 9A9527627BAB42BAA83CD07FFE47B89E /* RCTRefreshControl.m in Sources */, - 2821CC4D182DECD78FE3BAF4EE308D8A /* RCTRefreshControlManager.m in Sources */, - 44A1D3DA9DBB5F898389674BBA6A32B7 /* RCTReloadCommand.m in Sources */, - 2F4D53B034A0E7B2C36ED8E427C14477 /* RCTRootContentView.m in Sources */, - 0E3A1CE14025EC8215B26F702F4A712B /* RCTRootShadowView.m in Sources */, - AB7FC981E25D0FB8E56916DCF5F2B2B7 /* RCTRootView.m in Sources */, - E15618937B890A90D42451BA942282E7 /* RCTSafeAreaShadowView.m in Sources */, - 813BAAD3B90E2632E341C6C39E69EC29 /* RCTSafeAreaView.m in Sources */, - E83757D2FA4D88CFB78A771A50B3D9AD /* RCTSafeAreaViewLocalData.m in Sources */, - A2D84B1EA720620B51C5E6EE68EF40E8 /* RCTSafeAreaViewManager.m in Sources */, - D1AF1BCC8B901AA67C8C0CCB927CEA59 /* RCTScrollContentShadowView.m in Sources */, - DB719BB2F98F2A9E41B1D82572BBC44D /* RCTScrollContentView.m in Sources */, - 76EF01EBE0B5A9EFD3CF20905F1051A5 /* RCTScrollContentViewManager.m in Sources */, - CDD71246625320F6C13F19ED33845384 /* RCTScrollEvent.m in Sources */, - F88938C80FDE7851ABA9BD288F20EA84 /* RCTScrollView.m in Sources */, - 19FF5850B5024A1831E17EE4E3C3C899 /* RCTScrollViewManager.m in Sources */, - 0ACB9F91C4B14FFE164A7B5C9286EE72 /* RCTSegmentedControl.m in Sources */, - B50405CDC4B20564676FC1EA89C187CF /* RCTSegmentedControlManager.m in Sources */, - FE4B992C0E5E22AABE13C139FBF98C6A /* RCTShadowView+Internal.m in Sources */, - 142625F73BF34BDE9BC8170D69917A72 /* RCTShadowView+Layout.m in Sources */, - 6F4F4BEA332091EA0CE418A3F103EAF5 /* RCTShadowView.m in Sources */, - 5F0EE6534E0058612FD953E0CB1D0E85 /* RCTSlider.m in Sources */, - 2853564306174ED3253141AF97816FE4 /* RCTSliderManager.m in Sources */, - 49004A384D5C98944B8D282E5F6EA9CC /* RCTSRWebSocket.m in Sources */, - C5CE8DC9D1004FE40380E6B4640DB48D /* RCTSurface.mm in Sources */, - CBF862AF51B4967E7DC9A5D682B9C4A8 /* RCTSurfaceHostingProxyRootView.mm in Sources */, - 0FE3CE36E2841FFEA0D34CD4E14C488A /* RCTSurfaceHostingView.mm in Sources */, - 8BCA66C4DD4699FDB19801EC1D06EC23 /* RCTSurfacePresenterStub.m in Sources */, - 5B7E6DEB79C89D28C0DFB8723FD41724 /* RCTSurfaceRootShadowView.m in Sources */, - 2AF418873A4FC3187223C8C08C889BC6 /* RCTSurfaceRootView.mm in Sources */, - 75DB2A3A90621B424FB725E86A59EC4C /* RCTSurfaceSizeMeasureMode.mm in Sources */, - 5E27C8E3BE765A49448D651A5E3B6E0E /* RCTSurfaceStage.m in Sources */, - 7CCEE6B00590955B32710BCFEEBE6ED2 /* RCTSurfaceView.mm in Sources */, - 3850D159D695EE0BE10574C838770863 /* RCTSwitch.m in Sources */, - 17792FA021A737F2A2CA03F1FAE05138 /* RCTSwitchManager.m in Sources */, - FD2CD9FAEE8F5680878C1039299657F0 /* RCTTouchEvent.m in Sources */, - 7A4A86A72686F948152AA016947CDCB5 /* RCTTouchHandler.m in Sources */, - 2E78D7AD49C86570FA250FA78CE92F8D /* RCTUIManager.m in Sources */, - 49D785D31D0FDE5C2CDBB808E0BEDF3E /* RCTUIManagerObserverCoordinator.mm in Sources */, - 0ABD3FEA5D8430E668FEB117D07C6755 /* RCTUIManagerUtils.m in Sources */, - 4DFD071959DBA838E7C179A2C5AFD20A /* RCTUIUtils.m in Sources */, - 9CA9465DAE9198EB87D250C9814873C3 /* RCTUtils.m in Sources */, - C50B020193675D2F7B8E989A0A94581F /* RCTUtilsUIOverride.m in Sources */, - F9A60191C7062D17C87F4EB34DAC6822 /* RCTVersion.m in Sources */, - BFFAFF0909C8B3F654F9C46A5F14E5D6 /* RCTView.m in Sources */, - 028EECF978355B6FA675E133F8C29B8A /* RCTViewManager.m in Sources */, - 45748E17266B27F4474DE93063BD84EB /* RCTWeakProxy.m in Sources */, - 9E54290EFDD64D38870FEE9C3923970F /* RCTWrapperViewController.m in Sources */, - 2261D32B67229FD0AEE9AD2599CA4651 /* React-Core-dummy.m in Sources */, - B6FCE433B32B9E9E087A30B8F196973F /* Registration.cpp in Sources */, - BF9EF11CBFCB398001ED6495C859CCE4 /* RemoteObjectsTable.cpp in Sources */, - B07ACA58CAD85C09D596C59FBAFB1122 /* RuntimeAdapter.cpp in Sources */, - 65C0B766E7A12F601AB67A47EA124B18 /* SerialExecutor.cpp in Sources */, - 97796BC07DD82D811B33C40FB77D9A35 /* Thread.cpp in Sources */, - 850173D6A1AFB30A009E2C78E4EE08FA /* UIView+React.m in Sources */, + 96B124D88EDD4869CBC4AA56B706AA1C /* SDImageWebPCoder.m in Sources */, + 14449585CAC8CBF314F07B4D5A137DE3 /* SDWebImageWebPCoder-dummy.m in Sources */, + 9F51C6614E341953C2241386E269CF5B /* UIImage+WebP.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + EFD82CA40C14CB910797804670D9FE56 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 3DEBF433071A69345226315B12A34660 /* buffer.c in Sources */, + E4DFAC5B7C4EFF623E1DA10693B2F1F4 /* bufferevent.c in Sources */, + 09DCC90A46B1FFF80ACBB457F48AE773 /* bufferevent_filter.c in Sources */, + A6EE17CA67549690D6248EC617824D99 /* bufferevent_pair.c in Sources */, + 525681D085B5C73EF380EA0520995BA4 /* bufferevent_ratelim.c in Sources */, + 5CA3E4EA9D89288AB6804CF6C3B5769F /* bufferevent_sock.c in Sources */, + BDC40C36D8665788E5F4C11F8AEB049B /* evdns.c in Sources */, + CF370A828F7AA0767B77ABD35B3EBE37 /* event.c in Sources */, + BBE575A5924112AFBCF759BE914C6D8D /* event_tagging.c in Sources */, + 92DAFF1F4ABDE52F6555C4EA66EBA4EE /* evmap.c in Sources */, + 4F1888340128350A88BF3E489F1627D7 /* evrpc.c in Sources */, + 356B3BFBDE9967FEB7D091B1DD01EFF4 /* evthread.c in Sources */, + 57E4B19F74D99E1B3A27D31AC87A7006 /* evutil.c in Sources */, + 19140B66C17B626ACD9B1344DFC89002 /* evutil_rand.c in Sources */, + DE9E6432F63DE00E6C4E76AA48F5B3EC /* evutil_time.c in Sources */, + F1D9164589C65FCA0D769B432C50F608 /* http.c in Sources */, + 51DF4E7D681852F71D8435935ADF11FB /* kqueue.c in Sources */, + 84EC5DA53066483EC80B2F2110F6AE25 /* libevent-dummy.m in Sources */, + E5A0AB695B3144ECD8E5C17837CAC24B /* listener.c in Sources */, + 250423D40E0CB60B44F882AB8CA2CA16 /* log.c in Sources */, + B898DB08A50FBB4C579539CB1CFEEA72 /* poll.c in Sources */, + 616D9595A59F74EEA8E43E861D352030 /* select.c in Sources */, + CE6F2163B7B0C45E141427CB6E333B82 /* signal.c in Sources */, + 984FC07221CF2331700F4A4A1D041536 /* strlcpy.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F3D28482F2CED5839FB231BDE0E94C8C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + A3E71FBB1483CF35881D3F3F7A5E0853 /* demangle.cc in Sources */, + C70DA51A309ECBB13EBC57C271D30CCF /* glog-dummy.m in Sources */, + 1CE5F2290B7C60867EEE0B5DB19EDC93 /* logging.cc in Sources */, + 29897EEA9E3268B3BDC4BE3A293D7635 /* raw_logging.cc in Sources */, + 6A8165E3426549D612357585B6D337D0 /* signalhandler.cc in Sources */, + 15912E508F345264F8FDFCF99943287C /* symbolize.cc in Sources */, + 9D6CA7E422AC999BD7D683CCF7A99813 /* utilities.cc in Sources */, + 4A516E7A9D04DA71300E3AD0B30785B7 /* vlog_is_on.cc in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -30856,6 +31625,28 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + F4B320F3E91DE4B87DDFE2D0C0CE9001 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + D5080033449BA3D8EFC1FEEBC05DF097 /* GDTCORAssert.m in Sources */, + C0D3909925CECE8527B23FFFF3CE3D46 /* GDTCORClock.m in Sources */, + D699743FF4AFA471649D7C40F6A197E2 /* GDTCORConsoleLogger.m in Sources */, + E17965B0328E7F8BE6634B28269E67EC /* GDTCORDataFuture.m in Sources */, + 54F2E38408AE876595C7FF75B4F0FCEE /* GDTCOREvent.m in Sources */, + 5BB861E2813B0F0460BA5A26EC894C9B /* GDTCORFlatFileStorage.m in Sources */, + 48A736D9C6BBAADD1CB80E538201A11F /* GDTCORLifecycle.m in Sources */, + 38E21F4BBD3CE55A1F7A6521A400C11E /* GDTCORPlatform.m in Sources */, + 32EB13EEFFE187E1629F0CFE625069A8 /* GDTCORReachability.m in Sources */, + C4D8D303C627D8C88E7EFDED3136DB7B /* GDTCORRegistrar.m in Sources */, + 33A3F9A3EC7C85FF053EA3936284ADCD /* GDTCORTransformer.m in Sources */, + 9720A773DB6EF850CE18B59044EA720F /* GDTCORTransport.m in Sources */, + 9D93D9974E5D46E2B0944764C6CA3D4D /* GDTCORUploadCoordinator.m in Sources */, + FD458728871ACFAB7620555A0E392E2B /* GDTCORUploadPackage.m in Sources */, + FB02388BD13ADEBC2904E3B51791738A /* GoogleDataTransport-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; FB568A1351C383766730DC82C2A26433 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -30865,4257 +31656,4432 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - FD15D3773F7F2C9BC16008735DBA75A1 /* Sources */ = { + FE4389CCCC6664F2FF0795F8155778B3 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - D11167094B593E79B881FA7D25E49DA8 /* RCTBlobCollector.mm in Sources */, - ECD464F047C9060F9D55B9FAB3CAD531 /* RCTBlobManager.mm in Sources */, - F5EC9F81CE5F15548DD6BBC86B651DD3 /* RCTBlobPlugins.mm in Sources */, - 63D6321A3AD120C4F9CF2C910421E73B /* RCTFileReaderModule.mm in Sources */, - E6F18299496A2D42168840A9F1A9AE97 /* React-RCTBlob-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - FE4EC1B0F0BCB0FE9D6C1EE4143FA487 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ECC46F0B8CCAD3ED3EDD57C34217F37A /* AESCrypt.cpp in Sources */, - 9804FE863F09CD1C2130C377DA32D7E1 /* CodedInputData.cpp in Sources */, - 7FD9E1BFD1B299CD76F7E32BC242E22D /* CodedInputData_OSX.cpp in Sources */, - 407FFE3E22157C508820C6381F9E9013 /* CodedInputDataCrypt.cpp in Sources */, - 21DDDEAB46AFFD11A71279B07DCFE613 /* CodedInputDataCrypt_OSX.cpp in Sources */, - E64848E07B54919F2C316BBF93BF0F51 /* CodedOutputData.cpp in Sources */, - 6B26200D020F5267F935B08E894708DB /* crc32_armv8.cpp in Sources */, - DC68BDC2BF42803A5517D4482C7C58C7 /* InterProcessLock.cpp in Sources */, - C28B6B45F7CCBF5B71FDF574FE221879 /* InterProcessLock_Android.cpp in Sources */, - 6A1B8F97F47E08575FD8B839A576D68F /* InterProcessLock_Win32.cpp in Sources */, - 1606D2EFBB05FD94E3B41AFCD5C0EEDC /* KeyValueHolder.cpp in Sources */, - F20888EC03C954C5B689286FA39BA342 /* MemoryFile.cpp in Sources */, - BDD4376E6A2CE0570E7368F809AA6392 /* MemoryFile_Android.cpp in Sources */, - B345F83F651B98303C27B3E7EA1A21B6 /* MemoryFile_OSX.cpp in Sources */, - FE9280042E35A807B18FC99741658AE8 /* MemoryFile_Win32.cpp in Sources */, - 4AE7CC65664CAD52937FA8779E12FD5D /* MiniPBCoder.cpp in Sources */, - 8859ED48AD5231787BD69935CDF33F2D /* MiniPBCoder_OSX.cpp in Sources */, - 4C145D7963F065776ED9DB7C75BCE3AD /* MMBuffer.cpp in Sources */, - B53382B183DEE05FF356289A6EBEB500 /* MMKV.cpp in Sources */, - 9F76BB5D240F9A56CEDF8EED0F12481C /* MMKV_Android.cpp in Sources */, - C216217C06A81C3EEC1F4617AB1C338E /* MMKV_IO.cpp in Sources */, - A1EC6DCFF2AB5006D941627E90608919 /* MMKV_OSX.cpp in Sources */, - FDD803FC0EA7CEA8B816DE0666B7F028 /* MMKVCore-dummy.m in Sources */, - E0374AAF32D6DA68850F5E67636EB887 /* MMKVLog.cpp in Sources */, - 52669AC100601B780D0FBA0868225A31 /* MMKVLog_Android.cpp in Sources */, - 0F408DCEF4F770F4812064E1B58A6078 /* openssl_aes-armv4.S in Sources */, - BA46F7D76AA9461875C869116367DB40 /* openssl_aes_core.cpp in Sources */, - 7FC51116344C722A1C50594384507801 /* openssl_aesv8-armx.S in Sources */, - F8D896A34EDAC9AC42411C2555AAEBB2 /* openssl_cfb128.cpp in Sources */, - 185BAFEAEFCC8C0BCC069B57C55042F2 /* openssl_md5_dgst.cpp in Sources */, - 5F93D661D7877B8756C697EDB56E1352 /* openssl_md5_one.cpp in Sources */, - 90DA99BD711D5A077253A17D70E2D7AD /* PBUtility.cpp in Sources */, - B6D307E469CDE456077315D41A0DD9A4 /* ThreadLock.cpp in Sources */, - 2A74FF1FF031F6B4C111B00A79FB775A /* ThreadLock_Win32.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - FF55A7F8A913BC3F3489195D28E44418 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 478FBB24BDCC86403333AF58F343D2A2 /* RCTAdditionAnimatedNode.m in Sources */, - 5ECA74640E1856DA5F303FA27F560EF1 /* RCTAnimatedNode.m in Sources */, - BF1622CBFF1FD03F4586E65A67EBE56B /* RCTAnimationPlugins.mm in Sources */, - F739469FF672A9E8E2CD5B34D96FCD2C /* RCTAnimationUtils.m in Sources */, - 2938DAD184169F3378531C6126C15076 /* RCTDecayAnimation.m in Sources */, - FE7CD5C8890A8BF2CF95BE0A5C481B0C /* RCTDiffClampAnimatedNode.m in Sources */, - A03AE66C673F6F7F861D5896BE8D28C8 /* RCTDivisionAnimatedNode.m in Sources */, - 4C3BD92AD607D82371D407A5340D1BEE /* RCTEventAnimation.m in Sources */, - 446AA9325E3CCA2376008F80D938A76A /* RCTFrameAnimation.m in Sources */, - 1D1B7C750E09166FB5A6A6E05C78858B /* RCTInterpolationAnimatedNode.m in Sources */, - 9A0145FCBC76E4595D03BEC2F87E1148 /* RCTModuloAnimatedNode.m in Sources */, - 45EFC685C95CC580F24A18C62C5FAD7C /* RCTMultiplicationAnimatedNode.m in Sources */, - 71B8706B857C771CE812BBDF5813E173 /* RCTNativeAnimatedModule.mm in Sources */, - 2820E0020F86C89D12F72E9B064CDB36 /* RCTNativeAnimatedNodesManager.m in Sources */, - FAAB3FA4CA6D4D6D8B6E1CD0FC6D8723 /* RCTNativeAnimatedTurboModule.mm in Sources */, - 54BDE91BE5ED0FD91BE3BBF62B32BCAF /* RCTPropsAnimatedNode.m in Sources */, - 4697B2B3EA03B9455F529DA9593EA81B /* RCTSpringAnimation.m in Sources */, - CE03D15F31E1B5604554331CFF8CB627 /* RCTStyleAnimatedNode.m in Sources */, - 5CB7A86F52CB9D1BF4791F0DC7EC99CD /* RCTSubtractionAnimatedNode.m in Sources */, - 82BE37E1E332BEE4EEF3F39DD585313C /* RCTTrackingAnimatedNode.m in Sources */, - C9833A22EDC0882BB095204E2A3EAE5E /* RCTTransformAnimatedNode.m in Sources */, - 734549C7B414DB29C31FB21FCB7935C6 /* RCTValueAnimatedNode.m in Sources */, - 00F3231C27C5105BE24A6A8951319E92 /* React-RCTAnimation-dummy.m in Sources */, + 7FF2E7325B201D1B10F7F692F86F6A5E /* LongLivedObject.cpp in Sources */, + 511B3FAF54CD973EC918CF37E7F01C95 /* RCTTurboModule.mm in Sources */, + FA6D6A963577403FC707CABAF0AE9FB3 /* RCTTurboModuleManager.mm in Sources */, + B55D409363D06F48469D9A32530E329F /* ReactCommon-dummy.m in Sources */, + AF164A48C2D0FF88D9316CC0F3E8CA69 /* TurboCxxModule.cpp in Sources */, + 1655530CE8102BC2892CABC9A306D4BF /* TurboModule.cpp in Sources */, + 5DE06AF9D79E86D0AA2AD237B4F7E69B /* TurboModuleBinding.cpp in Sources */, + B86868C18467F17EA53E7F0160AB5252 /* TurboModulePerfLogger.cpp in Sources */, + EC4B34E3C4C20F841A8551C05428934C /* TurboModuleUtils.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 00DE39865943CF717348AD172BC7C83E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-mmkv-storage"; - target = 74DAFD196634D10887C9A4E7BA19A5E4 /* react-native-mmkv-storage */; - targetProxy = 16D54873C062CB0D7DF9ACC511353E8A /* PBXContainerItemProxy */; - }; - 0139853C2D560B9656C96B4294C6F613 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = A9C562E548158AC310DFC947ACEA0EAA /* PBXContainerItemProxy */; - }; - 019C4C6643743BEA8A69E00DC633E6E2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "TOCropViewController-TOCropViewControllerBundle"; - target = 2D4D3D5AD93ADCCF3DD45A88009E48D6 /* TOCropViewController-TOCropViewControllerBundle */; - targetProxy = 3E53F66530FBE8E456D391743FD67F4A /* PBXContainerItemProxy */; - }; - 01E9F6D4D86AA460605313DB382C87B7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTText"; - target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; - targetProxy = DA8ED9612CB45345ED9D808351E4B7C3 /* PBXContainerItemProxy */; - }; - 0206754235B184F84F40617B572ED173 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFBApp; - target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; - targetProxy = 98BF490FC66CEC6C2595B6A882401AD6 /* PBXContainerItemProxy */; - }; - 02434207851482BCD7005B51C0FDA192 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = KeyCommands; - target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; - targetProxy = 28C8199C11FD0E6A7BF9F71362AD87B4 /* PBXContainerItemProxy */; - }; - 029D360797CF8B7112E5E1A7C051EDFC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTLinking"; - target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; - targetProxy = 0BE80099B9B089B0BB2DD4818824157E /* PBXContainerItemProxy */; - }; - 02A80888021A1468C9F6A1A8CA3AECF3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-slider"; - target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; - targetProxy = 573B64EA1804C4C2D81C2CB63BCBED50 /* PBXContainerItemProxy */; - }; - 0341BE929FF64F101D083F7E47001150 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTText"; - target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; - targetProxy = E8E04EEC802D4F76C3DCA5494E0954A5 /* PBXContainerItemProxy */; - }; - 037413AFE9CD2F74BA8AE7C4C73950AB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCoreDiagnostics; - target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; - targetProxy = 35FB289FC160FBBBE91D4883856C1A4A /* PBXContainerItemProxy */; - }; - 03972F3790D6CAA911C853153B1F9F22 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = 030B3372FAD3F4F9ADD038A28B49895D /* PBXContainerItemProxy */; - }; - 03A231019A79C605B057C2BE1E723CA5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; - targetProxy = 8E22843FCCC33EAEA010B13AD590666C /* PBXContainerItemProxy */; - }; - 03B3469B694A892D8C0510D79CA55FDA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = TOCropViewController; - target = F3966F664F3CFAEFAB57C40FB54D3788 /* TOCropViewController */; - targetProxy = 05D7C82CF95DE7623AE23D9070C6A3C0 /* PBXContainerItemProxy */; - }; - 04891143BF14FA628634F3E5D13C6895 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "RCT-Folly"; - target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 71D26378A183CBC65FA4409724C1F7D5 /* PBXContainerItemProxy */; - }; - 05339B57C025443A24FBC541CD3829EB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = D005E7CC8B959407AE19CD6A2CAACA40 /* PBXContainerItemProxy */; - }; - 056FD8AAB2D1CBE3520027387FDDE07C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = 18E1C151C13911ADC29B33FF4F37C238 /* PBXContainerItemProxy */; - }; - 05AC085C58F97472E4BDDC0B1EADD12A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXFileSystem; - target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; - targetProxy = 86F18895887A4CA22467C28C1508954E /* PBXContainerItemProxy */; - }; - 05EE31BAE59F7D9EFE0D77E61D3B46DB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = A07B2B4B512660925D5BD4008446057D /* PBXContainerItemProxy */; - }; - 065290059B4249852EAE3B5789D147FA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 70222366C9CC32F57C9E1E9752219DA7 /* PBXContainerItemProxy */; - }; - 069FCFD1909C968B070BCD6DFCC09B6B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = 07D11BE75765D523299E1CDFFAF68B94 /* PBXContainerItemProxy */; - }; - 06AB9716311384E627A25AE76B5894AB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = 11AFF9C35ACD1E72310C613AC72E36CA /* PBXContainerItemProxy */; - }; - 0712702CD3B2ED8E580F66C41DAEF0E8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = BugsnagReactNative; - target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; - targetProxy = B0F5A7208886E807A7A3A25FF5D0DC7C /* PBXContainerItemProxy */; - }; - 07188A5194D6C85B051AD7C64DA5DBFB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = D8A1AD85BF8B4194FE95228ED2D6AFE7 /* PBXContainerItemProxy */; - }; - 0726E995EA2E937584A210AC1975C702 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactNativeUiLib; - target = 037A1F31C4D99F52EC9FD2008FEC481C /* ReactNativeUiLib */; - targetProxy = 737C44FEE29C311AF709CDD694FD5E3D /* PBXContainerItemProxy */; - }; - 077A83FC1B9331EA5BB2BE0456B90460 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXConstants; - target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; - targetProxy = A5AFB4AB04D2EE4C873230B7C0FCD0E2 /* PBXContainerItemProxy */; - }; - 080350D12C5845215D57F0BE2CB17699 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFBCrashlytics; - target = E3573FB7AF659C42B699003C73722241 /* RNFBCrashlytics */; - targetProxy = B83CA0DD28692A9A17B510C0400AC63A /* PBXContainerItemProxy */; - }; - 080B50F23E5B831F0A999FBAF3DD7151 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 27CC1418911C18446D42F544D326C5B0 /* PBXContainerItemProxy */; - }; - 083651F9F2CC8D1F5435929E5F3E3777 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 153ABA04B0593E390281A826542ADF36 /* PBXContainerItemProxy */; - }; - 0868A2B3636440830D4AA1CD5889F452 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = JitsiMeetSDK; - target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; - targetProxy = B19890701E3C08C8B8839C38CB18C226 /* PBXContainerItemProxy */; - }; - 088EC20A6A2738360CBF0F39D61B62BB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = 5593362F4CAAE3293AD36FDCDA5C88B2 /* PBXContainerItemProxy */; - }; - 08D78BF8ABCE342121E65E3FF4931847 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = 16B04B290DBAA8049455F84A72E3D777 /* PBXContainerItemProxy */; - }; - 08E47F5646CD6DC1C45018196C21840A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = 521717587F4EA0172A695198F5D447E3 /* PBXContainerItemProxy */; - }; - 0949708E490500E203DA010EDC98CFE6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; - targetProxy = B0E1B313B75033E86F4CF238B13CB196 /* PBXContainerItemProxy */; - }; - 09A97FB7E10BB6CAFA867A53A51AEBED /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTActionSheet"; - target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; - targetProxy = EEB2215ADBE23C2437C9182A606A02F9 /* PBXContainerItemProxy */; - }; - 09AF5CD62AECFA9724B7B07FA04E2541 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 5BEA72F948E7BAA9B74C182FBF97ADED /* PBXContainerItemProxy */; - }; - 0A4240B0F26F5552FEC3B7EB707DAE7D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 9A759FCC2D69CF5269D0F4A223986C93 /* PBXContainerItemProxy */; - }; - 0A4D228E6CA08C1DB07ED6D18526418D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 68C0DCC9CF3DC37F967C3CAD2DB52C03 /* PBXContainerItemProxy */; - }; - 0A5D3DF30AB6A64628076A061120CBBE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMPermissionsInterface; - target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; - targetProxy = 8CF4B177A86A11EBAA717FA105F0C285 /* PBXContainerItemProxy */; - }; - 0A79B2A66B0904522A8F3E22955E6D15 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 55F0422A98C19F2ADF96E320FD19454D /* PBXContainerItemProxy */; - }; - 0AACCAC93F0300664F0910C267DE86E9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 199AEB0F1800EE2B57FCCCF6B3DB2790 /* PBXContainerItemProxy */; - }; - 0AE6962F5E01C973BB59E6F5EC87F669 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFontInterface; - target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; - targetProxy = 3826B7825996FF9D556357E1C433191F /* PBXContainerItemProxy */; - }; - 0B205F86026A38D1560A53C7E9F50AD7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "RCT-Folly"; - target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = D5B9B0F3D60FFAF67840D4561768EA00 /* PBXContainerItemProxy */; - }; - 0BB0717DDEA1C836E6473F79388A105F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "RCT-Folly"; - target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = DB0109545C0EA46F2D777362FE77A76F /* PBXContainerItemProxy */; - }; - 0C86E44A391289E0DEDE1DE1BF410D2C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 25B59216516C427E99B1DCC0F2AF4C3B /* PBXContainerItemProxy */; - }; - 0CB69D4A1FE916CE45A9385BFD11FDC7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsinspector"; - target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = B1B7F3C7688B3C668809342130824419 /* PBXContainerItemProxy */; - }; - 0DD2FA282EDE8A147464A6756721B95E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = TOCropViewController; - target = F3966F664F3CFAEFAB57C40FB54D3788 /* TOCropViewController */; - targetProxy = A8BD4C1C7088274866E4E34405B4A143 /* PBXContainerItemProxy */; - }; - 0E0083428DCE034B0872A5A297CB8D7C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMImageLoaderInterface; - target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; - targetProxy = 4DAB975448FC142BC8303D2B8FF1C564 /* PBXContainerItemProxy */; - }; - 0E96A523AF9137B466652B2C93E9C9F3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFBAnalytics; - target = BDD119F8782FABE2707D3D913EC3EDE5 /* RNFBAnalytics */; - targetProxy = D213AF80C1A6B28CB99E9798CB42BE99 /* PBXContainerItemProxy */; - }; - 0EAA5DB25BD529B6A4C27E54E4580FEB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = ED490CAA95F4AB654A760C4A80153859 /* PBXContainerItemProxy */; - }; - 0EFB1642B97CF63EDA3726A488F967F7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXHaptics; - target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; - targetProxy = 50DA9ACE7616C0F719C346E15D4AAA09 /* PBXContainerItemProxy */; - }; - 0F7ABB870DDE53404ACCA10ED02A96CE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNReanimated; - target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; - targetProxy = 100A54EA2860DA7AEDA8F7A4AF0CDCC1 /* PBXContainerItemProxy */; - }; - 10691041578E74CFE6F0767F4AF5E6F8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = BugsnagReactNative; - target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; - targetProxy = 17107DEB93A1AC2A5B3D42D8EFB0EA63 /* PBXContainerItemProxy */; - }; - 1084EFB101405E009E6DE9DB50B25BA7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-perflogger"; - target = F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */; - targetProxy = DC0AD6F9CCC7D4084EFB5F72934D0B17 /* PBXContainerItemProxy */; - }; - 108E340D335807FCF19D107484DCE7C6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 358E04C97D6696053DEE6E43BDEBB17E /* PBXContainerItemProxy */; - }; - 10EECE4977A9A9FFC78CDB4EB71B5178 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-simple-crypto"; - target = D985A509BFE270C95EDCBE6B4CBAF189 /* react-native-simple-crypto */; - targetProxy = 65630081BC08968CDA4A7C1DA6F3777F /* PBXContainerItemProxy */; - }; - 114BF8F729A8FC00AB5BCD4404499E23 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMSensorsInterface; - target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; - targetProxy = 3A59CE1B59931D66DB965FB7BAD6072A /* PBXContainerItemProxy */; - }; - 119A39E51680A5AFD2D7F437475945C6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 4258BB670716E60662FD423977994844 /* PBXContainerItemProxy */; - }; - 11E48876680D20E989A944623E0BC486 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-blur"; - target = EEBB8D24F2B3531A5C5DAA668D02331F /* react-native-blur */; - targetProxy = 5D183B0DA4EC716C4DAB40870C913495 /* PBXContainerItemProxy */; - }; - 11E833916049F4DB07E16086E08ED48E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 01DF26FF99D1C10743816E8DCE8AD9E0 /* PBXContainerItemProxy */; - }; - 126A1E144375591119888D394776949C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTSettings"; - target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; - targetProxy = CEE1FE2D5C8194CBCD11F0BD5EB67383 /* PBXContainerItemProxy */; - }; - 12C603133E73B613BDEA9A5483E3EC09 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-runtimeexecutor"; - target = 54EB12219122432FA744088BC5A680D2 /* React-runtimeexecutor */; - targetProxy = AD060F251EEA13A3D417EE1F1B1AB3C2 /* PBXContainerItemProxy */; - }; - 12CA994D179B18AA8F41D16E49093D01 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = E19CA6C85EDB86071745E094DD08DDB7 /* PBXContainerItemProxy */; - }; - 13049E73B1A66E991B2BC2446F823081 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMBarCodeScannerInterface; - target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; - targetProxy = CB0F5DE7CA20A806BDBEE84F50E2BA38 /* PBXContainerItemProxy */; - }; - 132E5683B014FF6E7DA3A7480A32A12F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "RCT-Folly"; - target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = B0DA9F4640B00D1E565796A4D2DE4D59 /* PBXContainerItemProxy */; - }; - 134AFE8F6CE5DCFF4067133A4B36BAD4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFBCrashlytics; - target = E3573FB7AF659C42B699003C73722241 /* RNFBCrashlytics */; - targetProxy = EABA514DA5593D16EA8BF9F8D348321A /* PBXContainerItemProxy */; - }; - 137EE0DE45A0A6B6BBF91C0A73561ED0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "hermes-engine"; - target = 985FEA01F314F3C00F0C1E1181E6C4A5 /* hermes-engine */; - targetProxy = 73713D2F135703D7412943ED46F80238 /* PBXContainerItemProxy */; - }; - 1384E486CA759A1CC35BA01A7D52F46D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 3177CB93C00757528EB5CCF88F74D6AD /* PBXContainerItemProxy */; - }; - 1494C55B9B242688EFA326E37400464D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; - targetProxy = 6588F011BD5285CBFD3116EF2DF22F41 /* PBXContainerItemProxy */; - }; - 14C2320CC16572192BD289F8C969EEE3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = C4CD955036B61C4A31118ECA74E4FFF8 /* PBXContainerItemProxy */; - }; - 1644BB5EDAC814913E90E359551F783A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = EB8CA4D0E0E16EE9E44EBC9B319A244A /* PBXContainerItemProxy */; - }; - 170724400E39FCCC293FA86EA674B645 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = 51F56F93258A5178D82EB5EDE135C55A /* PBXContainerItemProxy */; - }; - 170869A1C9869CBD0688DBB799C17155 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 18DE220ADAB20733784E8B8726AE6B84 /* PBXContainerItemProxy */; - }; - 170F841BD96C7C52761E6387385A8D50 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactNativeART; - target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; - targetProxy = 59E2213939E0CDEDDB5E4DB46D9B5824 /* PBXContainerItemProxy */; - }; - 185160E8E9609D63821506DC88DBB7B2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = B4842E48BE79F79B274EA8045B53CD6F /* PBXContainerItemProxy */; - }; - 18798BADCA689383B2406DC98F61820F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTLinking"; - target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; - targetProxy = BABE69F2886CAC8E9148C3C739BBB4B8 /* PBXContainerItemProxy */; - }; - 18C2D2640CDB8B74806F733F15289EF1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXPermissions; - target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; - targetProxy = 4E359C9EDE625EBCF2950344040C2EF3 /* PBXContainerItemProxy */; - }; - 192CC19B33504F2B92CF0DB47E0722A9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = EDD083D235ABFC7346E4DF8B44BC836A /* PBXContainerItemProxy */; - }; - 195FF2D404F48F5A3211FA5B3A8D6BAE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNBootSplash; - target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; - targetProxy = CFC18BD0528388E499A849D53A5792BD /* PBXContainerItemProxy */; - }; - 1A13480419CBD159B0AC9114B9262959 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = MMKVCore; - target = AC8AE887C706A43711D115E69B9D988A /* MMKVCore */; - targetProxy = 705C594FF9575097BFD0E029769E4709 /* PBXContainerItemProxy */; - }; - 1B7A9C65AB8C03C068E897287740620C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBLazyVector; - target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; - targetProxy = 4D415759E40D12B293CC7B5D8E6055EE /* PBXContainerItemProxy */; - }; - 1BB6278E12CB3F5C9857A9991FF2765E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-safe-area-context"; - target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; - targetProxy = 5DFD00EB72793E06F67CB3DD4F943670 /* PBXContainerItemProxy */; - }; - 1C0938D6CA47A2EB2BB1610DFE4CB9E2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 9F51E8C01C7BD4C0B1CBFD468A6C5928 /* PBXContainerItemProxy */; - }; - 1C1DE7C5D362B61E0D02C98E28F268DB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXImageLoader; - target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; - targetProxy = 177C48DD98AE5AF545B2259673F2E44A /* PBXContainerItemProxy */; - }; - 1C4C2A78AC5F9D15A937D94211FCF206 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXHaptics; - target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; - targetProxy = FBE6A4C6EFDB7F9360BAE4E9B7C1F9E8 /* PBXContainerItemProxy */; - }; - 1C5A5BC914F5C46859872F7395D90B76 /* PBXTargetDependency */ = { + 001AC04A479D814F4CCE8E3D34034BA8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCrashlytics; target = 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */; - targetProxy = F364AE78F7543A74946F5257D1B02BDE /* PBXContainerItemProxy */; + targetProxy = BD6662596737D1D7FBD97E6698FAB938 /* PBXContainerItemProxy */; }; - 1CAD7F73ED91BBD87FE1C4FFBF05409A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-appearance"; - target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; - targetProxy = 52237EF06C05E0F8658D65CCCEE5C3C5 /* PBXContainerItemProxy */; - }; - 1D340AB003F2D6F481DDA398891FC6E9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTSettings"; - target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; - targetProxy = F24FCB665F702831E54F23D02844AE32 /* PBXContainerItemProxy */; - }; - 1DDEAF931DAF7A55DCA2D63F504CC6F0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = 7008FDD2413002F02DA2FFCC406AD03A /* PBXContainerItemProxy */; - }; - 1EB9AEAF51473ABBA4EB357AE36FB4C3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; - targetProxy = 7C06F4C231222A35C17CD5BFC27F4620 /* PBXContainerItemProxy */; - }; - 1F2C1C79A8E896A48A75E651C453ACC4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = CocoaAsyncSocket; - target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; - targetProxy = F8147C18EA25C8A238DF5239449AB743 /* PBXContainerItemProxy */; - }; - 1FE8C3DB98BE5C9C8158F8C911D9856A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-blur"; - target = EEBB8D24F2B3531A5C5DAA668D02331F /* react-native-blur */; - targetProxy = 23FA4971095C11988D1078986387719D /* PBXContainerItemProxy */; - }; - 1FF925EF8F31D61AEEAF7D31BF16A8A2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 6B0F6FB4D88554E3F5EAF580558592C0 /* PBXContainerItemProxy */; - }; - 1FF9A27DD8E3BB6289491DA0F16FBBCA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsinspector"; - target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = EA8DC21A9FB4290FAEBD4F44D8C48650 /* PBXContainerItemProxy */; - }; - 20E1A860FDBEC6179B23F7E6AB9AC709 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 64702C33C95FE958FBFB4D2A9177B1CD /* PBXContainerItemProxy */; - }; - 2191378D56A200F5B530D92CA1B7C47E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 384D99DD33A02F1C1A1644BA02E2E1E5 /* PBXContainerItemProxy */; - }; - 226D1F5D279B21007B171B773BC19F20 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = 132B4762BE52B5F7C46FBA3AEE07E30C /* PBXContainerItemProxy */; - }; - 238BA55FCFCCF66DC0F1C6AC99CFE53C /* PBXTargetDependency */ = { + 0053F562863A62CEADC4443A8D7151DD /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = YogaKit; target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; - targetProxy = 6F000B9D78FBF8AB5BFA9686850501DC /* PBXContainerItemProxy */; + targetProxy = 9C1EF6BEE930A82E55005A799C692A0D /* PBXContainerItemProxy */; }; - 23F3ADD1F6B429862273C9C5E24A784D /* PBXTargetDependency */ = { + 012B50C688114AFD68C1F7BC3AB50AB8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Flipper; - target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; - targetProxy = 118918B65F174CB3159564E12C8FDF5F /* PBXContainerItemProxy */; + name = FBLazyVector; + target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; + targetProxy = CA1106FAA6B6598E04DEF29B0218B661 /* PBXContainerItemProxy */; }; - 255457BD1485572E4EAD31DA76E96A7F /* PBXTargetDependency */ = { + 0130898724A79A099F87C8185BBA7921 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMImageLoaderInterface; - target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; - targetProxy = 3F326750AD81A7AADFCD2F37661EC911 /* PBXContainerItemProxy */; + name = RNFBApp; + target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; + targetProxy = 873F28818B93ABF58A2259CA28C8AFD4 /* PBXContainerItemProxy */; }; - 25C3BE95697028D55E6F86989E76E13A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXAppleAuthentication; - target = 28A005E00FB77DDB2543047A07ED99A5 /* EXAppleAuthentication */; - targetProxy = AD954B421BD41C4CF19B302BA505FA52 /* PBXContainerItemProxy */; - }; - 25CD8A0830E640E68E95D1FB595234D2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXAppleAuthentication; - target = 28A005E00FB77DDB2543047A07ED99A5 /* EXAppleAuthentication */; - targetProxy = 13E4704326E826E6821F542D8BF19806 /* PBXContainerItemProxy */; - }; - 263B812D1DFF6E8F87DA8C6114F27E4D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = 52312E25E214D01B0AB920DE898167AF /* PBXContainerItemProxy */; - }; - 268854AC68CC965534B32EA4F1ED6F59 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-CoreModules"; - target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; - targetProxy = BCB7BED53C0F697FDF761C58A8FE6522 /* PBXContainerItemProxy */; - }; - 268CEEC7A58EBB0F00B9426FC8808A31 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-appearance"; - target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; - targetProxy = 42FB697ADD28DC2610BD198960C08660 /* PBXContainerItemProxy */; - }; - 26B0E1C6AA0CC720892C106A5DEF8C03 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = A97271441BFB7CC8D4633FBDD0A12CE5 /* PBXContainerItemProxy */; - }; - 26FDCCD37123CAC21C1F639D69A5CD64 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = 3F9AE5F136267EE04F8198A6A4F8C3CE /* PBXContainerItemProxy */; - }; - 27E42F48B3EA33E47A079C7A398E8481 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; - targetProxy = 218762F8A33837E59BE2AF28E024E8C2 /* PBXContainerItemProxy */; - }; - 27E7C38A661F1731C568E0CB8F7E8C44 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Yoga; - target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = 275271E9BC750DFEC4F9C7CBB74A94D6 /* PBXContainerItemProxy */; - }; - 293FB68C9C21609E0A04203E52EFE233 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMConstantsInterface; - target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; - targetProxy = E1020830A09FA90CA9BA0D0C3E50EDB7 /* PBXContainerItemProxy */; - }; - 298CD3C2D02A8E5363E805FEA9E64B26 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "hermes-engine"; - target = 985FEA01F314F3C00F0C1E1181E6C4A5 /* hermes-engine */; - targetProxy = 0011A34069197CD61B8C95A399D83D74 /* PBXContainerItemProxy */; - }; - 2992A9E2EDAE9E6849BCB78E1F89301F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 04F81D3D862F24D9A23BE43FDAE184D1 /* PBXContainerItemProxy */; - }; - 29AA90C277490864B1A8A3F010104042 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFileSystemInterface; - target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; - targetProxy = 60EEA0EEE4EBB03F9EB9F8DC30B73EAA /* PBXContainerItemProxy */; - }; - 29EA4ED8FBD4ED397CA18B7171BCCF5F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = D75F48F7ECB8478C4E8B6A83D2CE0F48 /* PBXContainerItemProxy */; - }; - 2A233D99BA38AFCF332820ED9BAF8A5C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-perflogger"; - target = F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */; - targetProxy = 63915916D0729CB13ED2A009467A3C70 /* PBXContainerItemProxy */; - }; - 2BEFB363CA1BCA787DC2C620114F9E0E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMBarCodeScannerInterface; - target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; - targetProxy = 64BBD563D03ABBC14692B5D51BD08CF6 /* PBXContainerItemProxy */; - }; - 2CDB43ED1D2011458A951967E81B579A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMConstantsInterface; - target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; - targetProxy = 24863C910FA657D5BF89FA2D01E70867 /* PBXContainerItemProxy */; - }; - 2CF4394CC6361EEEFAA30ECB7B3A7C84 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-perflogger"; - target = F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */; - targetProxy = 8088D46D42CC2F6DA489BF7A7C77354B /* PBXContainerItemProxy */; - }; - 2D8D46C7B9E9E29E3DD3F42D2D1CD027 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = A55B28CB3C4DFAE17FDC83BBC278267E /* PBXContainerItemProxy */; - }; - 2DEDEB24E994CA34FBD4D1CD56199F8D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 4A8CC56F3D825EA14559826B10454B99 /* PBXContainerItemProxy */; - }; - 2E06E30ED462ACB73CAB32FA9AAB517B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = E54F9D190F76AED471A383971E784A1A /* PBXContainerItemProxy */; - }; - 2E537C484F18F0FCACDF61D9DD69FA15 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "RCT-Folly"; - target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 13B179C3654E3444789ADD975118BAD4 /* PBXContainerItemProxy */; - }; - 2EC601B51ACF6646477C0B9DBE0C8A13 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "OpenSSL-Universal"; - target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; - targetProxy = AE6AECE5D69F73B6ACC58EE7EF91C169 /* PBXContainerItemProxy */; - }; - 2ED389112A5C8744B8996EAF80A00E68 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; - targetProxy = 13CF442C4F697116E8B07780300ED3A7 /* PBXContainerItemProxy */; - }; - 2EF385D312295B2ED33648E690147994 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 76BF095F8F6B1FD10A5D8DFF22882B9B /* PBXContainerItemProxy */; - }; - 2F042CA71A8F2D1ACD6B6B3BB7AA3018 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libwebp; - target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; - targetProxy = 116C09A8801BF9B870A4C072878D9539 /* PBXContainerItemProxy */; - }; - 2F8F23A4263C4EF33BD1DCC6087A90F3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = D5F209A1D7146736A93A996977D4BA2D /* PBXContainerItemProxy */; - }; - 2FB2D7DA9A023E2F0D0A1F02F98A8AFA /* PBXTargetDependency */ = { + 019625C2026536CFFA7C26E4128472D4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNCAsyncStorage; target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; - targetProxy = 196E0491837C2286B799B1FCCBB683F0 /* PBXContainerItemProxy */; + targetProxy = 54391617FC5BD7AEE259D806C6A2006A /* PBXContainerItemProxy */; }; - 3016AF2AA2ACC0486CA1732C2C50AD74 /* PBXTargetDependency */ = { + 01B2D8EBF420FD3A9D94FCC7E74FDE02 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 144B14BC50CB7722DC0898376036D069 /* PBXContainerItemProxy */; + name = RNScreens; + target = 214E42634D1E187D876346D36184B655 /* RNScreens */; + targetProxy = 20FEB0430189FAF905E4F13BC24610BD /* PBXContainerItemProxy */; }; - 30762117455C53F08CDD3FDAAEA9C252 /* PBXTargetDependency */ = { + 01DBE5A23CC9D0BBC91B821776DF660E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMImageLoaderInterface; + target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; + targetProxy = 1F6DBAB87AF0707448787C118423C4C3 /* PBXContainerItemProxy */; + }; + 023DC1CB412C0D4BC1F4A95A16259056 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = EDE90198AD8693CC55082F01A85167B8 /* PBXContainerItemProxy */; + targetProxy = 1C5F4299A9113B26AD4B104725578625 /* PBXContainerItemProxy */; }; - 30CEFCE915973F521F2D612AA3CE35A2 /* PBXTargetDependency */ = { + 025EB00F38CC6565652CD950D98BFF20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMPermissionsInterface; - target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; - targetProxy = 7935637EA41C835C9D06D72F753784F7 /* PBXContainerItemProxy */; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 086E87C91D4ED3DA98CD13846B9898D0 /* PBXContainerItemProxy */; }; - 30CF11F23CC1407D838A979C21B92A6B /* PBXTargetDependency */ = { + 026A60D8E32FC29726A9580A70A9BC41 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "rn-fetch-blob"; - target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; - targetProxy = 78548447F8181F26FE238CFFDF2EA077 /* PBXContainerItemProxy */; + name = RNConfigReader; + target = DC0D417AC8ABB7AA10C20A5E0F065812 /* RNConfigReader */; + targetProxy = 68B2BD952CDC0CFDA935ACE395F17864 /* PBXContainerItemProxy */; }; - 30E6ACB8D2E78BA79C5D87B663E60C86 /* PBXTargetDependency */ = { + 027EF64EA4E3408C7AEE8CFB19DE1380 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsiexecutor"; - target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; - targetProxy = B261A1C979881099B409974402C7247F /* PBXContainerItemProxy */; + name = RNReanimated; + target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; + targetProxy = 168B11CFDBE6976A8EBD240DE4217B39 /* PBXContainerItemProxy */; }; - 30FD54ADD3443E1CA65B22C7B6F4BD9F /* PBXTargetDependency */ = { + 034053B23106F483E5AA0A380D03DDF5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactNativeUiLib; - target = 037A1F31C4D99F52EC9FD2008FEC481C /* ReactNativeUiLib */; - targetProxy = DE9FA8BE747ED5E8A32BA888D828A022 /* PBXContainerItemProxy */; + name = RNFBAnalytics; + target = BDD119F8782FABE2707D3D913EC3EDE5 /* RNFBAnalytics */; + targetProxy = 9BB82D5F0A13DFA7ADA9991EA750EB13 /* PBXContainerItemProxy */; }; - 3100C7A358130615A0760E7ACA799CCF /* PBXTargetDependency */ = { + 034E5C0209CBECFB809F8130768D9FD1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTSettings"; - target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; - targetProxy = 97133BE9D3B1D4D066C291E70DF212EB /* PBXContainerItemProxy */; + name = Yoga; + target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; + targetProxy = 1020B3830CC6A592D06984C8713BD7E3 /* PBXContainerItemProxy */; }; - 312076AFE72724B480066AEE99FE6786 /* PBXTargetDependency */ = { + 03865736D758155BB037B351B702B7E5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-PeerTalk"; - target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; - targetProxy = 851D2736B4D01CD8FCEBBEAE9EE41147 /* PBXContainerItemProxy */; + name = FirebaseCrashlytics; + target = 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */; + targetProxy = 65460C545AE2E274A9E44193100D018E /* PBXContainerItemProxy */; }; - 312B2E7C01623947495DD8C56BBEF743 /* PBXTargetDependency */ = { + 03D40E0662C808B82B9A8D4B9533A2F8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCameraInterface; - target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; - targetProxy = ED489F41C0F9ADDE8D5ECED0C8774224 /* PBXContainerItemProxy */; + name = EXConstants; + target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; + targetProxy = E8759F381FE9663A90D5CCC8E56EEFB0 /* PBXContainerItemProxy */; }; - 3162774C5AC6C617024AB9DD02B06D26 /* PBXTargetDependency */ = { + 03D9E1100257F39EB96883C92EA0BBB9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; - targetProxy = 7B30B78927F31E9A16800420217C4A90 /* PBXContainerItemProxy */; + name = TOCropViewController; + target = F3966F664F3CFAEFAB57C40FB54D3788 /* TOCropViewController */; + targetProxy = 6F2F8F0DF9F4D0F82437B452B8737F1D /* PBXContainerItemProxy */; }; - 3244E0A4B62450DE4D5C90B01EF58845 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = D114AEC71E8944DAB2024E78F750C85C /* PBXContainerItemProxy */; - }; - 3262E6854BF9C3AEB18E17E4DCEB8B3A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libevent; - target = 04A30E186743192DFB26B0FD7DB8F250 /* libevent */; - targetProxy = D3F5DAD7E9DABFE2930BC56E666D2159 /* PBXContainerItemProxy */; - }; - 328548BAF9B9755B6F4BAD921A71B4B8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXKeepAwake; - target = 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */; - targetProxy = BB61506E7A5C21F1663A8D965563D834 /* PBXContainerItemProxy */; - }; - 32E6D55612EB31631569A9DABE168F74 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-cookies"; - target = ADC4ACC657481AD27F9936D08FF7F49A /* react-native-cookies */; - targetProxy = F3BE8B4474F34690D9EB13216DCD82A2 /* PBXContainerItemProxy */; - }; - 33EF463B1179F094CB0A7A848E9DF608 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNGestureHandler; - target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; - targetProxy = 1B32227D1EFCE50B121AF765E9FB4D83 /* PBXContainerItemProxy */; - }; - 34236E252FD9195CEE5A3C04472D90AB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNGestureHandler; - target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; - targetProxy = 70351DC6B7DAEA9EB3FE9282A2B461CD /* PBXContainerItemProxy */; - }; - 3481FF9274FE3C0C84263210EAEB33D6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = B5DF3C1ACEC71BC80CEF2575B74D43ED /* PBXContainerItemProxy */; - }; - 349865940F386292E979116819518AFE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 34D73669E03029F1B286A3567F4A0C1E /* PBXContainerItemProxy */; - }; - 350EF498F610D16D2495DB086EE30B49 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = CocoaAsyncSocket; - target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; - targetProxy = E45639E4C98354DD654DEFA67EF38E06 /* PBXContainerItemProxy */; - }; - 3549F7DDCBC23A8BF7D23D58E9FAB99A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = C7688447C4D7F523974281B8A039CF86 /* PBXContainerItemProxy */; - }; - 356C2F379F1BC3566EA471DC78477BFA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMTaskManagerInterface; - target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; - targetProxy = E17E6222BBDB8B205B8FAF2258C9E7A9 /* PBXContainerItemProxy */; - }; - 35918F994332774C9AE5F50644A3F802 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 5D3FE9C506780ADA9356D07F4B64ADAE /* PBXContainerItemProxy */; - }; - 360ADC6EEE7A36DC4F17424F45F06973 /* PBXTargetDependency */ = { + 047B114CFAB96C8E9FC828083BD2FDD1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = EXWebBrowser; target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; - targetProxy = F5A6500ABE1C83C9194A1E947309BE9C /* PBXContainerItemProxy */; + targetProxy = B0B39F897961BE3E672FAAC32542C656 /* PBXContainerItemProxy */; }; - 367EF5000A90A05E5ACFD2D9D85E31D9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNImageCropPicker; - target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; - targetProxy = 2E0673BDA620E67C62D280EE7690212E /* PBXContainerItemProxy */; - }; - 36A71334BA3B085CDB918EE3D087F270 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = ADC204DACACE7C5115CFBB140025593C /* PBXContainerItemProxy */; - }; - 37011B8420161E3E5A99D6848346B5C1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = F43F3DE631B483772758E0C3CE32E770 /* PBXContainerItemProxy */; - }; - 37F58CD04E6A21D9BB33077D2C82321E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = 4C74D052B9896C8E8FDA91A9560E6DE1 /* PBXContainerItemProxy */; - }; - 383E0FB7D49928909E8F5952A6A276BC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = 9ED34E7E4BFB2D0815531FC8FAF0C83A /* PBXContainerItemProxy */; - }; - 38919DFB4C4E6C7E9F10D6D5EEA795DA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNImageCropPicker; - target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; - targetProxy = 0A0D832E2A4A0C4D09CCE8FFC1EA8490 /* PBXContainerItemProxy */; - }; - 38964683C347D591A4C4E5DF12BE927B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = C332B46BF6EB3627AC5F1B159BBA686F /* PBXContainerItemProxy */; - }; - 3905C7C94C2F97D2A432085EF86D8A7A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-RSocket"; - target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; - targetProxy = 7FC8622282F31FD54320053C07A2EE1D /* PBXContainerItemProxy */; - }; - 39C2751FAB48D9D7A651F4AAA4F275B7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-Folly"; - target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; - targetProxy = 01310AFAB1D25E216111CC144958F739 /* PBXContainerItemProxy */; - }; - 39C7ADAE6EA4DAD5D577FE39890311E1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNRootView; - target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; - targetProxy = 5BFDABE99F466F7E7B76BD13F37DC2DA /* PBXContainerItemProxy */; - }; - 3AACD1563B635025363C55F0E1F539CD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMAppLoader; - target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; - targetProxy = 2C6FA8011940CCAC8DC69095453AC0BB /* PBXContainerItemProxy */; - }; - 3B511B32DD9A613C7DA284B356F49648 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-safe-area-context"; - target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; - targetProxy = DB0BA9D20307B8D22536D2BD8E3453FA /* PBXContainerItemProxy */; - }; - 3B92D0291B76336932646C04FD159F0A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNCMaskedView; - target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; - targetProxy = 7696C3C8A1A3E0BC0A8218FFFB5BBBA7 /* PBXContainerItemProxy */; - }; - 3BA4BDF861E59D3B12BCBCCA2D50903E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-DoubleConversion"; - target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; - targetProxy = 362DAA0AFDBCD256457819D30AE56242 /* PBXContainerItemProxy */; - }; - 3C62CF38E7EFA014C50191F2BA4DDA57 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = CE075C6F7DC62FE2BCA70F6DEDB7C23C /* PBXContainerItemProxy */; - }; - 3C9123AA4E1B4E07FF697E800A8F6DCA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = KeyCommands; - target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; - targetProxy = 8A55DED6E15B368D6BAA494CF4FD7D33 /* PBXContainerItemProxy */; - }; - 3D0C2DA9CC0FAC649B45E3088054FEFA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactNativeUiLib; - target = 037A1F31C4D99F52EC9FD2008FEC481C /* ReactNativeUiLib */; - targetProxy = 70A6A48AB57B42E589AB14598CC48A7E /* PBXContainerItemProxy */; - }; - 3D33BE3A762348179ABF94950FBC10CB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNConfigReader; - target = DC0D417AC8ABB7AA10C20A5E0F065812 /* RNConfigReader */; - targetProxy = 804D78BED1E5D093C804A0045BC8A908 /* PBXContainerItemProxy */; - }; - 3D37B493D5D963A2683ECD880912B61D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = FF39434DB79599D53D23AECEC4069567 /* PBXContainerItemProxy */; - }; - 3D434031E8DE1107439544E667868DC6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = 90889E84D10498385B6FC5BE3A793265 /* PBXContainerItemProxy */; - }; - 3D75C7612D6EA4E0FB71F7CDBD9BAB8E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 9FA124619AC98D5EBF7F9949DE1C0919 /* PBXContainerItemProxy */; - }; - 3D84F2EF30046FC6BA8073D5450AC3F6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = BEEE08F34170F0BCCE70B17F442B8D31 /* PBXContainerItemProxy */; - }; - 3DFA20E7F02F6E48BE40BF3F99654D9D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 1A9B263EE7900802B3EB60BA7219A7AC /* PBXContainerItemProxy */; - }; - 3E5E230A2A762DD40CF99B890417C92F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNImageCropPicker; - target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; - targetProxy = 529F2DBD51A1FE95E1C06BF419ACF9E9 /* PBXContainerItemProxy */; - }; - 406AE17D33361362228B867040280C8F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libwebp; - target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; - targetProxy = A37A3A6F66567A0C22D69B21510E21A9 /* PBXContainerItemProxy */; - }; - 41207C02F42FB30A4BCCEDC0B37FDCEC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXWebBrowser; - target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; - targetProxy = 008F36A3089E3DCB87731B55AC0526E0 /* PBXContainerItemProxy */; - }; - 41DD81F9BF53FFDDC69039355E6FBFEF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = D1F8CEAFF747C27255CB0109230327E6 /* PBXContainerItemProxy */; - }; - 423E5FB7842A6D87389E999D6C1A98A2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-slider"; - target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; - targetProxy = 976567818D2102E53E6B69F313E83898 /* PBXContainerItemProxy */; - }; - 4266C2B10BF03619EAD5ACAED5DEB7B2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMReactNativeAdapter; - target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; - targetProxy = 65DDCA7305F2C1B1D575677D336AB58B /* PBXContainerItemProxy */; - }; - 427E5CD11D2DE89856CD6C1D719CC110 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-background-timer"; - target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; - targetProxy = 1F26E9FFEDFF0CB7346530EAAB6616BC /* PBXContainerItemProxy */; - }; - 431C40237AF3ECD80FFADAC3D3BF7781 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNDateTimePicker; - target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; - targetProxy = 85A5F880278AC2B9CC0D8CBBA5FF692C /* PBXContainerItemProxy */; - }; - 43337E3D6AF2A213EA5FAD6A35854A09 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = B02B8C097DED4A38273FB4F9978F758A /* PBXContainerItemProxy */; - }; - 43AAC54B0842A68B91149D7DF857F8A2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Flipper; - target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; - targetProxy = 88BBC0F3A64CD2E87202A9B2E7194640 /* PBXContainerItemProxy */; - }; - 43E10AA1E980F7D16403C7E18DF3BD35 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactNativeART; - target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; - targetProxy = C47A064EA531B5284A9D5DB66195FB35 /* PBXContainerItemProxy */; - }; - 43F7EFC3B29523B6EC71E76B278CA648 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMAppLoader; - target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; - targetProxy = B683D3E27EF0C6C91AEF5EA9B5710D90 /* PBXContainerItemProxy */; - }; - 440BCBFB1D4B531843056F550C5103E2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCameraInterface; - target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; - targetProxy = 71C42C46C830B0B62FEDDDB28100B3DE /* PBXContainerItemProxy */; - }; - 446A850A0E6CB2B3F739FB1F78D2D8B8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = 6D8D1ECD98E73B8E9F3FD83A89492856 /* PBXContainerItemProxy */; - }; - 44C413E61C4D9F486C01E0358A8386DB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNReanimated; - target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; - targetProxy = 8445F24E0035CA52901A8DE74A88F2E1 /* PBXContainerItemProxy */; - }; - 458487A4F01F002F55D86C37074636B3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 049249124811117E85CC1DD7384B0866 /* PBXContainerItemProxy */; - }; - 45B7B265C1FA945FB5430D12631B597C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "hermes-engine"; - target = 985FEA01F314F3C00F0C1E1181E6C4A5 /* hermes-engine */; - targetProxy = 29FA5C7A74639996DFEE4154CCAA4B65 /* PBXContainerItemProxy */; - }; - 45DA802D53B134B7BAB1BA80D9FE13B0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCrashlytics; - target = 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */; - targetProxy = 27DEC9A191F280B0841BA3C360937C7A /* PBXContainerItemProxy */; - }; - 466FCF6969F35752E1E07F209FA19DB5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-callinvoker"; - target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; - targetProxy = D47EFAFE1B3029C9D1973139D7B8A946 /* PBXContainerItemProxy */; - }; - 470437DF541B1F66C9FF7D83C6919E91 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFBCrashlytics; - target = E3573FB7AF659C42B699003C73722241 /* RNFBCrashlytics */; - targetProxy = DB301C474ABA3CF3845F5CA8BE908116 /* PBXContainerItemProxy */; - }; - 474C7F375B829225481A68D6E5F4823C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 3B178A24DA101673FDBCB6CEE88A0BDB /* PBXContainerItemProxy */; - }; - 475F34BAAE333529CCABC3D9B27A3078 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFastImage; - target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; - targetProxy = D9250AB9AD9BDB5B7CA7D3DB933D9550 /* PBXContainerItemProxy */; - }; - 47678E0F07B5CD0B41C0DA98CDD85DB3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNScreens; - target = 214E42634D1E187D876346D36184B655 /* RNScreens */; - targetProxy = 5C9761CD5968DF284DC203C2BA581520 /* PBXContainerItemProxy */; - }; - 4797C6AC427B26B28188B81B0F1777E7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImage; - target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = 9CFEB815E94073E187497D91826CBF13 /* PBXContainerItemProxy */; - }; - 47A875B925CDABFC01997B8725FA4B6A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = FCF1AD213E72299179D0F9FCAE4A67AD /* PBXContainerItemProxy */; - }; - 47CA79421D93921D18D7D73238A835A7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNConfigReader; - target = DC0D417AC8ABB7AA10C20A5E0F065812 /* RNConfigReader */; - targetProxy = 4991D11FDD1141458F25679797EE7A4E /* PBXContainerItemProxy */; - }; - 4808AA885C5424465D2FDAF540897CA1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 3427E486E5B3C8D0FBB46A6C52EFE74C /* PBXContainerItemProxy */; - }; - 483F8116BF3121547F3A841662E010EF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; - targetProxy = 447777C0DDD0DB83B6DC359604139C1D /* PBXContainerItemProxy */; - }; - 48AC1934869BE853D16810B5A658B431 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Firebase; - target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = 44F7A6307D7EE03DE829D4990BDA7F21 /* PBXContainerItemProxy */; - }; - 49CCAA57C95F406317CA851BBBEB8D1D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNCAsyncStorage; - target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; - targetProxy = 2927AF0CDEDFEF772EF7903CF68F79A8 /* PBXContainerItemProxy */; - }; - 49EFF3E168CD8FAB9F0EAF6AB456D37C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = F6B436FF5505B5951F1594595B3BF0A2 /* PBXContainerItemProxy */; - }; - 4BF46508A9DB59CE64A9F2375FCAA5C6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-restart"; - target = 3ED96FB9FE1D18D5F1239C60A109F98C /* react-native-restart */; - targetProxy = B745FEA07EA61BDD54A7C4FA18C7482B /* PBXContainerItemProxy */; - }; - 4C312A242AE486C8F1A8CD0128BD356E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = EDCEEA314F9B062621036AC4CA89C23A /* PBXContainerItemProxy */; - }; - 4C7C77E772FF4CE9CA880C97EC09037B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = F9C6F2113966798F4F7A842880F46303 /* PBXContainerItemProxy */; - }; - 4C8A5AE6099EE73BC03E0FAB7C723E5D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "RCT-Folly"; - target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 32BC4E6CEF6BE4498329FE2783BBC961 /* PBXContainerItemProxy */; - }; - 4DDFF0EF00E3FA69FC6B5FBB550893C3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 7D1A969BA6432C22405555E009892C8D /* PBXContainerItemProxy */; - }; - 4E22B9D9A88105993348AAB25E409963 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = 1B25E4BA5B69AB88D126E1FC4B8E5C58 /* PBXContainerItemProxy */; - }; - 4E38847FF8203458445335430CCBBF49 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-Glog"; - target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; - targetProxy = 3E583D592C6E1E098B0669DCECE8D510 /* PBXContainerItemProxy */; - }; - 4EBE9E116D1DC68A57FDE264D8F8E3ED /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = E704064B51295F906B560840599A5F9C /* PBXContainerItemProxy */; - }; - 4EE4A54A2D3E9AE6545EF2CF6CCBC24C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 11792180AA675133B29C91C095A8A957 /* PBXContainerItemProxy */; - }; - 5003F45533FD1BC7D69761665B619875 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXLocalAuthentication; - target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; - targetProxy = EFECB6B13F5B1F06F686AF7821FA58C1 /* PBXContainerItemProxy */; - }; - 50242EF05284B2F8F06DC32ACFC557A6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNScreens; - target = 214E42634D1E187D876346D36184B655 /* RNScreens */; - targetProxy = 042178B6EDE29B4D9F5B374CBE8F852B /* PBXContainerItemProxy */; - }; - 50320B26BFD294773E3EDE98C0454DE2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-document-picker"; - target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; - targetProxy = 73DC1D96D90DD6D56D57EBA6BBD40816 /* PBXContainerItemProxy */; - }; - 519B95E62599E72DA844FCE5D9EF262C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCrashlytics; - target = 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */; - targetProxy = ACB4936CE2C4107DD0F2B775417BD5FC /* PBXContainerItemProxy */; - }; - 51ABAFCD14D4B0B21B171C3538DB1371 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 3A24EE3CB1890377498DB3EFD851B37A /* PBXContainerItemProxy */; - }; - 5228B1B9E3C20CCB4C8127DFEAEDC9C1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFileSystemInterface; - target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; - targetProxy = 408285F1C6D8A9116F2ED5B4D5C9B6B2 /* PBXContainerItemProxy */; - }; - 5269E9AA72F20F94642DAECF349E10F9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; - targetProxy = 4F9DCF4AD31207EBDCCA4315D110A4F8 /* PBXContainerItemProxy */; - }; - 527D76D3C8AEF9B78EAE947278A162CD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 8237F6E89F75241EEC9D469B421CDD4F /* PBXContainerItemProxy */; - }; - 52814B87422C35A4E90033ECAB20E710 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 1198B37AAABEDA13BBC526EF2887BBF7 /* PBXContainerItemProxy */; - }; - 52E7BACD75EAF445825F2201021F3585 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = 7C3342A9E5BB45D459ECDA538121425C /* PBXContainerItemProxy */; - }; - 5305B6B7C8CC9A0B84CDC7C8E4162A19 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-Folly"; - target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; - targetProxy = 76C5F2F30678805460ED63BEA7F1C6BD /* PBXContainerItemProxy */; - }; - 533CA3099416AB004E2EB0EF8A58A3E7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTText"; - target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; - targetProxy = 97EDAC4F5C1E6FAE08FC171204D0ACF5 /* PBXContainerItemProxy */; - }; - 534417179066E50A8A3870584ABDC194 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNCMaskedView; - target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; - targetProxy = AAEBB31EA77479860716563F0371507F /* PBXContainerItemProxy */; - }; - 534F9E122DB24E85702E1E8714315C23 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-orientation-locker"; - target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; - targetProxy = 9C5F4E18B638172CDFE1EC91961172A6 /* PBXContainerItemProxy */; - }; - 5372FD071460813012D2C2AFED70EF27 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = JitsiMeetSDK; - target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; - targetProxy = B188864072AF3A16AE3D3A509E542DCA /* PBXContainerItemProxy */; - }; - 53A991D5E1986615941D3DA40AC35A7A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 846F1C02B99A65CA39E2BB5AA3CE173C /* PBXContainerItemProxy */; - }; - 53BB32552DD417B4D619F27CB2AE34D6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXImageLoader; - target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; - targetProxy = 21FD358D566A52291D2924F557A5C7B8 /* PBXContainerItemProxy */; - }; - 541A8F63C50483070819091E363BA7A1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNDeviceInfo; - target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; - targetProxy = 0736E1A83F6D7478D6A7731F503ECC95 /* PBXContainerItemProxy */; - }; - 54A84DF59F0DE6982F4F441427E92312 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-PeerTalk"; - target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; - targetProxy = B07BC12EDA54BF36A59A1CC21BC61D96 /* PBXContainerItemProxy */; - }; - 54BC8A77FC561587993C5BC3C627C71F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 5392EE74A5F763D415A1B881F0F15867 /* PBXContainerItemProxy */; - }; - 54C79F312FCCB473720966DAFA674B16 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-netinfo"; - target = EC577C5CB1DC59A7464ECEF266A75B42 /* react-native-netinfo */; - targetProxy = A1A2CE7E25EF7A424B542B50FB7115A0 /* PBXContainerItemProxy */; - }; - 54CB0E039FC6CA0AF4E23BEAA4FE114E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = 3C2C91963A0AA35BA9F1091F1DE7BB3B /* PBXContainerItemProxy */; - }; - 5513286923969850F60B0B6FA9C29CE8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = MMKVCore; - target = AC8AE887C706A43711D115E69B9D988A /* MMKVCore */; - targetProxy = A6D3DD129EF627CD88A85BA25341A95C /* PBXContainerItemProxy */; - }; - 552A297816403E5CA6F6A6C1453F83E1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-cameraroll"; - target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; - targetProxy = 499E15A09171007934E4857D3799188B /* PBXContainerItemProxy */; - }; - 55CD3FF83356019E17C9CFF67B43A801 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "RCT-Folly"; - target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 486239562CA6971736A4554C8DDEFB35 /* PBXContainerItemProxy */; - }; - 55E3ABE7F4F99F86BB02D13B0EE9B988 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFastImage; - target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; - targetProxy = D142509EE7E89FC1C342DFE65F70E29E /* PBXContainerItemProxy */; - }; - 560A9861EE2200F889F8E14AE0656404 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-RSocket"; - target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; - targetProxy = 01038C177C4B5D65BCB0C2A6CA8914AB /* PBXContainerItemProxy */; - }; - 5687706665AD1737B8BD5FB43B0E30AC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = D641A77CF0B2FE065A00879C6FDCCC3D /* PBXContainerItemProxy */; - }; - 56A2B67B2AB9B086A9753900EABA62B3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-slider"; - target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; - targetProxy = FADB4EFAFB171CB8C6F3DD1E44AAB744 /* PBXContainerItemProxy */; - }; - 578D5CEE74041D359F06F16F9B25A127 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 0D728AF4D9FEB411E47D5F6FC7C9AE5E /* PBXContainerItemProxy */; - }; - 57FE9143E76B363B8CBF4C263C72B714 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 9AF7BF91428DA97981FEAF9728A8EA37 /* PBXContainerItemProxy */; - }; - 5847D8150FCBEEBB21320ECE974DE573 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFBAnalytics; - target = BDD119F8782FABE2707D3D913EC3EDE5 /* RNFBAnalytics */; - targetProxy = 4BB485F6B4D56D895FA347CC95F8B6E4 /* PBXContainerItemProxy */; - }; - 5892B50CAB363B83BF6603D6BC451492 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; - targetProxy = 06225557D1AC9D07D7E6EA27DB115CEF /* PBXContainerItemProxy */; - }; - 596EF4B5C1AB54245186E58293662EBA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = AA93A6C8345FF1E1469F6475BFDB35A1 /* PBXContainerItemProxy */; - }; - 59736187E135D2274E5FCCC26C41C06E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "hermes-engine"; - target = 985FEA01F314F3C00F0C1E1181E6C4A5 /* hermes-engine */; - targetProxy = 920A3717E13FA6B6E21141A4952864D6 /* PBXContainerItemProxy */; - }; - 59956535344F9807939B5C2C88AE6762 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNBootSplash; - target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; - targetProxy = DD9D8319D2B748A7860C4D2AE17FA03F /* PBXContainerItemProxy */; - }; - 599F716A4DA2C20F09A10C19E8104CBC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 7323734EB70AB5E2A066D7FD49DB49F7 /* PBXContainerItemProxy */; - }; - 599F9B48FD073FE845534555DF044E75 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXImageLoader; - target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; - targetProxy = 262ADADDE457A878B3BDE83B7502AF0F /* PBXContainerItemProxy */; - }; - 59D9667A4573F411E4C33191FBBD7ABC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = D7472F695648E097A8FE58BCAAE92798 /* PBXContainerItemProxy */; - }; - 5A1DD66DD63927935CD1B9D7B99DE34C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = CAB31615BAC1C1A0475FF47AB09DCF2A /* PBXContainerItemProxy */; - }; - 5AED0A08671698B8718145A4C65324BC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-restart"; - target = 3ED96FB9FE1D18D5F1239C60A109F98C /* react-native-restart */; - targetProxy = C6C6B6A4AFC30B9C9566CCA084BC1087 /* PBXContainerItemProxy */; - }; - 5B66A2F99044AAA7F8CFEAE9CE446A11 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 785B3ECF86965462F7B301B1E2D84FB5 /* PBXContainerItemProxy */; - }; - 5B8ACDD49BA3B3A803357A63B9EF8DC3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-RSocket"; - target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; - targetProxy = CE5A40D35E4A29C1BA893B3AE7CEDB92 /* PBXContainerItemProxy */; - }; - 5C7AEDCB1568C782C433C8A66EB61DB1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 7C633859177AB506753C40F2D82303D3 /* PBXContainerItemProxy */; - }; - 5CD2B7844930E235DACD3401FBE3A0CA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTVibration"; - target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; - targetProxy = 9D9C0528AFD644B9B43E3F63D46A8B1C /* PBXContainerItemProxy */; - }; - 5CD499FFDE5CBE835C6F3437CFD85AED /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; - targetProxy = 7D4940AE234EB78A8BF7849F2A7352D4 /* PBXContainerItemProxy */; - }; - 5CFAD9D0F0F0492F67390721BA8BDDF7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = MMKV; - target = 91A6826828CB9FCD0169A7547E8A79EA /* MMKV */; - targetProxy = B60038B9900A26A8F9FBCD92B272C7C4 /* PBXContainerItemProxy */; - }; - 5D44EE5ECFA50FA0002FBC6ED7D2112B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 636E6CA31E851CCDC17F3BFF287BF065 /* PBXContainerItemProxy */; - }; - 5D4E8104C34F2CE9CC96872A8ACBF793 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMSensorsInterface; - target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; - targetProxy = 1854FDE8EAC2F3226C4A68C3760513D5 /* PBXContainerItemProxy */; - }; - 5D62F598D83AB55EABDD6F882E5D5BD9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-Folly"; - target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; - targetProxy = DEF682C2BF674024002D96F09F3F620D /* PBXContainerItemProxy */; - }; - 5DB1DF50D90E943E178C926B61D71053 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFontInterface; - target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; - targetProxy = 191268D18B5916E285B3F4E3AD480258 /* PBXContainerItemProxy */; - }; - 5E60F8B845E4F4EAB913F7EA28338458 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; - targetProxy = 914EAD9C23A73583815299F87D4B3B57 /* PBXContainerItemProxy */; - }; - 5E90C74FB64DEEDBFC1665B524F091E2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTLinking"; - target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; - targetProxy = E5F4F863D4C2599A2C6F4F72D97D5D6F /* PBXContainerItemProxy */; - }; - 5E955644591C5EBBA252E72D6E2BEC97 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = ED498C3D016B78A402BBB8DDB888A129 /* PBXContainerItemProxy */; - }; - 5EC53EB0225D44E8867635B59F8B7D92 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = 69898D00F64C2FA84EFD326EE853C4EB /* PBXContainerItemProxy */; - }; - 5EFFE899455587A5700FF146E0D07185 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = E0084FC8D0B451759877873EDFFBA391 /* PBXContainerItemProxy */; - }; - 5F2F685CCA21BAEC901DDE59E1E0A716 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMReactNativeAdapter; - target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; - targetProxy = 372DE2B158FA8D9D277F811289941417 /* PBXContainerItemProxy */; - }; - 5F5C658721E2266D5DA1C7C070B6F24F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXAV; - target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; - targetProxy = 2832573321FA4835DE52BECA77774F9E /* PBXContainerItemProxy */; - }; - 5FAD91536FF7ED34EE7DC5BEE50D715D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = 307C2B5DFAE3EF4A08C7370C8CA8FED8 /* PBXContainerItemProxy */; - }; - 5FB227947629FE6972C35D2C302B606D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNReanimated; - target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; - targetProxy = 12C018C09E32F4A493B73FEDC1C076F5 /* PBXContainerItemProxy */; - }; - 6014764B5B26675A1F4D973CBD0838C1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = 7FA412A2990E2D8BED5742F497B1A6B8 /* PBXContainerItemProxy */; - }; - 60321B4A16F5F2B4D6D9F26B3DD46E0E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXVideoThumbnails; - target = 4A95B7CD1D5F80C5E8CD9CDA00D41F70 /* EXVideoThumbnails */; - targetProxy = 1416FD3F4EA85038EE0A88F23048F88F /* PBXContainerItemProxy */; - }; - 603622476674256AC9ACB20BF357F077 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 68F1C66CE59B96CB511E5B445C185D87 /* PBXContainerItemProxy */; - }; - 606A3276AAD1EAC320BAE6389D0C30FB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = JitsiMeetSDK; - target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; - targetProxy = A1324FFC9385A897C7E7368294D5EB5D /* PBXContainerItemProxy */; - }; - 60F32C1CA0F8721971FF6A440D6CE8DC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 0B004FF768E421D2E506F8E36AEFFDD3 /* PBXContainerItemProxy */; - }; - 618833EF33EA22534EBD8E3B84713097 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMImageLoaderInterface; - target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; - targetProxy = 8970B6C43DD928580CE58D8E0A4F5308 /* PBXContainerItemProxy */; - }; - 619627C0933707B28E521B1AEC467289 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = F4EDE1F4CD117C0B5ACC8D323E62A6B1 /* PBXContainerItemProxy */; - }; - 61A3436B268BE12C5D42EB17A734E903 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-jitsi-meet"; - target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; - targetProxy = D69352001DD807666ACC7AF5A2898D1E /* PBXContainerItemProxy */; - }; - 628C1AC28BD4FAB8892EE18FC750FE24 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBLazyVector; - target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; - targetProxy = DCFFDC74D828E8F3A3917A5566AA2163 /* PBXContainerItemProxy */; - }; - 62A56A2DFA71726ABF8B2505A2ACC100 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMConstantsInterface; - target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; - targetProxy = 87EE6EF1FF55ACFD39C66FDAB6EC8575 /* PBXContainerItemProxy */; - }; - 63388EF3C9E44A38784A9361D326FC61 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = DF2A0CE9754E44FC6A1F56BEC1B09C17 /* PBXContainerItemProxy */; - }; - 644E8C8911F01758B22E1E4B478566CF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTVibration"; - target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; - targetProxy = C8436AFD2A95F388B46B304CB5A2D431 /* PBXContainerItemProxy */; - }; - 647B328C1E55315B655A1CC5E9401B37 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = 065D734E3BB9DAE462D4C20973FCB06D /* PBXContainerItemProxy */; - }; - 64A14C5ABDE14FABD401DCFF99229673 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-Glog"; - target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; - targetProxy = 9AE3607298539D2E2E04868EE4ECCAF2 /* PBXContainerItemProxy */; - }; - 64E5254053FD60AFDA100C1EC8EC9F32 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; - targetProxy = E747622F8A66DEF24F70C57D1D8C6B05 /* PBXContainerItemProxy */; - }; - 64EF1990695DDE49001553DF45A509F6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libevent; - target = 04A30E186743192DFB26B0FD7DB8F250 /* libevent */; - targetProxy = 5266932A2CAD23BE85D9C684E898A245 /* PBXContainerItemProxy */; - }; - 65358490025E1B66852F5A53E1FC6F7A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFontInterface; - target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; - targetProxy = B07195604AF1B823263371515A78BED4 /* PBXContainerItemProxy */; - }; - 657C5AD199EB3A0A5EB0FC81534D56C2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 7410BCF49B6A0B216FB9CB874A13FA6B /* PBXContainerItemProxy */; - }; - 66006A3C717964909CCC2E9FAF92EC15 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNRootView; - target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; - targetProxy = F5946808F2ED521A1A330CB5EC386BF2 /* PBXContainerItemProxy */; - }; - 667B4A4717B0959C5AEC75B68512EFB7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFileSystemInterface; - target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; - targetProxy = 9B4E1147A7A1BB4F11269CCE5A4AA99B /* PBXContainerItemProxy */; - }; - 6699F6A4203E3C6A999DBD97368EF5AE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMReactNativeAdapter; - target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; - targetProxy = B2AF571097C4D79055A963132CCC47CA /* PBXContainerItemProxy */; - }; - 66ECFBAA9153347B5BAA4964C71B485C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-callinvoker"; - target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; - targetProxy = A6B6B2D784C8B4B3A500C286560BA068 /* PBXContainerItemProxy */; - }; - 672CEE53EEAD62935288D4216A350D52 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 53D52C6ADC44BE04F333439461DC175B /* PBXContainerItemProxy */; - }; - 6732CF5B05575F9573C59C3611E4ADFD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImage; - target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = 4C82AA6C09149F21702CB5BA52E5017F /* PBXContainerItemProxy */; - }; - 674141F56D0A4CEAB7FA46A815B91A78 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXImageLoader; - target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; - targetProxy = 0C2F92F81630BF1E116666BCB2DA2244 /* PBXContainerItemProxy */; - }; - 676637AD435A9DBF27B02D04766D0189 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Firebase; - target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = 547A61F6A2BC1E967B4F2D1503690B33 /* PBXContainerItemProxy */; - }; - 6768976AA767ECD3F2A749C4430CA95D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFastImage; - target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; - targetProxy = B1E99F4506C6CD4672E2071D440AF1FA /* PBXContainerItemProxy */; - }; - 67705CF482D13C0AAE34E17D03F1EE60 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTRequired; - target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = 05D826E459B79F773519FC7451D2634B /* PBXContainerItemProxy */; - }; - 6834F3E93F458369F858ACDB51A5112A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-runtimeexecutor"; - target = 54EB12219122432FA744088BC5A680D2 /* React-runtimeexecutor */; - targetProxy = C1957EAA9B1709FABA5702B34B46AD17 /* PBXContainerItemProxy */; - }; - 699044D3309D560DF4E200D76B48F124 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTVibration"; - target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; - targetProxy = E7342FA24BE96441860174896164B1F5 /* PBXContainerItemProxy */; - }; - 6A41B2EAEA851666B6483B6DD60FD8CC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-background-timer"; - target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; - targetProxy = E35593F6C55EE285B0E386A581F8504B /* PBXContainerItemProxy */; - }; - 6A56935441A8CC8278906F6014984200 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libwebp; - target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; - targetProxy = 4C8F63A968EE2B29BFFC7D20CA21A734 /* PBXContainerItemProxy */; - }; - 6AE779FF5F2ABF36AD239852E3B4CDC2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = 22AE4F3A34B06823C3870B4A07102116 /* PBXContainerItemProxy */; - }; - 6BAA5D7BAAAE495EE528BA99A2A1ECE2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = 1950D4768A953C58AA516062A25E9D87 /* PBXContainerItemProxy */; - }; - 6BC7D20E95234C2A40E60D1573D5DA00 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = 713707ADC82821DF7746F335C24338A0 /* PBXContainerItemProxy */; - }; - 6BFDEAFF52B418B9A17FD47F9A130B60 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 76218F0BA5F9DBBFA339CD24923EBA6F /* PBXContainerItemProxy */; - }; - 6C067EF59335ADFE95DF02763869ECA4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = EBD78E9D57FB0F473E6DE9A68A21647C /* PBXContainerItemProxy */; - }; - 6C6B6F1C56DB4CD3060F1A4EA2021B02 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "OpenSSL-Universal"; - target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; - targetProxy = DB363A289F7A6667FDBAC5A610E4B378 /* PBXContainerItemProxy */; - }; - 6C9411BD10E37E85D86A6D284C9E3517 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXVideoThumbnails; - target = 4A95B7CD1D5F80C5E8CD9CDA00D41F70 /* EXVideoThumbnails */; - targetProxy = 2357BDCEE6A6B12349B5C16923A3411E /* PBXContainerItemProxy */; - }; - 6CD7AE36D2577FBFEC497CA833229201 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libevent; - target = 04A30E186743192DFB26B0FD7DB8F250 /* libevent */; - targetProxy = D4C7CAA7561720A047872031A8E5CA19 /* PBXContainerItemProxy */; - }; - 6E537014224A4A7842B83DE4B9B49148 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTActionSheet"; - target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; - targetProxy = 8C629D1B56E0D379595E0419325ADF85 /* PBXContainerItemProxy */; - }; - 6E978B3FD2494B80881554E87B5AC12D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXKeepAwake; - target = 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */; - targetProxy = 30F42CB094A87042AAE25C9CE57917B0 /* PBXContainerItemProxy */; - }; - 6EF6B9F884C5DCBB578520C24F4B4C29 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libevent; - target = 04A30E186743192DFB26B0FD7DB8F250 /* libevent */; - targetProxy = 7BC7DE7D2DC18D6AB69BC51A783761D7 /* PBXContainerItemProxy */; - }; - 6F525BAD6AEA6EEC3B66BB3FE6AA7EE2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-runtimeexecutor"; - target = 54EB12219122432FA744088BC5A680D2 /* React-runtimeexecutor */; - targetProxy = CC5760AC5DB8DAC54F79DF1EA8A01DD3 /* PBXContainerItemProxy */; - }; - 6F6A6608D6B0C9D442961C97CCCAC540 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = 3E0439AA51C62DE9C1A9AF70069624D0 /* PBXContainerItemProxy */; - }; - 706D93CAB33F52A8C448154431EB0490 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-webview"; - target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; - targetProxy = 1E775FFA2885969831705A92CD3154D8 /* PBXContainerItemProxy */; - }; - 70C1456D0B21967C760B37F8FCA6F79F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-orientation-locker"; - target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; - targetProxy = B7FC591113C3F49B1B40ACE4EB06E181 /* PBXContainerItemProxy */; - }; - 7138D6A0F7C31B1C60572E22D1C6E66D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-CoreModules"; - target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; - targetProxy = F83594359EE59E28E66D02661AB9543D /* PBXContainerItemProxy */; - }; - 715FB6665DEF3E5A4E427C2BAE301673 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImage; - target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = 7DD77C1D0871633F1F86CAB41BFB1302 /* PBXContainerItemProxy */; - }; - 719F8A7AD6114C0CAE7C80466CD17367 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNDeviceInfo; - target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; - targetProxy = 45B267216CD31E6DF0367D9621A5B9A4 /* PBXContainerItemProxy */; - }; - 71E4C02C278A98E1240F1D0A423DA804 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-callinvoker"; - target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; - targetProxy = 601680D84F7EE7CE5CBF0ACC9C4C91BC /* PBXContainerItemProxy */; - }; - 7201EF3B6767D6DD96255EDC8263F005 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNCAsyncStorage; - target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; - targetProxy = 1787F780B55F1EE29C72460220645152 /* PBXContainerItemProxy */; - }; - 72361DA60237C2C21C9C3234027B2EF5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 88A64A5D2D3491E29F04B3810920FF30 /* PBXContainerItemProxy */; - }; - 72389256175B00C3F7B67663FCC22B10 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = CC8D62C5A546082AB26BF89B0A672DBC /* PBXContainerItemProxy */; - }; - 727F724D7E994D9F0E026914C41C4AB5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libevent; - target = 04A30E186743192DFB26B0FD7DB8F250 /* libevent */; - targetProxy = 9898A660C6DC1CB1672B7D16E73A1866 /* PBXContainerItemProxy */; - }; - 72A474C8BE84D10AAA2AF9A546A43407 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsinspector"; - target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = BE32DDD82BB6ADE3F0D33E8243F138FE /* PBXContainerItemProxy */; - }; - 72BEE0743B315AD0B7AC544A7129F076 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = 759A70834F268FA32FB777E0AF522189 /* PBXContainerItemProxy */; - }; - 738638F318D6654C8492145AFC78F5E0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFaceDetectorInterface; - target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; - targetProxy = E2160FC6540AAC3304621099AD76BF30 /* PBXContainerItemProxy */; - }; - 73EA4C28D3710F28E2D3284DC25FB99B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXConstants; - target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; - targetProxy = 9225F3268A3E7B16892659EEFD3F3D62 /* PBXContainerItemProxy */; - }; - 74DF7C20CAF1CD91CF1F7C2CB1565B87 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXKeepAwake; - target = 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */; - targetProxy = 33C375681909C869E53E016F51137C81 /* PBXContainerItemProxy */; - }; - 755B7B4E6B65C48EFE1949E1D4C4AF2D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-document-picker"; - target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; - targetProxy = ABF72191DA7990645462694DB7C61D08 /* PBXContainerItemProxy */; - }; - 759E477B614A8CE32E6B50FA36D7D487 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = D49B52515DA29DB36CCB230F88BE9498 /* PBXContainerItemProxy */; - }; - 7681B384FACF44C9CA6711394ECF2240 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = 11B262F5168B7986677E56F6363326D0 /* PBXContainerItemProxy */; - }; - 76A41FCA012447A3DFB8DCFCBF1D5132 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = B466021ED4444AC1D55EE120EB17917C /* PBXContainerItemProxy */; - }; - 778238DA120A322BD5807F384A8DB976 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = EC0013D2D77BD2CFB24B250E1F94D6DC /* PBXContainerItemProxy */; - }; - 78411C5A89054AE96B72D987742A2ED8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNCMaskedView; - target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; - targetProxy = 7486829088521D9548278DF00ADA5229 /* PBXContainerItemProxy */; - }; - 78C4CDC0144C5AE5A061D05763F8F1E0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNVectorIcons; - target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; - targetProxy = 198019B78DE4E1079C85118902154016 /* PBXContainerItemProxy */; - }; - 79EBB970282AF117D4325E444509EEBA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "RCT-Folly"; - target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 76B15E9A0095993490F0D60762D1247F /* PBXContainerItemProxy */; - }; - 7B30F642E214EBA215DF9411CE1D51A5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTLinking"; - target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; - targetProxy = C6EAE8ABB0B1A464C9FC3CD00F169AC1 /* PBXContainerItemProxy */; - }; - 7B41B2E031891A392FB34AB6E9DDAF4E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = 558087FCB2882A453C23EFE67CB4D913 /* PBXContainerItemProxy */; - }; - 7B62738395882283EA05FD67D0B74F7A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXAppleAuthentication; - target = 28A005E00FB77DDB2543047A07ED99A5 /* EXAppleAuthentication */; - targetProxy = D76D3D866286629E5B3B224496A8EAC3 /* PBXContainerItemProxy */; - }; - 7BE0F5456697C597C180D724507D05C4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFBAnalytics; - target = BDD119F8782FABE2707D3D913EC3EDE5 /* RNFBAnalytics */; - targetProxy = 627AF5B85DDD7848D7DD20E28309E452 /* PBXContainerItemProxy */; - }; - 7CCC50230BF36DC5402567357038686A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 5F7C427722CCDE9CE7325ADAAA5533BB /* PBXContainerItemProxy */; - }; - 7D1853B13D11B0BB63EF5ECDDCF0C855 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTVibration"; - target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; - targetProxy = 5802801BEEEFB2AD10C0812F10C7A5B0 /* PBXContainerItemProxy */; - }; - 7D28F84CAFDF941588526076824EBCA0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCoreDiagnostics; - target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; - targetProxy = 805D23734103EA107C9D2EB66C59CB19 /* PBXContainerItemProxy */; - }; - 7D3E87201C0C8409FF8AC5A7D7457DF8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "RCT-Folly"; - target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 2C6D27BA072BDE0ED2C255FE294FA28E /* PBXContainerItemProxy */; - }; - 7DBB5BC2A7AFE8165DD83BA90E0C992D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = 3B692FF9D85C7E5C10F87C39BD7FDD39 /* PBXContainerItemProxy */; - }; - 7E630A1EEAF04ADE2B17F8E6F78336C6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "rn-extensions-share"; - target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; - targetProxy = 4EBE1D06BEFB2690B0C93DFB72FCD9C7 /* PBXContainerItemProxy */; - }; - 7F0C10149CEC927D678A4BE5F91805CC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-background-timer"; - target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; - targetProxy = 4F583CD37BD4E52F1DA13180D15E2D17 /* PBXContainerItemProxy */; - }; - 7F24731FB15B8144EE83762895C62EF2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImage; - target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = 489342DEA5237CBFD640DCA9C7A80733 /* PBXContainerItemProxy */; - }; - 812B0565D57263C237343983B027BC13 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-document-picker"; - target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; - targetProxy = F546AE21BC865CC05FBE9DB26CF3E20A /* PBXContainerItemProxy */; - }; - 8180047AAE8DCD6A5DDC7DF987C5CC74 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = B795F2179C46C34324D532AEE62D8F36 /* PBXContainerItemProxy */; - }; - 8182D095CD4CCF7BFB431BF3E1E11282 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 8E10BC85B743F5EE6FCABD57EEF33AEC /* PBXContainerItemProxy */; - }; - 81B91CDB766011F0A3CB89A497563BA5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFBApp; - target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; - targetProxy = E000BC6FE7D99B33CD9B429D9F3A6178 /* PBXContainerItemProxy */; - }; - 835A2FBC82DDD44A2FEFE9AA39024A5A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCrashlytics; - target = 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */; - targetProxy = F53A0CE6F0DFB9F54EFB86531CCEF739 /* PBXContainerItemProxy */; - }; - 836E0AAAA42C3017035463E1A85A3686 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "RCT-Folly"; - target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 679FF35CFA3A6F16B2297DC343823EDF /* PBXContainerItemProxy */; - }; - 839BDD075DF6A3EF6036619397AD7967 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = F743D996CF475C990614A9884A002123 /* PBXContainerItemProxy */; - }; - 8471DB4D2E1C3B286780600EF07FF9F2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 2B43C109BC0A3B87C02F756D510FD903 /* PBXContainerItemProxy */; - }; - 84974E748F6A1B47AE5B2C168A98AB20 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = MMKVCore; - target = AC8AE887C706A43711D115E69B9D988A /* MMKVCore */; - targetProxy = BE078DC2E7F315CD81B9C218F829E05F /* PBXContainerItemProxy */; - }; - 849D6178DB9706830549A71B0106BDC3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = DA2645C59A4E52A1076DB5D84244DD36 /* PBXContainerItemProxy */; - }; - 854B24351FEA55D37DDF524644DC2D93 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Yoga; - target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = 7AA4775E59A979F69E9798EE1B9F6F41 /* PBXContainerItemProxy */; - }; - 85868C1A3644BC20A171E2810AD0EF2A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libwebp; - target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; - targetProxy = 7F4E95238AA79B1E24F788E64FB8F840 /* PBXContainerItemProxy */; - }; - 858A30736566284AFCB22578F9D57224 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-Folly"; - target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; - targetProxy = F548D03DAD220EB31EA255BD2AF40ABE /* PBXContainerItemProxy */; - }; - 85A322782D685D4F8BF9A4C17BB3645C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCameraInterface; - target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; - targetProxy = 904994E80F8A99FAB9EF935941838382 /* PBXContainerItemProxy */; - }; - 85E97EE5379ABE65FFB83DB861A26FCE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMPermissionsInterface; - target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; - targetProxy = 8CCEE76F91E889C937356EA2BB901A95 /* PBXContainerItemProxy */; - }; - 85FEB1C676F1ABB980DD61D335D33290 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-orientation-locker"; - target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; - targetProxy = 092F6A88259C42B7099CCC1B7723975B /* PBXContainerItemProxy */; - }; - 8634CFD59CDC18738AEE6F1C931F878F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNScreens; - target = 214E42634D1E187D876346D36184B655 /* RNScreens */; - targetProxy = 16D40174BB0BD5D7E28395A28876BDDF /* PBXContainerItemProxy */; - }; - 86503FD1778A80727E34969B491DF73A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsiexecutor"; - target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; - targetProxy = B86A8DFE0DA3F2028D64A78AC298E620 /* PBXContainerItemProxy */; - }; - 8679DFF0B2CDA194FB8DA712E6067958 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCoreDiagnostics; - target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; - targetProxy = CD4FFC165DF39500ABF570B652591DF1 /* PBXContainerItemProxy */; - }; - 86FD64F8969727638DD7161E95E94094 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-mmkv-storage"; - target = 74DAFD196634D10887C9A4E7BA19A5E4 /* react-native-mmkv-storage */; - targetProxy = 3789332148D9BD3D21F3F1B955C4A7BF /* PBXContainerItemProxy */; - }; - 871254B2BF2633AD593992DCAE7FF874 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNCAsyncStorage; - target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; - targetProxy = 070AD04ACB1E9A4139EC754C0C089307 /* PBXContainerItemProxy */; - }; - 87407455D5F8F643B7CFDFEBB70EBF34 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = KeyCommands; - target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; - targetProxy = 10FEE180AE4C0A8C2B6B6AFE12B3DF54 /* PBXContainerItemProxy */; - }; - 8746CA0EDF400A49BF0901BE9A611BBF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-notifications"; - target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; - targetProxy = 99D1787513B123CB2CD4BB70069EE3C4 /* PBXContainerItemProxy */; - }; - 87E82EEA1562BB3464DCC6C77B0FECBF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = E3ED1E6C772698474999CCA397A36A25 /* PBXContainerItemProxy */; - }; - 8834748F69970420A0C047A536B2E279 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFastImage; - target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; - targetProxy = 47CBC46FBCEEC2DA7052007094D2EDAE /* PBXContainerItemProxy */; - }; - 885C1CE9233E57854712A9088DEF0D0A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsinspector"; - target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = CB10BF2468EDD85F6B46394710219A44 /* PBXContainerItemProxy */; - }; - 88CCDD87463651188A4A685D65E26FB9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "RCT-Folly"; - target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 5351712B03E1ACED1EC8E90E2E6DBB38 /* PBXContainerItemProxy */; - }; - 88F4654796581AD887B57E9D921083E3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXHaptics; - target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; - targetProxy = 153E09A967625A6A60735B39CD75B219 /* PBXContainerItemProxy */; - }; - 892D078D96DC9844D08643D60345036E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-jitsi-meet"; - target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; - targetProxy = 69337139D6806D86617FD081D265929D /* PBXContainerItemProxy */; - }; - 893F55C2E1726BDE40F981AEA777A204 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 1F65C005C16A9D3B0FCC4F934B2BB4D4 /* PBXContainerItemProxy */; - }; - 896FB65E83A0F0967ECBB0763CA07D33 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNDeviceInfo; - target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; - targetProxy = 00403ADCAC0316B07A96756184572B76 /* PBXContainerItemProxy */; - }; - 89C8784E4AE95B80FB081C931BAAA87F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFontInterface; - target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; - targetProxy = 247758ABCB4F2D2133E5378A3516A8A6 /* PBXContainerItemProxy */; - }; - 8B29382394A0B19C738A5B1E8FF3F717 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 3C17EB324A1A05BFC0383061C0D54E36 /* PBXContainerItemProxy */; - }; - 8B8B845D5AD744B36246BCD891BDFED3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-CoreModules"; - target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; - targetProxy = EA881B25219100313519EE9843F61361 /* PBXContainerItemProxy */; - }; - 8C9D86356778703EB88978CB96B7CDF8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = F2B19D4D4E169F7B0F15A872C10679FF /* PBXContainerItemProxy */; - }; - 8CF330F95A2DE5F9294F1A6C3F98E4C2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-notifications"; - target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; - targetProxy = 24A5CD2ADC129C7EB9970723198BD979 /* PBXContainerItemProxy */; - }; - 8D0BE544E9E6641903F059F6C8780D13 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXHaptics; - target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; - targetProxy = 7836A64662BA87329A2681138FDEA2BC /* PBXContainerItemProxy */; - }; - 8D7F6466D784331D2B99ADCBE9D203A8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTText"; - target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; - targetProxy = DD1609022FC994129FA36CB415A576EE /* PBXContainerItemProxy */; - }; - 8DD3AB20DCA67D4FBDC243BF585B58B9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMTaskManagerInterface; - target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; - targetProxy = 96A8BEC58EE9B53EF7A6C347E2CFD963 /* PBXContainerItemProxy */; - }; - 8E85BA977E3049883A07D586C6C4001C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = E5848D1BD422D505BB6E525824BE58AC /* PBXContainerItemProxy */; - }; - 8ED091DD3DF97A8B9B1012FEE57D205E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = EA9C02E6BFA2C5D3535F665B0C9E280A /* PBXContainerItemProxy */; - }; - 8F1DC60588AD89569AD5FCA966B67E45 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 73CFBFBA1A6400D6793ECCFD3EC97C44 /* PBXContainerItemProxy */; - }; - 8F92A4250472607F7291E106F039B1DE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-webview"; - target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; - targetProxy = 50005CEC438EB4CF310ECC168B1A07B7 /* PBXContainerItemProxy */; - }; - 8FCE61B09EB680D196E626A48A03B006 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsiexecutor"; - target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; - targetProxy = 0B506C38298283D0C13690F444A891BE /* PBXContainerItemProxy */; - }; - 8FDFB3E45F8912CCE08A3F59246CD0B5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNConfigReader; - target = DC0D417AC8ABB7AA10C20A5E0F065812 /* RNConfigReader */; - targetProxy = C826B229DB0003706DF196ABC7686F98 /* PBXContainerItemProxy */; - }; - 9006A70895CF8CE3FCDE3B8228ADC94B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = FF466D1F0168EBD872B3F3E7013D4249 /* PBXContainerItemProxy */; - }; - 9037AD878676963D14D92997AB4A16F7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXConstants; - target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; - targetProxy = 439F943F8B84DDCA08B22031661C308F /* PBXContainerItemProxy */; - }; - 9045A1F09BF3B1603231DD3686A68F3D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 726E2459F8E78E213928392653149F08 /* PBXContainerItemProxy */; - }; - 90E3300809FFB60422622E7DC3AB8F15 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = B9B7CAA3F6DA686C3874D5F37571E592 /* PBXContainerItemProxy */; - }; - 9150434D5CEC9E0C2917AD6824C5A4EC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = TOCropViewController; - target = F3966F664F3CFAEFAB57C40FB54D3788 /* TOCropViewController */; - targetProxy = 715AD63465584D05FAD67798C7F3E606 /* PBXContainerItemProxy */; - }; - 9192DE8E38EC162E6570D79E5E192736 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = 11F7B8A84D28C3A12DFCF1642900A5F8 /* PBXContainerItemProxy */; - }; - 91F6420BA7844EA3737AA22335553C85 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTVibration"; - target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; - targetProxy = 1AA8215DD1DF7E8DFEF02BE517F681E6 /* PBXContainerItemProxy */; - }; - 91FA8214D1270AB9DED8313DA8EE2B74 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFBApp; - target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; - targetProxy = EC2049B309DD4B50AB30B26F0133427A /* PBXContainerItemProxy */; - }; - 9203A95548E3C69E7406207B019872E5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Flipper; - target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; - targetProxy = 8EA8C0D6F9EFDEE295AA9E1F5F68BDB4 /* PBXContainerItemProxy */; - }; - 92A0BBAFA11BE424EFFD86AB9F4F34BF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = EAE0046BCEECA88C99809E295B567C62 /* PBXContainerItemProxy */; - }; - 931422279EA25DA724508C5073BAD061 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "RNImageCropPicker-QBImagePicker"; - target = 6D979AB5FDA2E858850D9903776A30B3 /* RNImageCropPicker-QBImagePicker */; - targetProxy = 6415042586AC0487A313E1AA8DE544BA /* PBXContainerItemProxy */; - }; - 931C640E514A45F4F6AFAEA7B999AB82 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; - targetProxy = 892173FA74921EF3B24E76F2AE118E63 /* PBXContainerItemProxy */; - }; - 93F4945C15EA7870DFC40AAAB99C0A37 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTActionSheet"; - target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; - targetProxy = 15A341DE21E9AAC3151816A5A5C46608 /* PBXContainerItemProxy */; - }; - 94E6452465AF27684D436C6CD1B60B7C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "RCT-Folly"; - target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 9C372DC2455C407AF89B380F478B6B63 /* PBXContainerItemProxy */; - }; - 9583E03D8E941A8372D181958314B4BA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = A973E172BBC66251A31430E8B1E11115 /* PBXContainerItemProxy */; - }; - 95A9C761487FC422B1C1BA402723DE26 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = F7E4674CECD25C3EDD6656FCCD053D03 /* PBXContainerItemProxy */; - }; - 9752782B23E16F9293010A39D93A66E4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTRequired; - target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = D8347A502AF4793D0973EB8DDD465DC0 /* PBXContainerItemProxy */; - }; - 97E2BCECA2C97A3605CEF17985BB194E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = F8DBF419DC301454C6989223323C260B /* PBXContainerItemProxy */; - }; - 9881DABC0DE13E36B944F601450864D1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-cameraroll"; - target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; - targetProxy = D26871E6F1ECAB76F01F474BB124C370 /* PBXContainerItemProxy */; - }; - 989DD4805755C093DBDD1CA5FBE937A2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNLocalize; - target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; - targetProxy = E2557A3B8A985875B2FC2792FB59A885 /* PBXContainerItemProxy */; - }; - 993068B1F7FD6B97B647192DFD3E16AF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 06752A112B78C2F36E2FD19B15ACC49F /* PBXContainerItemProxy */; - }; - 994B157DF652DEC4154F76F75E1BC979 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "RCT-Folly"; - target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = B1D210726F56785ADD182DD8B632DE0C /* PBXContainerItemProxy */; - }; - 9950D38AEBB43822AA9D543E3D45B1D0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-netinfo"; - target = EC577C5CB1DC59A7464ECEF266A75B42 /* react-native-netinfo */; - targetProxy = 2C3C8C34E11D9C129E013EE6FF621C16 /* PBXContainerItemProxy */; - }; - 99C02CA1D07DA39AA7EC70EFF92982CC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactNativeUiLib; - target = 037A1F31C4D99F52EC9FD2008FEC481C /* ReactNativeUiLib */; - targetProxy = 1D32C2087F60E98BE1E1410BCD61917D /* PBXContainerItemProxy */; - }; - 9A2E2AB504D61B1FB52CC96BA5C6901F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 1667B1D0823AF45ABB3DACCC9B51E613 /* PBXContainerItemProxy */; - }; - 9A4E3F9CC293ACDA58D7A8B7B716BDE4 /* PBXTargetDependency */ = { + 0488996339E8F3C3C943A32A96E35477 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNCPicker; target = D00F24222F074B31C56DC6D05E806A35 /* RNCPicker */; - targetProxy = 5E0B3F95B7B5009796176C214677E1E3 /* PBXContainerItemProxy */; + targetProxy = 2CDDDEF1B715CEE0305B0AD906004DF6 /* PBXContainerItemProxy */; }; - 9BA16BBF291158D7C8C8C4F74F5D356E /* PBXTargetDependency */ = { + 06076EEB0CC0F0C3BCAE4BA27D050964 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNDeviceInfo; + target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; + targetProxy = 9114CA2376DAE58DE7C3AF91EAAD34BB /* PBXContainerItemProxy */; + }; + 0654A81AA98E5A9FCA37E4E038B32185 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "react-native-netinfo"; target = EC577C5CB1DC59A7464ECEF266A75B42 /* react-native-netinfo */; - targetProxy = 6F9C0C7A083CFE73B86C2F46BC5212D3 /* PBXContainerItemProxy */; + targetProxy = D6AE14E3270041403147DE3CD24EF5B7 /* PBXContainerItemProxy */; }; - 9BE34AAFBA51D744B005BE81820FDC86 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-mmkv-storage"; - target = 74DAFD196634D10887C9A4E7BA19A5E4 /* react-native-mmkv-storage */; - targetProxy = BABF166AB869DEE4FFFA1E9A67DE52CA /* PBXContainerItemProxy */; - }; - 9C2D84473A846AC144390B48D4F1589C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; - targetProxy = 27AC34ECC9D581E5199885A0DADD29FA /* PBXContainerItemProxy */; - }; - 9C31EDD280AF258E88C68ABDC97A4E4E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImage; - target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = 39041BF4A62E15336FD3DA2AF414A69E /* PBXContainerItemProxy */; - }; - 9C9E63E9F273E9D3E84E56DAC02389AE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = ED2B629CD00341F898C32D5E3242973A /* PBXContainerItemProxy */; - }; - 9CF0D73292D8D02F896FC730D13A818B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-RSocket"; - target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; - targetProxy = 101AA39C0C2B4343180C887A71EAC397 /* PBXContainerItemProxy */; - }; - 9D0CA0A0A0A5DF5DC4F570A69203DB28 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 1E3D69AC6C40D9D1FE16B9CADAB5ACF6 /* PBXContainerItemProxy */; - }; - 9D32CFB355F69C5E259624F89FE6F530 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-appearance"; - target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; - targetProxy = 03B281ED2FC0181347229328B0D244B4 /* PBXContainerItemProxy */; - }; - 9DA1CE33D2D7E937DCFD1C049577D296 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImage; - target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = 29D3DA4E8858CB32EFD5DBFF790BE792 /* PBXContainerItemProxy */; - }; - 9DA3485A2C16724696F806AE228FBF07 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFaceDetectorInterface; - target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; - targetProxy = AE5DCB15CF7371F18081C5E10675A555 /* PBXContainerItemProxy */; - }; - 9DBEDF95D6AB81CA9282E901A51C8AEF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "rn-fetch-blob"; - target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; - targetProxy = 6450A51128404632393BC62EFE26F299 /* PBXContainerItemProxy */; - }; - 9DFC307448ADBBDD1EAE2E195BA21838 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = 447604E4ADD89C37A6E661D76FD1E147 /* PBXContainerItemProxy */; - }; - 9EA7E5EF0C31BAD1F035B25240682948 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; - targetProxy = 7E7A07EF20651E662F10F3F7051111F5 /* PBXContainerItemProxy */; - }; - 9EE22FC60EF54ACC1DBE0AA3747CEB1E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FlipperKit; - target = 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */; - targetProxy = 48CF92450E430047374533AF191E27F2 /* PBXContainerItemProxy */; - }; - 9F382F0F4DC62BE098F47AB59D26CD86 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-perflogger"; - target = F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */; - targetProxy = EA3BC96A683098C322D8D9A4201C6C76 /* PBXContainerItemProxy */; - }; - 9F9E96DCB3F9F0B781E265BCCBC668AC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 8DD69B358211764A3708B7D9752BCC97 /* PBXContainerItemProxy */; - }; - 9FBA2354E3D9DB3527BA990D751BEFE8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = A7BAD11E39394B6D584779FC7F3358BD /* PBXContainerItemProxy */; - }; - 9FF5C46A0F73F73304E5C013301018CE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTActionSheet"; - target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; - targetProxy = 5C84737CA2110C0248B1C1076B0F8256 /* PBXContainerItemProxy */; - }; - A0AEAD7D988299EAD14FC3477F0A823D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 67C9F268927C2F38852B03E39468397D /* PBXContainerItemProxy */; - }; - A0DDAD591A4DF6D3BA9A4FC16E772429 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = EE9C32F21496332CD8EE50C5C6A13A23 /* PBXContainerItemProxy */; - }; - A0F89B34C11E5C272E462D4BECD75A24 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXAV; - target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; - targetProxy = AB026BA6501420546505C2B4AD67A5D9 /* PBXContainerItemProxy */; - }; - A1253F4A61836B241D551161DBB25E24 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = 69C4B5CAAEF0BB55A6BE0995ED5CBD55 /* PBXContainerItemProxy */; - }; - A15FFA2EF1F030D15EE0316F869A97F8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; - targetProxy = 38CBB5F8E93257DC2727843F26272FA3 /* PBXContainerItemProxy */; - }; - A17B0FFF6F5D916E73FBD75DE00C8612 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = MMKV; - target = 91A6826828CB9FCD0169A7547E8A79EA /* MMKV */; - targetProxy = 7EA3B46F44C1FA6693037350B9099568 /* PBXContainerItemProxy */; - }; - A198B81BF5928317CC6C8EBB6ACEA6E7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFBApp; - target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; - targetProxy = 66DE88AABE6181D380AC4362460FCF3A /* PBXContainerItemProxy */; - }; - A20F5D9C126F75013BF0826A56268AD1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = MMKV; - target = 91A6826828CB9FCD0169A7547E8A79EA /* MMKV */; - targetProxy = 53FC216A103EE3D81084DEEB73FC2734 /* PBXContainerItemProxy */; - }; - A2B8FBB3C6B2854E1B66D04224304C53 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 5FA024324D633C8BC4915EFE41F1D8ED /* PBXContainerItemProxy */; - }; - A2C1836FC2484E5905D5E329483ED926 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 1D4376B1CC0BE450204B1C28DC2E6725 /* PBXContainerItemProxy */; - }; - A41EAB4648CEF288B0BA724F41F6D016 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBLazyVector; - target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; - targetProxy = 8C49BF27BC5A5999B85FB0EA436738EB /* PBXContainerItemProxy */; - }; - A485EE75E2DA8E421674186457B6D059 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = JitsiMeetSDK; - target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; - targetProxy = 0F70EA7BFCE191ECE1960B543532FC07 /* PBXContainerItemProxy */; - }; - A4D5335067720FCF8F69B066BE03CECA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "rn-fetch-blob"; - target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; - targetProxy = 1235ED9FE98D1444DC4223B8B19928FC /* PBXContainerItemProxy */; - }; - A500D9DBE147FC103DD127FFA75CAC92 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-runtimeexecutor"; - target = 54EB12219122432FA744088BC5A680D2 /* React-runtimeexecutor */; - targetProxy = A221E0C93948D918C08A09F26BFA40B4 /* PBXContainerItemProxy */; - }; - A53B58FB727BB0AC2FF4DF7B759964A6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "RCT-Folly"; - target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = B983D6FFB54FE8811A75F80A76A4FF65 /* PBXContainerItemProxy */; - }; - A53D93CB0ABC9DDB9A291C3272069572 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Firebase; - target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = E4BE1AFA9AB4B3AC4945CEA50921A2FC /* PBXContainerItemProxy */; - }; - A56973BB4E8D396BCD91C9B6B2DDD41E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = YogaKit; - target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; - targetProxy = D3D53E793C673FB53364D8BAE5977CE6 /* PBXContainerItemProxy */; - }; - A5A2BAB44BF45233CBD5E55697B10E9A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 310BFC883882CD4D65C0C03D9FBA3EA1 /* PBXContainerItemProxy */; - }; - A65F5DBF991472086B036A42684CF2D3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 60C4960185A91270B1D46CDEB66423BC /* PBXContainerItemProxy */; - }; - A672F6B30C306F95793FAF6DF968D719 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = A6EBAB645D28C7F7BC14FABCA00B951B /* PBXContainerItemProxy */; - }; - A78EB0A2C0BA269218D21B56A161EE0B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = ED7BA1301D887DB75831C315AE38D399 /* PBXContainerItemProxy */; - }; - A82BD5127624B9166D8039F67B1A0AE7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = F8DEC101CF10138ECDDB13F1FED02E64 /* PBXContainerItemProxy */; - }; - A888882B88EE55C0472294E5BBA7D301 /* PBXTargetDependency */ = { + 06581BBE265A7DD3D1D2D8B47D3F1667 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "react-native-safe-area-context"; target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; - targetProxy = D368C9A8F031D3FBE06B6E4FF4AA1392 /* PBXContainerItemProxy */; + targetProxy = 0A9DFE0A0294268AB6014B42989FE795 /* PBXContainerItemProxy */; }; - A8AC230311E5D950C1AE37289ADA35C2 /* PBXTargetDependency */ = { + 06D4285144A100292AFDCA1D58852D0B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = BugsnagReactNative; - target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; - targetProxy = F9B4C2D0955D474D4036EFED28DA9992 /* PBXContainerItemProxy */; + name = RNGestureHandler; + target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; + targetProxy = 85E77B3B2FD9AB42A72382D093EF2012 /* PBXContainerItemProxy */; }; - A8C183ADFF325CCF108C8AF27F2FFA6A /* PBXTargetDependency */ = { + 06DFE146429667D97A66AD3ED6D41500 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXAV; - target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; - targetProxy = F6F2177422CDB3EC41F68D42F966C1F6 /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = B1BBB5FBE315C4CBAA720D4D9B7D4BE4 /* PBXContainerItemProxy */; }; - A9189E995F89C730A6A219FAFEB63AC7 /* PBXTargetDependency */ = { + 0747FF41083DD1A99FADC6EE41CFEE04 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFileSystemInterface; - target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; - targetProxy = 342C04769BA550C93DC698FAB3885091 /* PBXContainerItemProxy */; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = C827AD2FB8CCE1B89783E12ACB1DE8A0 /* PBXContainerItemProxy */; }; - A92199256F92152B3C3C57CC945FDEE9 /* PBXTargetDependency */ = { + 074E4A1E06D215325358F9491EBA62DD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = 0CDBD5170DBDDE74A0E348349DD3D02B /* PBXContainerItemProxy */; + name = RNFBCrashlytics; + target = E3573FB7AF659C42B699003C73722241 /* RNFBCrashlytics */; + targetProxy = 3A02EBF72AE042615492C95FEAC16E64 /* PBXContainerItemProxy */; }; - A976B49624F7672D5526F856FD779905 /* PBXTargetDependency */ = { + 078460A4645A81AE39FAD23D3F825E5B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = CAA33CCE99EF1E04EECA98D7C1B5B506 /* PBXContainerItemProxy */; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = CF24C0101B6F416BDA3559426B39B8F5 /* PBXContainerItemProxy */; }; - A9803DE8BE6D94E3688E32F1DB390E9D /* PBXTargetDependency */ = { + 078D974DD97F50B9C6CCBB9918E83A0C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "OpenSSL-Universal"; - target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; - targetProxy = DCA6FDEF41A677344E06717CC4DCE448 /* PBXContainerItemProxy */; + name = DoubleConversion; + target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; + targetProxy = C6F1B2F28EC949A2F23775114B17020B /* PBXContainerItemProxy */; }; - AA0C4C45643859FADF3115EC3AAE60EF /* PBXTargetDependency */ = { + 07C10A1E9B8B2A274082B2922CF9B0E5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-webview"; - target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; - targetProxy = FC264CDEC9C1861A60DA3B4F477FD2E7 /* PBXContainerItemProxy */; + name = EXPermissions; + target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; + targetProxy = 6E0867306259EF4E56A15E93200C6417 /* PBXContainerItemProxy */; }; - AA10360EA96B3F16142C7E06DDCB6E30 /* PBXTargetDependency */ = { + 07CA5199BF349E39C0E20814C168AD9E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = A2A0BBED14075C868FB9E772DD223922 /* PBXContainerItemProxy */; + name = "react-native-jitsi-meet"; + target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; + targetProxy = 5825107B193BDC6FFA838907DBBDD2FF /* PBXContainerItemProxy */; }; - AA5782B5BE88B5E8C461FE00F9EC5ADD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMPermissionsInterface; - target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; - targetProxy = CBABF71C14563F77FDA65FE2823EDAAC /* PBXContainerItemProxy */; - }; - AA9078A0BAA4DF12502FEEA8ABCB04B0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXAV; - target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; - targetProxy = 4B38B3DBCB1B0E7191341D70FB7A3993 /* PBXContainerItemProxy */; - }; - AAA4772A040AD138D702D3D4A945FF9C /* PBXTargetDependency */ = { + 07FA387EC0297BBBA9DDD5D35FA21B96 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCoreDiagnostics; target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; - targetProxy = 9153E72AB4CC4F97411BBD437F4B5C05 /* PBXContainerItemProxy */; + targetProxy = CED731F219923D07E68C447FD30042EE /* PBXContainerItemProxy */; }; - AADE9AF3778A0416AA6405DAD8ABDF80 /* PBXTargetDependency */ = { + 0840800CD20106D00B2EBFA7708C8206 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = C38EB51A10BCF5A8870AAB81EAADF33A /* PBXContainerItemProxy */; + name = "Flipper-Glog"; + target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; + targetProxy = 43732F95FDB3D65845FEEBE2AB2FF164 /* PBXContainerItemProxy */; }; - AB20C219F2A97A218B54F8DCE89DD07F /* PBXTargetDependency */ = { + 089071F102DA6BC109E6A2695ACE1C7A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 61CB7A704EAA244180C6686E2E412FFB /* PBXContainerItemProxy */; + name = RNDeviceInfo; + target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; + targetProxy = 3F973D3589686B607A4620DCC6AAD243 /* PBXContainerItemProxy */; }; - AB79E0D71419447F9F556D8DB047829C /* PBXTargetDependency */ = { + 08A1C64265C2F8101FBE98D0FE90E609 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNRootView; - target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; - targetProxy = C088C937AB030DB16EA50EF6957DB7E8 /* PBXContainerItemProxy */; + name = RNReanimated; + target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; + targetProxy = C348D58A74D11CAF02D67E09C473CDF6 /* PBXContainerItemProxy */; }; - AB9D643A2778F437910CB4E74A3912D0 /* PBXTargetDependency */ = { + 08B7AB3C00FAAC06D3E3D0591B84262C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsinspector"; - target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = 8B3DE108DA3C930FFE8FB32F29B413AD /* PBXContainerItemProxy */; + name = "Flipper-Glog"; + target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; + targetProxy = 06790524A32AC7900DB6F9427BB698F9 /* PBXContainerItemProxy */; }; - AC7A132FFAA2FD9A0EDBAA1460236E4D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNCMaskedView; - target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; - targetProxy = 385169389DEA7C59396EE40C04A724E2 /* PBXContainerItemProxy */; - }; - AE331AB8CDDCB8AC701B84EAAC9BC957 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-DoubleConversion"; - target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; - targetProxy = 5E036267A05C43EE225362D308AD9A94 /* PBXContainerItemProxy */; - }; - AE5CF0A042C1E02F74187FC52F7FCFDD /* PBXTargetDependency */ = { + 08E46DFA0C77B11BC79425135D63F0DE /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTSettings"; target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; - targetProxy = CEB327645951F98A240CF2612CF94030 /* PBXContainerItemProxy */; + targetProxy = 4043FF9D59414EFF826B78A1678C03D8 /* PBXContainerItemProxy */; }; - B0A0205BD814F23134023375FFCCA5CE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsinspector"; - target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = 7F49B1EFC2C849DF369E9F938BBAA8A8 /* PBXContainerItemProxy */; - }; - B0E3EA9FF95B8408AD397D24872585BE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; - targetProxy = D63D4FB1DFDDF529BE26FC5839DD6017 /* PBXContainerItemProxy */; - }; - B0F76603EB5B51C7723713D5B4FC6DFF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCoreDiagnostics; - target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; - targetProxy = CBAFCC58CA1993FB5238B3560256E83B /* PBXContainerItemProxy */; - }; - B186BC90F3C6F44FDA081A2DACAFEEA5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Firebase; - target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = 63FA0351BB08CEAD1994C8B3C05882AB /* PBXContainerItemProxy */; - }; - B1F45058D1948457BAC0DB7A6FE26809 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMImageLoaderInterface; - target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; - targetProxy = 5B2814F5E31C22E86F177449E4067F24 /* PBXContainerItemProxy */; - }; - B31C78B082FB7089D7AEFC723FB70CDC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 364BB302F9F4F93052AF751D9B09EF9E /* PBXContainerItemProxy */; - }; - B34E542847530FA7DB4C1F50A6668CAC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-appearance"; - target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; - targetProxy = C2B104579BE1E91AD20A5A3131E32CC6 /* PBXContainerItemProxy */; - }; - B43351D862E2F86840B49BC34F9AF68C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBLazyVector; - target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; - targetProxy = 58627DA5144975648A7595D02C1EE745 /* PBXContainerItemProxy */; - }; - B4F8FA3F8325821AE09EEEDC18CF4C80 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-CoreModules"; - target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; - targetProxy = 206FEF768D49FA83985BFCAE60C0917E /* PBXContainerItemProxy */; - }; - B52447CE2B12B18BDEE3350B441607E1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-perflogger"; - target = F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */; - targetProxy = B7184194C2170723E9403BE62B28A7E4 /* PBXContainerItemProxy */; - }; - B5A35BFE8E9DC1FC9B2212DC34CFADD8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-restart"; - target = 3ED96FB9FE1D18D5F1239C60A109F98C /* react-native-restart */; - targetProxy = D8C6F48B2DC8BB8EE144A99A0879E3AD /* PBXContainerItemProxy */; - }; - B5A38E1B5B03AEA2778124FF9592B93E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactNativeART; - target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; - targetProxy = DFECA19D70CD6BCFC16288D9009D48B4 /* PBXContainerItemProxy */; - }; - B64BDCA6FD8E396AC66634B2555F8C07 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 384AE38F79C42E10943B780E2E17BC6E /* PBXContainerItemProxy */; - }; - B6B9F48545DE7579E2B5D4A8304D5CCD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "hermes-engine"; - target = 985FEA01F314F3C00F0C1E1181E6C4A5 /* hermes-engine */; - targetProxy = 3ED7C0770B48642D7EF35E9060FF6572 /* PBXContainerItemProxy */; - }; - B6F73872A991C355037C8E6EC9927861 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 240290741768B9358652B3C5ACA8C91A /* PBXContainerItemProxy */; - }; - B882BE4440A02DEC5ED34F6633978848 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = YogaKit; - target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; - targetProxy = 6006F320ADAE163A45A5B8EA0FC23AFF /* PBXContainerItemProxy */; - }; - B89EB50CE36E3722352618E309491AD5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 835FB3E60C719558132A2FC6F8366D3A /* PBXContainerItemProxy */; - }; - B8AC712E583B50D1E923DA57F66D5590 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXLocalAuthentication; - target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; - targetProxy = 04A29E96F618AB28E333D771B0F2DFB7 /* PBXContainerItemProxy */; - }; - B8C3812A21A9AF6E2B8F5485D346DC71 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FlipperKit; - target = 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */; - targetProxy = 5449DA338045B73BF1DE899605A285D2 /* PBXContainerItemProxy */; - }; - B992DAB4100665B6923638355B74247E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFBApp; - target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; - targetProxy = BA1ADE747ED481B871D3CCB3E4364F00 /* PBXContainerItemProxy */; - }; - B9A953111C6A4A9A92DFB549B83B8CEE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; - targetProxy = 32894C14677AD75701369F1EEABF1E40 /* PBXContainerItemProxy */; - }; - BA615F4AF5532B1C3B8B13FE4130D900 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 336F94B397E0CC4DA202C60C6E71DC4B /* PBXContainerItemProxy */; - }; - BB00768C8A6E84D0EBE7A0BB7EB48AD7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = E3A293DD2313E6686A0F8BF166983834 /* PBXContainerItemProxy */; - }; - BB4186E2484E49A4029F6A7B2EE0BBA5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXFileSystem; - target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; - targetProxy = 0D8CCE760E706AAA8AD8A76466236ABA /* PBXContainerItemProxy */; - }; - BC1D70594C71CB3E909A1DD98372EEF3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTRequired; - target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = 0259035024BF65544772BD24E4F458D5 /* PBXContainerItemProxy */; - }; - BC91AB19C9A5307793E95A51A843CFEB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = 334BFD2D2CFC906410AEBF2FBA56E828 /* PBXContainerItemProxy */; - }; - BC9BECB0F8C3172E890A98B49C4AE39E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = 30BB9E1C65A3C31410F8E97BCE4C2391 /* PBXContainerItemProxy */; - }; - BC9D59E0D93AF1D641DF2981DBE8A769 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBLazyVector; - target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; - targetProxy = 35166A53DDA1FBDEB3CBA1A9B5A894D6 /* PBXContainerItemProxy */; - }; - BD2378143242261608F299A82A8462E2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-perflogger"; - target = F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */; - targetProxy = 8E0E1B9C416FAE921CE81D66553D9F28 /* PBXContainerItemProxy */; - }; - BE545AD1D715F64803079DB3B992B83F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Firebase; - target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = D0E316C535CFE44A78DDD2AE7AB44A31 /* PBXContainerItemProxy */; - }; - BEC9BB0FA1714B2AF50150DAE10735EA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNCPicker; - target = D00F24222F074B31C56DC6D05E806A35 /* RNCPicker */; - targetProxy = 435728E6E8A30A773C0A0A76BF13E20E /* PBXContainerItemProxy */; - }; - BEE6D8663C50AD6AB117C2B082558F6A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFBAnalytics; - target = BDD119F8782FABE2707D3D913EC3EDE5 /* RNFBAnalytics */; - targetProxy = 8177181DABF074EC4A5A5395CAD1CD4B /* PBXContainerItemProxy */; - }; - BF41D1877D528FE1C848F5BFAA213250 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = E3268E97A5E2AACA6197A716105F6F85 /* PBXContainerItemProxy */; - }; - BF9C1A267D183B42D9B63DB7DEEACC18 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = E602AF9AEA7F639608325762E8949E5D /* PBXContainerItemProxy */; - }; - BFEDB1AD2BD8403D75C8749771DC9063 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNVectorIcons; - target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; - targetProxy = 65797E5BCD5762D88770B27BE0944D60 /* PBXContainerItemProxy */; - }; - C06021964546226D9DC0A95524578A5C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFileSystemInterface; - target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; - targetProxy = A12C07FFF87A566FBE24886B9A58988D /* PBXContainerItemProxy */; - }; - C08D01023CEB40009CAEDF5BEBE64E13 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = CocoaAsyncSocket; - target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; - targetProxy = 489BBA8E7297E678FC4FCF31935DBF7B /* PBXContainerItemProxy */; - }; - C09189B97D9015822936513854118BEA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "RCT-Folly"; - target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 92495DD957F8471A480A348CE51A5032 /* PBXContainerItemProxy */; - }; - C0E0B97DD44BF97248316F655515DB6A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXFileSystem; - target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; - targetProxy = D6187EC5AD1E056A3B1D0F4B0579898D /* PBXContainerItemProxy */; - }; - C18795B671BB4C00F5FA1AC19FAAFA5F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libwebp; - target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; - targetProxy = F096BDBA6F278FB3B152016214F18EE5 /* PBXContainerItemProxy */; - }; - C30C6C57FC88E571277F8EAEB0CCE4F1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Yoga; - target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = AAFC2EBCDFE1494B84A346ADE397DD32 /* PBXContainerItemProxy */; - }; - C34A569D3695D765617F8DDCBDA67CCB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 88C12AA7B358383DB2E389684FFB4323 /* PBXContainerItemProxy */; - }; - C360514083767DF91676B4F77B6C40B3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = D1EEBD86A5BAD58B6ED911AAC441A69C /* PBXContainerItemProxy */; - }; - C3EDFF495742B0C7EABB48B19DD27A38 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = B6D658B5760AF973294D0A108231588B /* PBXContainerItemProxy */; - }; - C4D577534958299C738114DC34F1AE24 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "rn-extensions-share"; - target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; - targetProxy = D69CF3AFE49DC3012E6B18F0C89960B7 /* PBXContainerItemProxy */; - }; - C4DC2413F81E9BD54E62FA195F2BD0F3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTActionSheet"; - target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; - targetProxy = D614FC9D2A8C12ECF40BDB1A50690129 /* PBXContainerItemProxy */; - }; - C4FDC56A5A79BDB4B7E097EF3309CDB3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = 392C1AFF2C9A9B924E18ECAEC27D2633 /* PBXContainerItemProxy */; - }; - C51816DA7D20FB302F87D63FA6E3136F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = 1D23F2DF64FF03C0298D8F9832894F71 /* PBXContainerItemProxy */; - }; - C51EA05C2F12F2A1610D249236E5CF60 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNRootView; - target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; - targetProxy = E8204B9F6A44A64E028CE3B0280132B9 /* PBXContainerItemProxy */; - }; - C5F3550D959276D7F0A7B819380AB9CE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = MMKV; - target = 91A6826828CB9FCD0169A7547E8A79EA /* MMKV */; - targetProxy = 3ABD2D6FFBEC69D78324C8D11B0CA588 /* PBXContainerItemProxy */; - }; - C6B18F3F41C4C2DD80D490AA4BFFA0BB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-simple-crypto"; - target = D985A509BFE270C95EDCBE6B4CBAF189 /* react-native-simple-crypto */; - targetProxy = A2AD09EE3F4A24CF954BADB2764FACBF /* PBXContainerItemProxy */; - }; - C6DE071D75D15A4577C5106FFFD5EB5B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMTaskManagerInterface; - target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; - targetProxy = 834E4264FCAFFF39DDB257894CD94ECF /* PBXContainerItemProxy */; - }; - C749AB792CCFC0225BB932760640AD34 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "rn-extensions-share"; - target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; - targetProxy = 5968EC75026376C723016DE4EB14710C /* PBXContainerItemProxy */; - }; - C771B7287EF550D2B2417F7A6506299C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsiexecutor"; - target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; - targetProxy = 4F4A70F0F7B2D7585C80040631D84155 /* PBXContainerItemProxy */; - }; - C7730CDAE83A9D61ADA667305DF945BF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = 5C5ECD66EDAF2199B36FA3361CF2C01C /* PBXContainerItemProxy */; - }; - C87E1CA6C0CF0130BDCBB63E30E95C95 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 5715D0245891994639BD713CCE2FCDC5 /* PBXContainerItemProxy */; - }; - C9201E668BA83F9A5EB9685E562C9737 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = C9AE1789E6685FA287BAD5E547E3F284 /* PBXContainerItemProxy */; - }; - C951F343C7D421AD554A20E9CF3196F5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNLocalize; - target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; - targetProxy = 0B42604D0512FB0369E965458DF7ECF6 /* PBXContainerItemProxy */; - }; - C99BED17C691119A6B91C9FEACE75C43 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = DBEDB6D27A84F371530F3C0593209399 /* PBXContainerItemProxy */; - }; - CA27CF685C2C2B9B5DC953139A41D202 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNDateTimePicker; - target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; - targetProxy = 0AEB8D16778EBB6A27D3537C4CC7B3CA /* PBXContainerItemProxy */; - }; - CA2CAE6221E61E3DB95060115B828AF3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXPermissions; - target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; - targetProxy = 27EE45DF3F7E913F6D51B924C0F64964 /* PBXContainerItemProxy */; - }; - CA37AB5174331D3B5180A442E2DBB9EA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "OpenSSL-Universal"; - target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; - targetProxy = 8239B2FAE2F159EE0AA034AD7CE452AE /* PBXContainerItemProxy */; - }; - CA7CE761DF0386188A5CD9A8D9D3D4D3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-perflogger"; - target = F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */; - targetProxy = 4EA64E213B1176ECA4E4FDE5596BF5FE /* PBXContainerItemProxy */; - }; - CA9E25FFA1207B278DF9F17A509202C2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-cookies"; - target = ADC4ACC657481AD27F9936D08FF7F49A /* react-native-cookies */; - targetProxy = FB373E935F7F40D49A128E0E43B2F049 /* PBXContainerItemProxy */; - }; - CAA6ABEEB8FA262D69EBA17C73AF6BFD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMAppLoader; - target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; - targetProxy = 7ABA5BBC407A0F1AD3343385840A1DE3 /* PBXContainerItemProxy */; - }; - CAC7EA6CD758940A3E763A144798E90A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-Folly"; - target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; - targetProxy = 7017E26D462BB15D22C7779F326D5E50 /* PBXContainerItemProxy */; - }; - CAFB57F8AE93FEA0CA00B1B414FCE9E1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-notifications"; - target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; - targetProxy = 249BDDCE56FA1219C023C8BFC1679A1B /* PBXContainerItemProxy */; - }; - CB5004AE270D20718A435586D148F26A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMBarCodeScannerInterface; - target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; - targetProxy = 723767E9E6DEA0DE9F98E4E46E086018 /* PBXContainerItemProxy */; - }; - CBE2C1D6A2EA425F650D63A77DEE72B5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-blur"; - target = EEBB8D24F2B3531A5C5DAA668D02331F /* react-native-blur */; - targetProxy = 061E0C62FAB4C039A5BBE750B846B533 /* PBXContainerItemProxy */; - }; - CC5851616CCAB2ABCB6BD2E4A5EF2E4F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 58F932F4F46487B43E0E0FD211385244 /* PBXContainerItemProxy */; - }; - CCC391B368BD0B91D469BB2CA6F8B171 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Yoga; - target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = 26F735B495CB65202AA83F7BCBED485C /* PBXContainerItemProxy */; - }; - CDC86084189D1B288158977775A71AF6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 36D3B78634ACEBA99CB95451D47219F3 /* PBXContainerItemProxy */; - }; - CDCEDBA0CF0E5910A90305B1CD1B7150 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = AAE3CD27142D8B12A9715C1FC175C18E /* PBXContainerItemProxy */; - }; - CDF141EE05890E0D4EC71A6D3171FA3F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Firebase; - target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = 25475D08A1940A654C22F3CD8D4185E4 /* PBXContainerItemProxy */; - }; - CE96F699C73DE6CC07B83890B7996683 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-orientation-locker"; - target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; - targetProxy = 0CCDC65DD2422E7B115AB86EC6032C74 /* PBXContainerItemProxy */; - }; - CF558CFD06A73FD81A4CD22115BC4AD2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = E002AA7AFF09D54FB31BCC45F5E89CD8 /* PBXContainerItemProxy */; - }; - CF81461178FABB620CE624EACA9FFC23 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 372ACE07CBA9C8AC1FA1E32B37259087 /* PBXContainerItemProxy */; - }; - CFA6A3C29F8BA5B53E490CE1AB6F5B08 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXAppleAuthentication; - target = 28A005E00FB77DDB2543047A07ED99A5 /* EXAppleAuthentication */; - targetProxy = 28F3D3A3282014B90F77F24A290FC2E6 /* PBXContainerItemProxy */; - }; - CFBDB23CC3B368C9E47F9B89C3D654AD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFBCrashlytics; - target = E3573FB7AF659C42B699003C73722241 /* RNFBCrashlytics */; - targetProxy = 152212E785147A4A9EC68147E2A59C99 /* PBXContainerItemProxy */; - }; - D01C636B06618661D7FBCEDA87570C44 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-callinvoker"; - target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; - targetProxy = 63C7A6779E1C2ABF1E415D355A01A374 /* PBXContainerItemProxy */; - }; - D0A0376906910BAA8460F83C7F180F89 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-simple-crypto"; - target = D985A509BFE270C95EDCBE6B4CBAF189 /* react-native-simple-crypto */; - targetProxy = 8A7B9F45835D5C9F65C475E78A1B8F52 /* PBXContainerItemProxy */; - }; - D0DFE3F37548E4837210999FB091C544 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = 471F676558B55DC9029C62AC136082C3 /* PBXContainerItemProxy */; - }; - D0E1B31E52A4009C9FE500708071FB76 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Firebase; - target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = 4E5D70908FEEFE90467A131A610FD882 /* PBXContainerItemProxy */; - }; - D0E754E040BEB81F04A487F7261266D2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNVectorIcons; - target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; - targetProxy = 6CE5630900C79CA6B02FACD8E6BC1FF7 /* PBXContainerItemProxy */; - }; - D13890A0C72AA57CC602024D3AC971AE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Yoga; - target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = 67E0B234EEC6BAF567D06072BB124FF8 /* PBXContainerItemProxy */; - }; - D1634CCFDECE27700E97108882D4314D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = F07E99EB53ADA749A7BD8AF84451F6B2 /* PBXContainerItemProxy */; - }; - D18AA4588642F3537AB91FBC5BF2819F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-Folly"; - target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; - targetProxy = 7F1A604152485CBB5E0AE34A2E1745F8 /* PBXContainerItemProxy */; - }; - D1C5B5C0BC875BDCDB1612E89713449D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTText"; - target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; - targetProxy = 9A4D44903D38F168DCA74B364E1C296E /* PBXContainerItemProxy */; - }; - D2B966683EE28CCBC5BF801D8D41ABBD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = YogaKit; - target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; - targetProxy = 32AC93E2D70898F6D46AB6FEE63EBE2D /* PBXContainerItemProxy */; - }; - D2D05EA5192501B3E6BC8AE6D03CEA50 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "RCT-Folly"; - target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 2D1CFBCDAB838B74E42BC6F91A1CEFFE /* PBXContainerItemProxy */; - }; - D3B88D9D67A8DFE13CCB9E2605B00584 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 9AAE2D4860B7230E5DAB3D413B6716FF /* PBXContainerItemProxy */; - }; - D465CE1252F8BF478910D32CCD5EE693 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-jitsi-meet"; - target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; - targetProxy = D4B99CC9F7827D757974B888EF66486E /* PBXContainerItemProxy */; - }; - D474E0B9B6C8E58F96BC8E05BAB9DC42 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-Glog"; - target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; - targetProxy = 7AD8D786682277F262DBA5E37DC0FFB7 /* PBXContainerItemProxy */; - }; - D498FBDD7BB22D67844830ADEC9A7C62 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 8539E7C8A07C2A28C9E3F77327260E8D /* PBXContainerItemProxy */; - }; - D4D18D60FB2EA6014FE85A825B81B9E8 /* PBXTargetDependency */ = { + 0987DFED30CBA12D096400B5E00D080C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = 583DC4B85E3C78ABCFFCCDE82AB46EDB /* PBXContainerItemProxy */; + targetProxy = 7C105FF79E70FF52707B9493BDE8052E /* PBXContainerItemProxy */; }; - D5762F2C470DEFCD63E19CA36BE813D9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNVectorIcons; - target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; - targetProxy = 2AEC3531AC9C02228BD7A53F3E7701B7 /* PBXContainerItemProxy */; - }; - D60C35BA1C462EFC63A3EA8F9BCCCD6B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; - targetProxy = 6A2D37B5F83BBF148FB9E1C6E85400A5 /* PBXContainerItemProxy */; - }; - D6A5F10A4F534AA113F3CEC54A11CE4A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-mmkv-storage"; - target = 74DAFD196634D10887C9A4E7BA19A5E4 /* react-native-mmkv-storage */; - targetProxy = 33462021A264A0E69FCCA8E4B096A72C /* PBXContainerItemProxy */; - }; - D6C099774C52D0B83C113F8AB6AF0166 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 06F1D25B4398B662F5F152B1B38E9F88 /* PBXContainerItemProxy */; - }; - D80AFD8E64FAF32F56C3769D16E7980F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-PeerTalk"; - target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; - targetProxy = 7EBE9DFB1ADB0F8DF216477847348EB5 /* PBXContainerItemProxy */; - }; - D834279254B0C7ACF2479501B3BE5FFC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-callinvoker"; - target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; - targetProxy = EA75144D4A7A4BEB996CA0EF808F00E6 /* PBXContainerItemProxy */; - }; - D848CBF22954276124F0FD6BE0F4E179 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-DoubleConversion"; - target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; - targetProxy = 1DABE8B7FBE07B17B7C20A01C82C3F5B /* PBXContainerItemProxy */; - }; - D896F3A450C1D1FDFCB4F31B7349EFC4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 263BACA97EF83BFCC6EBE9ECF4A10BAC /* PBXContainerItemProxy */; - }; - D8C29448EFAAE753BA64508F94FBB741 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 9AB2C5B2F7381E2F32EE3D989D749ACD /* PBXContainerItemProxy */; - }; - D8E7F2302A36A4CC444DAAF727966D1C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-runtimeexecutor"; - target = 54EB12219122432FA744088BC5A680D2 /* React-runtimeexecutor */; - targetProxy = 1E2553D1093745A57498F8094F5D0EDB /* PBXContainerItemProxy */; - }; - D9548602BBD2FF95C2BDD875F010675A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = A1A2D6BA87D23A1E9B3C845F54DBE492 /* PBXContainerItemProxy */; - }; - D958079E393E49C166150E150992EFE8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNDeviceInfo; - target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; - targetProxy = FEE5EAA5197ACC539BD45F4437F4DA52 /* PBXContainerItemProxy */; - }; - D97FC630B18469980017AF11C7084330 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = CocoaAsyncSocket; - target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; - targetProxy = 2540FC67353BA80345E2CCDC030A21FE /* PBXContainerItemProxy */; - }; - DA20163E6CF0BAC972633D3B671918A9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Yoga; - target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = 390421F805A5B4A2A505BEF84B550378 /* PBXContainerItemProxy */; - }; - DA862CC309538C47A0939B69BC99ECB7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = 02E88910FE013063EE355A944317C3DB /* PBXContainerItemProxy */; - }; - DBE90DAC921DFA27938C3FB621BFD425 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 4E13453CB60F04FB20796CF642E0C8B8 /* PBXContainerItemProxy */; - }; - DC8007637B61CB401B41D9856739B47F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNReanimated; - target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; - targetProxy = 3CEAEE861A2AD05FF20AD14C3B72E289 /* PBXContainerItemProxy */; - }; - DCA24E419C376D17414A1E386D7CA906 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFBApp; - target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; - targetProxy = E51D41F7C272B9BE4B069D93514091E5 /* PBXContainerItemProxy */; - }; - DD33444C57E7602983B47EFD12BD6999 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXPermissions; - target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; - targetProxy = 6904E726F5020ACF1C313E659AF32C9A /* PBXContainerItemProxy */; - }; - DD733B77884DA3E50CE70D132EF0DA38 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFileSystemInterface; - target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; - targetProxy = BA58F8C083773C9AB7A58C3C6CAAC9BC /* PBXContainerItemProxy */; - }; - DD9477014B54D29B9381C9ABC8081756 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-safe-area-context"; - target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; - targetProxy = 9ED2D8227A9338BA24D4AE71D3700E8D /* PBXContainerItemProxy */; - }; - DE73C10DDD33AFDB328847815EA41F2E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNDateTimePicker; - target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; - targetProxy = ECD174F11F2C104A314800934E6437C4 /* PBXContainerItemProxy */; - }; - DE8706F248540049774EE5FACF0855C9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTRequired; - target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = 15B94F406475CE4A00B3EE030A43628E /* PBXContainerItemProxy */; - }; - DECBEF5FB476D4019B4AD0E57FBBD5F6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 5277588448F7D75A4613EABE60F2E9C8 /* PBXContainerItemProxy */; - }; - DF1A92BDAF21DA150ACF57A30236D172 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "RCT-Folly"; - target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 3404ECEE0FDF431658C5F0C3BF105E1F /* PBXContainerItemProxy */; - }; - DF1F89F4D99E51D305A356CB45ED0901 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 997C4D9AA57EF5DA867278131DDF9C64 /* PBXContainerItemProxy */; - }; - DF35925B2D18336263FCBB503F132F5E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 6CA4A320FEF0D8C5D66AC536D597F848 /* PBXContainerItemProxy */; - }; - DF64D789417A501A2F9F59963BB7E502 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 00ED4038C38EC4E696DBC66F36EDA85A /* PBXContainerItemProxy */; - }; - E039F7B592BE1B248B00C1CC2F173A5E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-callinvoker"; - target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; - targetProxy = 0DD320C684BA26CBA2EBF1651AB90D78 /* PBXContainerItemProxy */; - }; - E079079B587B287BBB051747E4B97742 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 78B4CF7D6E33E214AD8F639DC6ECA020 /* PBXContainerItemProxy */; - }; - E0AEE8DAC0ED73D52F77C9B9E5B5434B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCrashlytics; - target = 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */; - targetProxy = BDD76A33A23A32D1BFD6ADCF05DDAF76 /* PBXContainerItemProxy */; - }; - E0EB6589DFFB347F102BEAF1BA10E596 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = D6AB8469FD06BBB25A68926DB9850100 /* PBXContainerItemProxy */; - }; - E101E6772CEE39905698F758610A35B0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = 345F15FDA307C8566165C02C31790D07 /* PBXContainerItemProxy */; - }; - E13F0DDACA02506E91E39CB5D1597FDE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = MMKV; - target = 91A6826828CB9FCD0169A7547E8A79EA /* MMKV */; - targetProxy = 4A08B7F6FFA7BF2E527C00AE9B470881 /* PBXContainerItemProxy */; - }; - E174C9E7C2B3FD5D9A6B862AE2BF96C3 /* PBXTargetDependency */ = { + 099B02666A9FED3BE202D35B882EC3AC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = TOCropViewController; target = F3966F664F3CFAEFAB57C40FB54D3788 /* TOCropViewController */; - targetProxy = 56941A8C80BCC8DB2E142A2F94FD2926 /* PBXContainerItemProxy */; + targetProxy = 1456B2FA056DC965181C7F0C6E919AD5 /* PBXContainerItemProxy */; }; - E1BB173C00706C35740D5DBF00C16E6A /* PBXTargetDependency */ = { + 09E092BE133986A171B07BC6D8701CDC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-cookies"; - target = ADC4ACC657481AD27F9936D08FF7F49A /* react-native-cookies */; - targetProxy = 79455B5008438FABE11C8547A66848D4 /* PBXContainerItemProxy */; + name = "React-RCTImage"; + target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; + targetProxy = 31E350F39C5D276BCB98AB611A9D97E3 /* PBXContainerItemProxy */; }; - E24146E6DC169422631F124334A703EB /* PBXTargetDependency */ = { + 0A1C848B756BA59CF4940A55BC43D1CD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-callinvoker"; + target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; + targetProxy = BE69082F9B4A1B279B7D2DEAE1FA4F65 /* PBXContainerItemProxy */; + }; + 0A530926521BF32BDC83CB3DC0B9AD06 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = libevent; + target = 04A30E186743192DFB26B0FD7DB8F250 /* libevent */; + targetProxy = F28B8F2BD3890F823DEB2F0A27AA941A /* PBXContainerItemProxy */; + }; + 0A71813E42742064C2A6E1B6A8DFA217 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-restart"; + target = 3ED96FB9FE1D18D5F1239C60A109F98C /* react-native-restart */; + targetProxy = 6DBC5E3B31BEC0C90A96EB5A2275E508 /* PBXContainerItemProxy */; + }; + 0AD8247BBC433D6F5FB85D1294D42584 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 4607BC8B7AC1B35B433546A0CA15F20C /* PBXContainerItemProxy */; + }; + 0AF313A6EC833C599932A15C6DFCD05D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 783E240EE084DDA5A78595BE3B9BF749 /* PBXContainerItemProxy */; + }; + 0B1B7338467B7AA28DD0F843A7F1CEA1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFileSystemInterface; + target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; + targetProxy = 9E605D07C9A2C9D2C4BCC6B884AD7049 /* PBXContainerItemProxy */; + }; + 0B22122829B782673806D4880C7DCCB0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNFBAnalytics; + target = BDD119F8782FABE2707D3D913EC3EDE5 /* RNFBAnalytics */; + targetProxy = AD24D0FDDAAC1180E7B8D243B1DBD0A6 /* PBXContainerItemProxy */; + }; + 0BDAD72133359C849228AA6F500B4F8C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = 2F4879A05BFC5094890FA24FCEAE9D80 /* PBXContainerItemProxy */; + }; + 0C5A32F38B6CE8A97EB60D21AE865E1C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 618D168BEAACFA3B5A1C875C806E8E78 /* PBXContainerItemProxy */; + }; + 0D160D84F558E5F16EACA16E408D9300 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 616D3AA11D13A7910CA749A077049EEA /* PBXContainerItemProxy */; + }; + 0D981C6AC96FC2EF1A05A3C3D9198ED9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = 11DF1736BC18EA43B128E788455A8AC5 /* PBXContainerItemProxy */; + targetProxy = CF79307C4074C0EE44AA1518201076AC /* PBXContainerItemProxy */; }; - E3167913056EF89CD3FFEF72323CA7C9 /* PBXTargetDependency */ = { + 0DF0EFEA719F6A4CE1333BF522CB2E90 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = CB65A3DE60BF91F8D002B55E48392400 /* PBXContainerItemProxy */; + name = ReactNativeUiLib; + target = 037A1F31C4D99F52EC9FD2008FEC481C /* ReactNativeUiLib */; + targetProxy = BD3DA643E5D4F3629E2F4B94C781071F /* PBXContainerItemProxy */; }; - E35AECCDAD4B198593D6DE750CA599BA /* PBXTargetDependency */ = { + 0EF8F91F8248B9EE6B7CFE0746816F4A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 450A74806A894097E56E53C467C6071E /* PBXContainerItemProxy */; + }; + 0FA9508DEA5A851C63900F532E0EEBCC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-DoubleConversion"; + target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; + targetProxy = 752CBFB908C2FB61C67D095B8193D181 /* PBXContainerItemProxy */; + }; + 0FB7A1C1B57CDE3CCA2154BAF152A69D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTImage"; + target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; + targetProxy = 95FAEC2CA639200B7CF704A37F3D8161 /* PBXContainerItemProxy */; + }; + 102EB782CFEE7891EE38DD374F8F4EF0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMImageLoaderInterface; + target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; + targetProxy = 7329F52023168D19C86DE1935125A18C /* PBXContainerItemProxy */; + }; + 104F5FD95776AE88144431C8EB2ED21B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMPermissionsInterface; + target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; + targetProxy = E3CB1A7959D2077AE6EB8D73AEB1DFF2 /* PBXContainerItemProxy */; + }; + 10B2EEE0FA82ADD87D6BF07D08B3FA1F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-Folly"; + target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; + targetProxy = 2BB45B15977B4D64BFBC928FAA481E42 /* PBXContainerItemProxy */; + }; + 10C3E41DD5D1E65AE1D108DC9A22B515 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DoubleConversion; + target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; + targetProxy = 3FB19AAC9883D1DF028837AD838AFD66 /* PBXContainerItemProxy */; + }; + 119FDFB4BE7D18B2381E3245FE29726D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MMKVCore; + target = AC8AE887C706A43711D115E69B9D988A /* MMKVCore */; + targetProxy = 86376CA1273408D151342DF5A9B674D9 /* PBXContainerItemProxy */; + }; + 11A58981D85B7E911875AD1BC1BF46A1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = E4ACA2EB08ECAB1655407129AC4B3A23 /* PBXContainerItemProxy */; + }; + 1222D4127271B30975E49C7FD3C23E40 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXAppleAuthentication; + target = 28A005E00FB77DDB2543047A07ED99A5 /* EXAppleAuthentication */; + targetProxy = 2AA39714F678F715EBDCBA967B312027 /* PBXContainerItemProxy */; + }; + 126200BB0A7DB902A5E4583D7FA1C8AF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNFBApp; + target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; + targetProxy = 527143A654B69B7A706F5D0CF42BFF14 /* PBXContainerItemProxy */; + }; + 1279A41EC69B47E4A1E369C0DC83813D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTImage"; + target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; + targetProxy = 89B28730D4FA80B4DB5CE7D2E7EF54E0 /* PBXContainerItemProxy */; + }; + 129652D306D189128AF6BC637F73E631 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTNetwork"; + target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; + targetProxy = 0D0AE483C6A7D26E60A3E5836F3E9935 /* PBXContainerItemProxy */; + }; + 1317CE4B1006CB56E7934B0214C8EC66 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTVibration"; + target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; + targetProxy = 9799B7A56B0DFBD51B4C6598AAB2A8F5 /* PBXContainerItemProxy */; + }; + 13247A46AA92E6A3D3F5A744F4D58B24 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDWebImage; + target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; + targetProxy = 8ABA38D0FA17CAE94D1D5914C9E7E0C7 /* PBXContainerItemProxy */; + }; + 13646960B12AAD847DBAFADF0A468D3C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 5B3D2BBD2FB85E098BAD2132F8F32286 /* PBXContainerItemProxy */; + }; + 14A6CC6C8BCD2260E0E95AD40F7ED787 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTLinking"; + target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; + targetProxy = 75B6C953C09AA70B51B016BEC1330C3D /* PBXContainerItemProxy */; + }; + 151F44BDFC518BBE6E894E2E9750A082 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = E9BD6DE24A25F7E905E7360E496B512D /* PBXContainerItemProxy */; + }; + 163AA5542D65AAA9BB944EE197510840 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNImageCropPicker; + target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; + targetProxy = 3B9B24730AAD3DAC01ACFB01865543A9 /* PBXContainerItemProxy */; + }; + 164147E3B39910E42F7DACAACFBF50FD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsiexecutor"; + target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; + targetProxy = 53DAD65A32AA8A988F94CF3A96ED27C2 /* PBXContainerItemProxy */; + }; + 16596F20E08FD754A3E7562A786D03A8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-cookies"; + target = ADC4ACC657481AD27F9936D08FF7F49A /* react-native-cookies */; + targetProxy = EF7B80107AAAA15EFBDA53EC3C870668 /* PBXContainerItemProxy */; + }; + 16ACC4A08705A592AFCE17DDFD8E0CC1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNReanimated; + target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; + targetProxy = F1E1199BB86BDF435BCD4728D3BF5B5E /* PBXContainerItemProxy */; + }; + 172A72C506F04FE3CDE6F0087DC1D067 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMBarCodeScannerInterface; + target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; + targetProxy = A5A81A1DD73D834714EA4B337BDFA227 /* PBXContainerItemProxy */; + }; + 178002977A789D07FFD4D43F25338040 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = ADF92BD3CB4D4109A6D3DF81BB76C847 /* PBXContainerItemProxy */; + }; + 178A4402A1BF0155CE79E7E874FB4F23 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = CEEF311050BECDB18E83AEEF9651A0EF /* PBXContainerItemProxy */; + }; + 17AAA8CD778A23D4083A60EBD8BA53F4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = D4912FE6B05B3B1F98C16E90D81FA9DC /* PBXContainerItemProxy */; + }; + 17ACD7CA5C5454197BEF004B20B06C45 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = F0A7CF52332BAD6902942DD81A2E0DBC /* PBXContainerItemProxy */; + }; + 195293486DABAF93881FB907D850A976 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = libwebp; + target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; + targetProxy = 64B2A59ED69101DB0F57079B7FC99B09 /* PBXContainerItemProxy */; + }; + 1A82BC42D58BC88EEF8A286565649720 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMSensorsInterface; + target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; + targetProxy = 58A8053A3AF1DB1BEF477C23CC12B29E /* PBXContainerItemProxy */; + }; + 1AE4A96BAAAA3CDD1FECB55CB34DB2D5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDWebImageWebPCoder; + target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; + targetProxy = 1A0E2B6F34CE3EDB03839671CF9F8C4C /* PBXContainerItemProxy */; + }; + 1AFF613E47D143D42406774C30AFE976 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-runtimeexecutor"; + target = 54EB12219122432FA744088BC5A680D2 /* React-runtimeexecutor */; + targetProxy = 465B48563448B30560ED5332D0F15C5C /* PBXContainerItemProxy */; + }; + 1B0CEB4B460BC0DB66DF4D7816E79262 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "OpenSSL-Universal"; + target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; + targetProxy = DA00115FE032C1EDBCFDC1EC11B8336F /* PBXContainerItemProxy */; + }; + 1B7640976B4CA50F13C1D5C1B98BC75D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNFBCrashlytics; + target = E3573FB7AF659C42B699003C73722241 /* RNFBCrashlytics */; + targetProxy = EB55E522A872D192F52304124C479136 /* PBXContainerItemProxy */; + }; + 1BCA757D0AA08E35912F102956D96688 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBLazyVector; + target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; + targetProxy = D3D53A7E39E98AE31E9A715792969B28 /* PBXContainerItemProxy */; + }; + 1C0DF950D3CE1F50BEC4222EA2C285AC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = E309B8A570AA76FCEFC1D38DB167CA95 /* PBXContainerItemProxy */; + }; + 1C2DC5B573629DC45024D8422C651DE2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsinspector"; + target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; + targetProxy = 044C84CC57BD817CAB48F2E32AB104BD /* PBXContainerItemProxy */; + }; + 1C6E1C8492633C739CFABD0BDD07F9CA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-blur"; + target = EEBB8D24F2B3531A5C5DAA668D02331F /* react-native-blur */; + targetProxy = A09C4812159B26F10555C889453AFD1D /* PBXContainerItemProxy */; + }; + 1C7FEF4B4C014B9CF974F44BDC559731 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "RCT-Folly"; + target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; + targetProxy = B99F0B1EEE09E9ECB29263020538386D /* PBXContainerItemProxy */; + }; + 1CAFB183EA9A7371EA71469687B68DEC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-netinfo"; + target = EC577C5CB1DC59A7464ECEF266A75B42 /* react-native-netinfo */; + targetProxy = 326B9FFA568BA9B2B9A96F439CF7FBC1 /* PBXContainerItemProxy */; + }; + 1CD3A11F4AAE64D05E1094AA22888A38 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Yoga; + target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; + targetProxy = 604A57080D43C4AFF098925033AA96B3 /* PBXContainerItemProxy */; + }; + 1D4F454A04BD32AEEBC9C1DAD90D7D03 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-mmkv-storage"; + target = 74DAFD196634D10887C9A4E7BA19A5E4 /* react-native-mmkv-storage */; + targetProxy = 5274FC48A786B0786D5038F983F462D6 /* PBXContainerItemProxy */; + }; + 1DACC56C9BEFCFF8040790175FD8DC07 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTAnimation"; + target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; + targetProxy = 15D2286598E95FE31FCFF5735D5C5B36 /* PBXContainerItemProxy */; + }; + 1DF1C9A2345BCC4298A73F5E3126F989 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNFBCrashlytics; + target = E3573FB7AF659C42B699003C73722241 /* RNFBCrashlytics */; + targetProxy = 42653E96AB1DAB598D8C32E761F7917C /* PBXContainerItemProxy */; + }; + 1E23D776B9D4DCB080BC8174A886F02E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "RCT-Folly"; + target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; + targetProxy = A5CE2A0209982F866177A52D3857551C /* PBXContainerItemProxy */; + }; + 1E3809456F4C268C50A8F17E3ED97CF3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-orientation-locker"; + target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; + targetProxy = 37168C35C4D1A9431FD2EC541D2894A2 /* PBXContainerItemProxy */; + }; + 1E4F60C0C53D617A29964587D1FA4F6F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNCPicker; + target = D00F24222F074B31C56DC6D05E806A35 /* RNCPicker */; + targetProxy = 832327EC900C419EEA6CC72626A91128 /* PBXContainerItemProxy */; + }; + 1E9913FA513BEBF6AE70956B1AFE5D32 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXLocalAuthentication; + target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; + targetProxy = 068550664FA2530EDFB295FCEDA940C9 /* PBXContainerItemProxy */; + }; + 1EBD4BF0D1B1D5042760457C1E0EAE56 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsiexecutor"; + target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; + targetProxy = 68DF654651E2E480EAC07733E4ADE995 /* PBXContainerItemProxy */; + }; + 1EC1EE1701812A211E97839EABDD917C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-blur"; + target = EEBB8D24F2B3531A5C5DAA668D02331F /* react-native-blur */; + targetProxy = 32F2FC8331902F5BFCB8D6BAE12EF526 /* PBXContainerItemProxy */; + }; + 1EDD465F1241ABC3EBA5542C93D21E8B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MMKV; + target = 91A6826828CB9FCD0169A7547E8A79EA /* MMKV */; + targetProxy = BEFCA4B68875F2FF3150A31FB1F5E996 /* PBXContainerItemProxy */; + }; + 1FE8CB41B12894B5CEB5D52D3F96E233 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = A2251ED0D3A0A772CEE6A21E860E3DFA /* PBXContainerItemProxy */; + }; + 1FF78CC9411709036A02B91A60AA87C8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = C914686AEC007F30DD701F5A65EB6A24 /* PBXContainerItemProxy */; + }; + 209F9CAC95D18BDA5E50029C965456FD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-jitsi-meet"; + target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; + targetProxy = 9C50A63DC6E83170731C2BA79B3CF18D /* PBXContainerItemProxy */; + }; + 2108D9CAAF5CF92769E06CD365A8C20E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FlipperKit; + target = 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */; + targetProxy = 91F8907B03E01D4195AC45713195E1C0 /* PBXContainerItemProxy */; + }; + 2144C6F7AB5030BA77330F2638B3E850 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MMKV; + target = 91A6826828CB9FCD0169A7547E8A79EA /* MMKV */; + targetProxy = A96D97BE8B3BF95540FA86F5E472B529 /* PBXContainerItemProxy */; + }; + 2146ABD902E2DBEFDEC5C6F435FD526D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-notifications"; + target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; + targetProxy = 3E7BFDD2298D62984B79D67A45A754CF /* PBXContainerItemProxy */; + }; + 216122E9234F5971FF1CF67F1CCDD440 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-Glog"; + target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; + targetProxy = A8A0BD07DA1C3F3AD9BE10533A9FF771 /* PBXContainerItemProxy */; + }; + 21B41452FA2F8F3442B9CC7708BCB06F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXAV; + target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; + targetProxy = 8D16A6C6B87E8EF60DD3200F8B8A2A08 /* PBXContainerItemProxy */; + }; + 21BE100CF0914EB2BF31C49A7BE507B7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Firebase; + target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; + targetProxy = C54402E67E71F908521C8482E81FE8D7 /* PBXContainerItemProxy */; + }; + 2246D412BFC6EB0B857907F1CEAD64F4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = AA473B00E72F76B87713813177934497 /* PBXContainerItemProxy */; + }; + 2288E7188240A3D29D10D340B2DEF18F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMImageLoaderInterface; + target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; + targetProxy = 13EF3523B32228E8FD9856AE70C124A9 /* PBXContainerItemProxy */; + }; + 228C43EFED492A9CDAE3BAC1A9122F35 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "RCT-Folly"; + target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; + targetProxy = E84CBCA8EB454DDA0BF8218E5041F049 /* PBXContainerItemProxy */; + }; + 230D18F4E26F49CBC7E952BF79BFF76E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "rn-fetch-blob"; + target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; + targetProxy = 062ABEC57934138CFE0ED2476821D432 /* PBXContainerItemProxy */; + }; + 2338B563DD99794A35F281387F330CC5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-PeerTalk"; + target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; + targetProxy = 2EDDB1A2D0AF4888399D164A3933545B /* PBXContainerItemProxy */; + }; + 233F4B6AF76A4C0B88D44325A753C4E4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMConstantsInterface; + target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; + targetProxy = 9B15231B429207756EDBB8208EA92796 /* PBXContainerItemProxy */; + }; + 24062F53418DEE51F2832C1FCCE58807 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = 638C22689F31DD16A085BB7364E0EF57 /* PBXContainerItemProxy */; + }; + 24BF32B2FD718BA1A0F7F7FF855B8B4F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFileSystemInterface; + target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; + targetProxy = 480CA8FD715B1D7A3DB333B2CBFF4EFA /* PBXContainerItemProxy */; + }; + 24EF74C9D8E552EB2B6B90A08AC55EE5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Firebase; + target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; + targetProxy = B6D1146F82E3376A596B2BE0778E906F /* PBXContainerItemProxy */; + }; + 25647F70B283957AE06620E92FFAAC5C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-jitsi-meet"; + target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; + targetProxy = 88D8D3EEAC30E400D73911DA7118DA4F /* PBXContainerItemProxy */; + }; + 25A15BB584DF1AD1AC6535D29755BBF8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTNetwork"; + target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; + targetProxy = 448C98C45846E7E106F1E52942DA206F /* PBXContainerItemProxy */; + }; + 25E9CDB9B0F0E4600973A238874D3043 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MMKV; + target = 91A6826828CB9FCD0169A7547E8A79EA /* MMKV */; + targetProxy = 320F6183337581B1E023B07AF6274FB7 /* PBXContainerItemProxy */; + }; + 2661208CCE1F00280F0E01A2C84C829A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXHaptics; + target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; + targetProxy = E356AD98EB1252E7C7944F6A143EAFE0 /* PBXContainerItemProxy */; + }; + 26810AE7FE981900F70BD7964FAC5013 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = E51A1BF0C6847F99684CF93BA1B9C7CA /* PBXContainerItemProxy */; + }; + 26C05BD48A8B9E01C9357778890FF06F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 8E13F436EA9B78CFC19DD089A665016E /* PBXContainerItemProxy */; + }; + 27665402D20F8AF5A90379E3C8695C36 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 580D69B9F7E7F081BC1C85F14CF37CE9 /* PBXContainerItemProxy */; + }; + 27857BA84FB3E455EFB965D7B9063D89 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-background-timer"; + target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; + targetProxy = CF8A28BF937855E32415119994D87CF2 /* PBXContainerItemProxy */; + }; + 28383F21FCF4CC7DED783148AC34FFDC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-perflogger"; + target = F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */; + targetProxy = 295BED05F71E5A6200E8E1DE7F668FCB /* PBXContainerItemProxy */; + }; + 28C225390D601F7F26D0229C0FFF31E3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXImageLoader; + target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; + targetProxy = C3F17F2AFFEE748F44896A11ADE3EDC9 /* PBXContainerItemProxy */; + }; + 2949F4A36A4922742D87277DDD9BDC81 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMPermissionsInterface; + target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; + targetProxy = E8CBD10A9DA9DA759BFB131005C3C704 /* PBXContainerItemProxy */; + }; + 294BB13EEFE7E474D46C4A7C115C03AD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMConstantsInterface; + target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; + targetProxy = DF4FB7B6B68C3C305041A4D094011010 /* PBXContainerItemProxy */; + }; + 29EE4183DBF296DC00BCBECB546FD062 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Firebase; + target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; + targetProxy = 4FA77DF262A8CEECAEAA7B2F14F17081 /* PBXContainerItemProxy */; + }; + 29F528A27A39F547A34C724EC85D65D0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-jitsi-meet"; + target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; + targetProxy = 0FD2B54583D0B22FB338284CCCD36259 /* PBXContainerItemProxy */; + }; + 2A79286BCCD4640263A2C491CB90C1A9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDWebImageWebPCoder; + target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; + targetProxy = 7CB07AC75B8B2580B14BEC5EFF6B7466 /* PBXContainerItemProxy */; + }; + 2A98D15B1891DEDEC714F635127CE4D0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "rn-fetch-blob"; + target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; + targetProxy = 97632B0F76A12257BECF54A49A553504 /* PBXContainerItemProxy */; + }; + 2AA5EAFA1EEA176F1AF7C410163ED11F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 04C57239C5B4FEE67E83BEC8B48480C4 /* PBXContainerItemProxy */; + }; + 2B0F9258D6E03CD35B38BA8F4EFAD8A8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = F95D128F194960AB4FB9D2A7B09CE9EC /* PBXContainerItemProxy */; + }; + 2B175006EEBB4754F0225B7C8BC64255 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = 6162F3A41AFFB0D95D05E58A42E945D1 /* PBXContainerItemProxy */; + }; + 2B4069E8A2F436A96415D5BECB4EDD2D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-webview"; + target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; + targetProxy = D654D7831CD0507F266BB3DC3BD1D789 /* PBXContainerItemProxy */; + }; + 2BFE27110C8564961592C6EB49163405 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTNetwork"; + target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; + targetProxy = BB84FBD52C5373B47742BC470B46A9C4 /* PBXContainerItemProxy */; + }; + 2C44119EBBF4AB542F25C7101E3C5DAF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTActionSheet"; + target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; + targetProxy = 7061AE322B05184FC5401EA3B62C6073 /* PBXContainerItemProxy */; + }; + 2CF78968E4B6884F4606A0A3D36F10C6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTVibration"; + target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; + targetProxy = 6BB40FCEB3B0BBD24F111067C543F276 /* PBXContainerItemProxy */; + }; + 2D29D6D3D6B8D209F463606A0C6E8DD7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "boost-for-react-native"; + target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; + targetProxy = 372629E1571263E65072CAE6503C46D1 /* PBXContainerItemProxy */; + }; + 2D2BC283507A1CDC452274D1184C30B9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = DE1F5E6E7DEE65A4B2CE0447C306D3C5 /* PBXContainerItemProxy */; + }; + 2D370361D464E9C4956561EBB8DA7F9E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNLocalize; + target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; + targetProxy = 1EFE1C7C4C58A60B27F78D77A26AC73A /* PBXContainerItemProxy */; + }; + 2DDB3CB48851A1CF62C05ED464441CBF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-cxxreact"; + target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; + targetProxy = 56EB10C15B080BAE819AB4C01C30D572 /* PBXContainerItemProxy */; + }; + 2E4FEC08BE144D5B09521C17A8EBD589 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = TOCropViewController; + target = F3966F664F3CFAEFAB57C40FB54D3788 /* TOCropViewController */; + targetProxy = A1BB7C17311D23CCC76F615EF173C30D /* PBXContainerItemProxy */; + }; + 2EEA42EABDC86D487BE41A23911ECADA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMAppLoader; + target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; + targetProxy = 31DA048C8D3F5DD9F447D2EC5DAC9D4F /* PBXContainerItemProxy */; + }; + 2F1B957F1A0A4D2D7124E1F8FF005F3C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTActionSheet"; + target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; + targetProxy = 5C124631297FE08AF639F95D2465990A /* PBXContainerItemProxy */; + }; + 2F79BF7954E8D88EA79D3F6E73D470A9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Yoga; + target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; + targetProxy = 4689C744D7DB05DD12F749009F0A7331 /* PBXContainerItemProxy */; + }; + 2F9CF5FD7CD50672DFE5A501F6DE45DE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactNativeUiLib; + target = 037A1F31C4D99F52EC9FD2008FEC481C /* ReactNativeUiLib */; + targetProxy = 7FEFC9E8BE19C553AAECCEAA7F926B4A /* PBXContainerItemProxy */; + }; + 3064E763BF957DC8E9794B2627637A5C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMImageLoaderInterface; + target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; + targetProxy = 2C17861F290721BE0678A228961C3237 /* PBXContainerItemProxy */; + }; + 3100524DE1047157AEAB1617D9C82D56 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransportCCTSupport; + target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; + targetProxy = 4D9A3D4B75EFEFFF9B32F527C084C57F /* PBXContainerItemProxy */; + }; + 312C7FC6C8F84F5206ED075DB5AF6740 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = 7231C9B7B946D73B0B59B0815F3C2048 /* PBXContainerItemProxy */; + }; + 3175B3D770C4373F470ECAE3DFE50990 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTImage"; + target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; + targetProxy = B4B2050690061825D4500FE3B5EB46EF /* PBXContainerItemProxy */; + }; + 318F5C89073F380A0FCEAA7180A5CD98 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-PeerTalk"; + target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; + targetProxy = EA7083A642211C54DDE2FABC467EF8DF /* PBXContainerItemProxy */; + }; + 31A76CDDD7A6D147FCC84A21933490A7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MMKV; + target = 91A6826828CB9FCD0169A7547E8A79EA /* MMKV */; + targetProxy = FD5416A45B8CE82A606731AD246EB5E4 /* PBXContainerItemProxy */; + }; + 328C25E036DD2059C6C521AC8A7ADAA9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DoubleConversion; + target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; + targetProxy = 4811E34A2B61603E4865CBC3207ADFDE /* PBXContainerItemProxy */; + }; + 32C340D547B5AB248F6C70A8188A3EDE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = 6C31E5A6DD2ADD6C08CEB424EFB8BFF0 /* PBXContainerItemProxy */; + }; + 336061BF8A1A24CFB3C4576B05CE2E5C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNDateTimePicker; + target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; + targetProxy = 9709972B9C145C8553E9C3C2CAAF895C /* PBXContainerItemProxy */; + }; + 33E5AA1A990EA43BC1E306B7932AF65F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-appearance"; + target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; + targetProxy = FFA47BB80FCB4059556E83BC9748A6AD /* PBXContainerItemProxy */; + }; + 3443D01329680AE9C6620387ABDD19E1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-cameraroll"; + target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; + targetProxy = 49B14E507599C1C93A1E5D1F8C8F25A3 /* PBXContainerItemProxy */; + }; + 345E136290B425153C49D906601045E2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = D353FD39A678927629C9353A53442F2A /* PBXContainerItemProxy */; + }; + 34691FA1A36ADAE6706806629A78C056 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-DoubleConversion"; + target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; + targetProxy = EFFB8DD3C28494B9A3B47CAC73D05093 /* PBXContainerItemProxy */; + }; + 350E1BF2FB151C29E80B7B57B810F0F7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBLazyVector; + target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; + targetProxy = EBED719236BD60940845A6908B06CBB7 /* PBXContainerItemProxy */; + }; + 35D272A655A858621BC248300D9BDC55 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDWebImage; + target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; + targetProxy = 0ECEC766040A1DD6CA59005ACB30FF75 /* PBXContainerItemProxy */; + }; + 35F2068F5089F28FD0C1C72543D123E5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = CocoaAsyncSocket; + target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; + targetProxy = 9F9236E980C55181DD928EAF0C4E3AC9 /* PBXContainerItemProxy */; + }; + 3605E49C23234E494A0738C42AD0CC92 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = 9649A7FC7E970017A79195F58B13C685 /* PBXContainerItemProxy */; + }; + 362E75FDE4BA11EA5859D3DE31E98029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-slider"; + target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; + targetProxy = 3312E955C34457F30E7CDF8C64FE7569 /* PBXContainerItemProxy */; + }; + 364CA9680D14731BA43C67135B0541D4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTText"; + target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; + targetProxy = 1994845C2E4CF0F4FFA918678F9004BB /* PBXContainerItemProxy */; + }; + 3697ED3E90D664E91A17BABECEDD0AC5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = KeyCommands; + target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; + targetProxy = B2B7E65CAB582D4E8249D0660357D139 /* PBXContainerItemProxy */; + }; + 36B46C316A1D5196A53123E13D9B4592 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNFastImage; + target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; + targetProxy = 377B3B012AC53DA540230AF9896A0376 /* PBXContainerItemProxy */; + }; + 36C4211413790D6C5AFD8E3FDEF2D5F9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = F24FA7171ECE539B5A20E38CB7A772D6 /* PBXContainerItemProxy */; + }; + 3707E37ED575B50AF9170891D383EC1D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-orientation-locker"; + target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; + targetProxy = 53A2DB2B99218EF56D14C805F5571D27 /* PBXContainerItemProxy */; + }; + 3779707C73F3DE7A10BCD31E4711FC62 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 907C9D4EA5A30CDDD5148501278814D7 /* PBXContainerItemProxy */; + }; + 37C38E28B4F83D9D3B47F10A4B8ECD01 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = YogaKit; + target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; + targetProxy = 59E220379E7E47B861BC7E127FE2035A /* PBXContainerItemProxy */; + }; + 37C4406C2078CF54AD3428FDCF9121FF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNBootSplash; + target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; + targetProxy = B4BC622AF04ABBD8D703B6F27F26F0F4 /* PBXContainerItemProxy */; + }; + 3843D592CE752EFD0472076C47689855 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTAnimation"; + target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; + targetProxy = 9B8E17C5E568FB3F379379C328580039 /* PBXContainerItemProxy */; + }; + 38C7C6B268EA1720386DB673917D25A3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-perflogger"; + target = F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */; + targetProxy = F90F201EE8B82B6F32C7829DBCB5A5B7 /* PBXContainerItemProxy */; + }; + 396354C3F8F7F3A3F7BA013F08A51799 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNCPicker; + target = D00F24222F074B31C56DC6D05E806A35 /* RNCPicker */; + targetProxy = 576E23C19AB2BF6F63975A1429A869B4 /* PBXContainerItemProxy */; + }; + 39D51BFEB1F2CA655F911065EA219ADB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = EA51BC73ACC8C693B1C2FDB68C6F6282 /* PBXContainerItemProxy */; + }; + 3A21C7270158EA16592FBB033A92B6AE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-background-timer"; + target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; + targetProxy = 8325BD6133B8CCD84B0D0C40A7FF42B4 /* PBXContainerItemProxy */; + }; + 3AC1AE7B59F3DE7CA19F40D5F7C24C91 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-blur"; + target = EEBB8D24F2B3531A5C5DAA668D02331F /* react-native-blur */; + targetProxy = A8B34586D718CF33EA77B0C8588ACFFE /* PBXContainerItemProxy */; + }; + 3ADA8FE6DE16281427EFE4C0E3D14BF7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = EAA06CE5531E394FCA9CDE654137D740 /* PBXContainerItemProxy */; + }; + 3AFDDE1ED80B0CFCC064C62576F26336 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 92E18EC8888E856EB3FD889E7EA9F2DD /* PBXContainerItemProxy */; + }; + 3B0731AA6168E9E572B96F007CCDD59A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = B108E95169C006A64AB9D475B0E1F1CB /* PBXContainerItemProxy */; + }; + 3B3B0BDE69FA39CF9263C37434C38712 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = 2DD7E0CF7F57C77F6508CD88EBA26D67 /* PBXContainerItemProxy */; + }; + 3B658EBD9BFF0578F2543F051AAA4ED6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsiexecutor"; + target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; + targetProxy = 0A628FE31FB36AB77D8D5EE4471A049A /* PBXContainerItemProxy */; + }; + 3B7696342960EEA74B5CC67082CB1F8C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransport; + target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; + targetProxy = FB6B59D29F5434EA7356F59C1BA5BB6F /* PBXContainerItemProxy */; + }; + 3C2BB3A1052D82CDDD919A8ABDD2F043 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-slider"; + target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; + targetProxy = 83A326D7E7735451290F57E714C9CBC3 /* PBXContainerItemProxy */; + }; + 3C635F5ED76C649F52D57D4EE23085BC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactNativeART; + target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; + targetProxy = B4220BB28F6D23E71A5B0B50BF46630D /* PBXContainerItemProxy */; + }; + 3D5F22723A63C1660DB73AC53068FA10 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = 5E79938850E0F6FDF8334EADD2E8BCB6 /* PBXContainerItemProxy */; + }; + 3D77771D2585389294FEB991DC2C3A8B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTText"; + target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; + targetProxy = A0743C8F6DD4C217F0F2798FFE3EFCDF /* PBXContainerItemProxy */; + }; + 3DB878DC35EB343695DFAC78AC7E6C0C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = 4621D42E6672BBF8AB1316BE61BFD493 /* PBXContainerItemProxy */; + }; + 3DD2BB25E78CFF29333432907DAE2CE5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = C33D9CFABBDCAEB1E7D02F98983E0661 /* PBXContainerItemProxy */; + }; + 3FA6CC37752C495C4DC4BBC825ED126C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = C9528A787B49D5C1EF3604B79FF26173 /* PBXContainerItemProxy */; + }; + 3FD2C54AF777811EAF0FE410CCE2922D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "rn-extensions-share"; + target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; + targetProxy = 6BEECFE940EE57446010093679E6B7A9 /* PBXContainerItemProxy */; + }; + 3FEA5461ADF7BEB66BDD4B85FEA58C80 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-appearance"; + target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; + targetProxy = EFC2021C67007BAD43D268F320CD85E4 /* PBXContainerItemProxy */; + }; + 404DD50A6A970EBA24C5CFFFFA98C56F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXHaptics; + target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; + targetProxy = 7639A3432949ED8533B899DBD4EE600D /* PBXContainerItemProxy */; + }; + 405628134675E977826D5B55DE8B79F2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 8A0B00CFF1353226D35D54AE02D03116 /* PBXContainerItemProxy */; + }; + 41242D1647ADB5D532DD19B3ED2D82DF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXHaptics; + target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; + targetProxy = 85BDF133B295BC6D64969F4CE288633B /* PBXContainerItemProxy */; + }; + 4140BEEF702F1C5D47AA4757117E7258 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTImage"; + target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; + targetProxy = B41E3F3657F47DF04714B73450C924B7 /* PBXContainerItemProxy */; + }; + 4198DBF717060F37ECD20B06242ED852 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXFileSystem; + target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; + targetProxy = 01DDCD1A86DE38D395F5932F9260EC43 /* PBXContainerItemProxy */; + }; + 4201A73C685C56F03B9D3D49A497BCDE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-Folly"; + target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; + targetProxy = 76F9171EB5DB7DE7164760EB6931F05B /* PBXContainerItemProxy */; + }; + 42130F32E5ACBA11931B8505FBA96DB1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTText"; + target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; + targetProxy = 4C4BE413FB50613860EB7B1786D87397 /* PBXContainerItemProxy */; + }; + 422FB271E965D9C3F9C517EF98CA8558 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTRequired; + target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; + targetProxy = 1EB23EF5AF26E2179BAB597714958D51 /* PBXContainerItemProxy */; + }; + 423D4AD64E4ADCD1C7D50C1EDE0FA472 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 3B3A166EAE4F20086EF961720F9FCE95 /* PBXContainerItemProxy */; + }; + 4291BCB513BB1143CE9BA33CA24FA5BE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNRootView; + target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; + targetProxy = 4FEAC5275490F9F0C589B5E1E727C1F7 /* PBXContainerItemProxy */; + }; + 42A98B3B6148F4B205FDBEA7B4226514 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = 50C73AB274B6F4D5E88C1EC31A7E737F /* PBXContainerItemProxy */; + }; + 42CF772E2CAE2702952A36487804CFA3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXAV; + target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; + targetProxy = 61C5AD83051A6BF988E860492C9C4E91 /* PBXContainerItemProxy */; + }; + 4341FF37B61E5C33E2E22990019AD400 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNLocalize; + target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; + targetProxy = E435FC528E882ACD01CDA3AA793CF0C8 /* PBXContainerItemProxy */; + }; + 4357E184AE69844ADAAC269E238E9D76 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = AF7493A2C79D0ED7BFDDA27295F323CF /* PBXContainerItemProxy */; + }; + 43643D6CB52A37B643591C680E977FC1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 9102731B64117908AEA46EC5171378CA /* PBXContainerItemProxy */; + }; + 436D3611F7B73336B5155D6C8D345448 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNRootView; + target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; + targetProxy = 09DF378FA751E25D297E0582067869A0 /* PBXContainerItemProxy */; + }; + 43ACC804C8E0A7A027E86712E67CEDC0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Flipper; + target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; + targetProxy = 8A60A62A40131405910850D4FE89734A /* PBXContainerItemProxy */; + }; + 43ECE30E8D4E874AF146B44B4B275D15 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "RCT-Folly"; + target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; + targetProxy = 6A4F6E8189639BE11C070C6B2C17D163 /* PBXContainerItemProxy */; + }; + 448750D1387299A1B3A26BEAD4C7CB0F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = B063359200A909D66F90C809B36DDE45 /* PBXContainerItemProxy */; + }; + 4509D7E4C87981E196CDE151E33C0B06 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransport; + target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; + targetProxy = 3CEBC78BEB4BBBADD58FC181BC7325B8 /* PBXContainerItemProxy */; + }; + 45184D9F60E265D302870523053E04B3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "hermes-engine"; + target = 985FEA01F314F3C00F0C1E1181E6C4A5 /* hermes-engine */; + targetProxy = A9D977FC9634D760F716CBF55AEA2375 /* PBXContainerItemProxy */; + }; + 454D18E4665AA10CD37FD76389ED4004 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 56B08E369EF25875B67F3DBDF67BF35F /* PBXContainerItemProxy */; + }; + 45F36F7E5FFC97AB19834B4D0E54217E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = A2DE261CBA623A2CD1007C7CB5554EEE /* PBXContainerItemProxy */; + }; + 4611474658CDD1395454103CE9E13E37 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMAppLoader; + target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; + targetProxy = BCE869473C540305456BEB02FBF707D3 /* PBXContainerItemProxy */; + }; + 4618914ED41B387104F6ECA6AD76E506 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = 11363DFCDEC63C986A2C50FAF40CD1C9 /* PBXContainerItemProxy */; + }; + 467FCD9997BF1229D4479AC347766A41 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCameraInterface; + target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; + targetProxy = A9772F8FEF70B9517EB8CCB9142B82C1 /* PBXContainerItemProxy */; + }; + 468DD33CC8E90DA3F0413BD0CC4C3E3B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXFileSystem; + target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; + targetProxy = 14B1746ABE1DDCCAC161910CA310FBFA /* PBXContainerItemProxy */; + }; + 46E50001BF7E28582FD035D1E733C6F4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = 874DA2DA10BEA5207E615AA31E976DFD /* PBXContainerItemProxy */; + }; + 472EE483EEDEE9ECE87B0D79F598490D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-safe-area-context"; + target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; + targetProxy = 8FC3068D792FFFFA8850E9CF2D4288EE /* PBXContainerItemProxy */; + }; + 476452B5D3C6A6AB7EDE7CF2794BBD4B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core-AccessibilityResources"; target = 7A020DAB6F3F0BA0A6D9946E84B38B7F /* React-Core-AccessibilityResources */; - targetProxy = 453D38CC6A9505A8B0D195ACAC947272 /* PBXContainerItemProxy */; + targetProxy = B04C7C6DF48708B5C0A3B83EB1ADDE13 /* PBXContainerItemProxy */; }; - E37F394489DD97A02CC28F8DCC801CED /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = MMKVCore; - target = AC8AE887C706A43711D115E69B9D988A /* MMKVCore */; - targetProxy = 69F2D1AE342AFCB7DA35E9A125A5B36B /* PBXContainerItemProxy */; - }; - E3D0DDDC478484EC36B1B23E5D60465E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = 461F79B55EE3B1AAE42D882EBE26D77E /* PBXContainerItemProxy */; - }; - E50EAA45BDBE726AEC7A9025B3ACC137 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFontInterface; - target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; - targetProxy = 8A2754E0ED23968E43C20D1E3F0A443E /* PBXContainerItemProxy */; - }; - E52218E80D65892651A0293E94CEB6B0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsiexecutor"; - target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; - targetProxy = BF359EB1DD8C5E2F0A4064D2BFA4C578 /* PBXContainerItemProxy */; - }; - E5568ADFFBD97BA8A0131F0CE8E1F880 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 94791F2AB2C9771EF29E523C403FCB0B /* PBXContainerItemProxy */; - }; - E5C32F29310B976A2AE6B28CF44BE9D2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMPermissionsInterface; - target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; - targetProxy = 770353D5A3150F781640789B42227308 /* PBXContainerItemProxy */; - }; - E607B1406DA6033E1EEC8D5C0C247C26 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libevent; - target = 04A30E186743192DFB26B0FD7DB8F250 /* libevent */; - targetProxy = 042EBAE8C5716F1A08C570C3C66F26C7 /* PBXContainerItemProxy */; - }; - E62DFA4D8E7A21B0EF106F65D035C9B6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 182BBFD44D7BE1BBC75FF8BF31D0CDBE /* PBXContainerItemProxy */; - }; - E6CA02BB38A312F57CD7A0371C7C479E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-simple-crypto"; - target = D985A509BFE270C95EDCBE6B4CBAF189 /* react-native-simple-crypto */; - targetProxy = 78F25F5E57A1062E7EFBE9AD17405CEE /* PBXContainerItemProxy */; - }; - E6E5A8E789658EE85CA54F984780BCF6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = E63A3E74814B551DD2A0A0526559243F /* PBXContainerItemProxy */; - }; - E6EE987996FC690BBE6CAC0E03916E9B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMPermissionsInterface; - target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; - targetProxy = 719D2C58BC7D99A42F2B4222B3DAB478 /* PBXContainerItemProxy */; - }; - E761FAE0B11F4FA9DAFCD7160A6272E1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNGestureHandler; - target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; - targetProxy = 5375555EB3F4BBB55C4810784F65AF5D /* PBXContainerItemProxy */; - }; - E78101431008114E1D5D77C577CDF093 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-document-picker"; - target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; - targetProxy = 25762F091A5997DB364394317F25E93B /* PBXContainerItemProxy */; - }; - E7E0438C48AD2682AE8A21615347DB17 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 459B551E64FD9190115CB20CC162FCFD /* PBXContainerItemProxy */; - }; - E8DB3A36BDAACAEEFD8E8E5A6A729730 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = 9C5D78FAE25C0703BF471BD266E7F9B0 /* PBXContainerItemProxy */; - }; - E9623F02BA3295AD5699D7B7637A91A5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNCPicker; - target = D00F24222F074B31C56DC6D05E806A35 /* RNCPicker */; - targetProxy = A42B38FF12EFA01FB209936208E00173 /* PBXContainerItemProxy */; - }; - EA63745C8BAA5B3BD6BB093AAD6C7000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "OpenSSL-Universal"; - target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; - targetProxy = 82628CCCC0FA7DD10CE8754529CDA834 /* PBXContainerItemProxy */; - }; - EB74C670C4BA75C5F49A5550C4E07E40 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFileSystemInterface; - target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; - targetProxy = A2C995DDB7F4CAD54A339F63190396B5 /* PBXContainerItemProxy */; - }; - EC3FE58BE10F25AB1CB995DB92860035 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNGestureHandler; - target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; - targetProxy = FE0D5020FEB1E7C7D9F0A2EC48816FD9 /* PBXContainerItemProxy */; - }; - ECAC5014308C1D1C4C163E47559761E6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNScreens; - target = 214E42634D1E187D876346D36184B655 /* RNScreens */; - targetProxy = 63B30E3E63AAFB24BC2F8B37336F2E18 /* PBXContainerItemProxy */; - }; - ECB4580AF73F805A80A814736DF9983C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = E58FA5DE9D80981CDC8A2A00E60A8715 /* PBXContainerItemProxy */; - }; - ED0F1E442CFE22AFDDAD0E6AE3AA4870 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 2135E9B609187C7A9DA913B204C6A26B /* PBXContainerItemProxy */; - }; - ED8A6D0C6C438972FB9F1F4B0CB1FF00 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = F4DA082BB34B4B22C32DD93A736C7ABD /* PBXContainerItemProxy */; - }; - EDB416AEF128A104339B19778B16E817 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Flipper; - target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; - targetProxy = CB87FCB01A3C5D8A45E76561CF4B33BE /* PBXContainerItemProxy */; - }; - EDF85A6167C5E810F6209F00B32A3662 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = C1DDE38D19E2ED012ECAE97122B66653 /* PBXContainerItemProxy */; - }; - EE27ECE203244873A089A66EB9252653 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = C80F1B4846E1114CEE565F5F241D473C /* PBXContainerItemProxy */; - }; - EE5BF80552C349CD8201E9D24A371C65 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = 1C97D3BD1CE2070424FD37B13B86726C /* PBXContainerItemProxy */; - }; - EE80A67680F2FA22E488F577E56D409A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXVideoThumbnails; - target = 4A95B7CD1D5F80C5E8CD9CDA00D41F70 /* EXVideoThumbnails */; - targetProxy = EDC687BDA0B0A1F1686FCCF42348188A /* PBXContainerItemProxy */; - }; - EEE9398788374CB99DA7D88AAAE1E3BB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = BugsnagReactNative; - target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; - targetProxy = 428E87037E0ACB31B00BCD7DECD18E64 /* PBXContainerItemProxy */; - }; - EFC9C84C884F3246F6D541A46B039160 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "OpenSSL-Universal"; - target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; - targetProxy = 531BC40FD6E85EECFC07849F9746DAD7 /* PBXContainerItemProxy */; - }; - F0954DD1DEEEB47E552F3354CEF55516 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-perflogger"; - target = F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */; - targetProxy = E3D8B70E41B029DBE4401BFC02B65873 /* PBXContainerItemProxy */; - }; - F1086EC156C3C8DF59F023472E1EBB64 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = CA166A25DD8152FDDB714FC89B834A0C /* PBXContainerItemProxy */; - }; - F12873A5823B1AB4D8CF0B653A610DCD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = DF74B793FB9D9CB405F402B8B56F076A /* PBXContainerItemProxy */; - }; - F1639CB5E21201F7FB63B488BD2756D4 /* PBXTargetDependency */ = { + 479960C4AA6B3A33AEA092B857CB012F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "boost-for-react-native"; target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = 1057DFA31D37B5B50D15FCD45B7158BA /* PBXContainerItemProxy */; + targetProxy = 076AB81269762466458570D439E8A6CD /* PBXContainerItemProxy */; }; - F1E47F75AC0F45A4D700D2968957BA83 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = 88C0008054FC668FA95837068BBFCFC5 /* PBXContainerItemProxy */; - }; - F2D3DF01B438ACBA32CD58E4CDF359BC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "rn-extensions-share"; - target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; - targetProxy = B353CE6C2353DDCB92929AF2159DDE5F /* PBXContainerItemProxy */; - }; - F2E7CE91BFBDF4428AC42F126C90E7C7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = 53EDA59CAF6DE6F4740599968DF846E6 /* PBXContainerItemProxy */; - }; - F378C8EE6A1A27701041F23E650D9124 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNBootSplash; - target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; - targetProxy = 054D8D0225CBFA36C587A14D8B9C0453 /* PBXContainerItemProxy */; - }; - F3DE145F74AF699EEB8B63110BAB8423 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = MMKVCore; - target = AC8AE887C706A43711D115E69B9D988A /* MMKVCore */; - targetProxy = 74D2291871FC615E66AF8A135FFEED99 /* PBXContainerItemProxy */; - }; - F422348DEB82064E2109E2F22BEB0B2D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNConfigReader; - target = DC0D417AC8ABB7AA10C20A5E0F065812 /* RNConfigReader */; - targetProxy = 92B01D5D018B23851D96C8389258F618 /* PBXContainerItemProxy */; - }; - F5D0FA090B15C2D68547188C26068DC1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNLocalize; - target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; - targetProxy = AA546C96287B768BD06E659DF8909AFA /* PBXContainerItemProxy */; - }; - F5D6E141E44AA560400FCF08B13E43CB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = E1BDF09547542E4B85A00D749B3DDC14 /* PBXContainerItemProxy */; - }; - F619AEDAC3C244703388E482BE1F8338 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = D29DF606E0DAA76BE94D78E0D6F43390 /* PBXContainerItemProxy */; - }; - F699CB2F58F4F6A5009909D5A408117F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = 622CCA7AA1FB518C6F2DD4455F9C3BCB /* PBXContainerItemProxy */; - }; - F6DF5A0780CA21C8FB678CBB969F6088 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMReactNativeAdapter; - target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; - targetProxy = 0E4385C14F71FD7508678FCD7FE2E6C8 /* PBXContainerItemProxy */; - }; - F6F1D1421AD28B7018018689D8525F60 /* PBXTargetDependency */ = { + 48E0C5099E0CB4EBE379D7880E3D5156 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "RCT-Folly"; target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 41FE008D2DFDBC4BB04D4CFC508DF7C0 /* PBXContainerItemProxy */; + targetProxy = F766CC08FD80654BB489B1E09BA608C0 /* PBXContainerItemProxy */; }; - F82DBB7D50F8FBA24D08F60D227BDB7E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXLocalAuthentication; - target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; - targetProxy = A64E3CC06153128313434B7F4854483A /* PBXContainerItemProxy */; - }; - F913AD43F8F87D7E6A83F75152CDE864 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = C61C288118457A119F4B7E995CED2308 /* PBXContainerItemProxy */; - }; - F948194BA29DC6CF49AFEA12E83FC69F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMSensorsInterface; - target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; - targetProxy = 22A3DBBD97C25A6D739B02EAFAEA749F /* PBXContainerItemProxy */; - }; - FA71699906763D610C1E1FB85245D77B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; - targetProxy = D052DCB904BEFAA9E547B4915E3CF8AE /* PBXContainerItemProxy */; - }; - FADE0E7AF59E6B051430A3A3C32BDBF0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = C3786F94ACEF9BF4600179520EA02A20 /* PBXContainerItemProxy */; - }; - FB2E67DA43311EA61E2E6F176DE6DA30 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FlipperKit; - target = 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */; - targetProxy = BAAC5984B8EA6C685F6A86718A81C6B1 /* PBXContainerItemProxy */; - }; - FBB8A3E7746B88121F832967B098041A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-PeerTalk"; - target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; - targetProxy = 87D59BC14B90D599680D548758A1BBA9 /* PBXContainerItemProxy */; - }; - FBC57AE5A8843134EB552B32BD90A900 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMImageLoaderInterface; - target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; - targetProxy = DBD0106D4E8E45DA4FEB295AA2517724 /* PBXContainerItemProxy */; - }; - FC72A98FCBB94276073322FBC2B2A9E7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "rn-fetch-blob"; - target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; - targetProxy = 5E0AD556D856326484AAF0DD1BA246F7 /* PBXContainerItemProxy */; - }; - FC8F393A30BD08B1CBCA0EFFEDAF4E31 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXWebBrowser; - target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; - targetProxy = BD58F3854A3E04B7A07EA3CEE49E1713 /* PBXContainerItemProxy */; - }; - FCEB675474315554E56F909C5385F8E6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXFileSystem; - target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; - targetProxy = B5F20A6563167870E771FBFADA1590C0 /* PBXContainerItemProxy */; - }; - FD0C19F570690B32768DEAF1FF02F6D8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-Glog"; - target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; - targetProxy = 565ACDF65473CC1A2A27B2DF53E3734F /* PBXContainerItemProxy */; - }; - FD0DDB5F22C6B87617592406FB07BA40 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFaceDetectorInterface; - target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; - targetProxy = 7FABE26B1C08D0E326DBA903481009CB /* PBXContainerItemProxy */; - }; - FD149B0BD072449B000C01F97817D3F4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTSettings"; - target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; - targetProxy = 9C47BD26FCA227A5E66DFCD071FA810C /* PBXContainerItemProxy */; - }; - FDBA58A64499E108E150F021DD9DD13C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = 30AED6058069494F70906AF3801B359A /* PBXContainerItemProxy */; - }; - FDD434862C6B23139B5B5E69C018F75F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTRequired; - target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = BE2A185E1EF037D98BCF50D2CC3D6FD9 /* PBXContainerItemProxy */; - }; - FE4A3198DC6180AC7B31B5BEB08C88F5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNLocalize; - target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; - targetProxy = C02B26A96E77264A3C8E5F1DACC31C21 /* PBXContainerItemProxy */; - }; - FEC27B608BBE7C712FC47235702A57AC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMConstantsInterface; - target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; - targetProxy = 743B77A72AC364BC70ED3A28EC6D056B /* PBXContainerItemProxy */; - }; - FEC53D29230BE8E96F3F75D0F93E79DE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = A7388EB526979481EDDA7912111A3BCC /* PBXContainerItemProxy */; - }; - FF25CCB564F1385AC1AA00F62DE137F6 /* PBXTargetDependency */ = { + 491B3F89EA2045D87CE1600AC1737D6C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = PromisesObjC; target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 98BE193166D29C97E69B835B13FF7D7A /* PBXContainerItemProxy */; + targetProxy = B72C18F34C87846B2D9D76934D34287B /* PBXContainerItemProxy */; }; - FF60DC07F7136CAB67008912845E53D2 /* PBXTargetDependency */ = { + 497DC10D59E214E595B243244DA1F097 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-cameraroll"; - target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; - targetProxy = 133FDF3C3287FE09165CC8D15F0ECA9C /* PBXContainerItemProxy */; + name = "Flipper-RSocket"; + target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; + targetProxy = 0C3F38878C8E5F314186CCB0CF6BED57 /* PBXContainerItemProxy */; }; - FF69AA2B858CB397CA4F9880001F25C8 /* PBXTargetDependency */ = { + 49BBA1C24F1F3DC42D10CDF3EF1FCF05 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTRequired; - target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = 1EFAB86BD660144AA773CAE0B99C36EC /* PBXContainerItemProxy */; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = 885D5302CB85F454FC739897C98443C6 /* PBXContainerItemProxy */; }; - FF70B5F95EBDE727DF7A47E18FBC02AB /* PBXTargetDependency */ = { + 49C3C7AEE2D1479D1EC24809CCED9687 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = 0CD8FBF5C843EC4264FE8CB9C75402AC /* PBXContainerItemProxy */; + }; + 49FCAF70EDB0E0CC3A63D4CA082248F1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = 75490B4E851772D5FE6CE8608A2B12CD /* PBXContainerItemProxy */; + }; + 4A9ECB304B438785AF0FAD6CB9F1FE69 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = AB3A4CE36B0F895BA64A48F9DC3D1545 /* PBXContainerItemProxy */; + }; + 4B22F750E4C07276D2A655B25A97346A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 9F2B87D20F4F849678B0C343AB046669 /* PBXContainerItemProxy */; + }; + 4B53B2B2CBB045744B662202EBAA1C54 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-netinfo"; + target = EC577C5CB1DC59A7464ECEF266A75B42 /* react-native-netinfo */; + targetProxy = 5E212B028316FA1DF3AA5FA9337D3D3B /* PBXContainerItemProxy */; + }; + 4C33B34B7075C530C2CBAE11C078C834 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 4FF2B304A62C3F3BBA2A496E856BEC34 /* PBXContainerItemProxy */; + }; + 4C40519348AC841056306D05B3CD57F9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = CocoaAsyncSocket; + target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; + targetProxy = 0215B01325232D7A2B2DAE2E60B07C68 /* PBXContainerItemProxy */; + }; + 4C6C7C7084F1BB63703742B6A2A97C7C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = 1A4E266BA5AFFBE203AB35577630D4C4 /* PBXContainerItemProxy */; + }; + 4E399426831F7EB26EE9C24E11DDAB57 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransportCCTSupport; + target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; + targetProxy = CFDAA064A932053E96666F4AB236B54A /* PBXContainerItemProxy */; + }; + 4E3E8D39F81C9D23D8257A9205539340 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-background-timer"; + target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; + targetProxy = 04B6DF7224E795FC57458BD7BF38864C /* PBXContainerItemProxy */; + }; + 4F2CA01BF1BCD6C09AFBD24B51ABF231 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXAV; + target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; + targetProxy = D8332E6BE20882349FA4CEF66961185C /* PBXContainerItemProxy */; + }; + 4F3A78AF0E846B0721CBD23B3A755A33 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = CA42AD20622A91093285F3FB21A772C4 /* PBXContainerItemProxy */; + }; + 4FE78A33B14E2338FABD4B9EE4B8E34E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = 9A04C97A15C3D5073AE13D2943530EC5 /* PBXContainerItemProxy */; + }; + 50C629C1597D46FB7A7BF1111779A7EF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MMKVCore; + target = AC8AE887C706A43711D115E69B9D988A /* MMKVCore */; + targetProxy = E17247A5C48BADE4E205CC764F8D1315 /* PBXContainerItemProxy */; + }; + 50F3131390BB5F621FFECF4DF1B1AAD6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = 81C5969009BEC4DC662E5949901D5AE0 /* PBXContainerItemProxy */; + }; + 5150D075C8BA6B2EF4AA6C05A3F271F0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactNativeART; + target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; + targetProxy = 52BC0FD32310DC90777AFCE85B5CD073 /* PBXContainerItemProxy */; + }; + 5157D2FB1699708935F66385C7FE37AF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFaceDetectorInterface; + target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; + targetProxy = 66F16CDBFD0DBD6486020510757416E1 /* PBXContainerItemProxy */; + }; + 5160311C4B3DF8B82A18573769318B2E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-RSocket"; + target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; + targetProxy = 454D6D81E6F834EF9B96BE25F8479900 /* PBXContainerItemProxy */; + }; + 521B2483558BC702A7B5C7CBF390B5B2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-simple-crypto"; + target = D985A509BFE270C95EDCBE6B4CBAF189 /* react-native-simple-crypto */; + targetProxy = 10C8C0FD90944AE3B74ED76BE7A803D4 /* PBXContainerItemProxy */; + }; + 5231FD2A12D72DB5705C671DAAB0D7F9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXVideoThumbnails; + target = 4A95B7CD1D5F80C5E8CD9CDA00D41F70 /* EXVideoThumbnails */; + targetProxy = 61915254BD5BB8B37E9426BCA441587C /* PBXContainerItemProxy */; + }; + 52CC9F7C860360D30C0F8A89E50277A0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = 3D7D8EE4C6B2F1B3726253379024F300 /* PBXContainerItemProxy */; + }; + 53019D2B80E7FD88CBFF395165FFC564 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFontInterface; + target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; + targetProxy = 8D364AC6A15FBDA079F6079E415CAE6B /* PBXContainerItemProxy */; + }; + 537E5420319C3BA21E7B75861789C1A4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-perflogger"; + target = F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */; + targetProxy = 7DD7D4C4DD834B34F5D0FBD8F217710E /* PBXContainerItemProxy */; + }; + 53E6E7AB1435109529CB119E993C83CA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMPermissionsInterface; + target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; + targetProxy = DF694CF75C15DF1A50318767A474FB8E /* PBXContainerItemProxy */; + }; + 540AEFD4E0B998F9CAEF97ECF642C6D0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DoubleConversion; + target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; + targetProxy = F3D6089A34887B3F36A488D21AA6175C /* PBXContainerItemProxy */; + }; + 545A4AF9A1D8CB1B153D4B10EE69AA3F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 57433F28D15E9041CE8E3C09FDE7CD41 /* PBXContainerItemProxy */; + }; + 5489DE56EE52FBEA75BD819B859C3373 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Yoga; + target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; + targetProxy = AE7692DEEF3D213BAED2083035952F82 /* PBXContainerItemProxy */; + }; + 55E1FE5AE22D716794F29E844D471F74 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = CocoaAsyncSocket; + target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; + targetProxy = 6ABC38C5CC9A273FF6B88931814C68EC /* PBXContainerItemProxy */; + }; + 57097B63797E713D7643C6A5E3439E5F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = EDE881A95C0959CE34D4B6960DD9BAED /* PBXContainerItemProxy */; + }; + 583AF72861CDF291EAB93BE58CE37279 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXKeepAwake; + target = 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */; + targetProxy = 578226052999AC58B77081D467E47D82 /* PBXContainerItemProxy */; + }; + 5861981662817C08538AD7A7B4233796 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXFileSystem; + target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; + targetProxy = 26F29552CFF3F4C8297B55C87C6C8717 /* PBXContainerItemProxy */; + }; + 59638A79D1BE63A016040C41C934A6AF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-PeerTalk"; + target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; + targetProxy = 9ABEF7FB68A223D8A6DA15E9721298DB /* PBXContainerItemProxy */; + }; + 5998F25937F9AE6B6E43F974AD9D3E9C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCoreDiagnostics; + target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; + targetProxy = 6DE491E400CB43D236EFAF0D0A9FC47B /* PBXContainerItemProxy */; + }; + 59A5120F13F4F0DE7199A33ADEAF9CF0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-callinvoker"; + target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; + targetProxy = 9B7CF3FA1912463FCFACDAC8267D2EEE /* PBXContainerItemProxy */; + }; + 59F8129ECA3ABCA858B9461A639774EB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMBarCodeScannerInterface; + target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; + targetProxy = C338639441EB00830A149DFBEA77D1B5 /* PBXContainerItemProxy */; + }; + 5A31532AA864DE91F52202CE3415F595 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXKeepAwake; + target = 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */; + targetProxy = DD0E89B3AF1B8EAFD579119491EF24F1 /* PBXContainerItemProxy */; + }; + 5B1529D24E32AD56AEABC92E20250640 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = 28A05C9B180D8E5266A68CAD5F6F3D35 /* PBXContainerItemProxy */; + }; + 5C3F8F56DD46C2B45557A8625B80C45F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "RCT-Folly"; + target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; + targetProxy = 92A9D8CD9E5F1116142508DCE5E8A643 /* PBXContainerItemProxy */; + }; + 5C5EB908DA10E04B3099DDCCF58DEA2F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 2C500E18FA222B6BFB5F5F322160AF50 /* PBXContainerItemProxy */; + }; + 5C7B8076F05E575EC024965B04C0AACC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNImageCropPicker; + target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; + targetProxy = 94A33869A1775E5AAA5FAAE40883C79E /* PBXContainerItemProxy */; + }; + 5CA15E2593F18ECBC25B0F05BB514584 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DoubleConversion; + target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; + targetProxy = 75DCAE63969055377DEDD692445B7117 /* PBXContainerItemProxy */; + }; + 5D9E40B0BB971DDCCC0102DA0F8805C0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = 261A72A3E9913DA2CD98E693D979301A /* PBXContainerItemProxy */; + }; + 5E14E8B0B4BB94AE88F136249446F9C2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTLinking"; target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; - targetProxy = 72827CCB89473928CDF4AB938430676F /* PBXContainerItemProxy */; + targetProxy = 87E46E843978B2161CDB0C2434EE7662 /* PBXContainerItemProxy */; }; - FF9DAE30960033E8EA675143053A8D61 /* PBXTargetDependency */ = { + 5E814D6EAD3D160CC917E6A6C519D18D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = AEA1313CC0A5AC3F1FFD9A4AE6DA6ABD /* PBXContainerItemProxy */; + }; + 5ED68AD305087222F8C3BFF1C4D15D7A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransportCCTSupport; + target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; + targetProxy = 7A94BE1F95C08BF7AA7AB6ECFBD0B6D3 /* PBXContainerItemProxy */; + }; + 5F571588DED8CD6DC32B84A343E0B5F7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-perflogger"; + target = F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */; + targetProxy = D5859FE3938A5406C81DDCC62ED70C92 /* PBXContainerItemProxy */; + }; + 5FCDF394FAF1FC06876C773403175334 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-Folly"; + target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; + targetProxy = F3EEDB943F6A2D2DF5DE138B9D5B0B59 /* PBXContainerItemProxy */; + }; + 60F2E897804A3907D12533365455682E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMConstantsInterface; target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; - targetProxy = E3FC97AC402F55138F02AACBDF0BF586 /* PBXContainerItemProxy */; + targetProxy = 8EC656B711100487EEB59AF4D9022F2B /* PBXContainerItemProxy */; }; - FFAF67F825660FE311706C0C0641A082 /* PBXTargetDependency */ = { + 61833198A2228192E41DFB30E491725C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFontInterface; + target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; + targetProxy = 03D29FEA0744826FD32502024EBFB540 /* PBXContainerItemProxy */; + }; + 61950E67A93F97858EDFCE1632BE83C5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-Folly"; + target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; + targetProxy = 43CB847F276EAAC20EB0986FE6C40906 /* PBXContainerItemProxy */; + }; + 61AB096F706422DB2BEC5335A3B7A793 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = 1DA4241F5A4CDE93750300CEE65AA8E9 /* PBXContainerItemProxy */; + }; + 61C49BE955DEE297374966CBF2B3BC63 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "OpenSSL-Universal"; + target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; + targetProxy = BAA1E7FC48E875FD9AD6F637A5127E23 /* PBXContainerItemProxy */; + }; + 629D67B1099A6011DF7C552DE14B49CF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXFileSystem; + target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; + targetProxy = 2867305CE29521BC8EE2F9EB0A25BC2E /* PBXContainerItemProxy */; + }; + 62A5E3D98DB331B25E548080FC63B5D3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "RCT-Folly"; + target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; + targetProxy = BDD87B1D93DE918F054B9CCDA100F75F /* PBXContainerItemProxy */; + }; + 62F2F15800E7D3A7938F0460AA150145 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = 12B7A30D883DC26C1A75E970277EF502 /* PBXContainerItemProxy */; + }; + 62FC2AEE1DD4B02C3FB0860B22EEF5AD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMConstantsInterface; + target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; + targetProxy = 5AF93AF43A64C1D10B49956F82E66101 /* PBXContainerItemProxy */; + }; + 6333A17B6B0F0003395F0131FB5B1A82 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 26D2E223505352580BC7CDDD0E3FE8E7 /* PBXContainerItemProxy */; + }; + 636015982B0DB9925EA46AF2E05C641D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "rn-fetch-blob"; + target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; + targetProxy = A56104E3903E8F44369AB19CAF7E8FBA /* PBXContainerItemProxy */; + }; + 6371FCA331C0B9D30D36D41D14FD6203 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = 48CD599CA12EFFBB29360308CFFEBBEF /* PBXContainerItemProxy */; + }; + 63F850D1806C6FDADF6BEC88BFD79B0E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-notifications"; + target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; + targetProxy = BA0FD5A20CA32632A77809124A8E86D8 /* PBXContainerItemProxy */; + }; + 6430415BFFE66A38B8BCA85297BC3ADB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCameraInterface; + target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; + targetProxy = 0BA92ECE475D06FA68952F6135A080CB /* PBXContainerItemProxy */; + }; + 6458CA63ADC31AD6B9F67618CB6549F4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMTaskManagerInterface; + target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; + targetProxy = 57D468B7F900DD8249B5698DBAD01D17 /* PBXContainerItemProxy */; + }; + 645D79FF62CAC2A54E24162363297934 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = JitsiMeetSDK; + target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; + targetProxy = CF99EF36E9FBC8A53D73E754590CB531 /* PBXContainerItemProxy */; + }; + 6469032EC0BDD254E11F80F33CAEFFEF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-RSocket"; + target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; + targetProxy = 9EC9391F8CD9C984C5652EE12773E292 /* PBXContainerItemProxy */; + }; + 646E65AA992C5AF1EFBFDDDEA56C7AFA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 19E35B18B659F2EFC089A3685D5547A3 /* PBXContainerItemProxy */; + }; + 64C4F1B280680EB579106C3220E31FAA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = D563180D2B686039EB7059A2EC71328D /* PBXContainerItemProxy */; + }; + 64E00D14CB3047AA3ABDFCD256D93382 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFontInterface; + target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; + targetProxy = 0612E89F43C58C5EE6DD000BE5E1FF9A /* PBXContainerItemProxy */; + }; + 653CE825267220637177BE2583E4112E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "RCT-Folly"; + target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; + targetProxy = 5E9B56398AFED5DAA87AB668621A0B74 /* PBXContainerItemProxy */; + }; + 65536AEE9D451AFC59232497BD9E3758 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = C78B7FCE3EE553D9044A00D289010285 /* PBXContainerItemProxy */; + }; + 65C8BA29FE7253CB8B9E1D0D252FC9C5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXImageLoader; + target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; + targetProxy = 374D87CB5E893745E48A5DB5B02530D4 /* PBXContainerItemProxy */; + }; + 65D5406984A8C99714CCBE3E3C7087CC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = F605C8ABFB7C4EE3F70ABA11E3311B3B /* PBXContainerItemProxy */; + }; + 66CF47390ED7BA63ADF88AEE3731C347 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-safe-area-context"; + target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; + targetProxy = 870FBDE556FA18BF516EAAAB7E6842C3 /* PBXContainerItemProxy */; + }; + 67161DFCF32EFEB374D6501A4479A451 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = 7B96D4DAB5B4D969F3D720D6A3C2873D /* PBXContainerItemProxy */; + }; + 676736B56DF49E326D3444ABC5C7E9A5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = B290E592CFE6C84DF8B5D41885D9DB35 /* PBXContainerItemProxy */; + }; + 67D8BEABA3F8EBC6CE5CB6BEBA9EBE12 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = E6EFDE83EB6528D5DCB74968CBDD1C86 /* PBXContainerItemProxy */; + }; + 68332619AD3B10B577470306479C1DDB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 4B6CBFBEF4C512B4AE5500ECD5906714 /* PBXContainerItemProxy */; + }; + 684E541BB09DB70D03416F52F9EC2636 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = YogaKit; + target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; + targetProxy = 03D7825AC45BFF1392F2ED83A124701E /* PBXContainerItemProxy */; + }; + 68607FA533E2A2AFD7E2A3E032566776 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-CoreModules"; + target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; + targetProxy = 047DCF2C4B50375F58A20B266D15EF10 /* PBXContainerItemProxy */; + }; + 68CB531A02326234071CB1B997368BF1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-simple-crypto"; + target = D985A509BFE270C95EDCBE6B4CBAF189 /* react-native-simple-crypto */; + targetProxy = 0FCDC54BE6E6FD80F00D8AF9D5EC8D58 /* PBXContainerItemProxy */; + }; + 694BC02A956ABD1A22E5ADD40FC5C69C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 0A5EF1BB8E56BF18B1D4A5215AB0153B /* PBXContainerItemProxy */; + }; + 694F56AC29D43B98B04458D541BC0C64 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "RCT-Folly"; + target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; + targetProxy = E44E0C84DDC5714BFBFDB37835A87771 /* PBXContainerItemProxy */; + }; + 695424830158DE3C35802A391DF2AA47 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTLinking"; + target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; + targetProxy = 6D0C54C8FA5AAD31B221B6ACDEFE33F8 /* PBXContainerItemProxy */; + }; + 6990DA9422941E6EDFA9F5FF2F7EACB7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXAppleAuthentication; + target = 28A005E00FB77DDB2543047A07ED99A5 /* EXAppleAuthentication */; + targetProxy = 743E77544AB16D9F45C7454313A6B4DD /* PBXContainerItemProxy */; + }; + 6993071F7A30C2D7699777010A54248D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = FF8CBC11B46C17080179A7758C28E374 /* PBXContainerItemProxy */; + }; + 6A3D07447F7B60121AB0CF00C5FA0E0D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMReactNativeAdapter; + target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; + targetProxy = CDA9EE325AC3F55B7D03784EA7BE03A3 /* PBXContainerItemProxy */; + }; + 6ABCFBDF5754D43AA1611E365947C3E0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDWebImage; + target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; + targetProxy = 85F896D8BEC8F1D035C789D222B9DDE0 /* PBXContainerItemProxy */; + }; + 6AF1A1E396C297515D404EB5B9BDCCBE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = libevent; + target = 04A30E186743192DFB26B0FD7DB8F250 /* libevent */; + targetProxy = 91F95714EAFEAA231AB65705AAF4EB89 /* PBXContainerItemProxy */; + }; + 6B3EC17DE68B67E7992CB0D7B262D71E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = 2C1A4D179F333A6B86CCFE1991724AA0 /* PBXContainerItemProxy */; + }; + 6BA0035CBC2B320BBBB15C5DA34DD454 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 5E8F59849520F8E58324C72E77979051 /* PBXContainerItemProxy */; + }; + 6BD216FAE1ADEC54703BB5825C378127 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = 7DB2DADB16B041C2BBCA1D67315427BE /* PBXContainerItemProxy */; + }; + 6C4704B24AB5BC66273D0DED6523335C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMSensorsInterface; + target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; + targetProxy = 7E12B12651FBBE692717A43112D2BEFF /* PBXContainerItemProxy */; + }; + 6C997F4411A1CC5F8A7DD356B106F09C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = 50466E742D9F32965A430247549F9312 /* PBXContainerItemProxy */; + }; + 6CDDC1372E89814CC5FAD351EC98BDBA /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "boost-for-react-native"; target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = D1206CC7075976A247FEA15FCFCF5142 /* PBXContainerItemProxy */; + targetProxy = F2779434729AB947629DFB51257ACFD9 /* PBXContainerItemProxy */; }; - FFF95D9EF66BCD495EDDBF1ECCE894CE /* PBXTargetDependency */ = { + 6CDFF65E190BEC7742DFD0C47B1BAC57 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DoubleConversion; + target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; + targetProxy = 910DF82220E534547C3ECC40FCD6D8F2 /* PBXContainerItemProxy */; + }; + 6CF07CFE3C95F650E4543E9731D6CD26 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNLocalize; + target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; + targetProxy = BEFCFA90CCD62B67AEDC0A9AB945BFEC /* PBXContainerItemProxy */; + }; + 6D1A2195BCBC778EF5DD84456C1E5EAB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-callinvoker"; + target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; + targetProxy = 68E8C147AC389AED1597739E606CEC08 /* PBXContainerItemProxy */; + }; + 6D9E8739A02CC300F7F5D3C0C6E05CBF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMReactNativeAdapter; + target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; + targetProxy = 816ECF6D1FFC8DD774FD853F3EF6CCE2 /* PBXContainerItemProxy */; + }; + 6E17E73F673B3B75DCBA5BDB87322635 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = 53246BD24D8455F774F8D6BCB9651698 /* PBXContainerItemProxy */; + }; + 6EE8D2D7F4BF3096ED0B794181D42FC6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "OpenSSL-Universal"; + target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; + targetProxy = 851D6020491EF4D4B7A44F5882379B71 /* PBXContainerItemProxy */; + }; + 6F91BE23ECBCFABA8B354ED1E1031DC2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DoubleConversion; + target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; + targetProxy = F717E236553B5108C1833BB5F135D08F /* PBXContainerItemProxy */; + }; + 701A33CBA059100356C854DE0E947B16 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDWebImage; + target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; + targetProxy = 5B46F0291F03F7C6291A82898B21367D /* PBXContainerItemProxy */; + }; + 701BD2FAE150DEB0D1CF6D90D9E2A6AF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMConstantsInterface; + target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; + targetProxy = 3814E33F90FAA7A58884A68CF9BA6265 /* PBXContainerItemProxy */; + }; + 702CDDDED4A1FB819B07CC2F3AB1B2F3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 1F570E6F3998C13CDBFCA10D2A77BACE /* PBXContainerItemProxy */; + }; + 7097E1040EB2D3CDD2F5814CE58C0D44 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = 76807A0F1F4F6C75CE517435DED9D5CD /* PBXContainerItemProxy */; + }; + 7102FE14E40BF579704B03EA33DA9B30 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransportCCTSupport; + target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; + targetProxy = 35D29D203ACE1A3642FB097162D19DEB /* PBXContainerItemProxy */; + }; + 72015D997B70C110A5868EF457E45399 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDWebImageWebPCoder; + target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; + targetProxy = 0C331F3288FC96E2B9C015D9E45F789D /* PBXContainerItemProxy */; + }; + 72955D5A1190BE46045B44CC13497EDD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-notifications"; + target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; + targetProxy = 3AFFE00593B1A6590ABE582CA5B5437D /* PBXContainerItemProxy */; + }; + 72C3F27A35D127B05EDFBF1AF400150B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = FE98514E436F91BA4E111B692BCAB5DF /* PBXContainerItemProxy */; + }; + 734CC2BE7CBA5BBD183F2618924A27EA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFaceDetectorInterface; + target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; + targetProxy = A8D6A6DF0FB2B98DFACE2DE587CFD426 /* PBXContainerItemProxy */; + }; + 73E3778CF5046F50B245E46249B8A3A1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTVibration"; + target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; + targetProxy = 9FB27866A9E45D8CAE9C297618233474 /* PBXContainerItemProxy */; + }; + 7402CB955DDD0637CA5143CB0A3723E8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = 497EF6E30B6BA56995E78DE32981AB2E /* PBXContainerItemProxy */; + }; + 7493163EAD908739624B91B1C8C9CEA8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMPermissionsInterface; + target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; + targetProxy = CA191B8AA7656280A2E746574DDA1AA2 /* PBXContainerItemProxy */; + }; + 755B21E7FA05B9D306B5DA1414397779 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTActionSheet"; + target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; + targetProxy = 363913E25283E77A2CDDBFA3854CD34D /* PBXContainerItemProxy */; + }; + 756D66FC7D36EB2AE1DD3D9DDA8A5716 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsiexecutor"; + target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; + targetProxy = 2FEA2C94E0E7934D146B4421C21353AC /* PBXContainerItemProxy */; + }; + 7607AB3C9EC6B3A72C00D50CB3A821CE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "RCT-Folly"; + target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; + targetProxy = 25D731C8B8322F6109319FC1C29DBC12 /* PBXContainerItemProxy */; + }; + 7669584C5BC540E89EC0F67FA9F4BF9E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Flipper; + target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; + targetProxy = 464C670BE9A85762B084067B7292AE19 /* PBXContainerItemProxy */; + }; + 76C48D1B8020786E88EDD249B36E19CB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNFastImage; + target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; + targetProxy = 63EC784B7C48FA65F68D006A546AF39B /* PBXContainerItemProxy */; + }; + 77A926C9ACC5A87888C5ECC7302E6F7F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransport; + target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; + targetProxy = 7F419458D4EB95BC37CEDA24E6A87FBA /* PBXContainerItemProxy */; + }; + 77E761B5F1D6766129F18CABBE5FF8CC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-perflogger"; + target = F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */; + targetProxy = 497EB06B31993907ECD490A6CF7F22DA /* PBXContainerItemProxy */; + }; + 7855AB1EF38EC7FF24743A7B1A8D946D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = YogaKit; + target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; + targetProxy = 8D230A2D918D3BAC49BA649D7C53F6C3 /* PBXContainerItemProxy */; + }; + 78615C059CBCC9AD5AA446383BF37BC3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = 42135B42EB3752EEEFE9E5A4ACBCB8AB /* PBXContainerItemProxy */; + }; + 7885989121D533CD57B1F9C41C59F3A8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = C02403368B42E747A0C9885EB5156230 /* PBXContainerItemProxy */; + }; + 78951F5A14BBC91D71CC9A9C98980436 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-cameraroll"; + target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; + targetProxy = B1C5D8CAFD680931F2B2906CDDB4B220 /* PBXContainerItemProxy */; + }; + 78B14BAB8EF5D941C3A61ECCC908C2CD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNFBCrashlytics; + target = E3573FB7AF659C42B699003C73722241 /* RNFBCrashlytics */; + targetProxy = BBCD5DCBC469E414B40851887B9316B9 /* PBXContainerItemProxy */; + }; + 78B2E5AE87E6B268B7BD81B0A7CDF53F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTRequired; + target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; + targetProxy = 2019DD04814708C23A3D8233A67484FE /* PBXContainerItemProxy */; + }; + 7A2F78619B9DA1DA26C4C2DF17D10040 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Firebase; + target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; + targetProxy = 1CFB073BD465178A6A62B86921039222 /* PBXContainerItemProxy */; + }; + 7AAC9F8D900B26A30565D2F6120DA8F9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCrashlytics; + target = 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */; + targetProxy = AC8C8BF6A077497F8E8E7F0F431B7DB8 /* PBXContainerItemProxy */; + }; + 7B1E1D0C1C62815667D8003848A1782F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = JitsiMeetSDK; + target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; + targetProxy = C1B7D8B6AF7182787CC079B8D124F56E /* PBXContainerItemProxy */; + }; + 7B2C2FEEB27514139F3F0BFCE54EBEA9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-cookies"; + target = ADC4ACC657481AD27F9936D08FF7F49A /* react-native-cookies */; + targetProxy = 4CFB6E3A1D0F11E585A2F98CAF6A77C6 /* PBXContainerItemProxy */; + }; + 7B45DA068601682BDFA0CBDC90C1EC8E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFileSystemInterface; + target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; + targetProxy = 897170CDD7C0FFE5ADA4870789B041A8 /* PBXContainerItemProxy */; + }; + 7B60121BB75EEA4C6F6A3703C1715BB1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactNativeUiLib; + target = 037A1F31C4D99F52EC9FD2008FEC481C /* ReactNativeUiLib */; + targetProxy = 513641D58AEFD2B8A6FF83D29C3B8837 /* PBXContainerItemProxy */; + }; + 7B9DD0F66B0F2A43C2A579F507D234D0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXKeepAwake; + target = 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */; + targetProxy = A432F4CA76EDE240E32072421D6EABA2 /* PBXContainerItemProxy */; + }; + 7C3015F0E74CB20B01CF0708B519234F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-mmkv-storage"; + target = 74DAFD196634D10887C9A4E7BA19A5E4 /* react-native-mmkv-storage */; + targetProxy = 8F6F00485C1F0AFD20B9966E96581CE9 /* PBXContainerItemProxy */; + }; + 7D9AC4564D7D0154FE46627CB052751E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNDateTimePicker; + target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; + targetProxy = EEF7E595D1E4D4D206A27BD671E41F47 /* PBXContainerItemProxy */; + }; + 7DE4C5AFFDA324D025F4828AC3C93F36 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTSettings"; + target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; + targetProxy = B38DE836ED5B1E2C961D630056F8AA57 /* PBXContainerItemProxy */; + }; + 7E0952C971CA5C6D9F3DE7941056AEA2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = C15C3FA91360A3381B62DCD446CC4D12 /* PBXContainerItemProxy */; + }; + 7E249BB832DE8FBB57AA5B659EA65C83 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXKeepAwake; + target = 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */; + targetProxy = D7A5AC85EC194EA0733F01E38D7861B0 /* PBXContainerItemProxy */; + }; + 7E7493F2C7E60DAA7E404074ADA51E25 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = 18CDD9BCAA26B0047475F2F7BBA386AA /* PBXContainerItemProxy */; + }; + 7E7ADDAEDAA0D9967DA3A7D2FE35E64A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = 38F3CA49C9A4BACCA1D89284F93EE2E6 /* PBXContainerItemProxy */; + }; + 7E9DFC8CDAB5BE14339B4BF013586709 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Firebase; + target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; + targetProxy = 53617FB4A674EDAEC3FD5ECD2977A528 /* PBXContainerItemProxy */; + }; + 7EBF7D57EBE020F41B75A6E77D7DE164 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-callinvoker"; + target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; + targetProxy = 9B5B625653D16C12A4F0F782FDFA1E7F /* PBXContainerItemProxy */; + }; + 811C0F9F44E41DCFD8C8A91D33F3B418 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransport; + target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; + targetProxy = 83D0B0C09E0A0335D9E0D112F7A03FD4 /* PBXContainerItemProxy */; + }; + 812576CF1B14D38CFD4AB410E48CB754 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-runtimeexecutor"; + target = 54EB12219122432FA744088BC5A680D2 /* React-runtimeexecutor */; + targetProxy = 6699DA762C1C3FAB74015C0C2893DDEC /* PBXContainerItemProxy */; + }; + 81C65564EFF0EC930D10A29285BB32F9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "RCT-Folly"; + target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; + targetProxy = 2DCE2B61F352988671ED7EAA985F4BFD /* PBXContainerItemProxy */; + }; + 81E734B2DCC71BF039F2D3598F9F3365 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTImage"; + target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; + targetProxy = FA37256919DA40CCFDA1540F724B2D43 /* PBXContainerItemProxy */; + }; + 8231A090A1C84960D0DE6BC8A362EDF9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFileSystemInterface; + target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; + targetProxy = 177FC80D8DA02E9F9C363EC9D796189B /* PBXContainerItemProxy */; + }; + 823796A4C0E98DCC396C9AA407D1DFE2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXPermissions; + target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; + targetProxy = 952D1BC6079B4D39E3AC3337E29BFAA8 /* PBXContainerItemProxy */; + }; + 8287DCE0A4C67FF9FFA22DBBB8BBE6ED /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNFBApp; + target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; + targetProxy = 85F69F0D83AED0AD3A1DEE216D3903A0 /* PBXContainerItemProxy */; + }; + 8288C1BB0066817F4D0A79469199FE98 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTVibration"; + target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; + targetProxy = D0A2237EF64CFEC7D73C309DB142990F /* PBXContainerItemProxy */; + }; + 830D0DDD1ED7766FDCC9E4B2D19035B6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNCAsyncStorage; + target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; + targetProxy = 631341BE9143FC0B1864D0AC25521689 /* PBXContainerItemProxy */; + }; + 832D84E40B4FCD08BFD68EFBE912221B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMTaskManagerInterface; + target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; + targetProxy = F3A1FCA30159A868A35741A0CFAE5AC2 /* PBXContainerItemProxy */; + }; + 83D8B9BA2DBE44821381343040980B6C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "RCT-Folly"; + target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; + targetProxy = D5D15D2F22B51E19F208AAA0944663D3 /* PBXContainerItemProxy */; + }; + 840D0A62BD19786FB3EE9B25821F01C6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFontInterface; + target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; + targetProxy = 810FDFE4C799F23532046534D076DED7 /* PBXContainerItemProxy */; + }; + 8424EE4A91AE060ADA27CCBCE081E037 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNFBAnalytics; + target = BDD119F8782FABE2707D3D913EC3EDE5 /* RNFBAnalytics */; + targetProxy = F4F936421B57E9561D49FD6E2262D31E /* PBXContainerItemProxy */; + }; + 847A9F10B1DA4C72B50BFC7C25A9895D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FlipperKit; + target = 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */; + targetProxy = ADEE3149AD7F8715C14EC8FA4A8AC90F /* PBXContainerItemProxy */; + }; + 849AF2A2313D1CEC3439F96A1A6C46C5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = D3BC23E0A45A25F9A47A1A9C65904727 /* PBXContainerItemProxy */; + }; + 852A93058D3CA3352A3626F4F2AA6BAB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNScreens; + target = 214E42634D1E187D876346D36184B655 /* RNScreens */; + targetProxy = 0FAE794FCEC8DC726095DCA424136FA9 /* PBXContainerItemProxy */; + }; + 86315F8902265B6E194C11E38C8A50EE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNBootSplash; + target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; + targetProxy = DA1405F965474A1E390F7C67ECB3203D /* PBXContainerItemProxy */; + }; + 86765640EE4EE6291250C72B96EE7496 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDWebImageWebPCoder; + target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; + targetProxy = 2895C89D7BB10E5DE159A7BA0C8A9D63 /* PBXContainerItemProxy */; + }; + 872C042FDFDA796DF43FD0060E88CD45 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 4803AB7B3643D4969AC4087AC4C79360 /* PBXContainerItemProxy */; + }; + 876D68D975072D0B9A21D51F964A4F79 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransportCCTSupport; + target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; + targetProxy = A49E2A5357A8B70FF8CB008146380DB5 /* PBXContainerItemProxy */; + }; + 877930B14A21B2DD3CA569D5013960B7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-cxxreact"; + target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; + targetProxy = 81CFA94D98625937545C95F24EA4B318 /* PBXContainerItemProxy */; + }; + 88398AD355B6636B76E9F77F87C02C89 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = KeyCommands; + target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; + targetProxy = C75977C0EF5DE6D5F5DB5A9AE349ADE2 /* PBXContainerItemProxy */; + }; + 8915FF67466DEC7E432EC385AE442848 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNConfigReader; + target = DC0D417AC8ABB7AA10C20A5E0F065812 /* RNConfigReader */; + targetProxy = 17C86B9D1A946BA9C00D45A67DE338C2 /* PBXContainerItemProxy */; + }; + 896D7B7DC2FE314B5BC1A51F3A7DADAA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MMKVCore; + target = AC8AE887C706A43711D115E69B9D988A /* MMKVCore */; + targetProxy = 9B8CFF7D504DC9ECE40CB18BB9E4C61A /* PBXContainerItemProxy */; + }; + 89BBCAC7B66E9F858377D08C0C3F2D6C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 013091E48ED486D2E0A27CF03CE4489F /* PBXContainerItemProxy */; + }; + 8A31414293B6B202C7388DF679DB86EF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTBlob"; + target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; + targetProxy = 920DB7C04761108C4785570930335519 /* PBXContainerItemProxy */; + }; + 8AC136AC6F432B0101E71AC0E5B6E128 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-RSocket"; + target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; + targetProxy = CF716D5D18606576BBEFF32E21A8000C /* PBXContainerItemProxy */; + }; + 8B21B104C4241BE3592151EE2AFE8CED /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 70609736CA4CFD114CE5EFE50DCE88A6 /* PBXContainerItemProxy */; + }; + 8C05D589A3732CCF366C12EBE936BC44 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNCMaskedView; + target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; + targetProxy = 7B4214A62B6EEEE26104A4075FD700AF /* PBXContainerItemProxy */; + }; + 8C3D6F3780F23C75CEF5EE36A80AC247 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNCMaskedView; + target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; + targetProxy = CF1E4F62D5034B7E50F06CB96ECB8938 /* PBXContainerItemProxy */; + }; + 8C4D501247F4B7496B1DAD1225FD640E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 9CBF77A27568AB4E3E05D39647C581D8 /* PBXContainerItemProxy */; + }; + 8CA09154EC7DEEA3770002D19672E966 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-PeerTalk"; + target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; + targetProxy = 0E3523AE5241A8E88AC47CEFB9277B00 /* PBXContainerItemProxy */; + }; + 8CF2441F8BD11960DA4AA94B96460799 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXConstants; + target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; + targetProxy = 4E8C2D1817F3ECE5F333AC385DD762F4 /* PBXContainerItemProxy */; + }; + 8D401A4598BB50D0B34669CE8B9F9A27 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = 632DA945F4A946CF1CDC32425016CAF3 /* PBXContainerItemProxy */; + }; + 8D45C9838077CCAF261ADC02A1482D5E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNFastImage; + target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; + targetProxy = 86A7C4FFCB64972DD168B3E4BBC0A048 /* PBXContainerItemProxy */; + }; + 8D7EE01FA93D2BBA756CAB08A3845403 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTRequired; + target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; + targetProxy = 331F386E85E953818B591C6997486C19 /* PBXContainerItemProxy */; + }; + 8DE89D6131708EA9CAC3A5888D377DE0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = 58D6C04CC829A78BEE24413D12CF650D /* PBXContainerItemProxy */; + }; + 8DF63E30C8A336EE49EC922DB675AC18 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = 29A9C14575153E72B8F68CEB6470D28E /* PBXContainerItemProxy */; + }; + 8E2DCF47167B05A4CF03BD915D99B5BE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNVectorIcons; + target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; + targetProxy = 3C09EC956787921926679E659C17A2EB /* PBXContainerItemProxy */; + }; + 8E31B98BBCD7D7BFE0DB9591D67792E5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNConfigReader; + target = DC0D417AC8ABB7AA10C20A5E0F065812 /* RNConfigReader */; + targetProxy = 46018F94CABDEFE9B2580943B39F0363 /* PBXContainerItemProxy */; + }; + 8E49E3D2F3F5703C84260486EDECF331 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-callinvoker"; + target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; + targetProxy = D75CCA3635516776EC1BD915F5072F85 /* PBXContainerItemProxy */; + }; + 8EC659CCB54C4E8BD5A89D96EE6ABD73 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransport; + target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; + targetProxy = A058043B3506B7A06540B08D4BA9D97D /* PBXContainerItemProxy */; + }; + 8EEE597D6F15BBBE8976374C97512BCA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-PeerTalk"; + target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; + targetProxy = 13FC3ED200281D9E6B890D5163268AE2 /* PBXContainerItemProxy */; + }; + 8F4984529BF991F7323B437FA5714B6A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "rn-extensions-share"; + target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; + targetProxy = C63FA8E20B37F4DC2579DC3DDC18DECB /* PBXContainerItemProxy */; + }; + 8F75994A9B48FF4313EFDDEDFF4DFDC8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = A7E89FBA8009C6F9C6916C857168C2BE /* PBXContainerItemProxy */; + }; + 906A7A53E1CE515CD93208173D84815E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = F2BA47439F9714C5C807D9F0D7D274A7 /* PBXContainerItemProxy */; + }; + 908AB5A357A27B2B87B523F6CC8CA365 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNLocalize; + target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; + targetProxy = 46C53AF067A15343D583C7F71A893B84 /* PBXContainerItemProxy */; + }; + 912F30419CEDB474DA4A48579FCC0E75 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXConstants; + target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; + targetProxy = C630B13A06E07FCE2A1C8E1F9F441E0F /* PBXContainerItemProxy */; + }; + 912F7723DC302F388B571775F8AD3D67 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-cxxreact"; + target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; + targetProxy = B9DC815EE0205F2415D3FE91C84DEF2E /* PBXContainerItemProxy */; + }; + 916D50F5FE1E54BBD1C8E72B51B53704 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = D66BECE531DF6C5E64050F3FF65EB93D /* PBXContainerItemProxy */; + }; + 91EA6AC9B57114BB62DD3A69E6F5103D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = BugsnagReactNative; + target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; + targetProxy = B05D7AF71D4D6B988D96C579F870ECFE /* PBXContainerItemProxy */; + }; + 920563EF6A58C256566C1B63B3406F6B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = 42CE88158B97229520B321E4443AD1FA /* PBXContainerItemProxy */; + }; + 928C21EA797C87A395A5946C53F95C49 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 2B9BC239A33199F1135BE33EFA7E2E3B /* PBXContainerItemProxy */; + }; + 93E89E422704884B4D0CEDBCFFC4F1F7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFileSystemInterface; + target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; + targetProxy = 9032E9EC68ED42A8E97DBC678DC59271 /* PBXContainerItemProxy */; + }; + 9428CA7DB7151C77F7803371CE850B3A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXLocalAuthentication; + target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; + targetProxy = A29555B9F27D84521D8B8F587D35C059 /* PBXContainerItemProxy */; + }; + 944131E27F171CD1A4B8406611D30F32 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-cameraroll"; + target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; + targetProxy = A8FA676B34B5C34D94F215F6EFCFE5B5 /* PBXContainerItemProxy */; + }; + 953DCB6F853DAF1192FD11D59796DF4C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-slider"; + target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; + targetProxy = 3E69474A4A59ACF9D8787E8778CEFB52 /* PBXContainerItemProxy */; + }; + 95B0791F6B593EF8C3842D1D2117615B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = E3642347949F56CB2448C84DB03ED331 /* PBXContainerItemProxy */; + }; + 95B9F3BCA83B8222EFBEEE623EC62AB7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DoubleConversion; + target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; + targetProxy = 40BD78E7F0BA2DB65B35E29ACB0548F4 /* PBXContainerItemProxy */; + }; + 9619F40AD2306EC2F641B1D3961D55F5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMTaskManagerInterface; + target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; + targetProxy = B3BC2224BBF9CBF7EDED5040ED350DA8 /* PBXContainerItemProxy */; + }; + 968933C047F03FE6D4B0552C53BBA71E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 4FE0D7292C95BD1A3F3CD951E22C2770 /* PBXContainerItemProxy */; + }; + 97190226766EE7B191866EEE7133DD98 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-notifications"; + target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; + targetProxy = 6236B0E829BFA77ED7E0381BBC4793AD /* PBXContainerItemProxy */; + }; + 983C992F2059B3A804FFA43A1D2BD8AA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = 77FD366B8F470A3B28491AEC04ACE282 /* PBXContainerItemProxy */; + }; + 98692C7C8FE2287241EEA035C7631C5C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 555171B29ADA7FFC5810355DAC962B7F /* PBXContainerItemProxy */; + }; + 993D396F38E7691A8B7DD2E339CCF3D0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNCMaskedView; + target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; + targetProxy = 7EE2AD69BF9E7C6FBEB92D6ACC61A2B4 /* PBXContainerItemProxy */; + }; + 9964CCD69F6A51C5BD50045ED16F6104 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = 60D322FF766C8D61CA8ED87B9000A668 /* PBXContainerItemProxy */; + }; + 99AA18813BA4DE5B76F0994B5728B40B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-perflogger"; + target = F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */; + targetProxy = BB8780EA9926CA4856286FB07A681211 /* PBXContainerItemProxy */; + }; + 9A05CE0E659953558AEBA7E4A2E35071 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = 4CAA75395129FD55349D85DF38063591 /* PBXContainerItemProxy */; + }; + 9B00A41F50B94C8966A4D3CDF1BB20E0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-runtimeexecutor"; + target = 54EB12219122432FA744088BC5A680D2 /* React-runtimeexecutor */; + targetProxy = 1B9E0CF161E91E1A8B8537D323B6983B /* PBXContainerItemProxy */; + }; + 9B857544C3B7942F3669F09280978200 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MMKVCore; + target = AC8AE887C706A43711D115E69B9D988A /* MMKVCore */; + targetProxy = 25BBD187E54CDFAC57A6BA84E50B8155 /* PBXContainerItemProxy */; + }; + 9BCCD88B6F1E4251F3C5BBBE59C6E0C3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MMKVCore; + target = AC8AE887C706A43711D115E69B9D988A /* MMKVCore */; + targetProxy = CAC1320E6DA61ED52F013627E73C1B34 /* PBXContainerItemProxy */; + }; + 9C27F86BF24266DE36575539849D4693 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTActionSheet"; + target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; + targetProxy = E7F0ADFCD6A72AEBA6784F657563E240 /* PBXContainerItemProxy */; + }; + 9C3F7A036E96D2D712EC3BD41027D85F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTSettings"; + target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; + targetProxy = BA1A8E6A7D41CDA8062C56C69E771FE0 /* PBXContainerItemProxy */; + }; + 9CDE08DE69F8AE701EDB98CA74149DC2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNCMaskedView; + target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; + targetProxy = 79AA4FE2279242E526BD42C4BFBE860B /* PBXContainerItemProxy */; + }; + 9D0200E2B2272EE3D6C2508944090083 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = D13C0D4BA9DA741BC9A1945F6CEEF702 /* PBXContainerItemProxy */; + }; + 9D59C10AD02C1392D4EB4647313D59FE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXAppleAuthentication; + target = 28A005E00FB77DDB2543047A07ED99A5 /* EXAppleAuthentication */; + targetProxy = A4C2EAAD2197FDB23E229BF330C9B7E3 /* PBXContainerItemProxy */; + }; + 9D816FE423E6F3FA46EB8E43C8D17599 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = 3268E9B58B16AC4BF0109C1643C7224A /* PBXContainerItemProxy */; + }; + 9DC93C1D6F5EA0E5CAE692445145CB0D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMSensorsInterface; + target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; + targetProxy = C8184BA735878CA7ECD82130FD1BA5FD /* PBXContainerItemProxy */; + }; + 9E426F33134A6FFA66DC6649B1829689 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Firebase; + target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; + targetProxy = 169768D84C3FA56A813550568C4ED880 /* PBXContainerItemProxy */; + }; + 9E6D5EB9736C5FE8529CBDCB6958006A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 2474CD9A20FA79BFF80DADD3180C3B9F /* PBXContainerItemProxy */; + }; + 9EC8FD6A24BBB7B9FC03E7FF8B07FFBE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXAV; + target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; + targetProxy = 5E949BC803D435EBED0312F4ED97D2E5 /* PBXContainerItemProxy */; + }; + 9F6AF0A89ECE6DF23629AE287EFCEE44 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMPermissionsInterface; + target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; + targetProxy = 5795402636DE819E8D84466D4AB5BA02 /* PBXContainerItemProxy */; + }; + 9FC16006E154CCC6FA16881BC112BEEA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = 6BF35E248DEC7B1CA4FF8109AD5DE73C /* PBXContainerItemProxy */; + }; + 9FC9F16B91C53985F4203E72D7906D9C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 710AFA78DB930DDB1A0AF654064B964B /* PBXContainerItemProxy */; + }; + 9FDDD1D85D03C35E942985C007836D18 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMSensorsInterface; + target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; + targetProxy = 41421C169CC0B7FB1B35E03E33AD4BF2 /* PBXContainerItemProxy */; + }; + 9FE03DE9F5E3B124AFBAF3CE18067012 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = 309B67A53527D73A2D42EB256B0B895F /* PBXContainerItemProxy */; + }; + A04AA6C8A345271CCBE97DD920683301 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "RCT-Folly"; + target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; + targetProxy = 9DB544F9F59F053BCBB42F4398A21AB9 /* PBXContainerItemProxy */; + }; + A1063D6464E40C5A91C32D7F123CAD49 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Flipper; + target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; + targetProxy = 374A3655E4FBF96ADA70AC0EFBB2384D /* PBXContainerItemProxy */; + }; + A111437F7EE9EB56A7032A77CF85E626 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-mmkv-storage"; + target = 74DAFD196634D10887C9A4E7BA19A5E4 /* react-native-mmkv-storage */; + targetProxy = 34C614E6FA7294F59F13C89618BF3A7D /* PBXContainerItemProxy */; + }; + A16E473880E79C9BAED327FE4A850FA2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Flipper; + target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; + targetProxy = 6F8E1192453A55B478B8BF41E258A9E7 /* PBXContainerItemProxy */; + }; + A26B3133C3B5F2C2BCEBD8B4077EE092 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = B2037FE0D3589F33E67FC737F3418312 /* PBXContainerItemProxy */; + }; + A2B9CD32F6F0425727F2C55F0C85FE07 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = libwebp; + target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; + targetProxy = 9AEADB9716B79043EEC0777F76BF5759 /* PBXContainerItemProxy */; + }; + A2C205EF932D6CC2C24DB178FEDD7421 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = D2DE47110A1C9873D8A923A83B7605C7 /* PBXContainerItemProxy */; + }; + A2F279C4000ECF82614676151BFD89A1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTBlob"; + target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; + targetProxy = D4ACAE1C033EA33CC11D6CED4DF613AD /* PBXContainerItemProxy */; + }; + A2F44A5C2BA2EB24DD1708DDEEE059DB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-cookies"; + target = ADC4ACC657481AD27F9936D08FF7F49A /* react-native-cookies */; + targetProxy = 17C00AD0D44AFB50F360E19F80886B41 /* PBXContainerItemProxy */; + }; + A3009D671B6B58B28F192A36DCF69021 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "hermes-engine"; + target = 985FEA01F314F3C00F0C1E1181E6C4A5 /* hermes-engine */; + targetProxy = C2F5B761DF92135C15F01FF84FBE3086 /* PBXContainerItemProxy */; + }; + A309C40D10520883185B4E786D50681B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMBarCodeScannerInterface; + target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; + targetProxy = 07DB8D1F7E87808A378E5C8A1EE93D08 /* PBXContainerItemProxy */; + }; + A3380830A9E04BED95BEA0AC33DBDED2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = 1DB3F05A69423E8AADC62A5A82FBADF1 /* PBXContainerItemProxy */; + }; + A3E83816F91FB6FF8637A270F369AC3C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFaceDetectorInterface; + target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; + targetProxy = 1FAB7A8AC22642B022AF23C6E5434234 /* PBXContainerItemProxy */; + }; + A4B7F49C2B83FC787F6F4B8D56885280 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTNetwork"; + target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; + targetProxy = D3A79498CFB68AEB7500D9192A478F00 /* PBXContainerItemProxy */; + }; + A51EC2E02846BD88420A5D704F349AB0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = EEDD76B810282537AB6DF06A71FF2A78 /* PBXContainerItemProxy */; + }; + A524415CEAEA140F4F892C5BCAEE2AC8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNGestureHandler; + target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; + targetProxy = 2AD96171630657A123A2DE5D273D65A7 /* PBXContainerItemProxy */; + }; + A548D607480591B926A2609F2DFAB726 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTLinking"; + target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; + targetProxy = 5C75FF97709D8A8A9FDFC26B2D2CFF19 /* PBXContainerItemProxy */; + }; + A57CB5642DC7276FDA316BAD26A63E4B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = F62182C9212E13FD7948FD12E735046C /* PBXContainerItemProxy */; + }; + A63ACBFC901BD602A503FEF3B359FAA0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNScreens; + target = 214E42634D1E187D876346D36184B655 /* RNScreens */; + targetProxy = 93A6C9C497E8BAFA68252997B46F780C /* PBXContainerItemProxy */; + }; + A63FC147A5DAC0F61A94311D4E651916 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNImageCropPicker; + target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; + targetProxy = 1AB19FA1FEE352E182021BDC4A0AFF46 /* PBXContainerItemProxy */; + }; + A6BE20308DC8C4A9E9B0C7A2694A14FC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsinspector"; + target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; + targetProxy = 64340757F801CD4D68903C3967D08A6D /* PBXContainerItemProxy */; + }; + A6BEA636F751F209751935C6E2D8812C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFileSystemInterface; + target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; + targetProxy = C9869406786B6799779A7CAE44DEDFF2 /* PBXContainerItemProxy */; + }; + A6BFF0532CB6F55C4662091A1E71291D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXImageLoader; + target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; + targetProxy = C2B7515DDF08A3F6E2F77AC36376680E /* PBXContainerItemProxy */; + }; + A6E2130A7D24FA5B81949ABE8CD69C80 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNVectorIcons; + target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; + targetProxy = C478D3B9E7A40B82AD64FD410452AEB5 /* PBXContainerItemProxy */; + }; + A75A5CF292DFF36941B8CB88478BD985 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNCPicker; + target = D00F24222F074B31C56DC6D05E806A35 /* RNCPicker */; + targetProxy = B6D78B8CAFF1D33C17942DA6991A7B2C /* PBXContainerItemProxy */; + }; + A77DBA8C1D30F3A94B780607793034AC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-cameraroll"; + target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; + targetProxy = 7A72E66D08CEBD016AB11D728C1E9FBA /* PBXContainerItemProxy */; + }; + A7A86BC292DA08FDCCFDA8DA74372F03 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNDeviceInfo; + target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; + targetProxy = 01DADBE1F4234EB72641D60AE2D3B69B /* PBXContainerItemProxy */; + }; + A7A92E2A6F1A9CB1A3CFEE65E46D906E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMAppLoader; + target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; + targetProxy = 0E9BD0F7D761CA1806F9C5F313F428E8 /* PBXContainerItemProxy */; + }; + A84CED7A05332A441075CAC6C058D03C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 184E68B5A570802A48898C83B8D4E587 /* PBXContainerItemProxy */; + }; + A8C736BBC8B7F9B687103544777C046E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "hermes-engine"; + target = 985FEA01F314F3C00F0C1E1181E6C4A5 /* hermes-engine */; + targetProxy = 39E31E837EB7D891C6515E09EF5D82EF /* PBXContainerItemProxy */; + }; + A8F5A0B69DD894612BA6763FFFF5237A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = 2AC08832E9EBC1B7A3A2369AFAA62B4B /* PBXContainerItemProxy */; + }; + A98BEFEBEE2A263213D1EA9054538DEF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = 71275010C693F88591E392C75E6D73F9 /* PBXContainerItemProxy */; + }; + A99BA617439AD486C27D0A6387BBA694 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTNetwork"; + target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; + targetProxy = B08FCDEC8EAE8C2A001FB40385EB1BFA /* PBXContainerItemProxy */; + }; + AB50C33D8845A3227D907A0F8FE0E847 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-Glog"; + target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; + targetProxy = F8BA1D93514327F9D7F6658BCFD50C21 /* PBXContainerItemProxy */; + }; + ABB38B51F5A8BC5D6E4CA139461E0911 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FlipperKit; + target = 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */; + targetProxy = B001B6E7CC99579C9FBF820A9FD5E4B6 /* PBXContainerItemProxy */; + }; + ABF0ECFDF6971328F366D60A4CC81820 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNVectorIcons; + target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; + targetProxy = 50239268B90E4A0C1B4C10E3CB38487B /* PBXContainerItemProxy */; + }; + AC484CAEEE5320A1BC5AC3D4ACD6877B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBLazyVector; + target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; + targetProxy = 4133E2244A67F93BDE49F64A8B9BBF64 /* PBXContainerItemProxy */; + }; + AC8BD4CEAD023EEE36E2E908923A8ECC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXVideoThumbnails; + target = 4A95B7CD1D5F80C5E8CD9CDA00D41F70 /* EXVideoThumbnails */; + targetProxy = 0085E62DD6E1BBE8C59695ECEE8E7773 /* PBXContainerItemProxy */; + }; + AC95E102AFFE558A33F879BE13E98192 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-netinfo"; + target = EC577C5CB1DC59A7464ECEF266A75B42 /* react-native-netinfo */; + targetProxy = 330CB30AE63E71F0029410A4F2F5448D /* PBXContainerItemProxy */; + }; + ACA912C95F37F70FF9AE31C858B4CC3A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "hermes-engine"; + target = 985FEA01F314F3C00F0C1E1181E6C4A5 /* hermes-engine */; + targetProxy = 586149B72877694B4DA40AE703D7336E /* PBXContainerItemProxy */; + }; + AE202D066604E3F7809FB45ED2C736FF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "OpenSSL-Universal"; + target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; + targetProxy = B8936FAC9C1915E91BDD877227345E70 /* PBXContainerItemProxy */; + }; + AE40D65B456FBF41DACA3C8B1E7D7BE5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTAnimation"; + target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; + targetProxy = 3BD704AF06626C5C23A471EE5F0E8ECA /* PBXContainerItemProxy */; + }; + AE883998BB406E95B0773110F04B4FEC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = E643896E0982490B9846E34E81013838 /* PBXContainerItemProxy */; + }; + AEDDE43A4D5A05BAA46914F336C340F0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXVideoThumbnails; + target = 4A95B7CD1D5F80C5E8CD9CDA00D41F70 /* EXVideoThumbnails */; + targetProxy = 97D5810F1BF54BEC0EC4338599FCA3B4 /* PBXContainerItemProxy */; + }; + AFDAC57A40B074A1717CCBF48DB490F4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = 7B05314E0BD1ACFE405A74A0BF38B226 /* PBXContainerItemProxy */; + }; + B0612B1412FDCBF89598056360F9C540 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = 4457D5CA8E42FDC88461957668CFAC78 /* PBXContainerItemProxy */; + }; + B097C6CC688C0DC611360588B51A3A19 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNFBApp; + target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; + targetProxy = EC820AD54348208555F08D43CCBA4DBF /* PBXContainerItemProxy */; + }; + B0D4C9ACBAAD262DDE222AC1CF9F61A8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "rn-extensions-share"; + target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; + targetProxy = 4F0A9A88AD4CB8B08F1DBA2E70387763 /* PBXContainerItemProxy */; + }; + B140DE0093704E7A31389CCAB0B7DAE6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-restart"; + target = 3ED96FB9FE1D18D5F1239C60A109F98C /* react-native-restart */; + targetProxy = DD6D2205D6F2297554B6C3FEF7FA6FF0 /* PBXContainerItemProxy */; + }; + B1AEDE526BD2211524894775B2F2135B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTText"; + target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; + targetProxy = 672ED383E40E18B777B47957FAF83FB3 /* PBXContainerItemProxy */; + }; + B235A1628124F37A24887F6E53ABDAE7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = D38E43E9162C08846DB16DEA0578767B /* PBXContainerItemProxy */; + }; + B3028CE87DE05E05D31CB80820A69DFC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXPermissions; + target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; + targetProxy = 9A05077A3445CCD5904E4443B4C3A232 /* PBXContainerItemProxy */; + }; + B3A102A653F8F336B127E80AF17EBB63 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXPermissions; + target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; + targetProxy = 033B598AEAA69D2889E1CDB1CD650B19 /* PBXContainerItemProxy */; + }; + B40CFE38A816F2C52C3380F4E4706B6C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Yoga; + target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; + targetProxy = 6ADA9866B60F41F8D66EB5650C2592AA /* PBXContainerItemProxy */; + }; + B467BE6B73FEFA4AABDD74FAC3AE4002 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTImage"; + target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; + targetProxy = 1BA59BED620719A9300579D4E1ECB07C /* PBXContainerItemProxy */; + }; + B4D00B7760C3FB0828263C5D8DD72369 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMAppLoader; + target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; + targetProxy = 30725B14D8562E875CFC0ABA597A1DBA /* PBXContainerItemProxy */; + }; + B4E062E2E9E2604E771D3084703D7337 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = 3E7A5852025C8BC7B85218F5DC18993C /* PBXContainerItemProxy */; + }; + B528DD4EDFED9FF14A611546C824888B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = 05AC54CD20CFD15EBDF6F3ACEEFE7558 /* PBXContainerItemProxy */; + }; + B69E088C9AD2EB9ED0B3B29B22C53E20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Flipper-DoubleConversion"; target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; - targetProxy = 5E77DC278E2F612A812B6E6D8E8204AF /* PBXContainerItemProxy */; + targetProxy = 14838B2E8FB70BF59840D2AE9A76F23C /* PBXContainerItemProxy */; + }; + B69EE3925FFB08BD7ADC46664DD9D29D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = libevent; + target = 04A30E186743192DFB26B0FD7DB8F250 /* libevent */; + targetProxy = F8AA665BDAD716C195CE6E7A0AFAA41A /* PBXContainerItemProxy */; + }; + B6FB772AFC597DE6B1E5CCF2C629299A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-DoubleConversion"; + target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; + targetProxy = 7E6E9612FAA666BFD7351EDD72ACA4BE /* PBXContainerItemProxy */; + }; + B743B5977BBB8D0234AD6E3218BC3280 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = 969880DA4537E54B3C5BDF8EEA55C013 /* PBXContainerItemProxy */; + }; + B768A2936EC6450881BBE62BF06CE17F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FlipperKit; + target = 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */; + targetProxy = F0041964B1D211604EE7CE3DB4C940E7 /* PBXContainerItemProxy */; + }; + B79AEF0A52D4E0484D5D9A4EE9AC97C4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-webview"; + target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; + targetProxy = 4E6352EA3823C0C8F7F3EC660F05C1EB /* PBXContainerItemProxy */; + }; + B7E81AADB9277C770C1A7599D4F5AA40 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-document-picker"; + target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; + targetProxy = A0685B4D4246279A2192DFD8458A4266 /* PBXContainerItemProxy */; + }; + B802A407AF1E60C6A9A30C402CAFC171 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-cookies"; + target = ADC4ACC657481AD27F9936D08FF7F49A /* react-native-cookies */; + targetProxy = 564E929717A305B9C90A73994D284E65 /* PBXContainerItemProxy */; + }; + B82726A83F1CCF7C0BCEA7D3AC1E9664 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = C386698B9796F829A9E8F3F32407491A /* PBXContainerItemProxy */; + }; + B83DC780E4EF4161377AD35B535FED02 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMPermissionsInterface; + target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; + targetProxy = 3E265914EE1C1AA375AE84CFEC37F803 /* PBXContainerItemProxy */; + }; + B84ED66D5698CD52FE11A40847006295 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-restart"; + target = 3ED96FB9FE1D18D5F1239C60A109F98C /* react-native-restart */; + targetProxy = 089852961A4F74E3B167515898C737DF /* PBXContainerItemProxy */; + }; + B870CA6314695CC6FA00A140C37AD7AD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNConfigReader; + target = DC0D417AC8ABB7AA10C20A5E0F065812 /* RNConfigReader */; + targetProxy = 3E6DA42228BE2D0B47B449B06095916C /* PBXContainerItemProxy */; + }; + B8D1113F6E3B41B23054D850387FCDA7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = AC9752E64FDBC9E04072B487532F590E /* PBXContainerItemProxy */; + }; + B95FC6B55F33A36394F9AB8DCCBC4520 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "boost-for-react-native"; + target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; + targetProxy = AD10B626AA65145B444E41650C158738 /* PBXContainerItemProxy */; + }; + BA2A5F0115F8EA0F1BB92F1396642E4B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = JitsiMeetSDK; + target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; + targetProxy = 5F9E71884D5A17819A4679A58BF9F20C /* PBXContainerItemProxy */; + }; + BA48DD50F927E36DB7B127AAA1D117C8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNRootView; + target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; + targetProxy = 13C0795B47770D8B6EF9E7DB65849417 /* PBXContainerItemProxy */; + }; + BA6A973DDD33103C468F46B983DFE285 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = C267885FC50CC9756033D21051462D34 /* PBXContainerItemProxy */; + }; + BA8813BC421F60B77AF05705A913477A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsinspector"; + target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; + targetProxy = C93B8C920109BA5954405BF3549FA06F /* PBXContainerItemProxy */; + }; + BB30C7BC8BE9E2B5416E009841233B8C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXAppleAuthentication; + target = 28A005E00FB77DDB2543047A07ED99A5 /* EXAppleAuthentication */; + targetProxy = 0C99ADDD07B96292BEFA89629961E145 /* PBXContainerItemProxy */; + }; + BB34106F59290DD57B273B7594375169 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DoubleConversion; + target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; + targetProxy = 2EFA9736E1F808275C57AA2013F94FD8 /* PBXContainerItemProxy */; + }; + BC578291E8C752C915611E1ACDA7A703 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCoreDiagnostics; + target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; + targetProxy = F42D6BAF47B180DB0CF530F853A63A82 /* PBXContainerItemProxy */; + }; + BC8476572A9B63EC2D5CAA7739F06845 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 33A5D479B29B21D78F3B2E8E4B5D0518 /* PBXContainerItemProxy */; + }; + BCC42DB22DB9F828E4BCD13535A09546 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "RCT-Folly"; + target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; + targetProxy = 343A0CD58A77DF9B25CD0144355A604D /* PBXContainerItemProxy */; + }; + BDB2E275B63CEF8C3B1FAAADF342FD72 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-orientation-locker"; + target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; + targetProxy = A552484F86299BB4D69B33E68A252C55 /* PBXContainerItemProxy */; + }; + BDC286BD80870CB6585607BA03CE6270 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Flipper; + target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; + targetProxy = 20E054015355D1BF273F126FC212499C /* PBXContainerItemProxy */; + }; + BEA6338399F9C26CDDCD7F1B7528A329 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-runtimeexecutor"; + target = 54EB12219122432FA744088BC5A680D2 /* React-runtimeexecutor */; + targetProxy = 8B9BE42710AB5B25BBBBBFAED43D57A4 /* PBXContainerItemProxy */; + }; + BF06A4DA30B187027EE649C4416002EC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = BugsnagReactNative; + target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; + targetProxy = E3247085FEBD4B55645B4C953BE4A67D /* PBXContainerItemProxy */; + }; + BF17236DD818C141290E6F15A813EDBD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDWebImageWebPCoder; + target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; + targetProxy = 0835A460234F35EAFCE6918A68A64E2D /* PBXContainerItemProxy */; + }; + BF7D4C976F005C24D563E3819075B018 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNCAsyncStorage; + target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; + targetProxy = 8E9244F78C637199F1F528CD5BB74D87 /* PBXContainerItemProxy */; + }; + BFF79C7C45409B15B744ACCD8DE68D7C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = libevent; + target = 04A30E186743192DFB26B0FD7DB8F250 /* libevent */; + targetProxy = D29AE1032C3EF25A9D6CBA2DD78811B3 /* PBXContainerItemProxy */; + }; + C044D558D359AF04E60CC12561BDBF86 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNFastImage; + target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; + targetProxy = 9841678D444BF822165C94588FF2A622 /* PBXContainerItemProxy */; + }; + C0DE9A01C0DB5CE1A14BBAB8ABEE00EF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNScreens; + target = 214E42634D1E187D876346D36184B655 /* RNScreens */; + targetProxy = 966E1489161A43682EEDBD6CFE841D79 /* PBXContainerItemProxy */; + }; + C111484A31AF30756B15B5C1D6E38F47 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = A1E5BFDE9CBC54C5FE842230E9FE64D5 /* PBXContainerItemProxy */; + }; + C13D756AD00FEC7147ADAA60A2A23F11 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactNativeART; + target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; + targetProxy = 83361C57853B17A9F5474B1EBAB27D38 /* PBXContainerItemProxy */; + }; + C18F27B691BCCB376A34D964726A8B87 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = 208CEDA2A7603BD2F728EA7C2331D12A /* PBXContainerItemProxy */; + }; + C20622F01960C6F9567A44E625308DE8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = EA07A81169A598EAE84FDBA88BC1298F /* PBXContainerItemProxy */; + }; + C232A7FF37C1AE0FFDE74447F62883BF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCoreDiagnostics; + target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; + targetProxy = 44D981A786C366A2CACA1938C76BCF8D /* PBXContainerItemProxy */; + }; + C24D39E04D848AE308781FA9B547BAEF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "rn-fetch-blob"; + target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; + targetProxy = 80CFA2910011DAE5463CDD132918267A /* PBXContainerItemProxy */; + }; + C293F750696B6364014EBF60FCDB932D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = 871CE80C75F684D9C47E9B7CFBBC9DBB /* PBXContainerItemProxy */; + }; + C339760ADEC9BAC78C4F774799A7227E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNGestureHandler; + target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; + targetProxy = 0BC7E26210CE0754E967569345854437 /* PBXContainerItemProxy */; + }; + C428B327F4B1972A9C003E09867A11C2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-Folly"; + target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; + targetProxy = 47C0604704A8BC3DCBF0666CAFF42C31 /* PBXContainerItemProxy */; + }; + C500FF6F9FD28AA0CDC82C34D09F21A4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNGestureHandler; + target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; + targetProxy = 2B33A343A46C12D96DB5A49CBD66E097 /* PBXContainerItemProxy */; + }; + C50ECA261FDBEABE5E691520174EB43A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = 33ED27400A97DE65DE2B9DC11A7A3DCF /* PBXContainerItemProxy */; + }; + C5374E851E61A1466AF6097849D2E157 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransport; + target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; + targetProxy = 872E5C0235B283DD5087E3EB28AB9C08 /* PBXContainerItemProxy */; + }; + C65D8D3964447301CC6EB34D738C1E04 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = FD09C5F707281C7EF5924ADE226EA60A /* PBXContainerItemProxy */; + }; + C6862F10F277829C8164950C6276A665 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFontInterface; + target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; + targetProxy = 620B83BA58E6500BECBBB0262BB7A1DB /* PBXContainerItemProxy */; + }; + C6890E325CB6EDE7EB296F8FA3CDEBB3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCameraInterface; + target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; + targetProxy = 20C92BE6FCDDA21E4079A386EE7F3C1F /* PBXContainerItemProxy */; + }; + C69E87FC24543C044754DC841E96CDAC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactNativeUiLib; + target = 037A1F31C4D99F52EC9FD2008FEC481C /* ReactNativeUiLib */; + targetProxy = 4871AAA76574AE5A9E23B57659E4B055 /* PBXContainerItemProxy */; + }; + C6EDFF640A57CFFC3C08037F6AEE5526 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCrashlytics; + target = 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */; + targetProxy = 7BDC9F6E6E206767C7503F54F4C559CE /* PBXContainerItemProxy */; + }; + C72ACBDFB1B568A775646C152D39BC85 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = CocoaAsyncSocket; + target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; + targetProxy = FAC8D33B660311E1C3ADC61ACF6AF3E0 /* PBXContainerItemProxy */; + }; + C773E6A9D2242FDDD12807F13BB89C9E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = libwebp; + target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; + targetProxy = 36E0F3EAC610E75DE136273BC3CC2CC3 /* PBXContainerItemProxy */; + }; + C819B9B776A8ADCF056E9BDED4CEFBA9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMBarCodeScannerInterface; + target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; + targetProxy = DEFB8AF6F569A91EA2F07B87ED3C4024 /* PBXContainerItemProxy */; + }; + C86AB4E7CF49D96DEB001D5AC052EAE0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMReactNativeAdapter; + target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; + targetProxy = 2FA2B10763019D37AA479AA9A21F6BFB /* PBXContainerItemProxy */; + }; + C8B554847D661498D93C694CE292ACF9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTBlob"; + target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; + targetProxy = 2F1C693448E778E51B155760696294D2 /* PBXContainerItemProxy */; + }; + C8BCCB3A4AEA99D1B9532E4C9AA4FDA2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTBlob"; + target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; + targetProxy = 00683EBC3EFEF63062C30A7DB7472967 /* PBXContainerItemProxy */; + }; + C90C5C65C08E296588C20BD840D761C5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = libevent; + target = 04A30E186743192DFB26B0FD7DB8F250 /* libevent */; + targetProxy = 4053616235C6EF0A028453379F52D298 /* PBXContainerItemProxy */; + }; + C9ABBD2F077D54F392C4AAE3CEAA8278 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = 7C70AB9B74681F9C0D888ED44C6C9A49 /* PBXContainerItemProxy */; + }; + CA5FD549A66016727AC9192BF15184C9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = libevent; + target = 04A30E186743192DFB26B0FD7DB8F250 /* libevent */; + targetProxy = 2CE27467B8E5A7BA8271C6E5327015FB /* PBXContainerItemProxy */; + }; + CA7DBD4E95FAE6B920433CF996087DA1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = JitsiMeetSDK; + target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; + targetProxy = D4E82E3AD9D26CE48763350AA6513A61 /* PBXContainerItemProxy */; + }; + CA9798E332A9E07CF824D14FCE414241 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = 2A7F7E74BED068ED0E44B14D80CAFBBF /* PBXContainerItemProxy */; + }; + CAD5B8FF90A549E6DBF757D7CAE7BC4F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-blur"; + target = EEBB8D24F2B3531A5C5DAA668D02331F /* react-native-blur */; + targetProxy = 5D9C0DC2D812B010822D16DDB9AEA6E2 /* PBXContainerItemProxy */; + }; + CBC530D6F7B27ACBE5A6293E378BECB2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "RNImageCropPicker-QBImagePicker"; + target = 6D979AB5FDA2E858850D9903776A30B3 /* RNImageCropPicker-QBImagePicker */; + targetProxy = 3CA896893E08C792F9883EA979C7EBD6 /* PBXContainerItemProxy */; + }; + CC374F14E2BF1C6FAA534F55541D8C60 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTAnimation"; + target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; + targetProxy = A267878047A39D37D6AF9167623E32E0 /* PBXContainerItemProxy */; + }; + CCA37FC1F84ED319ECBE060917888510 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 77132EC71CA777052818FCBCD864B1F6 /* PBXContainerItemProxy */; + }; + CCD5CA0D0D7909D656087E7C79600F8A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = TOCropViewController; + target = F3966F664F3CFAEFAB57C40FB54D3788 /* TOCropViewController */; + targetProxy = 5F90765B15608E3C929B788DC3CF3264 /* PBXContainerItemProxy */; + }; + CCD5F3AF1992542961CBBAEB0A4FEC8C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "RCT-Folly"; + target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; + targetProxy = CFC4CD9A8A7C974CE199BE153443999B /* PBXContainerItemProxy */; + }; + CD0885A802848EF019F70776F0EF6AB3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = AB5BB545384D9A415AEF5078876075C8 /* PBXContainerItemProxy */; + }; + CD1E96E8D7FF1FB4EDAD0757E4F6B087 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Yoga; + target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; + targetProxy = 983183C2E16FAE402B50168EFE4D5C10 /* PBXContainerItemProxy */; + }; + CD4B5C1E45E3E8DFD54B011419B2D7DF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = D67858BC2CB37323F9281E60D382F298 /* PBXContainerItemProxy */; + }; + CDDFCD10D9783682B8DB266F1B226EB9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "RCT-Folly"; + target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; + targetProxy = 67F462DF39036B148BE705E85FC8414C /* PBXContainerItemProxy */; + }; + CDEEE02194E117B9BBD5EA21885CF0E2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 2891A1A9D460D914F46FF6127A9BF735 /* PBXContainerItemProxy */; + }; + CDF274EBAE3B49A7C14FC1D77B045D69 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = B86A6C9551C7EF3863B9CCA33CF9D307 /* PBXContainerItemProxy */; + }; + CE478DB43EC7D6CBE45113AF3B2E5928 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-orientation-locker"; + target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; + targetProxy = E14C9EF470F2732D9770AF3B61BDC088 /* PBXContainerItemProxy */; + }; + CF3F0E99D7D9D99EA8F16114EF73C6E0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNImageCropPicker; + target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; + targetProxy = 21E2069AC52B51AD1D8B36C7A50ED931 /* PBXContainerItemProxy */; + }; + CF4F16D520F54F4AD4180A4B8995DB01 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = F018C2824900003497D8D0F378D31E3A /* PBXContainerItemProxy */; + }; + CF510660DA0A379441CA54D78B3E9996 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTBlob"; + target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; + targetProxy = 78365B3D959DB3F6981CD93AE0050656 /* PBXContainerItemProxy */; + }; + CFAAAFFC68A3A992B971826F0248FCAB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "RCT-Folly"; + target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; + targetProxy = CD830AB1BA97F0CBBDFA77A7865D2444 /* PBXContainerItemProxy */; + }; + CFDBBDAE7ACBC68BA01C04FFD98FA244 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-cxxreact"; + target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; + targetProxy = EA54FFFDD7DA42893AAF172565AE0186 /* PBXContainerItemProxy */; + }; + D003CBE4F90D0EF3F1F52C349F9D97CF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Firebase; + target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; + targetProxy = BDD1B19AFA52F3C634CE82EC1400368C /* PBXContainerItemProxy */; + }; + D0292C1B2429B43F23D019A6DCB3141E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTActionSheet"; + target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; + targetProxy = 241F05DB6B224A33BEA4446890A21BE8 /* PBXContainerItemProxy */; + }; + D07515D6E26FC63DA484C9E05CE2FD5A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNFBApp; + target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; + targetProxy = 3E7A0A19FB4E59D391794D3DE08AD827 /* PBXContainerItemProxy */; + }; + D144BB6321243FA5270AB0775E017226 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-cxxreact"; + target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; + targetProxy = 17D22E5971D12A6ACAE95DF8206324A5 /* PBXContainerItemProxy */; + }; + D15B3B0D97C6A345D9F4F610AFC539C9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNFBAnalytics; + target = BDD119F8782FABE2707D3D913EC3EDE5 /* RNFBAnalytics */; + targetProxy = BE08C6604E31305BDFD73B83731E3DEE /* PBXContainerItemProxy */; + }; + D161AA9E493683667739B43C8317CFA7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 0614B7A8F3968DC6EEB0291D2AB6A59F /* PBXContainerItemProxy */; + }; + D165BAD22A479804300CF27DCC65F8D0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = libwebp; + target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; + targetProxy = E056A34DBCD7B31E97EAD1DD2DC5C8A3 /* PBXContainerItemProxy */; + }; + D1B20225C88CB64DDA786EF69CF49FBB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = 553D686D45B150E3E9440047A10AECED /* PBXContainerItemProxy */; + }; + D1F87FBFA6D2B08C9C037D9B1388FF4D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = 291139AA1C672E25D5A21EE44EF51003 /* PBXContainerItemProxy */; + }; + D23980354896856CCB60AE5880E83FA7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = 94B604BA97761BBCCECB145B942B9DEE /* PBXContainerItemProxy */; + }; + D2BE04B275C9A180C5DC373BFF8AEA0E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 064D8D808648F360B79BDCB04564B18C /* PBXContainerItemProxy */; + }; + D2D86912571D9FDEF7A8550C5202ED68 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTSettings"; + target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; + targetProxy = BAC176B94457A1BD48840F966CD5BBF5 /* PBXContainerItemProxy */; + }; + D2FF431D80F945D726D892129BD37CC6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-document-picker"; + target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; + targetProxy = 1ED0A1F892EBDE86A4C5FC2327F41284 /* PBXContainerItemProxy */; + }; + D30DA2F6131F309E8489FCD3F6B28D8D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-appearance"; + target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; + targetProxy = 0DA498A81F99CAFF3E2DF39747838B08 /* PBXContainerItemProxy */; + }; + D379E9EFA13009E76B11C1CB758362D8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = F83826E13C2031E87D405E9D82866E9E /* PBXContainerItemProxy */; + }; + D3B311CD2DEFD819DFE46F255EE02E74 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = KeyCommands; + target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; + targetProxy = 6684F4363389C0D8E03366528419D2A7 /* PBXContainerItemProxy */; + }; + D4431ECC0E32ADEEE07B4D8B68B85047 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-background-timer"; + target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; + targetProxy = 4E9B1A0C929F15972973F8C9DAA4AB3A /* PBXContainerItemProxy */; + }; + D5162B0143962B0E320119E579ED3B2E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = 33218BCAFCC2A39CB997299383DC67FA /* PBXContainerItemProxy */; + }; + D5585E08A85012426A2ADE6A7F273D59 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = CD79A69D4B08B025D996B74950A3DF83 /* PBXContainerItemProxy */; + }; + D5970FCEC1BE9CF9E7E686F21D352874 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = libwebp; + target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; + targetProxy = 84D82B5C5339F8C8C4920350E7CEB3ED /* PBXContainerItemProxy */; + }; + D5D28F6BCDD37DC81C1BA0419D97F66A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = E4CEFCF7A21A7BB1A594EAD9281FC87D /* PBXContainerItemProxy */; + }; + D64C4C2A4426BB985CF88196BF6619AF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTSettings"; + target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; + targetProxy = 2BE520DBB8A95C9E3C5A230F2CEF5E3C /* PBXContainerItemProxy */; + }; + D71B533AC48BA617148D71BB6CA35E59 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = TOCropViewController; + target = F3966F664F3CFAEFAB57C40FB54D3788 /* TOCropViewController */; + targetProxy = 0E344FBEA506D4EFF72A8D8B98E13933 /* PBXContainerItemProxy */; + }; + D87EA1472409EDFED2143495D441AB9B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTText"; + target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; + targetProxy = 46D3DE815B95431C1FBD77A3E87CDDF9 /* PBXContainerItemProxy */; + }; + D886B02BB59010A46256B4D360043811 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "OpenSSL-Universal"; + target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; + targetProxy = 11E6B0F5A374A71CBB92CB7A9503FE90 /* PBXContainerItemProxy */; + }; + D8DE82F0DF3F721853BACDFB56EE7764 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-CoreModules"; + target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; + targetProxy = 22EC80B5F6F52173531AE372A985E80E /* PBXContainerItemProxy */; + }; + D9797CCD3BDE810368DAD8447BBC3987 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMReactNativeAdapter; + target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; + targetProxy = BD13F3391819CFCF4780BCCA208DAD78 /* PBXContainerItemProxy */; + }; + D97ACAA025D2C5C231BEFE0FC7E9CCB1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-cxxreact"; + target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; + targetProxy = AEF55A3ABF7745C73832340D0F26E187 /* PBXContainerItemProxy */; + }; + DACB9BCB766A0003CB65AAC6C611480A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = C57DE5B2C6E3F097F6E8971714DA972B /* PBXContainerItemProxy */; + }; + DB2E58A92DCFF90E53B3C95EE16EDBA1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-runtimeexecutor"; + target = 54EB12219122432FA744088BC5A680D2 /* React-runtimeexecutor */; + targetProxy = B56277016AB6D6552AA17390A8EE5019 /* PBXContainerItemProxy */; + }; + DB73B6D7C5A9D120379B216405FC23ED /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMConstantsInterface; + target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; + targetProxy = D1F0C5387BBE704D7ABD9FFF02D97777 /* PBXContainerItemProxy */; + }; + DB8DFC0B0074CD32D8DF89293CA3F6E9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = CAA00F4A4823AE7159CA350101600196 /* PBXContainerItemProxy */; + }; + DB97236F66A57262C52B3B98533A0034 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransportCCTSupport; + target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; + targetProxy = 4A10036F9C194999EC5491DDB99B5768 /* PBXContainerItemProxy */; + }; + DC0ED551EFC6EE2F326453377E398D9A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXHaptics; + target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; + targetProxy = BA4681AC28E9B0EE3E898D04BD2C9BE1 /* PBXContainerItemProxy */; + }; + DCBEED8BB8DA785CC953085B281C524B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNDateTimePicker; + target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; + targetProxy = A7CB02EA9D821A2F8927275C59ECE88F /* PBXContainerItemProxy */; + }; + DD024583C693EC3CC79E2880CB0BA862 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-webview"; + target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; + targetProxy = F6DBBFEED4CB7451997218DEEBA47AF6 /* PBXContainerItemProxy */; + }; + DD3DAA8F6CD1E76CA6540183D4C4E406 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFileSystemInterface; + target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; + targetProxy = 7D598AF8C7AAF47DA95B87BC66BECB6C /* PBXContainerItemProxy */; + }; + DD5DB1FB428F507D8429233D21875DBD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNReanimated; + target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; + targetProxy = DA5A0E9D39B0782B7D14D19AA2B63E42 /* PBXContainerItemProxy */; + }; + DD8B13F01399292057CB1A2120262898 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMTaskManagerInterface; + target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; + targetProxy = 967CABE5DFDF053BD91FFC332F03F672 /* PBXContainerItemProxy */; + }; + DDC3ACC7530FC66545CCCF4EBECF9F2B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXLocalAuthentication; + target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; + targetProxy = 2409B653999325C77FF9404502735AEC /* PBXContainerItemProxy */; + }; + DE17F7C3F95D7DBEFE469E2AF2AF4DCC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-simple-crypto"; + target = D985A509BFE270C95EDCBE6B4CBAF189 /* react-native-simple-crypto */; + targetProxy = 52930AD8F7529C00DBF65D8885178645 /* PBXContainerItemProxy */; + }; + DE4074508043E17EF1763B5E07463CEF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = F6E2F0D826873FE858A14B235C7A24FE /* PBXContainerItemProxy */; + }; + DEA06A4DF6FE01D0FF1EF48771EFB66F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = CocoaAsyncSocket; + target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; + targetProxy = 786C4EF4FEECE22A8A59F0D013E2636F /* PBXContainerItemProxy */; + }; + DEBD5B8F7341D5ED0871A8FD2560A83C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-Folly"; + target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; + targetProxy = 590D4369441D7B8C47D1FB5FDC5BDC16 /* PBXContainerItemProxy */; + }; + DEFDCFEE021AE9AAD4695315BEF5F0C1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTRequired; + target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; + targetProxy = 8C928D2C43A4DB81E415E35486AC872D /* PBXContainerItemProxy */; + }; + DF914CE9E9D0FAFE0606F701ECF3A843 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = EF9DC28A434B9DD8BD85C7635E965097 /* PBXContainerItemProxy */; + }; + DFB102086B85EC275C5353AF984FC1C6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "rn-extensions-share"; + target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; + targetProxy = 66F8828E29E64D78E3089E7AE42E4DC5 /* PBXContainerItemProxy */; + }; + DFEF77B5978F89BCC466AE8F8F1E18FA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 1F280F013664B46059631025ED067F65 /* PBXContainerItemProxy */; + }; + DFFFC59936C55436EC9A3A97124BAEEE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = CD05EA7370302EED0E9009FBE38FB15C /* PBXContainerItemProxy */; + }; + E0081F81334E401F9C1A5A022B1619AB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTVibration"; + target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; + targetProxy = 0EAACFEAD1664050F5C6B150F81687D4 /* PBXContainerItemProxy */; + }; + E04F06A24E252EB11599BB3E58A3D693 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-perflogger"; + target = F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */; + targetProxy = 3458E29FA1FD6B80A144E1A11A0864B6 /* PBXContainerItemProxy */; + }; + E09BFAD98EA4391CBDE56C6843DFDCC9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = D97E8B1A5B6F78D9F43514EF79F830B3 /* PBXContainerItemProxy */; + }; + E0AFAFB364F2415037F442019DDB462A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "TOCropViewController-TOCropViewControllerBundle"; + target = 2D4D3D5AD93ADCCF3DD45A88009E48D6 /* TOCropViewController-TOCropViewControllerBundle */; + targetProxy = 92346F2C9AB9B16FF34C17E737C27888 /* PBXContainerItemProxy */; + }; + E0EACE4355A49D6F4BAF19F72787B61A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "boost-for-react-native"; + target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; + targetProxy = D889F265F50787A0DC7E5F67E54AFAE9 /* PBXContainerItemProxy */; + }; + E0F0F21ADCAC508DB3916B4DB4D9A3D2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = B0C62270E17819C8DB6D065A1945A0F6 /* PBXContainerItemProxy */; + }; + E131BEB851C3E2348A5D6834F6B7A9EF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "OpenSSL-Universal"; + target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; + targetProxy = DA6B6185BFE45116B2697D286E0F1E4A /* PBXContainerItemProxy */; + }; + E1F239D9D7ACFA74B87C9CEBA02F84B4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsinspector"; + target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; + targetProxy = 726537D085A6AAE596BA2B05B5F6C773 /* PBXContainerItemProxy */; + }; + E2E25EE7424C54B988162B8E231BCCFC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCameraInterface; + target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; + targetProxy = 9760A00CC10152500B88D4C7D9393889 /* PBXContainerItemProxy */; + }; + E30A6847F6567E3E70C277802B48FDE5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-mmkv-storage"; + target = 74DAFD196634D10887C9A4E7BA19A5E4 /* react-native-mmkv-storage */; + targetProxy = B01DE652B68ACDAA6A26C88A99EDA70F /* PBXContainerItemProxy */; + }; + E3F5BE3B036BDE2C64FADCDA8867C2A8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-CoreModules"; + target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; + targetProxy = 1B6A9F925F4D4F01F6A13DD353A9E87B /* PBXContainerItemProxy */; + }; + E474B96A8FFB4DA88BF3962AF3EA2F3E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCrashlytics; + target = 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */; + targetProxy = 156017FB89EF453FC3322467854BD4DF /* PBXContainerItemProxy */; + }; + E4A94790CC4BB4AE1422985FE8D974DF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTRequired; + target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; + targetProxy = EB5FEC194FC451D91386AB5A818D2F7D /* PBXContainerItemProxy */; + }; + E4D6AFFCD5BAAA44B1C7F444DE3CB88A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "boost-for-react-native"; + target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; + targetProxy = 22EB82D97CAC329152F628A05D5805D5 /* PBXContainerItemProxy */; + }; + E4F5D3B94588C218BF9C100B84C6A075 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXConstants; + target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; + targetProxy = 24DF7EB325C41DCB8AC94055701E8302 /* PBXContainerItemProxy */; + }; + E4F73A52909E705812C5CC0689A0E9B1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 07985DA45BDAD42E2F483609ACBCA588 /* PBXContainerItemProxy */; + }; + E5735C832BBA26C0C435A11161E4EB38 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 8E39BFDF1A2BFE9A1C6B82EBAF284CA3 /* PBXContainerItemProxy */; + }; + E5E66B6CE137AC618BF3214A8CFAFAEA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXWebBrowser; + target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; + targetProxy = 8936B2A276C4948D07CC25A2CB43308C /* PBXContainerItemProxy */; + }; + E5EDED7A21AE2D5E2B5D649010ADCEB8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactNativeART; + target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; + targetProxy = 4C93F8CFD550C70F6E3CAB9E24B2394B /* PBXContainerItemProxy */; + }; + E5F258B753DF4470EC09F0A0B415DA7F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCoreDiagnostics; + target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; + targetProxy = 5569090EC3C3F2F0CF2BAEF82929EAEF /* PBXContainerItemProxy */; + }; + E5F465D5D4A8F991CB41E4000B8ED967 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNRootView; + target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; + targetProxy = B447A6505CD2C84913F4817B1ADF54EB /* PBXContainerItemProxy */; + }; + E6105FD2FAAEC37ECA47B5629B59D297 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTNetwork"; + target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; + targetProxy = FC3E450A4AB3EB311C4F92065788DF51 /* PBXContainerItemProxy */; + }; + E663E0746AF9587E187140088C9A78A1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = BugsnagReactNative; + target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; + targetProxy = CB8F0CEE6D4A4EFE1EC6CB1E9D2857FC /* PBXContainerItemProxy */; + }; + E666B2E35AC66E44685924DFCCCF1F3A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNDeviceInfo; + target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; + targetProxy = 9291EC52EE67BB3FD70E9F2B9BE2C203 /* PBXContainerItemProxy */; + }; + E7C3274244E88B5BDE0B7169B66BCDCA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "hermes-engine"; + target = 985FEA01F314F3C00F0C1E1181E6C4A5 /* hermes-engine */; + targetProxy = 8EA26C6DCF74AAF41DE8B90F354C46E7 /* PBXContainerItemProxy */; + }; + E7D11169AA59A0801278A4C7FB01ECC7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsinspector"; + target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; + targetProxy = 485B83CBC9C2A83C6A78CE180859572C /* PBXContainerItemProxy */; + }; + E7EFDBC0898C890558518B95EE67E0BB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = 5C88E946B311BCCD1D2CB4A3CEF41913 /* PBXContainerItemProxy */; + }; + E85E05E1B6F2791A88C822DB6D5F8D92 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 7B4553286C8582DC620CF51CBC5051F4 /* PBXContainerItemProxy */; + }; + E92064082ACD3B0F499FB72DB6DB9475 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNVectorIcons; + target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; + targetProxy = 094FD799C809BE235B2DA606C6EFB275 /* PBXContainerItemProxy */; + }; + E9763755D6DACA572ABF8C66A94F2B7E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNFBApp; + target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; + targetProxy = A5515FE7FC2827FA534BE84BF7B3043A /* PBXContainerItemProxy */; + }; + E98952DD1B78AE4734CB8DCEDEABF4F4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "RCT-Folly"; + target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; + targetProxy = B86AD38808E3F999AC89346B4F449759 /* PBXContainerItemProxy */; + }; + EA27FD1BDF1340B10762FA5BCA6897F8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNBootSplash; + target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; + targetProxy = D3D2A9E1BBCB70F920A63123212B689E /* PBXContainerItemProxy */; + }; + EA4EF392A40F32D997469F0F041AE245 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-document-picker"; + target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; + targetProxy = 0AED41293DD7218D5D4B580E688002EC /* PBXContainerItemProxy */; + }; + EB2234E42F614E221E9C2762E1D92E52 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = JitsiMeetSDK; + target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; + targetProxy = EBB8DD4E83B2C512EB875A6E725AF492 /* PBXContainerItemProxy */; + }; + EB2E014AD89BAA33B6F3075F0D9BEA3D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = E2E2C4114AEBFFCB85766233F762178B /* PBXContainerItemProxy */; + }; + EB6A8B3DC7D661BFB02311F88AD70312 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-perflogger"; + target = F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */; + targetProxy = 2AE5A1014DB6B7EDC9E20991D4C99193 /* PBXContainerItemProxy */; + }; + EBD453A1B6979DF3C69F87C620C7AAAE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXImageLoader; + target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; + targetProxy = 27F1657C0A1CF9D3E178D11AA89C6608 /* PBXContainerItemProxy */; + }; + EBE357417F1D61F9ECA679BB0B0C19AB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = 7F86036D468EF759A9944001C3086198 /* PBXContainerItemProxy */; + }; + EC14546B8305C367EE5ED23568D2F576 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-Folly"; + target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; + targetProxy = E0C816EF86ED2156A80D2F51F80BC90B /* PBXContainerItemProxy */; + }; + EC5CF44DB173C16D818740EBE140FB7C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-DoubleConversion"; + target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; + targetProxy = D8FE4A8E91FE06696E76F3473CCF34AC /* PBXContainerItemProxy */; + }; + ECB609B06595A143D5A1DC8396525694 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "boost-for-react-native"; + target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; + targetProxy = 9329D97B0939289732394E875DDE5F82 /* PBXContainerItemProxy */; + }; + ECE7AFE1D096FA74E94B425B1186A33F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDWebImage; + target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; + targetProxy = 919E43D44BD5429C0C313C1FE8AAFB69 /* PBXContainerItemProxy */; + }; + ED9A1D0F419D42BED5FBCDB087B3F0AE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-callinvoker"; + target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; + targetProxy = AD7B2B20D71A3C91C9CC8B60B1FDB542 /* PBXContainerItemProxy */; + }; + EE2167E981F015ACD2531DEF5241A9DE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXWebBrowser; + target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; + targetProxy = 4CD0C8FE9D059588BD39FA3FB1D8BD2B /* PBXContainerItemProxy */; + }; + EE5F6A4639A7EDD5CEE9F0873D0F0D17 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXWebBrowser; + target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; + targetProxy = 1E6CF8A2E9CFA57E7EB46060757EE88E /* PBXContainerItemProxy */; + }; + EEAA8C1B2F793CA5C90884C440BC3B02 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = 7314D01640E273DECBE3FD055A72FB09 /* PBXContainerItemProxy */; + }; + EF67CC0694C727BBFE7DE264E204B8D9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = C477FF1EBB2802C1B27E1C3C13281E62 /* PBXContainerItemProxy */; + }; + F0A855A2393B34C7F850E0B77A59D8D4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = 6359F94F5060859B2E9C4134C1869B29 /* PBXContainerItemProxy */; + }; + F0C3C40FA6CD6456B010C47CFA649207 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNBootSplash; + target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; + targetProxy = F578A07B3CEEAC12B884304E6A7C664E /* PBXContainerItemProxy */; + }; + F0D55E9BEA4B8E97AF76FA1D54E4ABF6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-webview"; + target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; + targetProxy = 73C03BC47D09631D4DFA4ADC8E6B51CD /* PBXContainerItemProxy */; + }; + F22A6C16A990D09ADD1651FE73475406 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-restart"; + target = 3ED96FB9FE1D18D5F1239C60A109F98C /* react-native-restart */; + targetProxy = F654250BB7FA675FDF5CB750B3DEA4B9 /* PBXContainerItemProxy */; + }; + F245C87E8D3E3385DD25BE5BDFAC5C3D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-cxxreact"; + target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; + targetProxy = 29F8D5EFE3C7A932A966A8F928DF0532 /* PBXContainerItemProxy */; + }; + F24ACB77083A6DAB95C320F06A34F11A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXLocalAuthentication; + target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; + targetProxy = 4E66FE176455F83404AF5ECF517E8024 /* PBXContainerItemProxy */; + }; + F294E455EBF719EAAB955B19244E25B0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = 8EAE92A4FD01D0E165251D4540A1CAF0 /* PBXContainerItemProxy */; + }; + F2B211935424B8CA5ACCC6849FD9E141 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = BugsnagReactNative; + target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; + targetProxy = 69BF5557AF1FEF6C555F67A1C1C56432 /* PBXContainerItemProxy */; + }; + F35A58FC7C82309A726EAAF755C4F3CF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 6EE905DCAFF6D9757B7D78DEB143467E /* PBXContainerItemProxy */; + }; + F35B2988DC12A724442BAF127E55D025 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = 8F01F103563F28F3EF56D19EF131483C /* PBXContainerItemProxy */; + }; + F37245A494C296BC8E6A6811053DD10D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNDateTimePicker; + target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; + targetProxy = 4BCCFE9A86DAE3F3CEC1744819C4E9DF /* PBXContainerItemProxy */; + }; + F5653FB8948E14F6DA2F4637A8D17090 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-appearance"; + target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; + targetProxy = 55D6A964AE6E535448014587AD1E53A1 /* PBXContainerItemProxy */; + }; + F639A2830B5246E1270913827CC2F3B6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTAnimation"; + target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; + targetProxy = 2C15806F41D2B1604F20DC3E50E37F95 /* PBXContainerItemProxy */; + }; + F645E2E772CA14C06516031D80F0317F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMImageLoaderInterface; + target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; + targetProxy = 5DFA289244EDF68968B3252E1BDF0558 /* PBXContainerItemProxy */; + }; + F6A8266C510FAA73CD250FFB3BBE48D9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-simple-crypto"; + target = D985A509BFE270C95EDCBE6B4CBAF189 /* react-native-simple-crypto */; + targetProxy = 150A3D603EFFC3FC8B4CF1BB673EE9E9 /* PBXContainerItemProxy */; + }; + F6DF5C4F280A98925433989B7AEBEE75 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-safe-area-context"; + target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; + targetProxy = 882D825E0D1D36A4869EC297D36EF2F1 /* PBXContainerItemProxy */; + }; + F70740EC13D52B3D116F1D5E7CD68D7D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = 2EB4FD46718A435E68A5BD824E6E865B /* PBXContainerItemProxy */; + }; + F783C0B452654905AB4B0EA92CADFB9A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTRequired; + target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; + targetProxy = 45C8A9B694B6551F7D1F87A998D95B81 /* PBXContainerItemProxy */; + }; + F7CC014DAEB23FCFC0C6F2C3A9232414 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFaceDetectorInterface; + target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; + targetProxy = B6D1769F63F8A530A659412A34D5116A /* PBXContainerItemProxy */; + }; + F7E65922D5B01DBBEE6341C64B5CA0D4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = YogaKit; + target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; + targetProxy = 8BDBD6F615C0C96355FA24B37EA8FAEE /* PBXContainerItemProxy */; + }; + F951FB0B0ADC207F6C474E9975820E68 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTNetwork"; + target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; + targetProxy = 84137C7CBC8926F5AB9EF9B11A06045B /* PBXContainerItemProxy */; + }; + F961B6E5EDDFA153489A0EA0B21C3046 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBLazyVector; + target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; + targetProxy = 8568C770EC35B1E45212652DF7CDDE57 /* PBXContainerItemProxy */; + }; + FA14E07C57ECC7D7672F14CCDD7C72F6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNCAsyncStorage; + target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; + targetProxy = 04540C82182E42016D89700452DA16A7 /* PBXContainerItemProxy */; + }; + FB366C0729CAE322D0C68785A0E9FACD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-Glog"; + target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; + targetProxy = 38B9C859F6D3473A60554FDF89A3BB5B /* PBXContainerItemProxy */; + }; + FC402FFC82655E5068EA7D8C4ABDDA1F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MMKV; + target = 91A6826828CB9FCD0169A7547E8A79EA /* MMKV */; + targetProxy = 9AD8E86CA2F3BE0E8740CFB472343AD7 /* PBXContainerItemProxy */; + }; + FC5354EE17A31EAF2B6882494B07D22C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-RSocket"; + target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; + targetProxy = 7612F29B04AB588E203466104125D8B3 /* PBXContainerItemProxy */; + }; + FC6DD80EE67019A86FD9AC55BEBB8703 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "boost-for-react-native"; + target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; + targetProxy = BAB31239E2661516B464768B335A7240 /* PBXContainerItemProxy */; + }; + FC8DDF4FF08E1267D2F322F0D0C63BEA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsinspector"; + target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; + targetProxy = 5AD9824DA15B989D5D0F776237081BC4 /* PBXContainerItemProxy */; + }; + FCCFF6A7496C0BB925EC9F6CDB73A838 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDWebImage; + target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; + targetProxy = C6A970818780A696E3104F0092A0B6FE /* PBXContainerItemProxy */; + }; + FD23ADCF7021EC5B572E093263CBFCAE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-CoreModules"; + target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; + targetProxy = B5504C04F72AB8148CB31E80F4C74208 /* PBXContainerItemProxy */; + }; + FE1B8308EA7E8F5CDF80BF1A55D79BEB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsiexecutor"; + target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; + targetProxy = F7572D23C0F2BDAC77932F1FA30AD796 /* PBXContainerItemProxy */; + }; + FE63B51A148341C5FCC033BC5854D9D9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTLinking"; + target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; + targetProxy = D2162390495214490D2AEA85DDC61A04 /* PBXContainerItemProxy */; + }; + FE7DA56FB7DF06C470DA171837DD5384 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = 91915660B7ABD745C220A3C5AF877780 /* PBXContainerItemProxy */; + }; + FE932D735560D2FE9F140B5146491503 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = KeyCommands; + target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; + targetProxy = 5DD225A5BF429A260374E0F90D5F7E7A /* PBXContainerItemProxy */; + }; + FEBF1427FD046CF6AE289D25879720D1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXVideoThumbnails; + target = 4A95B7CD1D5F80C5E8CD9CDA00D41F70 /* EXVideoThumbnails */; + targetProxy = DA84E6F6F3E15F9A6B3267CC16F80138 /* PBXContainerItemProxy */; + }; + FEE98C4DFE5A8AC903082490D75C78F7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-document-picker"; + target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; + targetProxy = CD7C59C4C4F94979D738F7960A28190F /* PBXContainerItemProxy */; + }; + FF54C724D5DAF823BE3974E3D7184E02 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = DC7DC0214F958FB54356271BB61E6DAF /* PBXContainerItemProxy */; + }; + FFE8A4ECA14FCD3CD5EB7EAC0B33AB4C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-slider"; + target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; + targetProxy = 67D8B961DDE63B654E8D29EF8DD0EC06 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ - 00585F65DCD8DAF8DBD0363AC21770FA /* Debug */ = { + 006FA452760FC313E71F8E3C3A60D4EE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 01756E118E93517E177C2CA477C8EC6C /* BugsnagReactNative.debug.xcconfig */; + baseConfigurationReference = DF5E666704223D49885200E7A2BC8F94 /* UMCore.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/BugsnagReactNative/BugsnagReactNative-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/UMCore/UMCore-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = BugsnagReactNative; - PRODUCT_NAME = BugsnagReactNative; + PRODUCT_MODULE_NAME = UMCore; + PRODUCT_NAME = UMCore; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; 0108C466213A842904DE4745A5461B23 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DB752E1CC8DE8EC89038D7FE07F16736 /* EXAppleAuthentication.debug.xcconfig */; + baseConfigurationReference = 95A1C64F658C55F9743F8E5CECFBC7CF /* EXAppleAuthentication.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -35139,36 +36105,9 @@ }; name = Debug; }; - 016D5453D2093C9403BD8613355F4827 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 4EE245DA9365F9EC3928AB3C32356084 /* RCTTypeSafety.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RCTTypeSafety/RCTTypeSafety-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTTypeSafety; - PRODUCT_NAME = RCTTypeSafety; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 01D14AB23FAA5F98813B68B15F47A97E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 56D5E512D14827A857149974C62F7D82 /* RNLocalize.release.xcconfig */; + baseConfigurationReference = 454A520F2F73FC2B2E8C35BC65566A9B /* RNLocalize.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -35194,7 +36133,7 @@ }; 0347D3E292B97FE46B9749A84BC11588 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A640452425C086E201C212DEE283E8A4 /* react-native-webview.release.xcconfig */; + baseConfigurationReference = CAF267891123E2841781DC5673196785 /* react-native-webview.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -35218,9 +36157,9 @@ }; name = Release; }; - 04194E6A86B48FDE2C4748CB65A51422 /* Debug */ = { + 048149BB3053D1441ECCDCA684C5DD8B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3E6E94B693FE00876871B854A67A2A1C /* FirebaseCrashlytics.debug.xcconfig */; + baseConfigurationReference = 0A467EA9EDF19944AF6E37B46B9583FC /* FirebaseInstallations.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -35231,8 +36170,49 @@ OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = FirebaseCrashlytics; - PRODUCT_NAME = FirebaseCrashlytics; + PRODUCT_MODULE_NAME = FirebaseInstallations; + PRODUCT_NAME = FirebaseInstallations; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 06E3FC3781AD0BB2F27B3E710583A37E /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = EBFF5BC3C4AEDDCB346F620E28EF4774 /* RCTRequired.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 070E18AD68C8ABDB1AA39FE9D3270DB9 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1A5D76D484B71B551E3699390AAF7DE1 /* BugsnagReactNative.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/BugsnagReactNative/BugsnagReactNative-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = Bugsnag; + PRODUCT_NAME = BugsnagReactNative; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -35244,7 +36224,7 @@ }; 085EDE8532AF45E3B73429C47189A3E8 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7EA8282D3FEFF06E4C897E6ED3D9EB29 /* RNReanimated.release.xcconfig */; + baseConfigurationReference = DC2B8A3D13C3025E4C71AC6D6C299FD7 /* RNReanimated.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -35268,6 +36248,21 @@ }; name = Release; }; + 08D71AEFCC86DB114EDF659B02FEBEA4 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 520842FBB570439D5E9C9C0F1D1828C5 /* OpenSSL-Universal.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 08E2461374E02C28A465B15A10DD303E /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = DEE3203D0A7AFEFAD6E8D45299F7C77B /* MMKV.debug.xcconfig */; @@ -35293,76 +36288,25 @@ }; name = Debug; }; - 0A0E6214D07BB47739004A51C7369DDD /* Release */ = { + 0AD8D67C1E55D2D5407E0C92B2157A74 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 983CD0BB0F40B6ACB4F5C9A11C3186E1 /* BugsnagReactNative.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/BugsnagReactNative/BugsnagReactNative-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = BugsnagReactNative; - PRODUCT_NAME = BugsnagReactNative; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 0A5303CCE9C92B75A6D222F8EAE95096 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 29A522F564C45BAC1C908C4FA821DD3F /* Pods-ShareRocketChatRN.release.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 0A70500FA73800B079513CD658239F30 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1605B6FD583E67D1BEE24E6F9603B2C2 /* React-RCTActionSheet.debug.xcconfig */; + baseConfigurationReference = 3D3089FB9A74DB9C995A4671B1944823 /* OpenSSL-Universal.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; IPHONEOS_DEPLOYMENT_TARGET = 11.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; 0B42755D4DB1F814A30755F6846F9FFB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9B92B07A63CA3319D23692AA38449C1A /* ReactNativeART.release.xcconfig */; + baseConfigurationReference = 121B1E4C86111FD774FABC537B3F82D9 /* ReactNativeART.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -35386,9 +36330,33 @@ }; name = Release; }; - 0E1CC6383B99A97F7F97CFCA482CBCB3 /* Debug */ = { + 0B528B9C90F04CFB36BA4DC4EB2A49C4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DB81BE1173E2D71B6736D3F7935F1593 /* React-RCTSettings.debug.xcconfig */; + baseConfigurationReference = 41ED38A68DA467AB533D7CF924B6A63F /* Pods-defaults-ShareRocketChatRN.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-defaults-ShareRocketChatRN/Pods-defaults-ShareRocketChatRN.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 0B968FA00CC1DA576D4DAF254683D949 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 537D942E7F8CDD34D9798800DFD7B3E1 /* React-perflogger.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -35396,13 +36364,13 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-RCTSettings/React-RCTSettings-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/React-perflogger/React-perflogger-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTSettings; - PRODUCT_NAME = "React-RCTSettings"; + PRODUCT_MODULE_NAME = reactperflogger; + PRODUCT_NAME = "React-perflogger"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -35412,21 +36380,39 @@ }; name = Debug; }; - 1066EB86FF81B85CEA00C3071887F180 /* Debug */ = { + 0BA14761DA8A69162BF3989FB0094D75 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3CB957F7D5240280A57EEDFC6B03ADDF /* GoogleDataTransport.debug.xcconfig */; + baseConfigurationReference = 97E794BA33DA6947E9A38E96DC57959A /* UMImageLoaderInterface.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 11ECF29815B46C1489441995945FCB8B /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = CC72D21238CDBFB46D8CFCC77CCABD69 /* TOCropViewController.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/TOCropViewController/TOCropViewController-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = GoogleDataTransport; - PRODUCT_NAME = GoogleDataTransport; + PRODUCT_MODULE_NAME = TOCropViewController; + PRODUCT_NAME = TOCropViewController; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -35436,9 +36422,52 @@ }; name = Debug; }; + 1210FFEF8F686D43D45CF58066955852 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 33BC57FD8C3AF3FCF4BE94CC00476321 /* UMConstantsInterface.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 125D363900A81EC1CFE173B625BC9A2A /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D18A2940596CFCC7B0DD063E40A88D66 /* UMPermissionsInterface.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/UMPermissionsInterface/UMPermissionsInterface-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = UMPermissionsInterface; + PRODUCT_NAME = UMPermissionsInterface; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 135C691B9CBC76093532F63552917B4B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9E02BF9172C3F2F8D7FCDD59FEEEE3C4 /* react-native-orientation-locker.release.xcconfig */; + baseConfigurationReference = 0559FF4F31D9F39593DA553690AC4BBF /* react-native-orientation-locker.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -35462,9 +36491,9 @@ }; name = Release; }; - 15D449DAC4EF6D8BA50744FE034A8F39 /* Debug */ = { + 13AF8ADD9852CBD310EEB9B681023455 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F00899E66E34485DE0A2299A6085CADF /* React-jsinspector.debug.xcconfig */; + baseConfigurationReference = E46F50A7B06925F63C961B555F8D2501 /* Yoga.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -35472,13 +36501,40 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-jsinspector/React-jsinspector-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/Yoga/Yoga-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MODULEMAP_FILE = Headers/Public/yoga/Yoga.modulemap; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = yoga; + PRODUCT_NAME = Yoga; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 13DFCE7755ED25EAF6B9361684EF9492 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E9521D4F883C544DE47CDF5C2FDF5C87 /* libwebp.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/libwebp/libwebp-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = jsinspector; - PRODUCT_NAME = "React-jsinspector"; + PRODUCT_MODULE_NAME = libwebp; + PRODUCT_NAME = libwebp; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -35490,7 +36546,7 @@ }; 16AA0154D3837FC4C44F6909CAF079E4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 76F040F7FB81248FFFB036799F33A65C /* RNImageCropPicker.release.xcconfig */; + baseConfigurationReference = 33C451B5E70DB04A4D69D8018EFC491A /* RNImageCropPicker.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -35514,9 +36570,9 @@ }; name = Release; }; - 17BFBD44B41577B8B7CDE7BB699FE48A /* Release */ = { + 16C617D6AB3D7FB21E9B83A81E3E80BD /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3EBB8DE63D81A58A5C248488CF5C0F61 /* PromisesObjC.release.xcconfig */; + baseConfigurationReference = 6ABC70D8E3CD1011B90A77C789F11198 /* GoogleUtilities.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -35527,8 +36583,34 @@ OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = FBLPromises; - PRODUCT_NAME = PromisesObjC; + PRODUCT_MODULE_NAME = GoogleUtilities; + PRODUCT_NAME = GoogleUtilities; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 175A21B880B3914B871F41C5ADD7970A /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B9ADA132BEE432456C1FEB59C840BF3D /* React-jsinspector.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/React-jsinspector/React-jsinspector-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = jsinspector; + PRODUCT_NAME = "React-jsinspector"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -35539,9 +36621,9 @@ }; name = Release; }; - 185B9FC69D4F8657C2DBA8F9145A8727 /* Debug */ = { + 18455F94807839346D486C6F99F75DD5 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B5E74BA3CFD1C2D81B0AB6793956639D /* React-jsi.debug.xcconfig */; + baseConfigurationReference = C2716E1FCC4CC046E067D51DA07E0760 /* libevent.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -35549,13 +36631,13 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-jsi/React-jsi-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/libevent/libevent-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = jsi; - PRODUCT_NAME = "React-jsi"; + PRODUCT_MODULE_NAME = libevent; + PRODUCT_NAME = libevent; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -35565,25 +36647,9 @@ }; name = Debug; }; - 19F60F12AE9AD4FA4C507D12A93F9720 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 777C2BBE7EEA5B56B30C1A83D6FED868 /* hermes-engine.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; 1A2D2B8780D72D2E7930B048F99C7AEF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EC76FCFA4A08F84C5A18F32710F20B7A /* react-native-restart.debug.xcconfig */; + baseConfigurationReference = 8AA2A7AA72B24124B829115293D735E6 /* react-native-restart.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -35608,7 +36674,7 @@ }; 1A8AC6BD524C6BC798924603B66A8044 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 826924820A89CCD41EAFFDFF5C397862 /* UMFaceDetectorInterface.debug.xcconfig */; + baseConfigurationReference = 77807DD48D1773606AF513C2B92338F5 /* UMFaceDetectorInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -35622,62 +36688,9 @@ }; name = Debug; }; - 1AB12761B47A2AF6CB3E7AA3A69D1E21 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9C88E2F9B45323A6B5B3E908D52B8633 /* UMPermissionsInterface.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/UMPermissionsInterface/UMPermissionsInterface-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = UMPermissionsInterface; - PRODUCT_NAME = UMPermissionsInterface; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 1ABBEEBCDA39CD77983BF019CC9A4B52 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E3E671D3E3C942C616A47A8AE0504FF5 /* React-RCTVibration.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-RCTVibration/React-RCTVibration-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTVibration; - PRODUCT_NAME = "React-RCTVibration"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 1ABE1D128B3F0307F9D20E20083FABAA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7C08C6D39091B515F437109B741BC482 /* EXWebBrowser.release.xcconfig */; + baseConfigurationReference = 56C209F75E540ED4D8203CDE11F2E1B8 /* EXWebBrowser.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -35702,33 +36715,9 @@ }; name = Release; }; - 1AC857E63B0E250410829AE6FE65025A /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = EEA4CC9B97D8B1DF863F7448D02747DE /* Pods-ShareRocketChatRN.debug.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; 1CFE88A76538D02382248941B2C0067F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 56894362FD30EFFECBB287DD509BF51B /* UMAppLoader.debug.xcconfig */; + baseConfigurationReference = B3F477DAC2CCDDEF7E1FA593B313DA60 /* UMAppLoader.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -35777,24 +36766,35 @@ }; name = Debug; }; - 1DF7AE5883A8E3D93F95A144D56EFC98 /* Debug */ = { + 1F0B8F748E208E6325E7B6C2065E3587 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 17D005E8CCCDFF81E0DEBB9090DEFCDC /* FirebaseAnalytics.debug.xcconfig */; + baseConfigurationReference = FFA8920602E194F719FDBCD36097B350 /* TOCropViewController.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/TOCropViewController/TOCropViewController-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = TOCropViewController; + PRODUCT_NAME = TOCropViewController; + PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; 1F90A2C5A78F00D900E1DCA48FD307B6 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6407EBC83BE6A19967C53EE9F7B8FFE5 /* RNCMaskedView.release.xcconfig */; + baseConfigurationReference = 939D19E9FA261043EA8E6CF511D9E404 /* RNCMaskedView.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -35818,9 +36818,9 @@ }; name = Release; }; - 20691F7C79728D84564CFD5669BF4CFF /* Debug */ = { + 2149583740EF0935BD6424BC48DCF992 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C2716E1FCC4CC046E067D51DA07E0760 /* libevent.debug.xcconfig */; + baseConfigurationReference = 306E981283C96604480F569449C71241 /* React-Core.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -35828,25 +36828,27 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/libevent/libevent-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/React-Core/React-Core-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MODULEMAP_FILE = "Headers/Public/React/React-Core.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = libevent; - PRODUCT_NAME = libevent; + PRODUCT_MODULE_NAME = React; + PRODUCT_NAME = "React-Core"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; 22484930B6D46E07F261091E83A95EEE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4037513116F425CCFC4AB7FE140F8F63 /* rn-extensions-share.debug.xcconfig */; + baseConfigurationReference = BDE5F0AC59BC5BAB36BA4C7B8245D641 /* rn-extensions-share.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -35869,25 +36871,53 @@ }; name = Debug; }; - 23A85991C92C1EFB197B1CCBE584D30D /* Debug */ = { + 22A12E3F2FF9A7F5DCFACE3E8F47FEE1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AAC39A35C4F61ABBF1F785F94861DC58 /* UMConstantsInterface.debug.xcconfig */; + baseConfigurationReference = 306E981283C96604480F569449C71241 /* React-Core.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/React-Core"; + IBSC_MODULE = React; + INFOPLIST_FILE = "Target Support Files/React-Core/ResourceBundle-AccessibilityResources-React-Core-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + PRODUCT_NAME = AccessibilityResources; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + 22CE9B61A984752DBD351C8013B1564E /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0E24F4B867825B723C02E2C2EDF698D8 /* React-jsiexecutor.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/React-jsiexecutor/React-jsiexecutor-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = jsireact; + PRODUCT_NAME = "React-jsiexecutor"; + PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; 2496DFBAA294BB49D90637669DD67732 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4EFC0B2FFA3861FC2E19D0BE530CB5CD /* RNBootSplash.debug.xcconfig */; + baseConfigurationReference = 03E4DE6F65D0B3008B5D8D3E4A27F8A2 /* RNBootSplash.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -35910,34 +36940,9 @@ }; name = Debug; }; - 254304EEE07C5D62FE17FFEB234C50B0 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E9521D4F883C544DE47CDF5C2FDF5C87 /* libwebp.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/libwebp/libwebp-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = libwebp; - PRODUCT_NAME = libwebp; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; 257D2762CC305B1CA0E8BA95EF20434A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 561520D036043B1892AC6D71E7A79807 /* react-native-safe-area-context.debug.xcconfig */; + baseConfigurationReference = ABD3A2C3ABA0E1DFC3CA633DDDDE1135 /* react-native-safe-area-context.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -35960,9 +36965,50 @@ }; name = Debug; }; + 26EC306500273E3061D7F84644C1C135 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DF0CCC4ED5EA093604440EBDE947BC63 /* GoogleAppMeasurement.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 2841D76E9BA26627EB9DB4008398643A /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 5B4439507548AB0D9403B7C0702F9051 /* Flipper-Glog.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/Flipper-Glog/Flipper-Glog-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = glog; + PRODUCT_NAME = "Flipper-Glog"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 2A57F02F073C8EE682B34DE95CEFC2CE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 65B0799628CA4546DA0AA234AF4B0251 /* RNVectorIcons.release.xcconfig */; + baseConfigurationReference = 61A4BB49B9D906AC2985AD80CF88A646 /* RNVectorIcons.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -35988,7 +37034,7 @@ }; 2A7B9923A025C9FD5DA7D60F3BED10CF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B593F833F9150F17305B0586F57644BF /* UMReactNativeAdapter.debug.xcconfig */; + baseConfigurationReference = 3A01F89A0B9A22D8CBF6CF6A3DB222EB /* UMReactNativeAdapter.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -36014,7 +37060,7 @@ }; 2A814AD419EFEFB028BA5AA9087304A0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E8FD1047B03F68AD7CBB1D024F14919A /* react-native-cookies.release.xcconfig */; + baseConfigurationReference = 26808343AB28092E0DAB9877D31D6617 /* react-native-cookies.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -36038,34 +37084,9 @@ }; name = Release; }; - 2B053B1A86225A85CAA59858E2D44D7A /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F6C380CA7A33FA313D82D9CB909D3CE4 /* Flipper-DoubleConversion.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/Flipper-DoubleConversion/Flipper-DoubleConversion-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = DoubleConversion; - PRODUCT_NAME = "Flipper-DoubleConversion"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; 2B1D1CF3E19848CE2F0FFD9650031F5F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7B7B5399A4E1E6F214BD725F1FA4635A /* EXWebBrowser.debug.xcconfig */; + baseConfigurationReference = 33AC82FB3AC41D5507F9362E56EF96D8 /* EXWebBrowser.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -36089,26 +37110,35 @@ }; name = Debug; }; - 2B242392FD02139B3C9E2A887D893E9D /* Debug */ = { + 2B9B962C71F01503AEBDAEF94B6E1CCA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 03954AEE20828DFC2E03367E9C8E0D11 /* RNImageCropPicker.debug.xcconfig */; + baseConfigurationReference = B4E063DE07DC46F94A32EAAEA472888D /* Flipper-DoubleConversion.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/RNImageCropPicker"; - IBSC_MODULE = RNImageCropPicker; - INFOPLIST_FILE = "Target Support Files/RNImageCropPicker/ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist"; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/Flipper-DoubleConversion/Flipper-DoubleConversion-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = QBImagePicker; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = DoubleConversion; + PRODUCT_NAME = "Flipper-DoubleConversion"; + PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - 2C881801A1A702E94CD93DD2EA3F283C /* Debug */ = { + 2C00276F50FFFE033C38D47B9D9CA740 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E8973559ADDA453DCED6FA2EADBE53D1 /* RCTRequired.debug.xcconfig */; + baseConfigurationReference = 5EAE9196962CE4F1B28D093A73FEFB1D /* React-runtimeexecutor.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -36122,7 +37152,7 @@ }; name = Debug; }; - 2CB67AD6CE6E0F9F1DCB9D38477AD104 /* Release */ = { + 2C3A636D7C929015A1366062D3AD9285 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 65B29ADF9EF6733B27B00153E334C733 /* boost-for-react-native.release.xcconfig */; buildSettings = { @@ -36138,26 +37168,45 @@ }; name = Release; }; - 2EB9236200699761C9079A3682CDFB07 /* Release */ = { + 2D24641D233502019004F2446CBCCE87 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A6EB796E6E9E63CB8E30B650EF1BB98B /* Pods-NotificationService.release.xcconfig */; + baseConfigurationReference = 9E2713CA157638DEAFAC794B8097287C /* React-RCTLinking.release.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/React-RCTLinking/React-RCTLinking-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-NotificationService/Pods-NotificationService.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RCTLinking; + PRODUCT_NAME = "React-RCTLinking"; + PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 2E668FD82924ADD261A80560DC113419 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 4B8E3BCF06F973E8F0D678D9DD3178ED /* React.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; @@ -36165,7 +37214,7 @@ }; 2EE7477CED0EF45A9B85F8884BE22919 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 03954AEE20828DFC2E03367E9C8E0D11 /* RNImageCropPicker.debug.xcconfig */; + baseConfigurationReference = 6DF61E1E4E09C55C34D232E606DAEC35 /* RNImageCropPicker.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -36190,7 +37239,7 @@ }; 306B30B972532C61B933FD6D83DC5284 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 448CE5F64D3458C4CA76D1C124E5F59B /* RNConfigReader.debug.xcconfig */; + baseConfigurationReference = 96241B9F1CFBD84D1ACCFE24CA7634CF /* RNConfigReader.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -36213,6 +37262,30 @@ }; name = Debug; }; + 314A5528E4BC35B5101488754B05EEFE /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 20FC4995E75BF49DB27DB50D147EE508 /* PromisesObjC.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = FBLPromises; + PRODUCT_NAME = PromisesObjC; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 319D93C25C4B6C3E0AA156CBF7D7300E /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = ACFA40E85AC8F98E11C92BEEF692E7D1 /* Firebase.release.xcconfig */; @@ -36231,7 +37304,7 @@ }; 31E84E0F2370347830137DC5F187B48B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8DE2C6528E77DA83D88356DB38EE9956 /* RNScreens.release.xcconfig */; + baseConfigurationReference = 2F91A48D4257E40AAA818AB8B7100A38 /* RNScreens.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -36255,24 +37328,21 @@ }; name = Release; }; - 332A448B0BF2E58E6D2CD5D8340B6795 /* Release */ = { + 325BD6FEEEAA4ACD3040DCDC0C3439F4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3CAE08AD3C23F93D4E737EEDAF1FB756 /* React-Core.release.xcconfig */; + baseConfigurationReference = 8F5190191CC94B36436BAC17951E36FC /* FirebaseCore.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-Core/React-Core-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MODULEMAP_FILE = "Headers/Public/React/React-Core.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = React; - PRODUCT_NAME = "React-Core"; + PRODUCT_MODULE_NAME = FirebaseCore; + PRODUCT_NAME = FirebaseCore; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -36283,22 +37353,21 @@ }; name = Release; }; - 341C2A26F6B2BDEC0BBB70B5547B6197 /* Release */ = { + 32B401285E3EE2E6ADAA279C85A39679 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 03949BD4B944E1B14997B7B0B5D7F1F2 /* MMKVCore.release.xcconfig */; + baseConfigurationReference = 377BE4B8159107B85112FCCFD2D2BB97 /* FirebaseCoreDiagnostics.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/MMKVCore/MMKVCore-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = MMKVCore; - PRODUCT_NAME = MMKVCore; + PRODUCT_MODULE_NAME = FirebaseCoreDiagnostics; + PRODUCT_NAME = FirebaseCoreDiagnostics; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -36311,7 +37380,7 @@ }; 350E549B9D9AFA7C44AB9D907104BC96 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AED24E7E15A398FD2C86ADF7B3966EF0 /* RNFastImage.debug.xcconfig */; + baseConfigurationReference = EEDEF25F4BD51250B333F8487ADCABD1 /* RNFastImage.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -36336,7 +37405,7 @@ }; 351669C9D9B6E760A1FFDA38509E07C3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B3AC2B7D4446EC25EA93B3247821553F /* RNLocalize.debug.xcconfig */; + baseConfigurationReference = 44122EACFF785CC25F182DF7C765E7E3 /* RNLocalize.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -36361,7 +37430,7 @@ }; 35BB07AFAF2489D6E6B1371C8B6FC80C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B19642D11F390E64F58DB4EEA85AE42A /* EXAV.debug.xcconfig */; + baseConfigurationReference = 654A312852DD07D4EC6DC4D1DF016102 /* EXAV.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -36387,7 +37456,7 @@ }; 365354509D9C21A6A99C16F71A69B955 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 79080FFBD5863F916E0FBD16D55AA057 /* react-native-background-timer.debug.xcconfig */; + baseConfigurationReference = 18EBC9E9AA518CA89C3B0494781387BA /* react-native-background-timer.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -36410,36 +37479,35 @@ }; name = Debug; }; - 379191ACE3694440839C127B4AB5644B /* Release */ = { + 36CA3F6384B27F727E746AA6F3DD6AD4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 310FC110EFDE34CDB679F28F1FCA2920 /* libevent.release.xcconfig */; + baseConfigurationReference = F73BB6947B4750A2A5E5F61F29384ACE /* YogaKit.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/libevent/libevent-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/YogaKit/YogaKit-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MODULEMAP_FILE = Headers/Public/YogaKit/YogaKit.modulemap; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = libevent; - PRODUCT_NAME = libevent; + PRODUCT_MODULE_NAME = YogaKit; + PRODUCT_NAME = YogaKit; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; + SWIFT_VERSION = 4.1; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; + name = Debug; }; - 392B3AD702F1DA63C7EA918FE0D84D70 /* Release */ = { + 375A948405052A6DF1471DD213BAA08A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AD1D738F3D061DB73D092B289BF79AB4 /* UMImageLoaderInterface.release.xcconfig */; + baseConfigurationReference = EF66E1865FB77B1C24A04F48399DC43D /* UMConstantsInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -36454,9 +37522,60 @@ }; name = Release; }; + 375F9858DB0F30528DD94F5CBF9F7497 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 45DF22CFEC6C88AEF4D15C665F595E8A /* RNFBApp.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNFBApp/RNFBApp-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNFBApp; + PRODUCT_NAME = RNFBApp; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 3990BA4C89DB70F52463872B34A96808 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FB71298544C4A579C35EA82025B38F9A /* React-jsi.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/React-jsi/React-jsi-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = jsi; + PRODUCT_NAME = "React-jsi"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 39E658BFB6AA16170AC332C84B7A8FD2 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 048FA4761B71A91CE00A15DD2BEA0CC3 /* EXLocalAuthentication.debug.xcconfig */; + baseConfigurationReference = F9368D22615B059953CDCF32754A57A7 /* EXLocalAuthentication.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -36480,9 +37599,99 @@ }; name = Debug; }; + 3A61250C5602A1806CCCD75ADAE8B959 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 3CB957F7D5240280A57EEDFC6B03ADDF /* GoogleDataTransport.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = GoogleDataTransport; + PRODUCT_NAME = GoogleDataTransport; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 3AD222E5446E6F55AE824A5B32EADCF4 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DB35E3D5D47D77CD1915590828BCC4E7 /* Pods-defaults-NotificationService.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-defaults-NotificationService/Pods-defaults-NotificationService.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 3BACDA59E9DDF97C8F1577E699B106E9 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FFA8920602E194F719FDBCD36097B350 /* TOCropViewController.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/TOCropViewController"; + IBSC_MODULE = TOCropViewController; + INFOPLIST_FILE = "Target Support Files/TOCropViewController/ResourceBundle-TOCropViewControllerBundle-TOCropViewController-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + PRODUCT_NAME = TOCropViewControllerBundle; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + 3BC856B00297D2FD4A98F2CC3E19D240 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 96E43DC63C396465E31AA7FE8FC7A14B /* Pods-defaults-ShareRocketChatRN.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-defaults-ShareRocketChatRN/Pods-defaults-ShareRocketChatRN.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 3C6A7FD1AF51719FB9B42E949E74FD49 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 888C52782E96EDD715D39EDD4C53314A /* RNScreens.debug.xcconfig */; + baseConfigurationReference = A87434E572253A7172B76006412A08CB /* RNScreens.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -36507,7 +37716,7 @@ }; 3C6C400C2D5AE4C140D1CE46C3ED3F9C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DC517F752B3D8A0C90C674D080ED0265 /* UMTaskManagerInterface.debug.xcconfig */; + baseConfigurationReference = 9D49C2015EC82F52D2FDB558E03A1801 /* UMTaskManagerInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -36523,7 +37732,7 @@ }; 3C75C521C18106455172257F4A2396B8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0349D9B866669E6BF1FED7EF8EEEAD0A /* RNFBCrashlytics.debug.xcconfig */; + baseConfigurationReference = CB2403880F88F5DA093CE37CD971C654 /* RNFBCrashlytics.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -36546,50 +37755,9 @@ }; name = Debug; }; - 3CD4E24977617D51CB1174111DB96771 /* Debug */ = { + 3D7173F3CC4AE583BDF8CB8F7F11339C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A0140941DF8E775B9B3C0F9C781BCDBA /* React.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 3D2BE2A35ED4B5A030EAA61C512FBFD7 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 691DC86469A0E20B38DF416D365DD6B9 /* RNFBApp.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNFBApp/RNFBApp-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNFBApp; - PRODUCT_NAME = RNFBApp; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 3D7ADD36B0BF02992432DCB87196E3AB /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 370E9321A37DE0001F7FF090BDF39968 /* React-Core.debug.xcconfig */; + baseConfigurationReference = C06B1CFDE7B4DF08E03F2CC199843255 /* React-RCTText.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -36597,14 +37765,13 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-Core/React-Core-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/React-RCTText/React-RCTText-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MODULEMAP_FILE = "Headers/Public/React/React-Core.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = React; - PRODUCT_NAME = "React-Core"; + PRODUCT_MODULE_NAME = RCTText; + PRODUCT_NAME = "React-RCTText"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -36641,7 +37808,7 @@ }; 3EF4F733E0263A0A5C9664CDF8852B62 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6B18D9CCA3190DF28E422E2DB4F8F735 /* EXImageLoader.debug.xcconfig */; + baseConfigurationReference = E1483CD8DB8D1F9F325FC40E006F8437 /* EXImageLoader.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -36665,9 +37832,9 @@ }; name = Debug; }; - 408CD7268E939ACF1D643DBD5BCC7E2D /* Debug */ = { + 403D23E6C3B5A3AAA84846ADCFA5215C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C5C049906CCD97A7AFF4F522471EB6F7 /* React-runtimeexecutor.debug.xcconfig */; + baseConfigurationReference = 81AF47282A6DA97839BF24F1A5FA42E7 /* React-callinvoker.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -36678,12 +37845,13 @@ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; 4196DE35CAD463258426CDBC8A8080B4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 53E7E3570CB24F2714CA1C846EA0FFD7 /* react-native-jitsi-meet.debug.xcconfig */; + baseConfigurationReference = 534DB8EDC3186CDE3523F27EA5582D99 /* react-native-jitsi-meet.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -36706,7 +37874,266 @@ }; name = Debug; }; - 422BC3848A7A439E85B06B1F4E61A423 /* Release */ = { + 43006AD3CA2B3CDC0ED6122642692885 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 236AF881401FAE128FAAC3B0FA3F256F /* EXVideoThumbnails.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/EXVideoThumbnails/EXVideoThumbnails-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = EXVideoThumbnails; + PRODUCT_NAME = EXVideoThumbnails; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 447C4B03A82A53ECAB60F0C64D38D1EF /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 4AECC08C02DCA1B2C649AB26AAE1461E /* RCTTypeSafety.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RCTTypeSafety/RCTTypeSafety-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RCTTypeSafety; + PRODUCT_NAME = RCTTypeSafety; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 452A6A33E111B1718D3C3EA700068412 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 91E76A46D4AB33E0DEF355E7518F45FE /* RNCPicker.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNCPicker/RNCPicker-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNCPicker; + PRODUCT_NAME = RNCPicker; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 45E3D1FA7972F019B4F22F452AF2333C /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 088D72C0DB7BE89FA9B04E9896A589D5 /* React-RCTVibration.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/React-RCTVibration/React-RCTVibration-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RCTVibration; + PRODUCT_NAME = "React-RCTVibration"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 46B30C33BF229B795F1901873B64A1C5 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B7BBE31EBE16FD2D7953E7902D4D8227 /* react-native-notifications.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-notifications/react-native-notifications-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_notifications; + PRODUCT_NAME = "react-native-notifications"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 496CE5CB645BE6032E5C5D35E7868A96 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2D34C1E13A0B82E82411A8B80CF5E46E /* react-native-blur.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-blur/react-native-blur-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_blur; + PRODUCT_NAME = "react-native-blur"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 49AF3D2AC5032C0B463A1DAA676A6871 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 03949BD4B944E1B14997B7B0B5D7F1F2 /* MMKVCore.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/MMKVCore/MMKVCore-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = MMKVCore; + PRODUCT_NAME = MMKVCore; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 4A205BA346EFFD8B46CF5BDCA7AD0D00 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1AB2709DA658997009EE4C33507AAC44 /* FirebaseCrashlytics.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = FirebaseCrashlytics; + PRODUCT_NAME = FirebaseCrashlytics; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 4B80C0B6B88DC847BD605C9572BAB5DE /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1BD2D2A94E724B03DE3F8DF09C6C406D /* RNBootSplash.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNBootSplash/RNBootSplash-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNBootSplash; + PRODUCT_NAME = RNBootSplash; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 4BA7314297F52E6540B1DD6B034FA0B6 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 220F7A02C50FD642BCE587FFBF9649EF /* react-native-simple-crypto.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-simple-crypto/react-native-simple-crypto-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MODULEMAP_FILE = "Headers/Public/react_native_simple_crypto/react-native-simple-crypto.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_simple_crypto; + PRODUCT_NAME = "react-native-simple-crypto"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 4BAEBE893907B42B49B98DA02130D9EC /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = F61AC29A434D8AD3AA33C42765183FBD /* Flipper-RSocket.release.xcconfig */; buildSettings = { @@ -36733,282 +38160,9 @@ }; name = Release; }; - 425BC86BFC2BF0EEEB2F6A31E7D76DF2 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 20FC4995E75BF49DB27DB50D147EE508 /* PromisesObjC.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = FBLPromises; - PRODUCT_NAME = PromisesObjC; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 42F9B891FE38F3BD0BC48C045377A189 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F73BB6947B4750A2A5E5F61F29384ACE /* YogaKit.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/YogaKit/YogaKit-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MODULEMAP_FILE = Headers/Public/YogaKit/YogaKit.modulemap; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = YogaKit; - PRODUCT_NAME = YogaKit; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 4.1; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 43006AD3CA2B3CDC0ED6122642692885 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = D0AAC020FDC78E6B79317B21E523F9D4 /* EXVideoThumbnails.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/EXVideoThumbnails/EXVideoThumbnails-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = EXVideoThumbnails; - PRODUCT_NAME = EXVideoThumbnails; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 452A6A33E111B1718D3C3EA700068412 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7116D28EDA6E4AD76321FE8FB9D10C3E /* RNCPicker.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNCPicker/RNCPicker-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNCPicker; - PRODUCT_NAME = RNCPicker; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 46B30C33BF229B795F1901873B64A1C5 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 43EBCD8EE86F7C9E96A85F66ED497213 /* react-native-notifications.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-notifications/react-native-notifications-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_notifications; - PRODUCT_NAME = "react-native-notifications"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 46CC427C4FEA341334FFBDCA6F024BC1 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 130BE0521B5462BB0F762AE5857DABCB /* React.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 4743C74062E132C94D1D95C8917262B8 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = D2BC8C740454D8A8ADCB21F3446A7B1C /* FBLazyVector.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 477AD959898310A758815878DE24651F /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 3D3089FB9A74DB9C995A4671B1944823 /* OpenSSL-Universal.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 48C75453B552D5A35EFCDF12F3BD13C9 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C94085E6B6A7A13D6CD5F15E0F6AE388 /* React-RCTActionSheet.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 496CE5CB645BE6032E5C5D35E7868A96 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9251FF0392E0D4FF9E67FFB9636A0529 /* react-native-blur.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-blur/react-native-blur-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_blur; - PRODUCT_NAME = "react-native-blur"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 4B80C0B6B88DC847BD605C9572BAB5DE /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F75AEC7C349CCF5C83AE233BA364B853 /* RNBootSplash.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNBootSplash/RNBootSplash-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNBootSplash; - PRODUCT_NAME = RNBootSplash; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 4BA7314297F52E6540B1DD6B034FA0B6 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 5B2254B969B01665658D2FAC2D991BC8 /* react-native-simple-crypto.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-simple-crypto/react-native-simple-crypto-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MODULEMAP_FILE = "Headers/Public/react_native_simple_crypto/react-native-simple-crypto.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_simple_crypto; - PRODUCT_NAME = "react-native-simple-crypto"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 4CE310FACCB164E1FB338129A9078F9C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F9B9F8C09CB15EFED44B788E6C48F6F0 /* UMSensorsInterface.debug.xcconfig */; + baseConfigurationReference = 9F857244E538483C660C5D21E4A4E1C4 /* UMSensorsInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -37024,7 +38178,7 @@ }; 4D9FFA4CA17A3D542C4A55A820DD6B47 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DBFBB09224F974EEE440100A5E1DDAAF /* UMCameraInterface.debug.xcconfig */; + baseConfigurationReference = 5EDE4B6188274A04D1D48E9D069863FC /* UMCameraInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -37040,7 +38194,7 @@ }; 4DBCE360C534E754DD9273611AF0920E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9EA98E83D04A3AE21D0C2F7A639C494E /* RNConfigReader.release.xcconfig */; + baseConfigurationReference = 4A94AB5BC9695876728A55E9BC8E5E72 /* RNConfigReader.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -37064,9 +38218,35 @@ }; name = Release; }; + 4E226DA299DFF04F575B2D296E871211 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E38C1AE8DEA5B9BE757563C6DE252B33 /* React-RCTImage.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/React-RCTImage/React-RCTImage-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RCTImage; + PRODUCT_NAME = "React-RCTImage"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 4E54B3FAAE249652B3A60E4A21D8A3C6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D16286F2EFC59A263D366B2375D99AE9 /* RNFBAnalytics.debug.xcconfig */; + baseConfigurationReference = 6B51ED28BE9F80874D2FED1984B9BD21 /* RNFBAnalytics.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -37091,7 +38271,7 @@ }; 4FEF1549FF187DEBD3B75F0CD911E86F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 04571D1915BA48E87A7E88204BF4DE73 /* react-native-notifications.release.xcconfig */; + baseConfigurationReference = DECD7F61EE2634B152C7B32EF629DCEB /* react-native-notifications.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -37115,91 +38295,9 @@ }; name = Release; }; - 519EF5BC68511F959692E1C4898DA8B7 /* Release */ = { + 5063E44E6EAC2B0DE076A3046365F203 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 377BE4B8159107B85112FCCFD2D2BB97 /* FirebaseCoreDiagnostics.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = FirebaseCoreDiagnostics; - PRODUCT_NAME = FirebaseCoreDiagnostics; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 52999CAE7A1371B84A99EE118C020A30 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 3887FE44B2700E96BB40055055196F7A /* UMFileSystemInterface.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 5320565F05B3E012A7AF5864197E9D59 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 520842FBB570439D5E9C9C0F1D1828C5 /* OpenSSL-Universal.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 54DA5EA8201F8CE46653A2027CE70573 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 3C53D1447B47B5110DBB0C52B2EF28B3 /* react-native-mmkv-storage.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-mmkv-storage/react-native-mmkv-storage-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_mmkv_storage; - PRODUCT_NAME = "react-native-mmkv-storage"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 5689782315FAA93197E8CD2E31DFF8E5 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9769A729D5A7D6BA48AB95C69FF68B2D /* React-RCTSettings.release.xcconfig */; + baseConfigurationReference = 678C3CA52E8662BB138C894265599275 /* React-RCTSettings.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -37224,9 +38322,128 @@ }; name = Release; }; + 51CE9219F7798137B4490C849B67BBD3 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8615DB1436F8371A8275C4ACBDA47BFC /* React-RCTNetwork.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/React-RCTNetwork/React-RCTNetwork-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RCTNetwork; + PRODUCT_NAME = "React-RCTNetwork"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 54DA5EA8201F8CE46653A2027CE70573 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 82746B65ADB874980B643F7D6A9EACA4 /* react-native-mmkv-storage.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-mmkv-storage/react-native-mmkv-storage-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_mmkv_storage; + PRODUCT_NAME = "react-native-mmkv-storage"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 5525D3CCFD88208DDB4EE909DB568F46 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E0017F1443C3D35518E942C0337D1FDD /* UMFileSystemInterface.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 5553503DC436EDF232694A283C1C19E4 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 828CB40D123F17957991467978968C8E /* glog.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/glog/glog-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = glog; + PRODUCT_NAME = glog; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 577050D7FC9A99E17F5319793586264B /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 4DA79D93AE2E4975346F958D50E1974B /* ReactCommon.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/ReactCommon/ReactCommon-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = ReactCommon; + PRODUCT_NAME = ReactCommon; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 57B656256E59CE6A3B384FD16049A754 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BED30E21CA69BC6D89B34B95AD3C0F0D /* EXImageLoader.release.xcconfig */; + baseConfigurationReference = E311AF75C55D8D925493BFE2F1C09138 /* EXImageLoader.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -37251,9 +38468,9 @@ }; name = Release; }; - 57E162D68F47CEE13D3E3AE99BD60004 /* Debug */ = { + 59B3B11861976E122ACB260DD6540727 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FB09F2CC54808FC8464A3C01F66C2052 /* UMCore.debug.xcconfig */; + baseConfigurationReference = 00FB9E7D2F9A485D27C21E89AFFBDDDD /* Yoga.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -37261,13 +38478,14 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/UMCore/UMCore-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/Yoga/Yoga-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MODULEMAP_FILE = Headers/Public/yoga/Yoga.modulemap; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = UMCore; - PRODUCT_NAME = UMCore; + PRODUCT_MODULE_NAME = yoga; + PRODUCT_NAME = Yoga; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -37279,7 +38497,7 @@ }; 59C351BC0241061C2F886AA3809DC8E3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0D60570BC8C1B356697BE0F37FA05000 /* react-native-cookies.debug.xcconfig */; + baseConfigurationReference = 3D6A39C11AB41732F04B5DCBC4C192D1 /* react-native-cookies.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -37302,25 +38520,34 @@ }; name = Debug; }; - 5B0D1AC79BFF0BC4B889AD23877922D7 /* Debug */ = { + 5A7A8A32A1EF8BD95E4479B73491E7CA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3FC16B5822CD807AF238E1A6F803F523 /* UMFileSystemInterface.debug.xcconfig */; + baseConfigurationReference = 00484029BCBD0F9A6EB7995A57C3311B /* Pods-defaults-NotificationService.release.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-defaults-NotificationService/Pods-defaults-NotificationService.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; SDKROOT = iphoneos; + SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; 5B5773DDB035D2B5B24C7C4AC38E9D15 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 73316DB1DBC3402150E9CBDDF72A9B67 /* UMBarCodeScannerInterface.release.xcconfig */; + baseConfigurationReference = 7882F64290BD38F9E125BF84409F74A5 /* UMBarCodeScannerInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -37335,121 +38562,9 @@ }; name = Release; }; - 5CDFA69520A0458D81F28EF5DE4C3A38 /* Debug */ = { + 5BC025368D39779C584C5D371E177434 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CC72D21238CDBFB46D8CFCC77CCABD69 /* TOCropViewController.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/TOCropViewController"; - IBSC_MODULE = TOCropViewController; - INFOPLIST_FILE = "Target Support Files/TOCropViewController/ResourceBundle-TOCropViewControllerBundle-TOCropViewController-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = TOCropViewControllerBundle; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - 5D101847D80F37D494DC9496B775BE76 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 72A9DD5733C7107B4349211499AB6D36 /* RNFBApp.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNFBApp/RNFBApp-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNFBApp; - PRODUCT_NAME = RNFBApp; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 5E6E9C8CECA5BC306CEDB74B7C4709E6 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 60ABBF8A4B9F566D966A46A31D8C9A11 /* React-RCTBlob.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-RCTBlob/React-RCTBlob-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTBlob; - PRODUCT_NAME = "React-RCTBlob"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 5EF24A937CF7D1670BE63CDBC297BF3A /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = CC72D21238CDBFB46D8CFCC77CCABD69 /* TOCropViewController.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/TOCropViewController/TOCropViewController-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = TOCropViewController; - PRODUCT_NAME = TOCropViewController; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 614F098EF17B04B390E0AE995548BF53 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FFA8920602E194F719FDBCD36097B350 /* TOCropViewController.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/TOCropViewController"; - IBSC_MODULE = TOCropViewController; - INFOPLIST_FILE = "Target Support Files/TOCropViewController/ResourceBundle-TOCropViewControllerBundle-TOCropViewController-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = TOCropViewControllerBundle; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - 62A3B2A00F363F3FAB9C09D3D04A10E5 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = D484B3C4171FE47BACEDE24FE6B0B41C /* React-callinvoker.release.xcconfig */; + baseConfigurationReference = 6F202CC58071BB662983E064EB4D8F0C /* React-RCTActionSheet.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -37460,39 +38575,12 @@ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; + name = Debug; }; - 636209000CDECD6EA1E1C88AB74E15FD /* Release */ = { + 5C9DCA5986F165F85B9C73EEE9393D01 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B32DD95FEA09DF1C9AAFDCB797ACD40D /* Flipper-Glog.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/Flipper-Glog/Flipper-Glog-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = glog; - PRODUCT_NAME = "Flipper-Glog"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 644DC2E4C1A368279333A15C1E6D105B /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 3701A4329E51EDE753BB23D8D44B7BDF /* React-RCTLinking.debug.xcconfig */; + baseConfigurationReference = F5771F51BE8367D62CF31BCD2A4FEB67 /* UMPermissionsInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -37500,13 +38588,13 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-RCTLinking/React-RCTLinking-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/UMPermissionsInterface/UMPermissionsInterface-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTLinking; - PRODUCT_NAME = "React-RCTLinking"; + PRODUCT_MODULE_NAME = UMPermissionsInterface; + PRODUCT_NAME = UMPermissionsInterface; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -37516,9 +38604,9 @@ }; name = Debug; }; - 648419D39A6BF457AC6B5976C65BFD9A /* Debug */ = { + 5E123D63F0A8C1049F25CF752156D71E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 88397D67F1AC5325B9C5CDF7112BF6CF /* DoubleConversion.debug.xcconfig */; + baseConfigurationReference = 86D9281E1BAC373B598A7CD54FB33844 /* Flipper-RSocket.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -37526,13 +38614,187 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/DoubleConversion/DoubleConversion-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/Flipper-RSocket/Flipper-RSocket-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = DoubleConversion; - PRODUCT_NAME = DoubleConversion; + PRODUCT_MODULE_NAME = RSocket; + PRODUCT_NAME = "Flipper-RSocket"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 5FFD4C9ED9B3D24971238570771D92E8 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FD2A557AEB83B8CC073A1184AB31527D /* nanopb.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = nanopb; + PRODUCT_NAME = nanopb; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 600D94FEDDAEF18C363F863141AF9093 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B7D3AEE78A9732BA1D67DD3282B58E05 /* Flipper-Folly.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/Flipper-Folly/Flipper-Folly-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = folly; + PRODUCT_NAME = "Flipper-Folly"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 62DE9103869B552445834F7265CA147C /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E5164A0041888D02D9F6B0521C7C8880 /* FirebaseAnalytics.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 63505259D5787D1AA34EDD533C0C5268 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = ABD3AC8515A557FDAD3B1D32F8F37F03 /* SDWebImageWebPCoder.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/SDWebImageWebPCoder/SDWebImageWebPCoder-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = SDWebImageWebPCoder; + PRODUCT_NAME = SDWebImageWebPCoder; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 63C09986E14FD76FD0B7D874D589A0AC /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B180A30621C18D083C4C04ABBBD78726 /* libwebp.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/libwebp/libwebp-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = libwebp; + PRODUCT_NAME = libwebp; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 6456C7C94840F8F15C27F2F7FA4A7637 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C2D9F45693D8E29A6B33D948513BB8DE /* React-RCTVibration.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/React-RCTVibration/React-RCTVibration-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RCTVibration; + PRODUCT_NAME = "React-RCTVibration"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 651BF003D59600D10F4B0704DB49BAD6 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8F35897AB268E19269869EBC5812DBE8 /* React-RCTSettings.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/React-RCTSettings/React-RCTSettings-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RCTSettings; + PRODUCT_NAME = "React-RCTSettings"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -37544,7 +38806,7 @@ }; 6626E0DDF75356B939BB71211EC59DF0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 92C78AF2D2103A7BB04B8C6C45187F0D /* EXKeepAwake.release.xcconfig */; + baseConfigurationReference = 4F3DBDE414164598AA85AF34D969F89D /* EXKeepAwake.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -37569,21 +38831,23 @@ }; name = Release; }; - 688D2F42C8A5CA57024892706F5D9D2F /* Debug */ = { + 6732D46B735905B3485384DFDB30FC70 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 845095425A65B403ED01C9E0327CEB2B /* FirebaseCoreDiagnostics.debug.xcconfig */; + baseConfigurationReference = D2C5FC90D2479A209F796DDE8961A2CA /* nanopb.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = FirebaseCoreDiagnostics; - PRODUCT_NAME = FirebaseCoreDiagnostics; + PRODUCT_MODULE_NAME = nanopb; + PRODUCT_NAME = nanopb; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -37593,34 +38857,50 @@ }; name = Debug; }; - 69A8F13E898F64E85A024D0C15DFEF97 /* Debug */ = { + 683EDEDFC5B24B3B5830B0675D0B8396 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5B4439507548AB0D9403B7C0702F9051 /* Flipper-Glog.debug.xcconfig */; + baseConfigurationReference = D85BA8C9AB92AE4535FB92658398E81D /* React-callinvoker.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 6B4C52F1AFE0E00483D4A30B4A7E02CA /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C7CA2A8556A16B3C49FF1B41CC0AE811 /* GoogleDataTransportCCTSupport.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/Flipper-Glog/Flipper-Glog-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = glog; - PRODUCT_NAME = "Flipper-Glog"; + PRODUCT_MODULE_NAME = GoogleDataTransportCCTSupport; + PRODUCT_NAME = GoogleDataTransportCCTSupport; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; 6B94BA27ACC1EAC4AD317AA67E84A1EC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3793552237EB390BDA89EC07E886FD21 /* react-native-safe-area-context.release.xcconfig */; + baseConfigurationReference = 3C500AB3A394159D74E166DE57D0C06D /* react-native-safe-area-context.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -37644,9 +38924,36 @@ }; name = Release; }; + 6C1F05846AB751F13D5570C52CD141D0 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DE5A7C8C6EAD47E655B33CFF04F6CCFE /* RCTTypeSafety.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RCTTypeSafety/RCTTypeSafety-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RCTTypeSafety; + PRODUCT_NAME = RCTTypeSafety; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 6D4A190682DC23C0259B3828452D0D8C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 91703D44BBF8ADD79C29397A227C61E1 /* ReactNativeUiLib.debug.xcconfig */; + baseConfigurationReference = 859B9C5CC2B046D642D6E37D5EC38A39 /* ReactNativeUiLib.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -37669,36 +38976,9 @@ }; name = Debug; }; - 6FB74D57740C159D34B65D05CE1D784A /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BD0D868FB4241719B88CB96551A60F2C /* React-jsiexecutor.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-jsiexecutor/React-jsiexecutor-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = jsireact; - PRODUCT_NAME = "React-jsiexecutor"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 70D7C826A438DFF0D518F3538297D657 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 529381D173E147F70AEF56A658BB161C /* RNCPicker.debug.xcconfig */; + baseConfigurationReference = 3C74F4DCE22AD32551BC8F409F540F4C /* RNCPicker.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -37721,36 +39001,9 @@ }; name = Debug; }; - 70F73A77C7D33E6A052F24C3FF13E3FF /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 72549368E3605C8B77F4769CDBD2EBCF /* UMCore.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/UMCore/UMCore-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = UMCore; - PRODUCT_NAME = UMCore; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 711124276934A48C61CF80232B1C533A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2D92C9C68EB84BBA051D7858C34F4BF8 /* react-native-orientation-locker.debug.xcconfig */; + baseConfigurationReference = 7B2B988372B94744CFCB043C04181A2F /* react-native-orientation-locker.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -37773,39 +39026,23 @@ }; name = Debug; }; - 72D32D9E4CBC5E096697623EE1E4657A /* Debug */ = { + 723A078D181FB6BBF2D9B6165F2BF675 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 370E9321A37DE0001F7FF090BDF39968 /* React-Core.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/React-Core"; - IBSC_MODULE = React; - INFOPLIST_FILE = "Target Support Files/React-Core/ResourceBundle-AccessibilityResources-React-Core-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = AccessibilityResources; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - 7337C5713C0B1B4FE9F9038C034D3F48 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B4E063DE07DC46F94A32EAAEA472888D /* Flipper-DoubleConversion.release.xcconfig */; + baseConfigurationReference = 9F9C7917EDBBA65B57AA90AF42B42EFA /* React-RCTImage.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/Flipper-DoubleConversion/Flipper-DoubleConversion-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/React-RCTImage/React-RCTImage-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = DoubleConversion; - PRODUCT_NAME = "Flipper-DoubleConversion"; + PRODUCT_MODULE_NAME = RCTImage; + PRODUCT_NAME = "React-RCTImage"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -37816,26 +39053,26 @@ }; name = Release; }; - 74201EABF3468ACBE18ADF2D96E90186 /* Release */ = { + 7389F32D44E1DC420DC05471B3EC77C3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3CAE08AD3C23F93D4E737EEDAF1FB756 /* React-Core.release.xcconfig */; + baseConfigurationReference = 6DF61E1E4E09C55C34D232E606DAEC35 /* RNImageCropPicker.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/React-Core"; - IBSC_MODULE = React; - INFOPLIST_FILE = "Target Support Files/React-Core/ResourceBundle-AccessibilityResources-React-Core-Info.plist"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/RNImageCropPicker"; + IBSC_MODULE = RNImageCropPicker; + INFOPLIST_FILE = "Target Support Files/RNImageCropPicker/ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = AccessibilityResources; + PRODUCT_NAME = QBImagePicker; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; 742312CDFE8344A008648B6D790D7F39 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7DE885C78076134935C547C3A9DF5AAC /* rn-fetch-blob.debug.xcconfig */; + baseConfigurationReference = A6F768252ED54153A55922B20E00C66D /* rn-fetch-blob.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -37860,7 +39097,7 @@ }; 750A8AF251538FFC328C63B9042035F3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 584D1E9388E75686B93B35E2FC543999 /* UMFaceDetectorInterface.release.xcconfig */; + baseConfigurationReference = 15C06E8BC22CE33F1AC579FF3EED5F01 /* UMFaceDetectorInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -37877,7 +39114,7 @@ }; 75F07EC0626EBC846B90C595F7B0B7BC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4E7F062D6F09F3B620A15E7F2C5BD06B /* EXLocalAuthentication.release.xcconfig */; + baseConfigurationReference = 3244965E9202F6697911B38410249411 /* EXLocalAuthentication.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -37904,7 +39141,7 @@ }; 7692F34AE1B1B8DEE6436089896B7197 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46B5C746991BB21AB345F113FDD64D59 /* EXKeepAwake.debug.xcconfig */; + baseConfigurationReference = E3A23A2CAFD9B49866258805E564EE65 /* EXKeepAwake.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -37930,7 +39167,7 @@ }; 76E69552E7BCE37484B6C94193FF4D25 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3CA1BCB8D88569EA2B15FA77381E8A25 /* RNGestureHandler.debug.xcconfig */; + baseConfigurationReference = C8D74669E35EE408A4DE3CEE1FEF52A8 /* RNGestureHandler.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -37953,36 +39190,9 @@ }; name = Debug; }; - 771A73041DC3584CCB5A200AA908E87A /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7D60683732997EED066EC0AB0345CC3F /* React-RCTImage.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-RCTImage/React-RCTImage-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTImage; - PRODUCT_NAME = "React-RCTImage"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 7A6B8476ADDFBEC9909DAA54AA271CA4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 459C9A09C637182BA7152B33A7E9DC5B /* UMBarCodeScannerInterface.debug.xcconfig */; + baseConfigurationReference = 9CF7B065AE2F454C92B112DA7734C782 /* UMBarCodeScannerInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -37998,7 +39208,7 @@ }; 7A6EB9C6CE44347C72D09313D7332837 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AD2F63C80AA09A93F724FC566068DE6C /* react-native-mmkv-storage.release.xcconfig */; + baseConfigurationReference = 0696B943EDC4A311B847984997C71865 /* react-native-mmkv-storage.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -38022,21 +39232,23 @@ }; name = Release; }; - 7BB9A94F351F281E52BDA35772923DE8 /* Debug */ = { + 7AC7CA0A67AEAB84A111686F06F4EAAA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6ABC70D8E3CD1011B90A77C789F11198 /* GoogleUtilities.debug.xcconfig */; + baseConfigurationReference = B5FC7F17ABCDE32FBB838064E95987E3 /* React-jsiexecutor.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/React-jsiexecutor/React-jsiexecutor-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = GoogleUtilities; - PRODUCT_NAME = GoogleUtilities; + PRODUCT_MODULE_NAME = jsireact; + PRODUCT_NAME = "React-jsiexecutor"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -38046,23 +39258,37 @@ }; name = Debug; }; - 7CC1BCEFDC4392BA37F4E9258866C916 /* Debug */ = { + 7B158DC20588C3FD47C4DD81B5F3AFFB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 828CB40D123F17957991467978968C8E /* glog.debug.xcconfig */; + baseConfigurationReference = 777C2BBE7EEA5B56B30C1A83D6FED868 /* hermes-engine.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 7C2FEDE138DB34C96794A6D64D82A56E /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 3E6E94B693FE00876871B854A67A2A1C /* FirebaseCrashlytics.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/glog/glog-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = glog; - PRODUCT_NAME = glog; + PRODUCT_MODULE_NAME = FirebaseCrashlytics; + PRODUCT_NAME = FirebaseCrashlytics; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -38072,36 +39298,9 @@ }; name = Debug; }; - 7D1D489A59A131221A2DFBD1AE639FDF /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BE506F4325CA171F9BC83739E72F4075 /* DoubleConversion.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/DoubleConversion/DoubleConversion-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = DoubleConversion; - PRODUCT_NAME = DoubleConversion; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 7DC9963EDA5319FB6AC6DF6367BB86F6 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 07AC36C3C3B745E9BBD8E0A5E31A379C /* RNFBAnalytics.release.xcconfig */; + baseConfigurationReference = 01277E6EA0D313D5068182BBB84B9E98 /* RNFBAnalytics.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -38127,7 +39326,7 @@ }; 7F7559A0F1335AE0B112CE8919D23F2B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8DA4BFF194EB97853DBDCD87D0D9573F /* react-native-simple-crypto.debug.xcconfig */; + baseConfigurationReference = A193D813D8C5A0B8CF41715AD34A8F01 /* react-native-simple-crypto.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -38153,7 +39352,7 @@ }; 802C8D0063BA11FCC41073939417E89C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A3EF24ACC5671A90547261D983A69777 /* UMFontInterface.debug.xcconfig */; + baseConfigurationReference = 6889C8BC615C521EE2FB3D13B4AAA3A0 /* UMFontInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -38167,21 +39366,49 @@ }; name = Debug; }; - 819E43C10C89439301014A094FC44E00 /* Release */ = { + 80CD4D97BC50977AAD69D493D8B41FEA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E34AB18BAA4A47BB7C41BBCFCB2261F2 /* GoogleUtilities.release.xcconfig */; + baseConfigurationReference = 1013FA3489B2E599784CC6B11BEB6AD8 /* YogaKit.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/YogaKit/YogaKit-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MODULEMAP_FILE = Headers/Public/YogaKit/YogaKit.modulemap; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = YogaKit; + PRODUCT_NAME = YogaKit; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 4.1; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 81612E878CEC159EB76D047BBDE71C36 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 27A5A3B49B8896316CAA20EDB06008AE /* SDWebImage.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/SDWebImage/SDWebImage-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = GoogleUtilities; - PRODUCT_NAME = GoogleUtilities; + PRODUCT_MODULE_NAME = SDWebImage; + PRODUCT_NAME = SDWebImage; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -38194,7 +39421,7 @@ }; 82F1C59AB9A34F0B34BAF294C7245226 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 05B71D0B3B63ED61565A82C802E2D594 /* React-CoreModules.release.xcconfig */; + baseConfigurationReference = 0434113888E997B21B28150CC3620C44 /* React-CoreModules.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -38219,9 +39446,34 @@ }; name = Release; }; + 844A0734DAAEE23B7C9AABDF7199D719 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F37CF827ECF3CB523CFB5303EAEAC16A /* FirebaseInstallations.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = FirebaseInstallations; + PRODUCT_NAME = FirebaseInstallations; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 856F5D1DE9373D7F014D1325CDB5986A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3781095AE9AEBCB5543EED223C80F128 /* RNDateTimePicker.debug.xcconfig */; + baseConfigurationReference = 1076C197124588FD6485535FFF0916BD /* RNDateTimePicker.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -38245,9 +39497,36 @@ }; name = Debug; }; + 8626ADC413624368969F69B8D46737B5 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 00D4C04F9C078B723204D9E3500F2881 /* React-RCTNetwork.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/React-RCTNetwork/React-RCTNetwork-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RCTNetwork; + PRODUCT_NAME = "React-RCTNetwork"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 86D704FC4DBC00A97F725EBD0F56BF90 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A59D9474242C3F2ABC121ED2DE64E161 /* EXFileSystem.release.xcconfig */; + baseConfigurationReference = 89E93430F71A71DBFADC0D1285DF7A14 /* EXFileSystem.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -38274,7 +39553,7 @@ }; 87C4B8BC048F40119CF450A38B64C9EC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6FDED32CB264782EC40E218658D69CC3 /* UMAppLoader.release.xcconfig */; + baseConfigurationReference = AE81EB40D8855381204EDA2A1E90003E /* UMAppLoader.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -38299,34 +39578,9 @@ }; name = Release; }; - 8863874999E73829A872439D667C439B /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 03376185B2F0AEF87CE3705E3A6407C2 /* GoogleDataTransport.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = GoogleDataTransport; - PRODUCT_NAME = GoogleDataTransport; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 88B180B6FDB37C9A632CA95AA80DF593 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0DFC5C3D54351AF2BC93C38A54D556AC /* RNCAsyncStorage.debug.xcconfig */; + baseConfigurationReference = BAB84396E1439CFE9B9D46D2E892FB4F /* RNCAsyncStorage.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -38349,22 +39603,47 @@ }; name = Debug; }; - 894D5F872AF99F9D5916AEF9B3A188CD /* Debug */ = { + 8979F518F31EE6B9AA3C5B6BD3A7C7DB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 713226B89EB5E0214720191C9C8FF78C /* SDWebImage.debug.xcconfig */; + baseConfigurationReference = 7168429E95F77F02B8E48355B4F86802 /* RCT-Folly.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/SDWebImage/SDWebImage-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/RCT-Folly/RCT-Folly-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = SDWebImage; - PRODUCT_NAME = SDWebImage; + PRODUCT_MODULE_NAME = folly; + PRODUCT_NAME = "RCT-Folly"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 89BDA7237595C197C7B5FE79F3C37755 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 711A800CF56C88C5CA3487D9A12B0336 /* MMKVCore.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/MMKVCore/MMKVCore-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = MMKVCore; + PRODUCT_NAME = MMKVCore; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -38376,7 +39655,7 @@ }; 89EF4439BDF39C665C924AC65ECB8271 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5CEEA2881319348B74379E95580994B0 /* EXVideoThumbnails.debug.xcconfig */; + baseConfigurationReference = 1407654FC107F76BB7A3E5B2DD9081B5 /* EXVideoThumbnails.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -38426,18 +39705,133 @@ }; name = Release; }; - 8E99FEF35293BB12C859F46C546F87CF /* Release */ = { + 8C029D4C10A8BFBC3C31D56237F7A017 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D1214846299FF4548EC7F5C4E9AB3EE8 /* UMConstantsInterface.release.xcconfig */; + baseConfigurationReference = AAAD5A87BBE65DD6BFF0976C7031A52C /* BugsnagReactNative.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/BugsnagReactNative/BugsnagReactNative-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = Bugsnag; + PRODUCT_NAME = BugsnagReactNative; + PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 8C041440129A4F3B898C794341EE4653 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2DC979E4C53D61D48A37D92D822E0464 /* ReactCommon.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/ReactCommon/ReactCommon-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = ReactCommon; + PRODUCT_NAME = ReactCommon; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 8DBA8377BB5292064B97CFEB108E4F44 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = BE506F4325CA171F9BC83739E72F4075 /* DoubleConversion.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/DoubleConversion/DoubleConversion-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = DoubleConversion; + PRODUCT_NAME = DoubleConversion; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 8DCB063F34ECFDADD030CDFE33C61A50 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 03376185B2F0AEF87CE3705E3A6407C2 /* GoogleDataTransport.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = GoogleDataTransport; + PRODUCT_NAME = GoogleDataTransport; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 8EF5F1521A207A635C0BCCDEB7F9789B /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 85EC70A6AA577F3618C422F6509F6B57 /* FBReactNativeSpec.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/FBReactNativeSpec/FBReactNativeSpec-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = FBReactNativeSpec; + PRODUCT_NAME = FBReactNativeSpec; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; @@ -38445,7 +39839,7 @@ }; 8F10C49606FA594BECAB5250F35485D9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1E0D47826A73E69B50EE035AE0AD8D26 /* EXAppleAuthentication.release.xcconfig */; + baseConfigurationReference = 5FAA21C6C0C9980EEE59850DC56F4710 /* EXAppleAuthentication.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -38535,7 +39929,7 @@ }; 909DDA39D5B83E93426D408B37888AB8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 44BE1F1FD344C4C6C964AED218C6E055 /* RNDeviceInfo.debug.xcconfig */; + baseConfigurationReference = 7752D2A9B047C5C829174949116FD9D8 /* RNDeviceInfo.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -38573,24 +39967,26 @@ }; name = Debug; }; - 92473A0D4B75ABAE0FB342F29D99497C /* Debug */ = { + 917FA8A337F7AE5AA7F2C7E72B5EC3B7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EB11D8980233FB28B3EB591690D4B933 /* boost-for-react-native.debug.xcconfig */; + baseConfigurationReference = D6CA99BC0704966CBE320E4264148590 /* UMFileSystemInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; IPHONEOS_DEPLOYMENT_TARGET = 11.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; 9252CB0A71F0690FB20E718A1C797988 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 407416942DB174729AF480B0485E62CC /* ReactNativeUiLib.release.xcconfig */; + baseConfigurationReference = 8AA93F829781BB82572A2B7D14A93599 /* ReactNativeUiLib.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -38614,36 +40010,24 @@ }; name = Release; }; - 9328987D9B176F36294944DE2B348A96 /* Release */ = { + 93377661CC8494FAB502425E432145E3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0D5DE226EBA71BDE93577F69BD3209A3 /* React-RCTText.release.xcconfig */; + baseConfigurationReference = F8CD14050C72D23D91D42E504CB876EF /* GoogleAppMeasurement.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-RCTText/React-RCTText-prefix.pch"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTText; - PRODUCT_NAME = "React-RCTText"; - PUBLIC_HEADERS_FOLDER_PATH = ""; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; + name = Debug; }; 9376D68D65FD8921FB576F9CADCF7468 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C7829CE358722270F5AF0F77A6F2DBCC /* EXHaptics.debug.xcconfig */; + baseConfigurationReference = 5358A11D087A13F0F9BAADB9C6044558 /* EXHaptics.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -38669,7 +40053,7 @@ }; 938A0DBE22AFAC483AB84CD8F08F625B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A9551C6D40C0505505A9E0FB78DC88F1 /* react-native-cameraroll.release.xcconfig */; + baseConfigurationReference = 67FC132B2BFBA61E75482AE535AD2BCB /* react-native-cameraroll.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -38693,42 +40077,9 @@ }; name = Release; }; - 93F7070654F4958CF7389089E83DD2B8 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = DF0CCC4ED5EA093604440EBDE947BC63 /* GoogleAppMeasurement.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 95F25011EAD3FE9FA9E85C4ABFB176C5 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 76F040F7FB81248FFFB036799F33A65C /* RNImageCropPicker.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/RNImageCropPicker"; - IBSC_MODULE = RNImageCropPicker; - INFOPLIST_FILE = "Target Support Files/RNImageCropPicker/ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = QBImagePicker; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; 9610165DCE768DA3F3DCE06E6E32848D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 33CE3A123A50C02157F9260308A228EE /* Pods-defaults-RocketChatRN.debug.xcconfig */; + baseConfigurationReference = EDB333FCF70BA300550BD5E01174F9BC /* Pods-defaults-RocketChatRN.debug.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; APPLICATION_EXTENSION_API_ONLY = NO; @@ -38750,6 +40101,58 @@ }; name = Debug; }; + 969FBF0DF939F0D1B061AFF26BA7FDBA /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 443779677599696911099703F1E27B42 /* React-cxxreact.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/React-cxxreact/React-cxxreact-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = cxxreact; + PRODUCT_NAME = "React-cxxreact"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 96BFC21273E9354276B3DF8DF3CD7C17 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F68BDB89D6BB3EDD1ADD7F9F18B1F9C2 /* UMCore.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/UMCore/UMCore-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = UMCore; + PRODUCT_NAME = UMCore; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 97271A9574DE16AB94DBCA340E986D90 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 602BD77857A04584FC205689CE88517E /* FlipperKit.debug.xcconfig */; @@ -38779,7 +40182,7 @@ }; 9753F5A33937A57B9E83B97216F845B9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1ED578F6EF47354C7C22C4999FEAA42E /* EXConstants.debug.xcconfig */; + baseConfigurationReference = 62D27314EB70A5DB01D620B3C7B5AE22 /* EXConstants.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -38803,23 +40206,22 @@ }; name = Debug; }; - 9999BACF4537C0712363343D3E4CDF92 /* Debug */ = { + 9A8C6476434986F0FF606E2E91804CCD /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B4408FD92C5D3CB1DC878DEA92A18057 /* React-RCTBlob.debug.xcconfig */; + baseConfigurationReference = DFD4B2798F450F184E7C446D967B164E /* SDWebImageWebPCoder.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-RCTBlob/React-RCTBlob-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/SDWebImageWebPCoder/SDWebImageWebPCoder-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTBlob; - PRODUCT_NAME = "React-RCTBlob"; + PRODUCT_MODULE_NAME = SDWebImageWebPCoder; + PRODUCT_NAME = SDWebImageWebPCoder; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -38831,7 +40233,7 @@ }; 9B5BF48577E71ABD8A1652767C41E3B4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 98F6399D54E8D67F9EF4BBCA4F4112BB /* EXPermissions.release.xcconfig */; + baseConfigurationReference = EB549B703A202BC1F8F18BA6CA72C26B /* EXPermissions.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -38858,7 +40260,7 @@ }; 9D23DAFB91B66D16068F000F5EBC72DF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CE5D9BDFD0262F6E868A3D07FAE897D9 /* react-native-document-picker.debug.xcconfig */; + baseConfigurationReference = E6BB15D5AAC1A14C30DCEFA63C6121DC /* react-native-document-picker.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -38884,7 +40286,7 @@ }; 9D3B5E8C5C36D3D34B6E77F7F8655A55 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 33AC6CD2B0CB268E08F66AFC7741163D /* react-native-background-timer.release.xcconfig */; + baseConfigurationReference = 8563B2FC4FB842CB858FC49BF425377E /* react-native-background-timer.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -38910,7 +40312,7 @@ }; 9D421D4D6B43C832B960A98DCDC512EB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 316347958B816CA26656E7CA31F4EE08 /* RNRootView.debug.xcconfig */; + baseConfigurationReference = 7F391CE3D6B0FE9ACF4401557839803D /* RNRootView.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -38933,30 +40335,6 @@ }; name = Debug; }; - 9DA50DB1AE69EF3B1C60E162E73094CD /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0A467EA9EDF19944AF6E37B46B9583FC /* FirebaseInstallations.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = FirebaseInstallations; - PRODUCT_NAME = FirebaseInstallations; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; 9F51FD9B08CB405EBED8FAAC9B5B95AE /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = B156798CE872930251DCFF8958AA59D3 /* FlipperKit.release.xcconfig */; @@ -38985,137 +40363,9 @@ }; name = Release; }; - A0001840266E08E41BAAC80560A90014 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9F39D8CBB1DEC2AE31AB7508F1DB8CAF /* React-cxxreact.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-cxxreact/React-cxxreact-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = cxxreact; - PRODUCT_NAME = "React-cxxreact"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - A0649FB69846730B34B81A81DFEDD9BD /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 27A5A3B49B8896316CAA20EDB06008AE /* SDWebImage.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/SDWebImage/SDWebImage-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = SDWebImage; - PRODUCT_NAME = SDWebImage; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - A0B867653A8761B899636DFA1788CD24 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 6190629C5E04AF8D24FDEF0CE9F3E25A /* React-RCTNetwork.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-RCTNetwork/React-RCTNetwork-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTNetwork; - PRODUCT_NAME = "React-RCTNetwork"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - A0DCD61D5C02F77418C8DC69642F4F0B /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F37CF827ECF3CB523CFB5303EAEAC16A /* FirebaseInstallations.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = FirebaseInstallations; - PRODUCT_NAME = FirebaseInstallations; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - A16C61411B625A978C81E976EA2E2141 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = DBC3D997AF120FFB33BFD96167D936A0 /* FirebaseCore.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = FirebaseCore; - PRODUCT_NAME = FirebaseCore; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; A1D1AFE9631A6B0C42C1F69C0F05BDA7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0C404EDA3875132C8D70CCF5BD2B3946 /* Pods-defaults-RocketChatRN.release.xcconfig */; + baseConfigurationReference = 4BFEB680FE6D71C038B32F3068431F9B /* Pods-defaults-RocketChatRN.release.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; APPLICATION_EXTENSION_API_ONLY = NO; @@ -39138,22 +40388,23 @@ }; name = Release; }; - A351B1288625D0687ED1CBE9C6A7D989 /* Release */ = { + A270FD9F164FE1DF4DE8F4BB7518F4A0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FFCE347A1CEBBD0FA95EFF4E15B38328 /* RCT-Folly.release.xcconfig */; + baseConfigurationReference = 310FC110EFDE34CDB679F28F1FCA2920 /* libevent.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RCT-Folly/RCT-Folly-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/libevent/libevent-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = folly; - PRODUCT_NAME = "RCT-Folly"; + PRODUCT_MODULE_NAME = libevent; + PRODUCT_NAME = libevent; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -39166,7 +40417,7 @@ }; A3954D608A3250B31D27ACB3F81D6EA3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = ED700072584D4DDE449046BA87A0290B /* EXAV.release.xcconfig */; + baseConfigurationReference = E201E516C29C03E985F33F4B984DC851 /* EXAV.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39191,9 +40442,9 @@ }; name = Release; }; - A39EC9EC3F36F702276EF2B9E5FB41E7 /* Debug */ = { + A45B4046181753CDE32D7653F8266908 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D2C5FC90D2479A209F796DDE8961A2CA /* nanopb.debug.xcconfig */; + baseConfigurationReference = 83FC195C5C31491E3BCB9BAD956650FE /* React-RCTText.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39201,39 +40452,13 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/React-RCTText/React-RCTText-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = nanopb; - PRODUCT_NAME = nanopb; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - A6B0E627E4163303CAC13D723B17E20E /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C895DF4AFB14DB637758149F9B3E8709 /* React-RCTLinking.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-RCTLinking/React-RCTLinking-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTLinking; - PRODUCT_NAME = "React-RCTLinking"; + PRODUCT_MODULE_NAME = RCTText; + PRODUCT_NAME = "React-RCTText"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -39244,9 +40469,9 @@ }; name = Release; }; - A6EA7422ECA604BAA8D518A742B560CC /* Debug */ = { + A4FA84CB0B49DCBE32F45CD28F313F2C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4D4FDAB00C0EA2B8970D7994FFFA8279 /* React-jsiexecutor.debug.xcconfig */; + baseConfigurationReference = 03902662E196BE0FB6D7C3BBAD0738EA /* React-RCTAnimation.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39254,13 +40479,13 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-jsiexecutor/React-jsiexecutor-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/React-RCTAnimation/React-RCTAnimation-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = jsireact; - PRODUCT_NAME = "React-jsiexecutor"; + PRODUCT_MODULE_NAME = RCTAnimation; + PRODUCT_NAME = "React-RCTAnimation"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -39272,7 +40497,7 @@ }; A828AE6C2020D397E9898AB29D8A6318 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BBDC96F1040C276F298801BF4C8B68DF /* UMReactNativeAdapter.release.xcconfig */; + baseConfigurationReference = 9591C5298AF54D3E53DC9613C0E2ED57 /* UMReactNativeAdapter.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39299,7 +40524,7 @@ }; A88863909A597EDDC64341B93F5A7A2A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3506CCA22F9C280673DF4C145292274D /* rn-extensions-share.release.xcconfig */; + baseConfigurationReference = 8909D94BC2491628F567748899BADD31 /* rn-extensions-share.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39325,7 +40550,7 @@ }; A8FD13E434E0A9CA98385E274F1D58C4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3538A94DC5B3E4A351A04D08B566C024 /* RNFastImage.release.xcconfig */; + baseConfigurationReference = D209C4FA27308DF998A5A82B02E763F2 /* RNFastImage.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39351,7 +40576,7 @@ }; A967EF33D2C9B4DB921FFF1ED930E0BB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6615A2E2272EE55298643FBBEFD8EE16 /* EXPermissions.debug.xcconfig */; + baseConfigurationReference = 120C448D23A1D2880C0A29639A4D28E3 /* EXPermissions.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39377,7 +40602,7 @@ }; A9704006361D9EF34EE5A3BEAF8BF978 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0DF223CBFA90F7B8693B5CC356031354 /* react-native-slider.release.xcconfig */; + baseConfigurationReference = 0E9D744742CD8F87F0ACEF7E6DC60ADD /* react-native-slider.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39401,9 +40626,24 @@ }; name = Release; }; - A99A07EEC16EB05310ED2A2C489312A4 /* Release */ = { + A9E031BC3F0341CD11C586ED9CADBBD0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4C0EDD80F2CEB0782312B00BF333D671 /* ReactCommon.release.xcconfig */; + baseConfigurationReference = 17D005E8CCCDFF81E0DEBB9090DEFCDC /* FirebaseAnalytics.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + AAA620D360F15E19D529F307CCEF65AF /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = EA80C6CC551744CB4EE5BF2A056CF5B1 /* glog.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39411,13 +40651,13 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/ReactCommon/ReactCommon-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/glog/glog-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = ReactCommon; - PRODUCT_NAME = ReactCommon; + PRODUCT_MODULE_NAME = glog; + PRODUCT_NAME = glog; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -39430,7 +40670,7 @@ }; AB9EE40241F157288F27CFDB2512CBAA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 825CA8E7DDDF856470916C132E617B5F /* react-native-webview.debug.xcconfig */; + baseConfigurationReference = CD8B8724B348C3772D9565D61F8A3846 /* react-native-webview.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39455,7 +40695,7 @@ }; ABB27A12F638A2BAA41A61BD20FC686B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0B14E29BC571D6BC0A7F519621032085 /* RNRootView.release.xcconfig */; + baseConfigurationReference = 52051000F9BC6625B82A6F74204791A8 /* RNRootView.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39479,9 +40719,36 @@ }; name = Release; }; + ABDC481EA6A1DEF125B909DB40586F0C /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 92A5874C878DFADCA0810C116E060219 /* Flipper-Folly.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/Flipper-Folly/Flipper-Folly-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = folly; + PRODUCT_NAME = "Flipper-Folly"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; AC86A93E55F489027EEB6DFC5C762A4A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 12FE9D43DD733439B93B4E2D0EA81FFD /* rn-fetch-blob.release.xcconfig */; + baseConfigurationReference = 0CA6A8600BC7313FDE798B2FEB55E2D6 /* rn-fetch-blob.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39505,35 +40772,9 @@ }; name = Release; }; - AD4CB8AC0BA45F10D4981BF2B82F9B89 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = ABD3AC8515A557FDAD3B1D32F8F37F03 /* SDWebImageWebPCoder.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/SDWebImageWebPCoder/SDWebImageWebPCoder-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = SDWebImageWebPCoder; - PRODUCT_NAME = SDWebImageWebPCoder; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; ADF94A0015284D9A700FEEF33A5F0E49 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 785A3246CFACBDE37FE258ADD1B952B5 /* RNCAsyncStorage.release.xcconfig */; + baseConfigurationReference = 4A764BEE14BC35267D9FD25C78F6BB89 /* RNCAsyncStorage.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39557,62 +40798,9 @@ }; name = Release; }; - AEA49F3889489A8D3C9BAC26A747DED5 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 5B74D2662B077094DB23560B2624AC8D /* React-perflogger.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-perflogger/React-perflogger-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = reactperflogger; - PRODUCT_NAME = "React-perflogger"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - AF3B986571D7FCA62E7BD8B31B4FD7C3 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 517009B16A91BB6A60658D78B01D767B /* React-RCTNetwork.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-RCTNetwork/React-RCTNetwork-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTNetwork; - PRODUCT_NAME = "React-RCTNetwork"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; AFFC4B8B500F3F30AA01625986696B5A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7B316F9C57B13936AED3BB69B300691B /* UMCameraInterface.release.xcconfig */; + baseConfigurationReference = 7E91599FA3BC0029A923484575892EE9 /* UMCameraInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39627,61 +40815,9 @@ }; name = Release; }; - B100361A5EB0885778CF030EBD9CCB22 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C7CA2A8556A16B3C49FF1B41CC0AE811 /* GoogleDataTransportCCTSupport.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = GoogleDataTransportCCTSupport; - PRODUCT_NAME = GoogleDataTransportCCTSupport; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - B310AABC2A05F7578C78F91FD777DE89 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FEB5A7252A9DF3D7C4AA43F7EE88AEBC /* React-jsi.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-jsi/React-jsi-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = jsi; - PRODUCT_NAME = "React-jsi"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; B36AB15C5E16F3D7C814B930E2DFB827 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0A9A37CA9D46A7E435C023DE581010BB /* RNFBCrashlytics.release.xcconfig */; + baseConfigurationReference = E6B31D47FEA12DF3F7029345AFBA4B35 /* RNFBCrashlytics.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39705,30 +40841,31 @@ }; name = Release; }; - B378B01058710D7DCD17B55A9F9BA7FB /* Debug */ = { + B36F0DF38C1AE8BCEC7B97F346BB639B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7168429E95F77F02B8E48355B4F86802 /* RCT-Folly.debug.xcconfig */; + baseConfigurationReference = FECF06704C4BCA91C6A43790DEB6D35C /* RNFBApp.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RCT-Folly/RCT-Folly-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/RNFBApp/RNFBApp-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = folly; - PRODUCT_NAME = "RCT-Folly"; + PRODUCT_MODULE_NAME = RNFBApp; + PRODUCT_NAME = RNFBApp; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; B4EFE046ACF8F37157F6E322C7FCFC28 /* Debug */ = { isa = XCBuildConfiguration; @@ -39797,47 +40934,50 @@ }; name = Debug; }; - B568BBC1490591B7E9AC7F861BC8C94F /* Debug */ = { + B5076D6C028AA0DA6E6960A157D4674E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 711A800CF56C88C5CA3487D9A12B0336 /* MMKVCore.debug.xcconfig */; + baseConfigurationReference = 31A1445D31D37F28425B528799C43F1F /* React-cxxreact.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/MMKVCore/MMKVCore-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/React-cxxreact/React-cxxreact-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = MMKVCore; - PRODUCT_NAME = MMKVCore; + PRODUCT_MODULE_NAME = cxxreact; + PRODUCT_NAME = "React-cxxreact"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - B5ACA89BD3BF952E4DBA5204B2FF6C21 /* Release */ = { + B5881BE4602BEEA7398D3D40480341E0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FFA8920602E194F719FDBCD36097B350 /* TOCropViewController.release.xcconfig */; + baseConfigurationReference = 3B44AFCCB749BD05EB75EF3F8E1DE2E5 /* React-perflogger.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/TOCropViewController/TOCropViewController-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/React-perflogger/React-perflogger-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = TOCropViewController; - PRODUCT_NAME = TOCropViewController; + PRODUCT_MODULE_NAME = reactperflogger; + PRODUCT_NAME = "React-perflogger"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -39850,7 +40990,7 @@ }; B5CE058F8DFB838E466A1568B4DC340A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E14CE3C5F1E2CF97CC1653F3B44FF621 /* react-native-blur.release.xcconfig */; + baseConfigurationReference = 589EFF994DF8E0A93512C85DE371D6DD /* react-native-blur.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39876,7 +41016,7 @@ }; B5E282A2A22F19370FA7EA1B6DA85DFE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2E9692FA23C76680D83D321340DDBDC4 /* react-native-netinfo.debug.xcconfig */; + baseConfigurationReference = 726E49399B5063C9D4B8A919C8DC332A /* react-native-netinfo.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39901,7 +41041,7 @@ }; B7CCF664AABA87549DAD4BE20161BCD0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 28FB3829A88EC4071042B4D690042CCB /* ReactNativeART.debug.xcconfig */; + baseConfigurationReference = FA187242EBEDD3399949F29771D88BC5 /* ReactNativeART.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39924,9 +41064,41 @@ }; name = Debug; }; - B859A2A2746A49CDF9C47610B623240A /* Debug */ = { + B894EF837C738B2DFBBEC5E741FAB7F3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B5358846B097AB6CC5F7C835FA2E06EB /* ReactCommon.debug.xcconfig */; + baseConfigurationReference = EB11D8980233FB28B3EB591690D4B933 /* boost-for-react-native.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + B8D4BAE1AC114A2A683B1E09C904EA19 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C81BC27172EA0CE5C80194C0D70A45D3 /* RCTRequired.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + B91A208A52FE94302116072EF37FE04E /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B0165A96BF4E5166DAC954DD7CC76CC1 /* React-RCTBlob.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39934,13 +41106,13 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/ReactCommon/ReactCommon-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/React-RCTBlob/React-RCTBlob-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = ReactCommon; - PRODUCT_NAME = ReactCommon; + PRODUCT_MODULE_NAME = RCTBlob; + PRODUCT_NAME = "React-RCTBlob"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -39950,9 +41122,9 @@ }; name = Debug; }; - BAD72C5383C18D3090079BBDC37807F5 /* Debug */ = { + BA3D23A9A1F296A833FFD976EB58D6E6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B741D44A1AF957ABBBDBDB5B8B746C0F /* React-RCTImage.debug.xcconfig */; + baseConfigurationReference = 88397D67F1AC5325B9C5CDF7112BF6CF /* DoubleConversion.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39960,39 +41132,13 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-RCTImage/React-RCTImage-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/DoubleConversion/DoubleConversion-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTImage; - PRODUCT_NAME = "React-RCTImage"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - BAFBB2ECCEB96F390AC1B8DF6CEE0731 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = D981C25D0B939172A278AF9B153C380B /* React-cxxreact.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-cxxreact/React-cxxreact-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = cxxreact; - PRODUCT_NAME = "React-cxxreact"; + PRODUCT_MODULE_NAME = DoubleConversion; + PRODUCT_NAME = DoubleConversion; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -40004,7 +41150,7 @@ }; BD6E31C909B4DFE311A1DC28A76A4927 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 29DF7DD9DE07AFF99EE4C902EC84AFA7 /* UMSensorsInterface.release.xcconfig */; + baseConfigurationReference = 25D1F282AA2642EE4323F894908D4CC4 /* UMSensorsInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -40021,7 +41167,7 @@ }; BD745573C6626ACDAE15BA6F32AA7608 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 725A1A8E044277E56A6C7F050026271B /* EXFileSystem.debug.xcconfig */; + baseConfigurationReference = BCB188AF9D06035BEC1720D50031039E /* EXFileSystem.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -40045,9 +41191,36 @@ }; name = Debug; }; + BE4680A1E2E96D4F37970B6F11C0EF70 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6E4512E71DEA6EB132DB9A11EE925080 /* React-RCTAnimation.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/React-RCTAnimation/React-RCTAnimation-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RCTAnimation; + PRODUCT_NAME = "React-RCTAnimation"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; BE4E6EDE9AF028C01E50111F948786BB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 09E287F942E9D704CBEB762C9FEAB884 /* UMFontInterface.release.xcconfig */; + baseConfigurationReference = 52A81437D376AA16FFEF16706FC8287F /* UMFontInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -40062,9 +41235,9 @@ }; name = Release; }; - C312F04CE51A6BB94601761B6F252BBF /* Debug */ = { + C227E1E96EB83506121BE958AAFDBE32 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 86D9281E1BAC373B598A7CD54FB33844 /* Flipper-RSocket.debug.xcconfig */; + baseConfigurationReference = 10357CA40184FA064FBB734CE3ECABC8 /* React-jsinspector.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -40072,13 +41245,13 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/Flipper-RSocket/Flipper-RSocket-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/React-jsinspector/React-jsinspector-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RSocket; - PRODUCT_NAME = "Flipper-RSocket"; + PRODUCT_MODULE_NAME = jsinspector; + PRODUCT_NAME = "React-jsinspector"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -40090,7 +41263,7 @@ }; C48A318E5C60C903376EA3418BDFF0E2 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 03F5BC268435C4F4E7F26F360528B54D /* RNGestureHandler.release.xcconfig */; + baseConfigurationReference = A013671F5CF9AF26EE93AA8DB5192186 /* RNGestureHandler.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -40116,7 +41289,7 @@ }; C4AC01671ACF2941952FC335503ABF31 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 12336EB7EEB07BAA8D0DC7AAD14A3FA1 /* RNCMaskedView.debug.xcconfig */; + baseConfigurationReference = 34E97ED2E8B3D9030E0FEFDF1E0F0EA0 /* RNCMaskedView.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -40139,23 +41312,21 @@ }; name = Debug; }; - C535C6293108A51C295A24069003FF42 /* Release */ = { + C62C9255558B248F93803F9EDA51C98D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 94D1D16999BD3D586617610D38C1ABE4 /* React-jsinspector.release.xcconfig */; + baseConfigurationReference = E34AB18BAA4A47BB7C41BBCFCB2261F2 /* GoogleUtilities.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-jsinspector/React-jsinspector-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = jsinspector; - PRODUCT_NAME = "React-jsinspector"; + PRODUCT_MODULE_NAME = GoogleUtilities; + PRODUCT_NAME = GoogleUtilities; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -40166,50 +41337,21 @@ }; name = Release; }; - C673338971889F2EB71933D042DA2427 /* Release */ = { + C6C5876EF1B7E3F485B1F1880003ADF5 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EA80C6CC551744CB4EE5BF2A056CF5B1 /* glog.release.xcconfig */; + baseConfigurationReference = 845095425A65B403ED01C9E0327CEB2B /* FirebaseCoreDiagnostics.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/glog/glog-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = glog; - PRODUCT_NAME = glog; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - C7CAFC96778F3D5B880EE8F02AED1BC7 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1B9BFE7844B1041FF8668DD421BD4957 /* React-RCTText.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-RCTText/React-RCTText-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTText; - PRODUCT_NAME = "React-RCTText"; + PRODUCT_MODULE_NAME = FirebaseCoreDiagnostics; + PRODUCT_NAME = FirebaseCoreDiagnostics; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -40219,103 +41361,26 @@ }; name = Debug; }; - CA842ACA527C601FDFD81B03DCE7D6FB /* Release */ = { + C798FF17E0D65F6126851ED36BB99837 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FD2A557AEB83B8CC073A1184AB31527D /* nanopb.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = nanopb; - PRODUCT_NAME = nanopb; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - CB06D6BAF94F8E3A7161CBE2765F8F57 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = DFD4B2798F450F184E7C446D967B164E /* SDWebImageWebPCoder.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/SDWebImageWebPCoder/SDWebImageWebPCoder-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = SDWebImageWebPCoder; - PRODUCT_NAME = SDWebImageWebPCoder; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - CB7602223E37F9D7BEAEBAD3BC6DAEF9 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F8CD14050C72D23D91D42E504CB876EF /* GoogleAppMeasurement.debug.xcconfig */; + baseConfigurationReference = D31F5C04F4B11BAF9893FCEEBF4FCAF5 /* FBLazyVector.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; IPHONEOS_DEPLOYMENT_TARGET = 11.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - CBFDCE724D816BD778FA4242E5C004DE /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 36F48B9009C0F1A2D6A6DB550409F4EC /* UMPermissionsInterface.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/UMPermissionsInterface/UMPermissionsInterface-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = UMPermissionsInterface; - PRODUCT_NAME = UMPermissionsInterface; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; name = Release; }; - CD685C3A8129DFCFD9CAA399058D3A88 /* Debug */ = { + C98D0B1FB6305C765F0557145EFCA09C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B7D3AEE78A9732BA1D67DD3282B58E05 /* Flipper-Folly.debug.xcconfig */; + baseConfigurationReference = 868B8F033FCD7483A5C51ED38B9A065C /* FBReactNativeSpec.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -40323,13 +41388,13 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/Flipper-Folly/Flipper-Folly-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/FBReactNativeSpec/FBReactNativeSpec-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = folly; - PRODUCT_NAME = "Flipper-Folly"; + PRODUCT_MODULE_NAME = FBReactNativeSpec; + PRODUCT_NAME = FBReactNativeSpec; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -40339,6 +41404,47 @@ }; name = Debug; }; + C9C5B724A639418EEAAE09470090DDE9 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 016F790BB3FCBF679484B8AA059CD576 /* GoogleDataTransportCCTSupport.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = GoogleDataTransportCCTSupport; + PRODUCT_NAME = GoogleDataTransportCCTSupport; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + CA191A775939DB05BF896B3BC5FBAA43 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C75C6B8A5C0B8A7BE9CF9D1D54519831 /* hermes-engine.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; CD6B0B81BD17C385BC79BD68BF90BCDB /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 19BB8FE3084DED2BBFFA385ECA29B2E6 /* MMKV.release.xcconfig */; @@ -40365,9 +41471,9 @@ }; name = Release; }; - CD7CF80EE5B8958ECD6172F8112BB5E3 /* Debug */ = { + CEFDFEDB6B978C3AB39B88A6C84C5090 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0D5BBBB7AD1D865CEDD923D166C39BB3 /* React-callinvoker.debug.xcconfig */; + baseConfigurationReference = D6140EAA04937CCDC62246EB577E04F8 /* React.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -40381,77 +41487,6 @@ }; name = Debug; }; - CEC29E47FE0D0071F1FA1A823177FCC5 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 92A5874C878DFADCA0810C116E060219 /* Flipper-Folly.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/Flipper-Folly/Flipper-Folly-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = folly; - PRODUCT_NAME = "Flipper-Folly"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - CEEEE7EE5A0FBA44E5FCA3E07A6A412B /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C75C6B8A5C0B8A7BE9CF9D1D54519831 /* hermes-engine.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - CF18AA0974F9D740F00D995DD1E9596B /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BD0A4AF6EDEDB7A9D18E65FAFF8247B9 /* FBReactNativeSpec.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/FBReactNativeSpec/FBReactNativeSpec-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = FBReactNativeSpec; - PRODUCT_NAME = FBReactNativeSpec; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; CFC7207014229822E8B3391C13EDDD31 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 5882B802CF53A5BD9EDA6D07631B851F /* CocoaAsyncSocket.release.xcconfig */; @@ -40480,7 +41515,7 @@ }; D0FDE8CBCEEA78218E7F9B36A3679E2A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2966B2229A727F37015E74DBBDD9392E /* react-native-appearance.release.xcconfig */; + baseConfigurationReference = 6BC844546A49F881F76425F68A1F936E /* react-native-appearance.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -40506,7 +41541,7 @@ }; D124A7732EA3602924AFD9A7E066FF3C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1C994F4FA89A2345018D4D4F28B741BB /* RNDateTimePicker.release.xcconfig */; + baseConfigurationReference = 1B5F6CEE5D7CFF670C9C2F1FC8621A17 /* RNDateTimePicker.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -40531,36 +41566,9 @@ }; name = Release; }; - D292673F623AA262C694109682A15F03 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0715A45F35F07E2A9D608A71A16F7E79 /* React-perflogger.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-perflogger/React-perflogger-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = reactperflogger; - PRODUCT_NAME = "React-perflogger"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; D45E3EED924AB5138532D95273DF9364 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 22179B26EFA123B0FB129665B0D3749A /* Pods-defaults-Rocket.Chat.release.xcconfig */; + baseConfigurationReference = F6D0AB52E9908D40784364BCF9A2C284 /* Pods-defaults-Rocket.Chat.release.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; APPLICATION_EXTENSION_API_ONLY = NO; @@ -40583,34 +41591,57 @@ }; name = Release; }; - D653FFBA3A3C3055C24337E996AD823A /* Release */ = { + D56B4530EED9A2C237B9E71330E63B44 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8C23BAB539C031E6E4AF31CBBB19EFB1 /* Yoga.release.xcconfig */; + baseConfigurationReference = DED15C1208E208890C8166DEFA7CCCF0 /* React-RCTActionSheet.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/Yoga/Yoga-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MODULEMAP_FILE = Headers/Public/yoga/Yoga.modulemap; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = yoga; - PRODUCT_NAME = Yoga; - PUBLIC_HEADERS_FOLDER_PATH = ""; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; name = Release; }; + D58A4A5E9C48E481E1D2E0764B9A3106 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 245ECF7B29C53EB3D624AA79946C00A8 /* React-runtimeexecutor.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + D5E5100E75BF415B7B2B1C62137C5649 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = CC72D21238CDBFB46D8CFCC77CCABD69 /* TOCropViewController.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/TOCropViewController"; + IBSC_MODULE = TOCropViewController; + INFOPLIST_FILE = "Target Support Files/TOCropViewController/ResourceBundle-TOCropViewControllerBundle-TOCropViewController-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + PRODUCT_NAME = TOCropViewControllerBundle; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; D679DA3653EA9F2D9C4564889CB0C9AB /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 6AB4C38354B40701BDF1A1954B9961DA /* JitsiMeetSDK.release.xcconfig */; @@ -40628,9 +41659,9 @@ }; name = Release; }; - D6852E88848BC51AF754F7B39DA2E80A /* Release */ = { + D6C61EE28C942578F06892DBD3C9A6ED /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EF055E5FCB222583430BE1F56A5645BB /* React-runtimeexecutor.release.xcconfig */; + baseConfigurationReference = 2644F2579B6A8617B5235C3BF091B1D3 /* UMImageLoaderInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -40641,13 +41672,12 @@ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; + name = Debug; }; D71510F76DCF7CE58547EB4918DF4984 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 078D964FEAB5D5E810F67F885FBDCA6E /* UMTaskManagerInterface.release.xcconfig */; + baseConfigurationReference = 911B3EC5FE59FFBB5939024ADE0D328B /* UMTaskManagerInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -40662,104 +41692,9 @@ }; name = Release; }; - D75E31B8597BE65E4EF646F04E8CFCE7 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 491FA9528E2B3B4E929893150763AA85 /* FBLazyVector.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - D76346098BDE78F70F6CBC09229ECAB7 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 761D253CF3AEBD546D663579BBEE55FD /* React-RCTAnimation.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-RCTAnimation/React-RCTAnimation-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTAnimation; - PRODUCT_NAME = "React-RCTAnimation"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - D7DC912AE026D3270F4BA97046D39C66 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 2AD31C10F356F09D94160F5655A22C6E /* Yoga.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/Yoga/Yoga-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MODULEMAP_FILE = Headers/Public/yoga/Yoga.modulemap; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = yoga; - PRODUCT_NAME = Yoga; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - D9AC05ED0DDB44D2096B1B72DA0935C7 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 8F5190191CC94B36436BAC17951E36FC /* FirebaseCore.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = FirebaseCore; - PRODUCT_NAME = FirebaseCore; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; DB2005A0531F44543BA413716CCC3FDC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6C5F4C2E47B7500B938112601B233090 /* KeyCommands.debug.xcconfig */; + baseConfigurationReference = 558D3F7ACAF31C18087EB60CBBEF6338 /* KeyCommands.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -40782,49 +41717,22 @@ }; name = Debug; }; - DE3BA1AF3ECBA1B64A5817C51211B435 /* Debug */ = { + E098105273203D0DACE3549D2C1102FE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 14977B368D2972368DF311C460A6313D /* React-RCTVibration.debug.xcconfig */; + baseConfigurationReference = F6C380CA7A33FA313D82D9CB909D3CE4 /* Flipper-DoubleConversion.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-RCTVibration/React-RCTVibration-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/Flipper-DoubleConversion/Flipper-DoubleConversion-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTVibration; - PRODUCT_NAME = "React-RCTVibration"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - E2727E501B44CE50D063FEE24DFB0773 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = DBA6DCF004C50AF1D1150EC91E6ECBE9 /* React-RCTAnimation.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-RCTAnimation/React-RCTAnimation-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTAnimation; - PRODUCT_NAME = "React-RCTAnimation"; + PRODUCT_MODULE_NAME = DoubleConversion; + PRODUCT_NAME = "Flipper-DoubleConversion"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -40836,7 +41744,7 @@ }; E459A1D9F0B488199727A77BAC16AD65 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8FB32F43B205C0EAEF3DDA9EC52D88D4 /* RNReanimated.debug.xcconfig */; + baseConfigurationReference = F6D284B7576715CC4396B43BE47D1555 /* RNReanimated.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -40861,7 +41769,7 @@ }; E4BD380E366DC7269640D2EFB8A914BF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 34F8FA85D998FCF2F591931428F5BF8B /* react-native-slider.debug.xcconfig */; + baseConfigurationReference = B622CF7B7190C737864DAF48DBAD79FD /* react-native-slider.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -40884,25 +41792,9 @@ }; name = Debug; }; - E54232C16B18B7262B097D82FF1A8573 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 24419A3720DD6A543EDA5C339C6F95A7 /* UMImageLoaderInterface.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; E6E001CA0857B974D8C862B0CA95C154 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0066440ABA721E8525E4ADE789BB0423 /* KeyCommands.release.xcconfig */; + baseConfigurationReference = 4B61C20E4E6ED1ADB8280B01F982A3F1 /* KeyCommands.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -40926,9 +41818,34 @@ }; name = Release; }; + E77561557F596C05B0F94CFE3368AC62 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 713226B89EB5E0214720191C9C8FF78C /* SDWebImage.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/SDWebImage/SDWebImage-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = SDWebImage; + PRODUCT_NAME = SDWebImage; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; E79554B3BBBAD59DD13FE4326E02D109 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BB562EA826EF46ABEE485DB5A157CCFF /* react-native-appearance.debug.xcconfig */; + baseConfigurationReference = 27E48D41D14E4E75865F8FD09A45346B /* react-native-appearance.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -40951,9 +41868,35 @@ }; name = Debug; }; + E8629500EC18665C29B3B6EFA4500B01 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FFCE347A1CEBBD0FA95EFF4E15B38328 /* RCT-Folly.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RCT-Folly/RCT-Folly-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = folly; + PRODUCT_NAME = "RCT-Folly"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; EA153B9EA17E108C573D62F0F600AFB9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E93A9795F830EA2582E4EBE8BC877F60 /* RNDeviceInfo.release.xcconfig */; + baseConfigurationReference = 6DCC0C7F66B675D989796CA6C01D6D6D /* RNDeviceInfo.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -40979,7 +41922,7 @@ }; EA63371836855F183EB482F6D7439350 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EED42A95AAF354958AB6CC0252CFCBDB /* react-native-document-picker.release.xcconfig */; + baseConfigurationReference = 3B335D891353EDABF098FC898DC8073B /* react-native-document-picker.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -41004,23 +41947,21 @@ }; name = Release; }; - EAF4D4866788A5E3CDF7DC00BABD3441 /* Debug */ = { + EA8EE5E67E43E1FC52E2A7E05BCB3CA8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 88F4E05408849735CE9E7F092A7B555E /* FBReactNativeSpec.debug.xcconfig */; + baseConfigurationReference = DBC3D997AF120FFB33BFD96167D936A0 /* FirebaseCore.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/FBReactNativeSpec/FBReactNativeSpec-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = FBReactNativeSpec; - PRODUCT_NAME = FBReactNativeSpec; + PRODUCT_MODULE_NAME = FirebaseCore; + PRODUCT_NAME = FirebaseCore; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -41030,85 +41971,9 @@ }; name = Debug; }; - EB15F812814F18ECF8E2972D13577938 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1C6FC7D8F1E1F3DF9608C971D2CF5C8C /* RCTTypeSafety.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RCTTypeSafety/RCTTypeSafety-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTTypeSafety; - PRODUCT_NAME = RCTTypeSafety; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - EB9588D91ABEBD87CAB9F1AA04906E39 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B180A30621C18D083C4C04ABBBD78726 /* libwebp.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/libwebp/libwebp-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = libwebp; - PRODUCT_NAME = libwebp; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - EDB4F4FD8CAA27B09680BC8447768A26 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 04C9072E8E73E49E527671FED550BBA8 /* Pods-NotificationService.debug.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-NotificationService/Pods-NotificationService.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; EE7273F74A5DAB28BBF9730CA491CCCF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3176AB3C86C5700B205948C24DBD3022 /* Pods-defaults-Rocket.Chat.debug.xcconfig */; + baseConfigurationReference = 158B757C9F26DE64E393CA25BBBA63D7 /* Pods-defaults-Rocket.Chat.debug.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; APPLICATION_EXTENSION_API_ONLY = NO; @@ -41130,9 +41995,62 @@ }; name = Debug; }; + EF7125D5B7A9E0805D68C26DD9E42A35 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B32DD95FEA09DF1C9AAFDCB797ACD40D /* Flipper-Glog.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/Flipper-Glog/Flipper-Glog-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = glog; + PRODUCT_NAME = "Flipper-Glog"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + EFA4F633CF780D6126FF99CF870855EE /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = CE75A73372A46C20D81FFA32E2B7FF33 /* React-jsi.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/React-jsi/React-jsi-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = jsi; + PRODUCT_NAME = "React-jsi"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; F0506B029B9E71EEE11506B8BCCA1457 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 875DED61A06CE318AEE1294518695660 /* react-native-cameraroll.debug.xcconfig */; + baseConfigurationReference = E9F8ED4171EE1BF4C32DAD3F2AC794BF /* react-native-cameraroll.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -41155,28 +42073,26 @@ }; name = Debug; }; - F051B71F2A8B8AA6C7A5D3E1123D90F1 /* Release */ = { + F0B79C694C6D0B6FE54C426A49E4E986 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1013FA3489B2E599784CC6B11BEB6AD8 /* YogaKit.release.xcconfig */; + baseConfigurationReference = 3EBB8DE63D81A58A5C248488CF5C0F61 /* PromisesObjC.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/YogaKit/YogaKit-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MODULEMAP_FILE = Headers/Public/YogaKit/YogaKit.modulemap; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = YogaKit; - PRODUCT_NAME = YogaKit; + PRODUCT_MODULE_NAME = FBLPromises; + PRODUCT_NAME = PromisesObjC; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 4.1; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; @@ -41208,9 +42124,26 @@ }; name = Debug; }; + F3EE27B0C756A8266CCDF2B12606FA17 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B8F9958D28A43B51CE55A9E673B47073 /* React-Core.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/React-Core"; + IBSC_MODULE = React; + INFOPLIST_FILE = "Target Support Files/React-Core/ResourceBundle-AccessibilityResources-React-Core-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + PRODUCT_NAME = AccessibilityResources; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; F4021723BC60346B934B57D211E377CF /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E11A4E97542ECCDBC6C25CC521C143F3 /* react-native-netinfo.release.xcconfig */; + baseConfigurationReference = AAEB5F0A5261B6D7B056ED1D75CC3CCF /* react-native-netinfo.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -41236,7 +42169,7 @@ }; F5741BF254B759E7C65C9EC19A11B1D8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 56792528CABA3BF6C5F8953B66E97235 /* RNVectorIcons.debug.xcconfig */; + baseConfigurationReference = B63229FD73062316E617CD530F989313 /* RNVectorIcons.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -41259,50 +42192,9 @@ }; name = Debug; }; - F624EC304132A9B2596A9CED4E8C3100 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 4A09100047E992538C7D75B4F541F18A /* RCTRequired.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - F6A207C3E01A27104C979468286CA78A /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 016F790BB3FCBF679484B8AA059CD576 /* GoogleDataTransportCCTSupport.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = GoogleDataTransportCCTSupport; - PRODUCT_NAME = GoogleDataTransportCCTSupport; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; F70AD1A19AB564FC34E6C552DA2C4AD1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AE8AA051572EF613B4252ED5DFE2FA95 /* EXHaptics.release.xcconfig */; + baseConfigurationReference = 27119F2A6238A2FC86DAFDE84A691EB4 /* EXHaptics.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -41356,7 +42248,7 @@ }; F80139D222CD8D411E62E5C7A9A572D0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 27A4A26B39865A6CB46806501B41B410 /* React-CoreModules.debug.xcconfig */; + baseConfigurationReference = D2943406FA1878F07097E101AE75878A /* React-CoreModules.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -41380,9 +42272,26 @@ }; name = Debug; }; + F977BD0B99BFED939F9A9BC461C8C112 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 33C451B5E70DB04A4D69D8018EFC491A /* RNImageCropPicker.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/RNImageCropPicker"; + IBSC_MODULE = RNImageCropPicker; + INFOPLIST_FILE = "Target Support Files/RNImageCropPicker/ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + PRODUCT_NAME = QBImagePicker; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; F9ABBEEDD1A828D78D88DE53937DCC91 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E64EF16A5E4BE731DCFD0AA7BD8C0599 /* react-native-jitsi-meet.release.xcconfig */; + baseConfigurationReference = 5717BE80A558DC52BD945542F682495A /* react-native-jitsi-meet.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -41406,9 +42315,35 @@ }; name = Release; }; + F9FA7A73B41D25987F6E304AB230A289 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B3D315E54667C3E03E9D6864813B0E38 /* React-RCTLinking.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/React-RCTLinking/React-RCTLinking-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RCTLinking; + PRODUCT_NAME = "React-RCTLinking"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; FA63C9CF0D9C486B3BA4337A160BA74C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C3C116F44A9480C6CF6F9E8D85818ADF /* EXConstants.release.xcconfig */; + baseConfigurationReference = 45ADF538F25776E64060B02AABA07AF4 /* EXConstants.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -41435,7 +42370,7 @@ }; FB4ABA246927508A6406B2AD139AB213 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F181D4BA617A1BB0C2A7B3A8BED80E77 /* react-native-restart.release.xcconfig */; + baseConfigurationReference = 78B4B36C13100D30E53040F5DBA07C93 /* react-native-restart.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -41459,37 +42394,66 @@ }; name = Release; }; - FC000A483F9AB1FCE9A6371D4C507C7A /* Release */ = { + FBD31888CB837C5D550F1BD0DE015396 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E5164A0041888D02D9F6B0521C7C8880 /* FirebaseAnalytics.release.xcconfig */; + baseConfigurationReference = B8F9958D28A43B51CE55A9E673B47073 /* React-Core.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/React-Core/React-Core-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MODULEMAP_FILE = "Headers/Public/React/React-Core.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = React; + PRODUCT_NAME = "React-Core"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + FC432EE333F2540FC0B0C86D7AF1E975 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D725CF596A4AFE33281DA292DE582717 /* FBLazyVector.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; IPHONEOS_DEPLOYMENT_TARGET = 11.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; + name = Debug; }; - FD7CC81ACEC9CEEAC931F5588A9CEE1D /* Release */ = { + FCDE3A2AB0B7242F2D667CB1C686DE2F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1AB2709DA658997009EE4C33507AAC44 /* FirebaseCrashlytics.release.xcconfig */; + baseConfigurationReference = 7E61F8A63FBA407A952062E0F522055D /* React-RCTBlob.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/React-RCTBlob/React-RCTBlob-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = FirebaseCrashlytics; - PRODUCT_NAME = FirebaseCrashlytics; + PRODUCT_MODULE_NAME = RCTBlob; + PRODUCT_NAME = "React-RCTBlob"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -41519,29 +42483,11 @@ /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 0191EBCDEAC54F73B1C36FCE229AAD18 /* Build configuration list for PBXNativeTarget "TOCropViewController-TOCropViewControllerBundle" */ = { + 030D368A423358C520F7DDA2C5015898 /* Build configuration list for PBXAggregateTarget "OpenSSL-Universal" */ = { isa = XCConfigurationList; buildConfigurations = ( - 5CDFA69520A0458D81F28EF5DE4C3A38 /* Debug */, - 614F098EF17B04B390E0AE995548BF53 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 01EC4E06B86D8BDFE491AB9FEB23832B /* Build configuration list for PBXAggregateTarget "OpenSSL-Universal" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 5320565F05B3E012A7AF5864197E9D59 /* Debug */, - 477AD959898310A758815878DE24651F /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 0357FABA07617EF5CCF21E4A7BE91244 /* Build configuration list for PBXAggregateTarget "RCTRequired" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 2C881801A1A702E94CD93DD2EA3F283C /* Debug */, - F624EC304132A9B2596A9CED4E8C3100 /* Release */, + 08D71AEFCC86DB114EDF659B02FEBEA4 /* Debug */, + 0AD8D67C1E55D2D5407E0C92B2157A74 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -41555,6 +42501,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 0AABDF923994A94E2CCCDF04227D1FC1 /* Build configuration list for PBXAggregateTarget "UMImageLoaderInterface" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D6C61EE28C942578F06892DBD3C9A6ED /* Debug */, + 0BA14761DA8A69162BF3989FB0094D75 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 0F542F5ECC0C5E8741F7D8A1EB5D08C0 /* Build configuration list for PBXAggregateTarget "UMFaceDetectorInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -41573,20 +42528,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 14779BC0C147F0700B48B799577A1ECB /* Build configuration list for PBXAggregateTarget "GoogleAppMeasurement" */ = { + 15212B07F35C5F6654E6F0BDF16B637A /* Build configuration list for PBXAggregateTarget "GoogleAppMeasurement" */ = { isa = XCConfigurationList; buildConfigurations = ( - CB7602223E37F9D7BEAEBAD3BC6DAEF9 /* Debug */, - 93F7070654F4958CF7389089E83DD2B8 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 14F9DA9BC4C27ED4063A5AD4DEDE156A /* Build configuration list for PBXAggregateTarget "React" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 3CD4E24977617D51CB1174111DB96771 /* Debug */, - 46CC427C4FEA341334FFBDCA6F024BC1 /* Release */, + 93377661CC8494FAB502425E432145E3 /* Debug */, + 26EC306500273E3061D7F84644C1C135 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -41609,6 +42555,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 1A2C6335995D1BCC2F3C6958499EF751 /* Build configuration list for PBXNativeTarget "YogaKit" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 36CA3F6384B27F727E746AA6F3DD6AD4 /* Debug */, + 80CD4D97BC50977AAD69D493D8B41FEA /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 1A53195F2A49E064D1E9C88E5C7C3806 /* Build configuration list for PBXNativeTarget "RNVectorIcons" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -41627,6 +42582,33 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 1BA8C2D2B578BBF04BD6E5D7EAB9F481 /* Build configuration list for PBXNativeTarget "UMCore" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 96BFC21273E9354276B3DF8DF3CD7C17 /* Debug */, + 006FA452760FC313E71F8E3C3A60D4EE /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 1F6E12F51F17AC245732BF2B07C5151A /* Build configuration list for PBXNativeTarget "Flipper-RSocket" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 5E123D63F0A8C1049F25CF752156D71E /* Debug */, + 4BAEBE893907B42B49B98DA02130D9EC /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 2005FB6EE6F84EB804033F7CB86444C6 /* Build configuration list for PBXNativeTarget "GoogleUtilities" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 16C617D6AB3D7FB21E9B83A81E3E80BD /* Debug */, + C62C9255558B248F93803F9EDA51C98D /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 20F9E92483C8456A6858D493127CE4C3 /* Build configuration list for PBXNativeTarget "react-native-notifications" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -41645,15 +42627,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 238F95FC1A404408AF1561DEE61150A4 /* Build configuration list for PBXNativeTarget "React-RCTText" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C7CAFC96778F3D5B880EE8F02AED1BC7 /* Debug */, - 9328987D9B176F36294944DE2B348A96 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 26780B61FE9FD27DD1CEFC027F6AF63A /* Build configuration list for PBXNativeTarget "react-native-safe-area-context" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -41663,11 +42636,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 2710AE0DF184914E6E1439215EC4B379 /* Build configuration list for PBXNativeTarget "FirebaseCoreDiagnostics" */ = { + 281F52B0B0084101E39C44BCCBF86F4C /* Build configuration list for PBXNativeTarget "React-Core" */ = { isa = XCConfigurationList; buildConfigurations = ( - 688D2F42C8A5CA57024892706F5D9D2F /* Debug */, - 519EF5BC68511F959692E1C4898DA8B7 /* Release */, + FBD31888CB837C5D550F1BD0DE015396 /* Debug */, + 2149583740EF0935BD6424BC48DCF992 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -41699,20 +42672,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 2D0E05AB2170E0E290B69A089D84598A /* Build configuration list for PBXAggregateTarget "UMFileSystemInterface" */ = { + 2F4C94552F3812029C75BFE5A2952573 /* Build configuration list for PBXNativeTarget "RNImageCropPicker-QBImagePicker" */ = { isa = XCConfigurationList; buildConfigurations = ( - 5B0D1AC79BFF0BC4B889AD23877922D7 /* Debug */, - 52999CAE7A1371B84A99EE118C020A30 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 2D6DC0F9E73C954C5DA69EF3CF51E07C /* Build configuration list for PBXNativeTarget "React-perflogger" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - AEA49F3889489A8D3C9BAC26A747DED5 /* Debug */, - D292673F623AA262C694109682A15F03 /* Release */, + 7389F32D44E1DC420DC05471B3EC77C3 /* Debug */, + F977BD0B99BFED939F9A9BC461C8C112 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -41726,15 +42690,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 32D28D474BF2257FDF91F7BB8ABBCA0A /* Build configuration list for PBXAggregateTarget "UMImageLoaderInterface" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - E54232C16B18B7262B097D82FF1A8573 /* Debug */, - 392B3AD702F1DA63C7EA918FE0D84D70 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 33777A96CAB9BE76FDE66E951662B049 /* Build configuration list for PBXNativeTarget "react-native-restart" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -41744,11 +42699,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 387DB6F37AF7FCA86588CBE8AC457954 /* Build configuration list for PBXNativeTarget "RNImageCropPicker-QBImagePicker" */ = { + 3770992238CC70E195D95BD65A4CBB0F /* Build configuration list for PBXNativeTarget "libwebp" */ = { isa = XCConfigurationList; buildConfigurations = ( - 2B242392FD02139B3C9E2A887D893E9D /* Debug */, - 95F25011EAD3FE9FA9E85C4ABFB176C5 /* Release */, + 13DFCE7755ED25EAF6B9361684EF9492 /* Debug */, + 63C09986E14FD76FD0B7D874D589A0AC /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 3940DE503717146C344D49DFBBC2E324 /* Build configuration list for PBXAggregateTarget "React-runtimeexecutor" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 2C00276F50FFFE033C38D47B9D9CA740 /* Debug */, + D58A4A5E9C48E481E1D2E0764B9A3106 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -41771,29 +42735,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 3CABF77111E4A1C661C6971691AF48EB /* Build configuration list for PBXNativeTarget "React-jsinspector" */ = { + 3E9771AB8600DE7494AE5916BEAC47CE /* Build configuration list for PBXNativeTarget "React-jsinspector" */ = { isa = XCConfigurationList; buildConfigurations = ( - 15D449DAC4EF6D8BA50744FE034A8F39 /* Debug */, - C535C6293108A51C295A24069003FF42 /* Release */, + C227E1E96EB83506121BE958AAFDBE32 /* Debug */, + 175A21B880B3914B871F41C5ADD7970A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 3D494A38765ED2F8B39FE06E64F5433D /* Build configuration list for PBXNativeTarget "GoogleDataTransportCCTSupport" */ = { + 4620B19A669D314A728A82DA2FB87AD1 /* Build configuration list for PBXNativeTarget "Pods-defaults-NotificationService" */ = { isa = XCConfigurationList; buildConfigurations = ( - F6A207C3E01A27104C979468286CA78A /* Debug */, - B100361A5EB0885778CF030EBD9CCB22 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 4471CF8AD961063B9E3E74ABBFA30851 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 1AC857E63B0E250410829AE6FE65025A /* Debug */, - 0A5303CCE9C92B75A6D222F8EAE95096 /* Release */, + 3AD222E5446E6F55AE824A5B32EADCF4 /* Debug */, + 5A7A8A32A1EF8BD95E4479B73491E7CA /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -41816,74 +42771,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 48E01AB6A69B13A64CE17E7500D442A1 /* Build configuration list for PBXAggregateTarget "boost-for-react-native" */ = { + 58CDAABA5D527B39D63C6E72BEB30A65 /* Build configuration list for PBXNativeTarget "React-RCTText" */ = { isa = XCConfigurationList; buildConfigurations = ( - 92473A0D4B75ABAE0FB342F29D99497C /* Debug */, - 2CB67AD6CE6E0F9F1DCB9D38477AD104 /* Release */, + 3D7173F3CC4AE583BDF8CB8F7F11339C /* Debug */, + A45B4046181753CDE32D7653F8266908 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 49D711C36AC1691002769D0B1A9C547E /* Build configuration list for PBXAggregateTarget "UMConstantsInterface" */ = { + 59895EA922DCBE154BBAE4A66CE3FC6F /* Build configuration list for PBXNativeTarget "React-RCTNetwork" */ = { isa = XCConfigurationList; buildConfigurations = ( - 23A85991C92C1EFB197B1CCBE584D30D /* Debug */, - 8E99FEF35293BB12C859F46C546F87CF /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 50AE4A26C92271A51A8264CABFAB7554 /* Build configuration list for PBXAggregateTarget "React-callinvoker" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - CD7CF80EE5B8958ECD6172F8112BB5E3 /* Debug */, - 62A3B2A00F363F3FAB9C09D3D04A10E5 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 571B7721DA905FBF578C538D0C35D3F0 /* Build configuration list for PBXNativeTarget "GoogleUtilities" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 7BB9A94F351F281E52BDA35772923DE8 /* Debug */, - 819E43C10C89439301014A094FC44E00 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 57CB7E47EEB806CCA7CA064EB60E17D8 /* Build configuration list for PBXNativeTarget "TOCropViewController" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 5EF24A937CF7D1670BE63CDBC297BF3A /* Debug */, - B5ACA89BD3BF952E4DBA5204B2FF6C21 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 58B358352112D6650B745A6557877849 /* Build configuration list for PBXNativeTarget "FirebaseCrashlytics" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 04194E6A86B48FDE2C4748CB65A51422 /* Debug */, - FD7CC81ACEC9CEEAC931F5588A9CEE1D /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 59904C551B4CD2CF2276882863B197DD /* Build configuration list for PBXNativeTarget "BugsnagReactNative" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 00585F65DCD8DAF8DBD0363AC21770FA /* Debug */, - 0A0E6214D07BB47739004A51C7369DDD /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 5A5ED4374BB4B4FD3C3E42BD0EDC1BE1 /* Build configuration list for PBXNativeTarget "FirebaseCore" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - A16C61411B625A978C81E976EA2E2141 /* Debug */, - D9AC05ED0DDB44D2096B1B72DA0935C7 /* Release */, + 51CE9219F7798137B4490C849B67BBD3 /* Debug */, + 8626ADC413624368969F69B8D46737B5 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -41906,15 +42807,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 5BC98C1FF8351AD5E83B0A4D428530D5 /* Build configuration list for PBXNativeTarget "Flipper-DoubleConversion" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 2B053B1A86225A85CAA59858E2D44D7A /* Debug */, - 7337C5713C0B1B4FE9F9038C034D3F48 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 5D29B9A477732684F0FCCF9A9F1B62BD /* Build configuration list for PBXNativeTarget "ReactNativeART" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -41924,6 +42816,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 5DBE2DCB6796B02028ED4C52BAFB7AAD /* Build configuration list for PBXNativeTarget "Yoga" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 59B3B11861976E122ACB260DD6540727 /* Debug */, + 13AF8ADD9852CBD310EEB9B681023455 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 5DEBF75ECE03D34C5624EF90C28DC4D7 /* Build configuration list for PBXNativeTarget "react-native-webview" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -41933,15 +42834,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 5EB38E0B2CBF501D6F94B3D80C8F5603 /* Build configuration list for PBXNativeTarget "React-jsiexecutor" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - A6EA7422ECA604BAA8D518A742B560CC /* Debug */, - 6FB74D57740C159D34B65D05CE1D784A /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 5ED9689BDA64EE4F3EC7B63C7BC06550 /* Build configuration list for PBXNativeTarget "react-native-mmkv-storage" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -41969,6 +42861,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 611882B4FC76DDB90E3FE11E69E82A1D /* Build configuration list for PBXAggregateTarget "FBLazyVector" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FC432EE333F2540FC0B0C86D7AF1E975 /* Debug */, + C798FF17E0D65F6126851ED36BB99837 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 64DE8BBF2E149B50B066EB1C1046523C /* Build configuration list for PBXNativeTarget "MMKV" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -41978,11 +42879,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6A216DB39BEB5AB0826C55ACC87A6ED1 /* Build configuration list for PBXNativeTarget "FBReactNativeSpec" */ = { + 699EEC181B5ABAC70976EAC0EE5824A6 /* Build configuration list for PBXAggregateTarget "hermes-engine" */ = { isa = XCConfigurationList; buildConfigurations = ( - EAF4D4866788A5E3CDF7DC00BABD3441 /* Debug */, - CF18AA0974F9D740F00D995DD1E9596B /* Release */, + 7B158DC20588C3FD47C4DD81B5F3AFFB /* Debug */, + CA191A775939DB05BF896B3BC5FBAA43 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 6A869BE11760AA6BD7778AF7BB9CF550 /* Build configuration list for PBXAggregateTarget "React-callinvoker" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 683EDEDFC5B24B3B5830B0675D0B8396 /* Debug */, + 403D23E6C3B5A3AAA84846ADCFA5215C /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -41996,6 +42906,33 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 6BC19C369914219214088AA704D90DDB /* Build configuration list for PBXNativeTarget "React-jsiexecutor" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 7AC7CA0A67AEAB84A111686F06F4EAAA /* Debug */, + 22CE9B61A984752DBD351C8013B1564E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 6D884301DED0299AE60DDAF0DD950B7E /* Build configuration list for PBXAggregateTarget "FirebaseAnalytics" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + A9E031BC3F0341CD11C586ED9CADBBD0 /* Debug */, + 62DE9103869B552445834F7265CA147C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 71A269A6A30314D97285226FED0F1E7E /* Build configuration list for PBXNativeTarget "DoubleConversion" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + BA3D23A9A1F296A833FFD976EB58D6E6 /* Debug */, + 8DBA8377BB5292064B97CFEB108E4F44 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 72F002D06D61965FA5A5AB346C75BDBC /* Build configuration list for PBXNativeTarget "RNFastImage" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -42005,6 +42942,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 738FA1577E1FBFE5249A004C44942440 /* Build configuration list for PBXNativeTarget "SDWebImageWebPCoder" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 9A8C6476434986F0FF606E2E91804CCD /* Debug */, + 63505259D5787D1AA34EDD533C0C5268 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 77A84D7794DC5EACEE72F22A924404FF /* Build configuration list for PBXNativeTarget "EXAppleAuthentication" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -42032,11 +42978,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7931144279FBED5A91B631F3FEE844E7 /* Build configuration list for PBXNativeTarget "React-cxxreact" */ = { + 7B543AE55440CE5A43FCC3D6016EC9E5 /* Build configuration list for PBXNativeTarget "FirebaseCore" */ = { isa = XCConfigurationList; buildConfigurations = ( - BAFBB2ECCEB96F390AC1B8DF6CEE0731 /* Debug */, - A0001840266E08E41BAAC80560A90014 /* Release */, + EA8EE5E67E43E1FC52E2A7E05BCB3CA8 /* Debug */, + 325BD6FEEEAA4ACD3040DCDC0C3439F4 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42068,11 +43014,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7E9E84DDA295C79931CC4BE869FBDDDC /* Build configuration list for PBXNativeTarget "GoogleDataTransport" */ = { + 7F611E2A3BEBA446BFEEE2DC10AE6C59 /* Build configuration list for PBXNativeTarget "React-RCTVibration" */ = { isa = XCConfigurationList; buildConfigurations = ( - 1066EB86FF81B85CEA00C3071887F180 /* Debug */, - 8863874999E73829A872439D667C439B /* Release */, + 45E3D1FA7972F019B4F22F452AF2333C /* Debug */, + 6456C7C94840F8F15C27F2F7FA4A7637 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 81B64538349FC5A3C516F0D5F664C2AF /* Build configuration list for PBXAggregateTarget "UMConstantsInterface" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 1210FFEF8F686D43D45CF58066955852 /* Debug */, + 375A948405052A6DF1471DD213BAA08A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42086,11 +43041,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 828F5B605C8DC1442926371115831966 /* Build configuration list for PBXNativeTarget "RCT-Folly" */ = { + 822465291AE619E4378783952B69FA08 /* Build configuration list for PBXNativeTarget "FirebaseCoreDiagnostics" */ = { isa = XCConfigurationList; buildConfigurations = ( - B378B01058710D7DCD17B55A9F9BA7FB /* Debug */, - A351B1288625D0687ED1CBE9C6A7D989 /* Release */, + C6C5876EF1B7E3F485B1F1880003ADF5 /* Debug */, + 32B401285E3EE2E6ADAA279C85A39679 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42104,56 +43059,29 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 84F4CE1978540A9807A4C7FD4635BFC5 /* Build configuration list for PBXNativeTarget "libevent" */ = { + 888653926A5CE70CA33F8C57501BF560 /* Build configuration list for PBXNativeTarget "React-RCTAnimation" */ = { isa = XCConfigurationList; buildConfigurations = ( - 20691F7C79728D84564CFD5669BF4CFF /* Debug */, - 379191ACE3694440839C127B4AB5644B /* Release */, + A4FA84CB0B49DCBE32F45CD28F313F2C /* Debug */, + BE4680A1E2E96D4F37970B6F11C0EF70 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 8A32E75EA1372E53C1C3907720DE0B3F /* Build configuration list for PBXNativeTarget "React-RCTLinking" */ = { + 895CF15E24078E27F2D10A5015747042 /* Build configuration list for PBXNativeTarget "Flipper-DoubleConversion" */ = { isa = XCConfigurationList; buildConfigurations = ( - 644DC2E4C1A368279333A15C1E6D105B /* Debug */, - A6B0E627E4163303CAC13D723B17E20E /* Release */, + E098105273203D0DACE3549D2C1102FE /* Debug */, + 2B9B962C71F01503AEBDAEF94B6E1CCA /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 8B20D7A94013954F57C2D6E5D53C9B54 /* Build configuration list for PBXNativeTarget "React-RCTNetwork" */ = { + 8A3817F2D05E60F8690A927B2FECFE32 /* Build configuration list for PBXNativeTarget "React-RCTImage" */ = { isa = XCConfigurationList; buildConfigurations = ( - A0B867653A8761B899636DFA1788CD24 /* Debug */, - AF3B986571D7FCA62E7BD8B31B4FD7C3 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 8CECF1AFD6816F97BE236FAB739E03E8 /* Build configuration list for PBXNativeTarget "glog" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 7CC1BCEFDC4392BA37F4E9258866C916 /* Debug */, - C673338971889F2EB71933D042DA2427 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 8EA0BD29D9EB61CC2AE1442865956C61 /* Build configuration list for PBXNativeTarget "React-RCTAnimation" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - E2727E501B44CE50D063FEE24DFB0773 /* Debug */, - D76346098BDE78F70F6CBC09229ECAB7 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 8F20E180006E5DE2396685A5F76AFEC0 /* Build configuration list for PBXNativeTarget "libwebp" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 254304EEE07C5D62FE17FFEB234C50B0 /* Debug */, - EB9588D91ABEBD87CAB9F1AA04906E39 /* Release */, + 4E226DA299DFF04F575B2D296E871211 /* Debug */, + 723A078D181FB6BBF2D9B6165F2BF675 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42167,11 +43095,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 944B3C79D57E2F6A812F64077F103ED0 /* Build configuration list for PBXNativeTarget "React-RCTVibration" */ = { + 96381B3900394EFE2BDAAAEA7033B397 /* Build configuration list for PBXNativeTarget "React-cxxreact" */ = { isa = XCConfigurationList; buildConfigurations = ( - DE3BA1AF3ECBA1B64A5817C51211B435 /* Debug */, - 1ABBEEBCDA39CD77983BF019CC9A4B52 /* Release */, + 969FBF0DF939F0D1B061AFF26BA7FDBA /* Debug */, + B5076D6C028AA0DA6E6960A157D4674E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 978D94305E472E7DC1EA220E5F9EC3AD /* Build configuration list for PBXNativeTarget "React-RCTBlob" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + B91A208A52FE94302116072EF37FE04E /* Debug */, + FCDE3A2AB0B7242F2D667CB1C686DE2F /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42185,29 +43122,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 9BC97C68D22AA24AB9502BF342AA3322 /* Build configuration list for PBXNativeTarget "React-jsi" */ = { + 9C2CA449B96F068665DD62E672E64BED /* Build configuration list for PBXNativeTarget "RCTTypeSafety" */ = { isa = XCConfigurationList; buildConfigurations = ( - 185B9FC69D4F8657C2DBA8F9145A8727 /* Debug */, - B310AABC2A05F7578C78F91FD777DE89 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 9C3DD76B6642B03F5EA5E1D99CD58CFF /* Build configuration list for PBXAggregateTarget "React-RCTActionSheet" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 0A70500FA73800B079513CD658239F30 /* Debug */, - 48C75453B552D5A35EFCDF12F3BD13C9 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 9E0F00133940B3857278BDB5D920C97E /* Build configuration list for PBXNativeTarget "DoubleConversion" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 648419D39A6BF457AC6B5976C65BFD9A /* Debug */, - 7D1D489A59A131221A2DFBD1AE639FDF /* Release */, + 447C4B03A82A53ECAB60F0C64D38D1EF /* Debug */, + 6C1F05846AB751F13D5570C52CD141D0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42230,6 +43149,24 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + A0BBF36949B72ED82119D118CF74BFFE /* Build configuration list for PBXAggregateTarget "UMFileSystemInterface" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 5525D3CCFD88208DDB4EE909DB568F46 /* Debug */, + 917FA8A337F7AE5AA7F2C7E72B5EC3B7 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + A0FE4F9D80588E3F4E78B04C6AC11A6C /* Build configuration list for PBXNativeTarget "RNFBApp" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 375F9858DB0F30528DD94F5CBF9F7497 /* Debug */, + B36F0DF38C1AE8BCEC7B97F346BB639B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; A1DBE54B684070308484C89F14C82B8D /* Build configuration list for PBXNativeTarget "EXKeepAwake" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -42239,6 +43176,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + A1E19287E281B95FD3C66F2D35581831 /* Build configuration list for PBXAggregateTarget "React-RCTActionSheet" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 5BC025368D39779C584C5D371E177434 /* Debug */, + D56B4530EED9A2C237B9E71330E63B44 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; A2C43825E2188DA7921550E300BE749F /* Build configuration list for PBXNativeTarget "RNBootSplash" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -42248,6 +43194,24 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + A2C87C07AF568B319F6753B5DE9C2B83 /* Build configuration list for PBXNativeTarget "glog" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 5553503DC436EDF232694A283C1C19E4 /* Debug */, + AAA620D360F15E19D529F307CCEF65AF /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + A32C9B46A5C80174852E883C4E0D9727 /* Build configuration list for PBXNativeTarget "BugsnagReactNative" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 070E18AD68C8ABDB1AA39FE9D3270DB9 /* Debug */, + 8C029D4C10A8BFBC3C31D56237F7A017 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; A39F08165CE91502893CD8128E9B7B5D /* Build configuration list for PBXNativeTarget "Flipper" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -42257,38 +43221,29 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A3ABE524C9FD671CD9689C303E8C4C3E /* Build configuration list for PBXNativeTarget "UMCore" */ = { + A6BBC7A61E7747180BD7A53B1047BBD2 /* Build configuration list for PBXAggregateTarget "React" */ = { isa = XCConfigurationList; buildConfigurations = ( - 57E162D68F47CEE13D3E3AE99BD60004 /* Debug */, - 70F73A77C7D33E6A052F24C3FF13E3FF /* Release */, + CEFDFEDB6B978C3AB39B88A6C84C5090 /* Debug */, + 2E668FD82924ADD261A80560DC113419 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A3E304AF17D5584F80EF748B65FEB4C5 /* Build configuration list for PBXNativeTarget "RNFBApp" */ = { + A8727C6D45B3C78272F861736A333F16 /* Build configuration list for PBXNativeTarget "nanopb" */ = { isa = XCConfigurationList; buildConfigurations = ( - 3D2BE2A35ED4B5A030EAA61C512FBFD7 /* Debug */, - 5D101847D80F37D494DC9496B775BE76 /* Release */, + 6732D46B735905B3485384DFDB30FC70 /* Debug */, + 5FFD4C9ED9B3D24971238570771D92E8 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A5083F2F1ADABBED3934775654D2D99B /* Build configuration list for PBXNativeTarget "Flipper-Glog" */ = { + A9418F3356E9D639DE3B582A62A0F26E /* Build configuration list for PBXNativeTarget "RCT-Folly" */ = { isa = XCConfigurationList; buildConfigurations = ( - 69A8F13E898F64E85A024D0C15DFEF97 /* Debug */, - 636209000CDECD6EA1E1C88AB74E15FD /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - A60E62E0682BD4AC0C9C58D38A841DAB /* Build configuration list for PBXAggregateTarget "React-runtimeexecutor" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 408CD7268E939ACF1D643DBD5BCC7E2D /* Debug */, - D6852E88848BC51AF754F7B39DA2E80A /* Release */, + 8979F518F31EE6B9AA3C5B6BD3A7C7DB /* Debug */, + E8629500EC18665C29B3B6EFA4500B01 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42311,20 +43266,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - AF1463D36AD05140B01406F072152BB0 /* Build configuration list for PBXNativeTarget "Flipper-Folly" */ = { + B061CB847A6B17B4A6853188C57B9A28 /* Build configuration list for PBXNativeTarget "PromisesObjC" */ = { isa = XCConfigurationList; buildConfigurations = ( - CD685C3A8129DFCFD9CAA399058D3A88 /* Debug */, - CEC29E47FE0D0071F1FA1A823177FCC5 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - B18D5331D15399C11784D86C3A112784 /* Build configuration list for PBXNativeTarget "FirebaseInstallations" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 9DA50DB1AE69EF3B1C60E162E73094CD /* Debug */, - A0DCD61D5C02F77418C8DC69642F4F0B /* Release */, + 314A5528E4BC35B5101488754B05EEFE /* Debug */, + F0B79C694C6D0B6FE54C426A49E4E986 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42347,11 +43293,29 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B87EBF8041FBBEF19BC45A5765C73118 /* Build configuration list for PBXNativeTarget "RCTTypeSafety" */ = { + B6C6F9EC13A16CC1312D410ADE27FA7E /* Build configuration list for PBXAggregateTarget "RCTRequired" */ = { isa = XCConfigurationList; buildConfigurations = ( - EB15F812814F18ECF8E2972D13577938 /* Debug */, - 016D5453D2093C9403BD8613355F4827 /* Release */, + 06E3FC3781AD0BB2F27B3E710583A37E /* Debug */, + B8D4BAE1AC114A2A683B1E09C904EA19 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + B71DBA55DEBBF3EB313EF61465FA7876 /* Build configuration list for PBXNativeTarget "React-Core-AccessibilityResources" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + F3EE27B0C756A8266CCDF2B12606FA17 /* Debug */, + 22A12E3F2FF9A7F5DCFACE3E8F47FEE1 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + B8C714D33B1F0EF4A5C21EBDD1A9D0C6 /* Build configuration list for PBXNativeTarget "SDWebImage" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + E77561557F596C05B0F94CFE3368AC62 /* Debug */, + 81612E878CEC159EB76D047BBDE71C36 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42365,6 +43329,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + BC7F8E2AA591C192F73A2754053754BD /* Build configuration list for PBXNativeTarget "Flipper-Folly" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 600D94FEDDAEF18C363F863141AF9093 /* Debug */, + ABDC481EA6A1DEF125B909DB40586F0C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; BF535641E00BECC6FFAF53CFB25A8755 /* Build configuration list for PBXNativeTarget "CocoaAsyncSocket" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -42383,20 +43356,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - C3D0426236F60AD52E4A47D29C1748B9 /* Build configuration list for PBXNativeTarget "YogaKit" */ = { + C5BB32007235C20C0E8E3DFE7283D558 /* Build configuration list for PBXNativeTarget "React-perflogger" */ = { isa = XCConfigurationList; buildConfigurations = ( - 42F9B891FE38F3BD0BC48C045377A189 /* Debug */, - F051B71F2A8B8AA6C7A5D3E1123D90F1 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - C6E771129A3EB2B9828941707D3AE966 /* Build configuration list for PBXNativeTarget "nanopb" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - A39EC9EC3F36F702276EF2B9E5FB41E7 /* Debug */, - CA842ACA527C601FDFD81B03DCE7D6FB /* Release */, + 0B968FA00CC1DA576D4DAF254683D949 /* Debug */, + B5881BE4602BEEA7398D3D40480341E0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42428,6 +43392,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + CE8EBC2CD2134951C91930F7FA1AC270 /* Build configuration list for PBXAggregateTarget "boost-for-react-native" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + B894EF837C738B2DFBBEC5E741FAB7F3 /* Debug */, + 2C3A636D7C929015A1366062D3AD9285 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; D024F943D0F41D34A844CEE64C1CA7AD /* Build configuration list for PBXNativeTarget "RNScreens" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -42446,15 +43419,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D0BED235A7B3AFCC1E675591479D6B1E /* Build configuration list for PBXNativeTarget "ReactCommon" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - B859A2A2746A49CDF9C47610B623240A /* Debug */, - A99A07EEC16EB05310ED2A2C489312A4 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; D168C6F3A89B3396BB442CA186F6BEF5 /* Build configuration list for PBXNativeTarget "RNDeviceInfo" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -42464,38 +43428,47 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D553DC1A3A8E9EEAEDB339E9378E0D62 /* Build configuration list for PBXNativeTarget "Yoga" */ = { + D176E5CDDB6A63A80064971DFF78D106 /* Build configuration list for PBXNativeTarget "Pods-defaults-ShareRocketChatRN" */ = { isa = XCConfigurationList; buildConfigurations = ( - D7DC912AE026D3270F4BA97046D39C66 /* Debug */, - D653FFBA3A3C3055C24337E996AD823A /* Release */, + 0B528B9C90F04CFB36BA4DC4EB2A49C4 /* Debug */, + 3BC856B00297D2FD4A98F2CC3E19D240 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D6C90CEED8D38913ACB1392271AF11B8 /* Build configuration list for PBXNativeTarget "React-Core-AccessibilityResources" */ = { + D1CF8345119FD80695F191C0AC44D161 /* Build configuration list for PBXNativeTarget "Flipper-Glog" */ = { isa = XCConfigurationList; buildConfigurations = ( - 72D32D9E4CBC5E096697623EE1E4657A /* Debug */, - 74201EABF3468ACBE18ADF2D96E90186 /* Release */, + 2841D76E9BA26627EB9DB4008398643A /* Debug */, + EF7125D5B7A9E0805D68C26DD9E42A35 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D93C52C30BBDDF1F15C67FF8C7138E01 /* Build configuration list for PBXAggregateTarget "FBLazyVector" */ = { + D3635C43092350A9658F45219FDD06BB /* Build configuration list for PBXNativeTarget "TOCropViewController" */ = { isa = XCConfigurationList; buildConfigurations = ( - D75E31B8597BE65E4EF646F04E8CFCE7 /* Debug */, - 4743C74062E132C94D1D95C8917262B8 /* Release */, + 11ECF29815B46C1489441995945FCB8B /* Debug */, + 1F0B8F748E208E6325E7B6C2065E3587 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D997A2C85675EE932296A5CE6B5DEA65 /* Build configuration list for PBXNativeTarget "SDWebImage" */ = { + D452D506E296BE33521B74FE2AA33AE0 /* Build configuration list for PBXNativeTarget "React-RCTLinking" */ = { isa = XCConfigurationList; buildConfigurations = ( - 894D5F872AF99F9D5916AEF9B3A188CD /* Debug */, - A0649FB69846730B34B81A81DFEDD9BD /* Release */, + F9FA7A73B41D25987F6E304AB230A289 /* Debug */, + 2D24641D233502019004F2446CBCCE87 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + D7BAC07A83F765F4B109C68135DE7246 /* Build configuration list for PBXNativeTarget "React-jsi" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 3990BA4C89DB70F52463872B34A96808 /* Debug */, + EFA4F633CF780D6126FF99CF870855EE /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42527,29 +43500,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - DEEA8D615B52EBC9E58C46FE07EC713A /* Build configuration list for PBXNativeTarget "Flipper-RSocket" */ = { + DEC693597FD4C7125596D0B86C299A0B /* Build configuration list for PBXNativeTarget "React-RCTSettings" */ = { isa = XCConfigurationList; buildConfigurations = ( - C312F04CE51A6BB94601761B6F252BBF /* Debug */, - 422BC3848A7A439E85B06B1F4E61A423 /* Release */, + 651BF003D59600D10F4B0704DB49BAD6 /* Debug */, + 5063E44E6EAC2B0DE076A3046365F203 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - DF601D777CBA420C18E34A42FDF73CFF /* Build configuration list for PBXNativeTarget "MMKVCore" */ = { + DFE894F34C613273A95DB869737428CD /* Build configuration list for PBXNativeTarget "FirebaseCrashlytics" */ = { isa = XCConfigurationList; buildConfigurations = ( - B568BBC1490591B7E9AC7F861BC8C94F /* Debug */, - 341C2A26F6B2BDEC0BBB70B5547B6197 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - E135E7DCA7F6DDAD113154CD5ED19C2A /* Build configuration list for PBXNativeTarget "UMPermissionsInterface" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 1AB12761B47A2AF6CB3E7AA3A69D1E21 /* Debug */, - CBFDCE724D816BD778FA4242E5C004DE /* Release */, + 7C2FEDE138DB34C96794A6D64D82A56E /* Debug */, + 4A205BA346EFFD8B46CF5BDCA7AD0D00 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42563,11 +43527,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E60C4AC4A14ED2937FD57AC1F4FC8B76 /* Build configuration list for PBXNativeTarget "SDWebImageWebPCoder" */ = { + E5A33DD391E77918EDE64753B57084F4 /* Build configuration list for PBXNativeTarget "FirebaseInstallations" */ = { isa = XCConfigurationList; buildConfigurations = ( - CB06D6BAF94F8E3A7161CBE2765F8F57 /* Debug */, - AD4CB8AC0BA45F10D4981BF2B82F9B89 /* Release */, + 048149BB3053D1441ECCDCA684C5DD8B /* Debug */, + 844A0734DAAEE23B7C9AABDF7199D719 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + E62AE5E60B73EFCCE2CF8FB52F16D64D /* Build configuration list for PBXNativeTarget "ReactCommon" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 577050D7FC9A99E17F5319793586264B /* Debug */, + 8C041440129A4F3B898C794341EE4653 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42581,6 +43554,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + E90E1F1D1CA0986675C407B246AA0762 /* Build configuration list for PBXNativeTarget "UMPermissionsInterface" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 5C9DCA5986F165F85B9C73EEE9393D01 /* Debug */, + 125D363900A81EC1CFE173B625BC9A2A /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; E9270BC373B2DAD6CC72B79271AB3E6B /* Build configuration list for PBXNativeTarget "Flipper-PeerTalk" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -42590,33 +43572,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - EB81B24EC726FA945FF255FEA58BF4AD /* Build configuration list for PBXNativeTarget "PromisesObjC" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 425BC86BFC2BF0EEEB2F6A31E7D76DF2 /* Debug */, - 17BFBD44B41577B8B7CDE7BB699FE48A /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - ED1A4FADA1E50EFC76CB2B365A8C66C6 /* Build configuration list for PBXNativeTarget "React-RCTSettings" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 0E1CC6383B99A97F7F97CFCA482CBCB3 /* Debug */, - 5689782315FAA93197E8CD2E31DFF8E5 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - EFEC8CFB28FF243D0A236998E30E04F5 /* Build configuration list for PBXNativeTarget "React-RCTBlob" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 9999BACF4537C0712363343D3E4CDF92 /* Debug */, - 5E6E9C8CECA5BC306CEDB74B7C4709E6 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; F111719BAE4C0547C9E515A490C75B54 /* Build configuration list for PBXNativeTarget "RNFBAnalytics" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -42626,11 +43581,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F42D44891B33491F817AA8F0B5BEAF80 /* Build configuration list for PBXNativeTarget "React-Core" */ = { + F19D740CFF78BFA64B9E4484CA646557 /* Build configuration list for PBXNativeTarget "MMKVCore" */ = { isa = XCConfigurationList; buildConfigurations = ( - 3D7ADD36B0BF02992432DCB87196E3AB /* Debug */, - 332A448B0BF2E58E6D2CD5D8340B6795 /* Release */, + 89BDA7237595C197C7B5FE79F3C37755 /* Debug */, + 49AF3D2AC5032C0B463A1DAA676A6871 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + F458FE1B19CFE8F0B657E816011EB44C /* Build configuration list for PBXNativeTarget "GoogleDataTransportCCTSupport" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C9C5B724A639418EEAAE09470090DDE9 /* Debug */, + 6B4C52F1AFE0E00483D4A30B4A7E02CA /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42644,15 +43608,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F50BB148E2A9CCA7D3FF46F33F0F8AC5 /* Build configuration list for PBXNativeTarget "React-RCTImage" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - BAD72C5383C18D3090079BBDC37807F5 /* Debug */, - 771A73041DC3584CCB5A200AA908E87A /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; F617CE4545CE4E4DED6DEC4F2D3F8F38 /* Build configuration list for PBXAggregateTarget "JitsiMeetSDK" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -42662,20 +43617,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F8F3AE9F70811C8960D0E88C72765C96 /* Build configuration list for PBXNativeTarget "Pods-NotificationService" */ = { + F81785C975EC4B13D41AD12DB0FD45F4 /* Build configuration list for PBXNativeTarget "FBReactNativeSpec" */ = { isa = XCConfigurationList; buildConfigurations = ( - EDB4F4FD8CAA27B09680BC8447768A26 /* Debug */, - 2EB9236200699761C9079A3682CDFB07 /* Release */, + C98D0B1FB6305C765F0557145EFCA09C /* Debug */, + 8EF5F1521A207A635C0BCCDEB7F9789B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F98CF8D71C332AD8EB636CE7476EDC0D /* Build configuration list for PBXAggregateTarget "hermes-engine" */ = { + F8CFD42AE7B030242732AB15AE9ECBEE /* Build configuration list for PBXNativeTarget "libevent" */ = { isa = XCConfigurationList; buildConfigurations = ( - 19F60F12AE9AD4FA4C507D12A93F9720 /* Debug */, - CEEEE7EE5A0FBA44E5FCA3E07A6A412B /* Release */, + 18455F94807839346D486C6F99F75DD5 /* Debug */, + A270FD9F164FE1DF4DE8F4BB7518F4A0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42689,11 +43644,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - FC9DE96E59948C07ACCD9736300F2B4F /* Build configuration list for PBXAggregateTarget "FirebaseAnalytics" */ = { + FB20FE6C26236192FEAE9C7E4F120BFA /* Build configuration list for PBXNativeTarget "GoogleDataTransport" */ = { isa = XCConfigurationList; buildConfigurations = ( - 1DF7AE5883A8E3D93F95A144D56EFC98 /* Debug */, - FC000A483F9AB1FCE9A6371D4C507C7A /* Release */, + 3A61250C5602A1806CCCD75ADAE8B959 /* Debug */, + 8DCB063F34ECFDADD030CDFE33C61A50 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FC5AD24E36A3AD83A522C0813F4CE405 /* Build configuration list for PBXNativeTarget "TOCropViewController-TOCropViewControllerBundle" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D5E5100E75BF415B7B2B1C62137C5649 /* Debug */, + 3BACDA59E9DDF97C8F1577E699B106E9 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; diff --git a/ios/Pods/Target Support Files/BugsnagReactNative/BugsnagReactNative.debug.xcconfig b/ios/Pods/Target Support Files/BugsnagReactNative/BugsnagReactNative.debug.xcconfig index 287177bbb..eefc9d1a1 100644 --- a/ios/Pods/Target Support Files/BugsnagReactNative/BugsnagReactNative.debug.xcconfig +++ b/ios/Pods/Target Support Files/BugsnagReactNative/BugsnagReactNative.debug.xcconfig @@ -3,12 +3,12 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/hermes-engine/destroot/Library/Frameworks/iphoneos" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/BugsnagReactNative" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/RCT-Folly" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/BugsnagReactNative" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/RCT-Folly" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../node_modules/bugsnag-react-native +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../node_modules/@bugsnag/react-native PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} SKIP_INSTALL = YES diff --git a/ios/Pods/Target Support Files/BugsnagReactNative/BugsnagReactNative.release.xcconfig b/ios/Pods/Target Support Files/BugsnagReactNative/BugsnagReactNative.release.xcconfig index 287177bbb..eefc9d1a1 100644 --- a/ios/Pods/Target Support Files/BugsnagReactNative/BugsnagReactNative.release.xcconfig +++ b/ios/Pods/Target Support Files/BugsnagReactNative/BugsnagReactNative.release.xcconfig @@ -3,12 +3,12 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/hermes-engine/destroot/Library/Frameworks/iphoneos" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/BugsnagReactNative" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/RCT-Folly" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/BugsnagReactNative" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/RCT-Folly" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../node_modules/bugsnag-react-native +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../node_modules/@bugsnag/react-native PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} SKIP_INSTALL = YES diff --git a/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService-acknowledgements.markdown b/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService-acknowledgements.markdown deleted file mode 100644 index 77875a3f6..000000000 --- a/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService-acknowledgements.markdown +++ /dev/null @@ -1,4809 +0,0 @@ -# Acknowledgements -This application makes use of the following third party libraries: - -## BugsnagReactNative - -Copyright (c) 2016 Bugsnag, Inc. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - -## CocoaAsyncSocket - -Public Domain License - -The CocoaAsyncSocket project is in the public domain. - -The original TCP version (AsyncSocket) was created by Dustin Voss in January 2003. -Updated and maintained by Deusty LLC and the Apple development community. - - -## DoubleConversion - -Copyright 2006-2011, the V8 project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -## Firebase - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - -## FirebaseAnalytics - -Copyright 2020 Google - -## FirebaseCore - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - -## FirebaseCoreDiagnostics - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - -## FirebaseCrashlytics - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -================================================================================ - -The following copyright from Hewlett-Packard Development Company, L.P. -applies to the dwarf.h file in third_party/libunwind - - libunwind - a platform-independent unwind library - Copyright (c) 2003-2005 Hewlett-Packard Development Company, L.P. - Contributed by David Mosberger-Tang - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - -## FirebaseInstallations - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - -## Flipper - -MIT License - -Copyright (c) Facebook, Inc. and its affiliates. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## Flipper-DoubleConversion - -Copyright 2006-2011, the V8 project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -## Flipper-Folly - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - -Files in folly/external/farmhash licensed as follows - - Copyright (c) 2014 Google, Inc. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. - - -## Flipper-Glog - -Copyright (c) 2008, Google Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -A function gettimeofday in utilities.cc is based on - -http://www.google.com/codesearch/p?hl=en#dR3YEbitojA/COPYING&q=GetSystemTimeAsFileTime%20license:bsd - -The license of this code is: - -Copyright (c) 2003-2008, Jouni Malinen and contributors -All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -3. Neither the name(s) of the above-listed copyright holder(s) nor the - names of its contributors may be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -## Flipper-PeerTalk - -Copyright (c) 2012 Rasmus Andersson - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -## Flipper-RSocket - -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -## FlipperKit - -MIT License - -Copyright (c) Facebook, Inc. and its affiliates. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## GoogleAppMeasurement - -Copyright 2020 Google - -## GoogleDataTransport - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - -## GoogleDataTransportCCTSupport - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - -## GoogleUtilities - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -================================================================================ - -The following copyright from Landon J. Fuller applies to the isAppEncrypted -function in Environment/third_party/GULAppEnvironmentUtil.m. - -Copyright (c) 2017 Landon J. Fuller -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Comment from -iPhone Dev Wiki -Crack Prevention: App Store binaries are signed by both their developer -and Apple. This encrypts the binary so that decryption keys are needed in order -to make the binary readable. When iOS executes the binary, the decryption keys -are used to decrypt the binary into a readable state where it is then loaded -into memory and executed. iOS can tell the encryption status of a binary via the -cryptid structure member of LC_ENCRYPTION_INFO MachO load command. If cryptid is -a non-zero value then the binary is encrypted. - -'Cracking' works by letting the kernel decrypt the binary then siphoning the -decrypted data into a new binary file, resigning, and repackaging. This will -only work on jailbroken devices as codesignature validation has been removed. -Resigning takes place because while the codesignature doesn't have to be valid -thanks to the jailbreak, it does have to be in place unless you have AppSync or -similar to disable codesignature checks. - -More information at Landon -Fuller's blog - - -## JitsiMeetSDK - -Copyright 2018-present 8x8, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. - - -## MMKV - -Tencent is pleased to support the open source community by making MMKV available. -Copyright (C) 2018 THL A29 Limited, a Tencent company. All rights reserved. -If you have downloaded a copy of the MMKV binary from Tencent, please note that the MMKV binary is licensed under the BSD 3-Clause License. -If you have downloaded a copy of the MMKV source code from Tencent, please note that MMKV source code is licensed under the BSD 3-Clause License, except for the third-party components listed below which are subject to different license terms. Your integration of MMKV into your own projects may require compliance with the BSD 3-Clause License, as well as the other licenses applicable to the third-party components included within MMKV. -A copy of the BSD 3-Clause License is included in this file. - -Other dependencies and licenses: - -Open Source Software Licensed Under the OpenSSL License: ----------------------------------------------------------------------------------------- -1. OpenSSL 1.1.0i -Copyright (c) 1998-2018 The OpenSSL Project. -All rights reserved. -Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) -All rights reserved. - - -Terms of the OpenSSL License: ---------------------------------------------------- -LICENSE ISSUES: --------------------------------------------------------------------- - -The OpenSSL toolkit stays under a dual license, i.e. both the conditions of the OpenSSL License and the original SSLeay license apply to the toolkit. -See below for the actual license texts. - -OpenSSL License: --------------------------------------------------------------------- -Copyright (c) 1998-2018 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - -3. All advertising materials mentioning features or use of this software must display the following acknowledgment: -"This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact openssl-core@openssl.org. - -5. Products derived from this software may not be called "OpenSSL" nor may "OpenSSL" appear in their names without prior written permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following acknowledgment: "This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================== -* This product includes cryptographic software written by Eric Young (eay@cryptsoft.com). This product includes software written by Tim Hudson (tjh@cryptsoft.com). - - -Original SSLeay License: --------------------------------------------------------------------- -Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) -All rights reserved. - -This package is an SSL implementation written by Eric Young (eay@cryptsoft.com). -The implementation was written so as to conform with Netscapes SSL. - -This library is free for commercial and non-commercial use as long as the following conditions are aheared to. The following conditions apply to all code found in this distribution, be it the RC4, RSA, lhash, DES, etc., code; not just the SSL code. The SSL documentation included with this distribution is covered by the same copyright terms except that the holder is Tim Hudson (tjh@cryptsoft.com). - -Copyright remains Eric Young's, and as such any Copyright notices in the code are not to be removed. If this package is used in a product, Eric Young should be given attribution as the author of the parts of the library used. This can be in the form of a textual message at program startup or in documentation (online or textual) provided with the package. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: -1. Redistributions of source code must retain the copyright notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -3. All advertising materials mentioning features or use of this software must display the following acknowledgement:" This product includes cryptographic software written by Eric Young (eay@cryptsoft.com)" The word 'cryptographic' can be left out if the rouines from the library being used are not cryptographic related :-). -4. If you include any Windows specific code (or a derivative thereof) from the apps directory (application code) you must include an acknowledgement: "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - -THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -The licence and distribution terms for any publically available version or derivative of this code cannot be changed. i.e. this code cannot simply be copied and put under another distribution licence [including the GNU Public Licence.] - - - -Open Source Software Licensed Under the Apache License, Version 2.0: -The below software in this distribution may have been modified by THL A29 Limited (“Tencent Modifications”). All Tencent Modifications are Copyright (C) 2018 THL A29 Limited. ----------------------------------------------------------------------------------------- -1. MultiprocessSharedPreferences v1.0 -Copyright (C) 2014 seven456@gmail.com - - -Terms of the Apache License, Version 2.0: --------------------------------------------------------------------- -Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - -“License” shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. - -“Licensor” shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. - -“Legal Entity” shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, “control” means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. - -“You” (or “Your”) shall mean an individual or Legal Entity exercising permissions granted by this License. - -“Source” form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. - -“Object” form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. - -“Work” shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). - -“Derivative Works” shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. - -“Contribution” shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, “submitted” means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as “Not a Contribution.” - -“Contributor” shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: - -a) You must give any other recipients of the Work or Derivative Works a copy of this License; and - -b) You must cause any modified files to carry prominent notices stating that You changed the files; and - -c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and - -d) If the Work includes a “NOTICE” text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. - -You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. -9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work -To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. - -Copyright [yyyy] [name of copyright owner] - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at -http://www.apache.org/licenses/LICENSE-2.0 -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. - - - -Open Source Software Licensed Under the zlib License: -The below software in this distribution may have been modified by THL A29 Limited (“Tencent Modifications”). All Tencent Modifications are Copyright (C) 2018 THL A29 Limited. ----------------------------------------------------------------------------------------- -1. zlib v1.2.11 -Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler - -Terms of the zlib License: --------------------------------------------------------------------- - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. - - - -Terms of the BSD 3-Clause License: --------------------------------------------------------------------- - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. -Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -Neither the name of [copyright holder] nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -## MMKVCore - -Tencent is pleased to support the open source community by making MMKV available. -Copyright (C) 2018 THL A29 Limited, a Tencent company. All rights reserved. -If you have downloaded a copy of the MMKV binary from Tencent, please note that the MMKV binary is licensed under the BSD 3-Clause License. -If you have downloaded a copy of the MMKV source code from Tencent, please note that MMKV source code is licensed under the BSD 3-Clause License, except for the third-party components listed below which are subject to different license terms. Your integration of MMKV into your own projects may require compliance with the BSD 3-Clause License, as well as the other licenses applicable to the third-party components included within MMKV. -A copy of the BSD 3-Clause License is included in this file. - -Other dependencies and licenses: - -Open Source Software Licensed Under the OpenSSL License: ----------------------------------------------------------------------------------------- -1. OpenSSL 1.1.0i -Copyright (c) 1998-2018 The OpenSSL Project. -All rights reserved. -Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) -All rights reserved. - - -Terms of the OpenSSL License: ---------------------------------------------------- -LICENSE ISSUES: --------------------------------------------------------------------- - -The OpenSSL toolkit stays under a dual license, i.e. both the conditions of the OpenSSL License and the original SSLeay license apply to the toolkit. -See below for the actual license texts. - -OpenSSL License: --------------------------------------------------------------------- -Copyright (c) 1998-2018 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - -3. All advertising materials mentioning features or use of this software must display the following acknowledgment: -"This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact openssl-core@openssl.org. - -5. Products derived from this software may not be called "OpenSSL" nor may "OpenSSL" appear in their names without prior written permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following acknowledgment: "This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================== -* This product includes cryptographic software written by Eric Young (eay@cryptsoft.com). This product includes software written by Tim Hudson (tjh@cryptsoft.com). - - -Original SSLeay License: --------------------------------------------------------------------- -Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) -All rights reserved. - -This package is an SSL implementation written by Eric Young (eay@cryptsoft.com). -The implementation was written so as to conform with Netscapes SSL. - -This library is free for commercial and non-commercial use as long as the following conditions are aheared to. The following conditions apply to all code found in this distribution, be it the RC4, RSA, lhash, DES, etc., code; not just the SSL code. The SSL documentation included with this distribution is covered by the same copyright terms except that the holder is Tim Hudson (tjh@cryptsoft.com). - -Copyright remains Eric Young's, and as such any Copyright notices in the code are not to be removed. If this package is used in a product, Eric Young should be given attribution as the author of the parts of the library used. This can be in the form of a textual message at program startup or in documentation (online or textual) provided with the package. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: -1. Redistributions of source code must retain the copyright notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -3. All advertising materials mentioning features or use of this software must display the following acknowledgement:" This product includes cryptographic software written by Eric Young (eay@cryptsoft.com)" The word 'cryptographic' can be left out if the rouines from the library being used are not cryptographic related :-). -4. If you include any Windows specific code (or a derivative thereof) from the apps directory (application code) you must include an acknowledgement: "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - -THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -The licence and distribution terms for any publically available version or derivative of this code cannot be changed. i.e. this code cannot simply be copied and put under another distribution licence [including the GNU Public Licence.] - - - -Open Source Software Licensed Under the Apache License, Version 2.0: -The below software in this distribution may have been modified by THL A29 Limited (“Tencent Modifications”). All Tencent Modifications are Copyright (C) 2018 THL A29 Limited. ----------------------------------------------------------------------------------------- -1. MultiprocessSharedPreferences v1.0 -Copyright (C) 2014 seven456@gmail.com - - -Terms of the Apache License, Version 2.0: --------------------------------------------------------------------- -Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - -“License” shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. - -“Licensor” shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. - -“Legal Entity” shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, “control” means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. - -“You” (or “Your”) shall mean an individual or Legal Entity exercising permissions granted by this License. - -“Source” form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. - -“Object” form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. - -“Work” shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). - -“Derivative Works” shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. - -“Contribution” shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, “submitted” means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as “Not a Contribution.” - -“Contributor” shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: - -a) You must give any other recipients of the Work or Derivative Works a copy of this License; and - -b) You must cause any modified files to carry prominent notices stating that You changed the files; and - -c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and - -d) If the Work includes a “NOTICE” text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. - -You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. -9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work -To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. - -Copyright [yyyy] [name of copyright owner] - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at -http://www.apache.org/licenses/LICENSE-2.0 -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. - - - -Open Source Software Licensed Under the zlib License: -The below software in this distribution may have been modified by THL A29 Limited (“Tencent Modifications”). All Tencent Modifications are Copyright (C) 2018 THL A29 Limited. ----------------------------------------------------------------------------------------- -1. zlib v1.2.11 -Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler - -Terms of the zlib License: --------------------------------------------------------------------- - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. - - - -Terms of the BSD 3-Clause License: --------------------------------------------------------------------- - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. -Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -Neither the name of [copyright holder] nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -## OpenSSL-Universal - - - LICENSE ISSUES - ============== - - The OpenSSL toolkit stays under a dual license, i.e. both the conditions of - the OpenSSL License and the original SSLeay license apply to the toolkit. - See below for the actual license texts. Actually both licenses are BSD-style - Open Source licenses. In case of any license issues related to OpenSSL - please contact openssl-core@openssl.org. - - OpenSSL License - --------------- - -/* ==================================================================== - * Copyright (c) 1998-2008 The OpenSSL Project. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in - * the documentation and/or other materials provided with the - * distribution. - * - * 3. All advertising materials mentioning features or use of this - * software must display the following acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - * - * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - * endorse or promote products derived from this software without - * prior written permission. For written permission, please contact - * openssl-core@openssl.org. - * - * 5. Products derived from this software may not be called "OpenSSL" - * nor may "OpenSSL" appear in their names without prior written - * permission of the OpenSSL Project. - * - * 6. Redistributions of any form whatsoever must retain the following - * acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit (http://www.openssl.org/)" - * - * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY - * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR - * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - * OF THE POSSIBILITY OF SUCH DAMAGE. - * ==================================================================== - * - * This product includes cryptographic software written by Eric Young - * (eay@cryptsoft.com). This product includes software written by Tim - * Hudson (tjh@cryptsoft.com). - * - */ - - Original SSLeay License - ----------------------- - -/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) - * All rights reserved. - * - * This package is an SSL implementation written - * by Eric Young (eay@cryptsoft.com). - * The implementation was written so as to conform with Netscapes SSL. - * - * This library is free for commercial and non-commercial use as long as - * the following conditions are aheared to. The following conditions - * apply to all code found in this distribution, be it the RC4, RSA, - * lhash, DES, etc., code; not just the SSL code. The SSL documentation - * included with this distribution is covered by the same copyright terms - * except that the holder is Tim Hudson (tjh@cryptsoft.com). - * - * Copyright remains Eric Young's, and as such any Copyright notices in - * the code are not to be removed. - * If this package is used in a product, Eric Young should be given attribution - * as the author of the parts of the library used. - * This can be in the form of a textual message at program startup or - * in documentation (online or textual) provided with the package. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * "This product includes cryptographic software written by - * Eric Young (eay@cryptsoft.com)" - * The word 'cryptographic' can be left out if the rouines from the library - * being used are not cryptographic related :-). - * 4. If you include any Windows specific code (or a derivative thereof) from - * the apps directory (application code) you must include an acknowledgement: - * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - * - * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * The licence and distribution terms for any publically available version or - * derivative of this code cannot be changed. i.e. this code cannot simply be - * copied and put under another distribution licence - * [including the GNU Public Licence.] - */ - - - -## PromisesObjC - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - -## RCT-Folly - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - -Files in folly/external/farmhash licensed as follows - - Copyright (c) 2014 Google, Inc. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. - - -## RNBootSplash - -MIT License - -Copyright (c) 2020 Mathieu Acthernoene - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## RNCAsyncStorage - -MIT License - -Copyright (c) 2015-present, Facebook, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -## RNCPicker - -MIT License - -Copyright (c) 2015-present, Facebook, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## RNConfigReader - -MIT License - -Copyright (c) 2019 Chanaka Athurugiriya - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## RNDateTimePicker - -MIT License - -Copyright (c) 2019 React Native Community - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## RNDeviceInfo - -The MIT License (MIT) - -Copyright (c) 2015 Rebecca Hughes - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## RNFBAnalytics - -Apache-2.0 License ------------------- - -Copyright (c) 2016-present Invertase Limited & Contributors - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this library except in compliance with the License. - -You may obtain a copy of the Apache-2.0 License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. - - -Creative Commons Attribution 3.0 License ----------------------------------------- - -Copyright (c) 2016-present Invertase Limited & Contributors - -Documentation and other instructional materials provided for this project -(including on a separate documentation repository or it's documentation website) are -licensed under the Creative Commons Attribution 3.0 License. Code samples/blocks -contained therein are licensed under the Apache License, Version 2.0 (the "License"), as above. - -You may obtain a copy of the Creative Commons Attribution 3.0 License at - - https://creativecommons.org/licenses/by/3.0/ - - -## RNFBApp - -Apache-2.0 License ------------------- - -Copyright (c) 2016-present Invertase Limited - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this library except in compliance with the License. - -You may obtain a copy of the Apache-2.0 License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. - - -Creative Commons Attribution 3.0 License ----------------------------------------- - -Copyright (c) 2016-present Invertase Limited - -Documentation and other instructional materials provided for this project -(including on a separate documentation repository or it's documentation website) are -licensed under the Creative Commons Attribution 3.0 License. Code samples/blocks -contained therein are licensed under the Apache License, Version 2.0 (the "License"), as above. - -You may obtain a copy of the Creative Commons Attribution 3.0 License at - - https://creativecommons.org/licenses/by/3.0/ - - -## RNFBCrashlytics - -Apache-2.0 License ------------------- - -Copyright (c) 2016-present Invertase Limited & Contributors - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this library except in compliance with the License. - -You may obtain a copy of the Apache-2.0 License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. - - -Creative Commons Attribution 3.0 License ----------------------------------------- - -Copyright (c) 2016-present Invertase Limited & Contributors - -Documentation and other instructional materials provided for this project -(including on a separate documentation repository or it's documentation website) are -licensed under the Creative Commons Attribution 3.0 License. Code samples/blocks -contained therein are licensed under the Apache License, Version 2.0 (the "License"), as above. - -You may obtain a copy of the Creative Commons Attribution 3.0 License at - - https://creativecommons.org/licenses/by/3.0/ - - -## RNFastImage - -MIT License - -Copyright (c) 2017 Dylan Vann - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## RNGestureHandler - -The MIT License (MIT) - -Copyright (c) 2016 Krzysztof Magiera - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## RNImageCropPicker - -MIT License - -Copyright (c) 2017 Ivan Pusic - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## RNLocalize - -MIT License - -Copyright (c) 2017-present, Mathieu Acthernoene - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## RNReanimated - -The MIT License (MIT) - -Copyright (c) 2016 Krzysztof Magiera - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## RNScreens - -The MIT License (MIT) - -Copyright (c) 2018 Krzysztof Magiera - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## RNVectorIcons - -The MIT License (MIT) - -Copyright (c) 2015 Joel Arvidsson - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - - -## React - -MIT License - -Copyright (c) Facebook, Inc. and its affiliates. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## React-Core - -MIT License - -Copyright (c) Facebook, Inc. and its affiliates. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## ReactNativeART - -MIT License - -Copyright (c) 2019 react-native-community - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -## SDWebImage - -Copyright (c) 2009-2018 Olivier Poitrey rs@dailymotion.com - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is furnished -to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - - -## SDWebImageWebPCoder - -Copyright (c) 2018 Bogdan Poplauschi - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -## TOCropViewController - -The MIT License (MIT) - -Copyright (c) 2015-2019 Tim Oliver - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## YogaKit - -MIT License - -Copyright (c) Facebook, Inc. and its affiliates. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## boost-for-react-native - -Boost Software License - Version 1.0 - August 17th, 2003 - -Permission is hereby granted, free of charge, to any person or organization -obtaining a copy of the software and accompanying documentation covered by -this license (the "Software") to use, reproduce, display, distribute, -execute, and transmit the Software, and to prepare derivative works of the -Software, and to permit third-parties to whom the Software is furnished to -do so, all subject to the following: - -The copyright notices in the Software and this entire statement, including -the above license grant, this restriction and the following disclaimer, -must be included in all copies of the Software, in whole or in part, and -all derivative works of the Software, unless such copies or derivative -works are solely in the form of machine-executable object code generated by -a source language processor. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -DEALINGS IN THE SOFTWARE. - - -## glog - -Copyright (c) 2008, Google Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -A function gettimeofday in utilities.cc is based on - -http://www.google.com/codesearch/p?hl=en#dR3YEbitojA/COPYING&q=GetSystemTimeAsFileTime%20license:bsd - -The license of this code is: - -Copyright (c) 2003-2008, Jouni Malinen and contributors -All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -3. Neither the name(s) of the above-listed copyright holder(s) nor the - names of its contributors may be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -## hermes-engine - -MIT License - -Copyright (c) Facebook, Inc. and its affiliates. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## libevent - -Libevent is available for use under the following license, commonly known -as the 3-clause (or "modified") BSD license: - -============================== -Copyright (c) 2000-2007 Niels Provos -Copyright (c) 2007-2012 Niels Provos and Nick Mathewson - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. The name of the author may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -============================== - -Portions of Libevent are based on works by others, also made available by -them under the three-clause BSD license above. The copyright notices are -available in the corresponding source files; the license is as above. Here's -a list: - -log.c: - Copyright (c) 2000 Dug Song - Copyright (c) 1993 The Regents of the University of California. - -strlcpy.c: - Copyright (c) 1998 Todd C. Miller - -win32select.c: - Copyright (c) 2003 Michael A. Davis - -evport.c: - Copyright (c) 2007 Sun Microsystems - -ht-internal.h: - Copyright (c) 2002 Christopher Clark - -minheap-internal.h: - Copyright (c) 2006 Maxim Yegorushkin - -============================== - -The arc4module is available under the following, sometimes called the -"OpenBSD" license: - - Copyright (c) 1996, David Mazieres - Copyright (c) 2008, Damien Miller - - Permission to use, copy, modify, and distribute this software for any - purpose with or without fee is hereby granted, provided that the above - copyright notice and this permission notice appear in all copies. - - THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR - ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN - ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF - OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -============================== - -The Windows timer code is based on code from libutp, which is -distributed under this license, sometimes called the "MIT" license. - - -Copyright (c) 2010 BitTorrent, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -## libwebp - -Copyright (c) 2010, Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of Google nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - - -## nanopb - -Copyright (c) 2011 Petteri Aimonen - -This software is provided 'as-is', without any express or -implied warranty. In no event will the authors be held liable -for any damages arising from the use of this software. - -Permission is granted to anyone to use this software for any -purpose, including commercial applications, and to alter it and -redistribute it freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you - must not claim that you wrote the original software. If you use - this software in a product, an acknowledgment in the product - documentation would be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and - must not be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. - - -## react-native-appearance - -MIT License - -Copyright (c) Facebook, Inc. and its affiliates. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## react-native-background-timer - -The MIT License (MIT) - -Copyright (c) 2016 Dávid Ocetník - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## react-native-blur - -MIT License - -Copyright (c) 2016 React Native Community - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## react-native-cameraroll - -MIT License - -Copyright (c) 2015-present, Facebook, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## react-native-cookies - -MIT License - -Copyright (c) 2020 React Native Community - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## react-native-document-picker - -MIT License - -Copyright (c) 2016 Elyx0 - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## react-native-jitsi-meet - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - -## react-native-mmkv-storage - -MIT License - -Copyright (c) 2020 Ammar Ahmed - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## react-native-netinfo - -MIT License - -Copyright (c) 2015-present, Facebook, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## react-native-notifications - -The MIT License (MIT) - -Copyright (c) 2016 Wix.com LTD - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - -## react-native-orientation-locker - -MIT License - -Copyright (c) 2017 Wonday (@wonday.org) - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## react-native-restart - -MIT License - -Copyright (c) 2020 Avishay Bar - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## react-native-safe-area-context - -MIT License - -Copyright (c) 2019 Th3rd Wave - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## react-native-simple-crypto - -MIT License - -Copyright (c) 2018 Pedro Gomes - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## react-native-webview - -MIT License - -Copyright (c) 2015-present, Facebook, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## rn-extensions-share - -The MIT License (MIT) - -Copyright (c) 2016 Ali Najafizadeh - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## rn-fetch-blob - -MIT License - -Copyright (c) 2017 xeiyan@gmail.com - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -Generated by CocoaPods - https://cocoapods.org diff --git a/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService-acknowledgements.plist b/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService-acknowledgements.plist deleted file mode 100644 index 60f52b0e1..000000000 --- a/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService-acknowledgements.plist +++ /dev/null @@ -1,5267 +0,0 @@ - - - - - PreferenceSpecifiers - - - FooterText - This application makes use of the following third party libraries: - Title - Acknowledgements - Type - PSGroupSpecifier - - - FooterText - Copyright (c) 2016 Bugsnag, Inc. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - License - MIT - Title - BugsnagReactNative - Type - PSGroupSpecifier - - - FooterText - Public Domain License - -The CocoaAsyncSocket project is in the public domain. - -The original TCP version (AsyncSocket) was created by Dustin Voss in January 2003. -Updated and maintained by Deusty LLC and the Apple development community. - - License - public domain - Title - CocoaAsyncSocket - Type - PSGroupSpecifier - - - FooterText - Copyright 2006-2011, the V8 project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - License - MIT - Title - DoubleConversion - Type - PSGroupSpecifier - - - FooterText - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - License - Apache - Title - Firebase - Type - PSGroupSpecifier - - - FooterText - Copyright 2020 Google - License - Copyright - Title - FirebaseAnalytics - Type - PSGroupSpecifier - - - FooterText - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - License - Apache - Title - FirebaseCore - Type - PSGroupSpecifier - - - FooterText - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - License - Apache - Title - FirebaseCoreDiagnostics - Type - PSGroupSpecifier - - - FooterText - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -================================================================================ - -The following copyright from Hewlett-Packard Development Company, L.P. -applies to the dwarf.h file in third_party/libunwind - - libunwind - a platform-independent unwind library - Copyright (c) 2003-2005 Hewlett-Packard Development Company, L.P. - Contributed by David Mosberger-Tang <davidm@hpl.hp.com> - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - License - Apache - Title - FirebaseCrashlytics - Type - PSGroupSpecifier - - - FooterText - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - License - Apache - Title - FirebaseInstallations - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) Facebook, Inc. and its affiliates. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - Flipper - Type - PSGroupSpecifier - - - FooterText - Copyright 2006-2011, the V8 project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - License - MIT - Title - Flipper-DoubleConversion - Type - PSGroupSpecifier - - - FooterText - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - -Files in folly/external/farmhash licensed as follows - - Copyright (c) 2014 Google, Inc. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. - - License - Apache License, Version 2.0 - Title - Flipper-Folly - Type - PSGroupSpecifier - - - FooterText - Copyright (c) 2008, Google Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -A function gettimeofday in utilities.cc is based on - -http://www.google.com/codesearch/p?hl=en#dR3YEbitojA/COPYING&q=GetSystemTimeAsFileTime%20license:bsd - -The license of this code is: - -Copyright (c) 2003-2008, Jouni Malinen <j@w1.fi> and contributors -All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -3. Neither the name(s) of the above-listed copyright holder(s) nor the - names of its contributors may be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - License - Google - Title - Flipper-Glog - Type - PSGroupSpecifier - - - FooterText - Copyright (c) 2012 Rasmus Andersson <http://rsms.me/> - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - License - MIT - Title - Flipper-PeerTalk - Type - PSGroupSpecifier - - - FooterText - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - License - MIT - Title - Flipper-RSocket - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) Facebook, Inc. and its affiliates. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - FlipperKit - Type - PSGroupSpecifier - - - FooterText - Copyright 2020 Google - License - Copyright - Title - GoogleAppMeasurement - Type - PSGroupSpecifier - - - FooterText - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - License - Apache - Title - GoogleDataTransport - Type - PSGroupSpecifier - - - FooterText - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - License - Apache - Title - GoogleDataTransportCCTSupport - Type - PSGroupSpecifier - - - FooterText - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -================================================================================ - -The following copyright from Landon J. Fuller applies to the isAppEncrypted -function in Environment/third_party/GULAppEnvironmentUtil.m. - -Copyright (c) 2017 Landon J. Fuller <landon@landonf.org> -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Comment from -<a href="http://iphonedevwiki.net/index.php/Crack_prevention">iPhone Dev Wiki -Crack Prevention</a>: App Store binaries are signed by both their developer -and Apple. This encrypts the binary so that decryption keys are needed in order -to make the binary readable. When iOS executes the binary, the decryption keys -are used to decrypt the binary into a readable state where it is then loaded -into memory and executed. iOS can tell the encryption status of a binary via the -cryptid structure member of LC_ENCRYPTION_INFO MachO load command. If cryptid is -a non-zero value then the binary is encrypted. - -'Cracking' works by letting the kernel decrypt the binary then siphoning the -decrypted data into a new binary file, resigning, and repackaging. This will -only work on jailbroken devices as codesignature validation has been removed. -Resigning takes place because while the codesignature doesn't have to be valid -thanks to the jailbreak, it does have to be in place unless you have AppSync or -similar to disable codesignature checks. - -More information at <a href="http://landonf.org/2009/02/index.html">Landon -Fuller's blog</a> - - License - Apache - Title - GoogleUtilities - Type - PSGroupSpecifier - - - FooterText - Copyright 2018-present 8x8, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. - - License - Apache 2 - Title - JitsiMeetSDK - Type - PSGroupSpecifier - - - FooterText - Tencent is pleased to support the open source community by making MMKV available. -Copyright (C) 2018 THL A29 Limited, a Tencent company. All rights reserved. -If you have downloaded a copy of the MMKV binary from Tencent, please note that the MMKV binary is licensed under the BSD 3-Clause License. -If you have downloaded a copy of the MMKV source code from Tencent, please note that MMKV source code is licensed under the BSD 3-Clause License, except for the third-party components listed below which are subject to different license terms. Your integration of MMKV into your own projects may require compliance with the BSD 3-Clause License, as well as the other licenses applicable to the third-party components included within MMKV. -A copy of the BSD 3-Clause License is included in this file. - -Other dependencies and licenses: - -Open Source Software Licensed Under the OpenSSL License: ----------------------------------------------------------------------------------------- -1. OpenSSL 1.1.0i -Copyright (c) 1998-2018 The OpenSSL Project. -All rights reserved. -Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) -All rights reserved. - - -Terms of the OpenSSL License: ---------------------------------------------------- -LICENSE ISSUES: --------------------------------------------------------------------- - -The OpenSSL toolkit stays under a dual license, i.e. both the conditions of the OpenSSL License and the original SSLeay license apply to the toolkit. -See below for the actual license texts. - -OpenSSL License: --------------------------------------------------------------------- -Copyright (c) 1998-2018 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - -3. All advertising materials mentioning features or use of this software must display the following acknowledgment: -"This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact openssl-core@openssl.org. - -5. Products derived from this software may not be called "OpenSSL" nor may "OpenSSL" appear in their names without prior written permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following acknowledgment: "This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================== -* This product includes cryptographic software written by Eric Young (eay@cryptsoft.com). This product includes software written by Tim Hudson (tjh@cryptsoft.com). - - -Original SSLeay License: --------------------------------------------------------------------- -Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) -All rights reserved. - -This package is an SSL implementation written by Eric Young (eay@cryptsoft.com). -The implementation was written so as to conform with Netscapes SSL. - -This library is free for commercial and non-commercial use as long as the following conditions are aheared to. The following conditions apply to all code found in this distribution, be it the RC4, RSA, lhash, DES, etc., code; not just the SSL code. The SSL documentation included with this distribution is covered by the same copyright terms except that the holder is Tim Hudson (tjh@cryptsoft.com). - -Copyright remains Eric Young's, and as such any Copyright notices in the code are not to be removed. If this package is used in a product, Eric Young should be given attribution as the author of the parts of the library used. This can be in the form of a textual message at program startup or in documentation (online or textual) provided with the package. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: -1. Redistributions of source code must retain the copyright notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -3. All advertising materials mentioning features or use of this software must display the following acknowledgement:" This product includes cryptographic software written by Eric Young (eay@cryptsoft.com)" The word 'cryptographic' can be left out if the rouines from the library being used are not cryptographic related :-). -4. If you include any Windows specific code (or a derivative thereof) from the apps directory (application code) you must include an acknowledgement: "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - -THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -The licence and distribution terms for any publically available version or derivative of this code cannot be changed. i.e. this code cannot simply be copied and put under another distribution licence [including the GNU Public Licence.] - - - -Open Source Software Licensed Under the Apache License, Version 2.0: -The below software in this distribution may have been modified by THL A29 Limited (“Tencent Modifications”). All Tencent Modifications are Copyright (C) 2018 THL A29 Limited. ----------------------------------------------------------------------------------------- -1. MultiprocessSharedPreferences v1.0 -Copyright (C) 2014 seven456@gmail.com - - -Terms of the Apache License, Version 2.0: --------------------------------------------------------------------- -Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - -“License” shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. - -“Licensor” shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. - -“Legal Entity” shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, “control” means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. - -“You” (or “Your”) shall mean an individual or Legal Entity exercising permissions granted by this License. - -“Source” form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. - -“Object” form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. - -“Work” shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). - -“Derivative Works” shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. - -“Contribution” shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, “submitted” means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as “Not a Contribution.” - -“Contributor” shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: - -a) You must give any other recipients of the Work or Derivative Works a copy of this License; and - -b) You must cause any modified files to carry prominent notices stating that You changed the files; and - -c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and - -d) If the Work includes a “NOTICE” text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. - -You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. -9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work -To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. - -Copyright [yyyy] [name of copyright owner] - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at -http://www.apache.org/licenses/LICENSE-2.0 -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. - - - -Open Source Software Licensed Under the zlib License: -The below software in this distribution may have been modified by THL A29 Limited (“Tencent Modifications”). All Tencent Modifications are Copyright (C) 2018 THL A29 Limited. ----------------------------------------------------------------------------------------- -1. zlib v1.2.11 -Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler - -Terms of the zlib License: --------------------------------------------------------------------- - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. - - - -Terms of the BSD 3-Clause License: --------------------------------------------------------------------- - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. -Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -Neither the name of [copyright holder] nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - License - BSD 3-Clause - Title - MMKV - Type - PSGroupSpecifier - - - FooterText - Tencent is pleased to support the open source community by making MMKV available. -Copyright (C) 2018 THL A29 Limited, a Tencent company. All rights reserved. -If you have downloaded a copy of the MMKV binary from Tencent, please note that the MMKV binary is licensed under the BSD 3-Clause License. -If you have downloaded a copy of the MMKV source code from Tencent, please note that MMKV source code is licensed under the BSD 3-Clause License, except for the third-party components listed below which are subject to different license terms. Your integration of MMKV into your own projects may require compliance with the BSD 3-Clause License, as well as the other licenses applicable to the third-party components included within MMKV. -A copy of the BSD 3-Clause License is included in this file. - -Other dependencies and licenses: - -Open Source Software Licensed Under the OpenSSL License: ----------------------------------------------------------------------------------------- -1. OpenSSL 1.1.0i -Copyright (c) 1998-2018 The OpenSSL Project. -All rights reserved. -Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) -All rights reserved. - - -Terms of the OpenSSL License: ---------------------------------------------------- -LICENSE ISSUES: --------------------------------------------------------------------- - -The OpenSSL toolkit stays under a dual license, i.e. both the conditions of the OpenSSL License and the original SSLeay license apply to the toolkit. -See below for the actual license texts. - -OpenSSL License: --------------------------------------------------------------------- -Copyright (c) 1998-2018 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - -3. All advertising materials mentioning features or use of this software must display the following acknowledgment: -"This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact openssl-core@openssl.org. - -5. Products derived from this software may not be called "OpenSSL" nor may "OpenSSL" appear in their names without prior written permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following acknowledgment: "This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================== -* This product includes cryptographic software written by Eric Young (eay@cryptsoft.com). This product includes software written by Tim Hudson (tjh@cryptsoft.com). - - -Original SSLeay License: --------------------------------------------------------------------- -Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) -All rights reserved. - -This package is an SSL implementation written by Eric Young (eay@cryptsoft.com). -The implementation was written so as to conform with Netscapes SSL. - -This library is free for commercial and non-commercial use as long as the following conditions are aheared to. The following conditions apply to all code found in this distribution, be it the RC4, RSA, lhash, DES, etc., code; not just the SSL code. The SSL documentation included with this distribution is covered by the same copyright terms except that the holder is Tim Hudson (tjh@cryptsoft.com). - -Copyright remains Eric Young's, and as such any Copyright notices in the code are not to be removed. If this package is used in a product, Eric Young should be given attribution as the author of the parts of the library used. This can be in the form of a textual message at program startup or in documentation (online or textual) provided with the package. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: -1. Redistributions of source code must retain the copyright notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -3. All advertising materials mentioning features or use of this software must display the following acknowledgement:" This product includes cryptographic software written by Eric Young (eay@cryptsoft.com)" The word 'cryptographic' can be left out if the rouines from the library being used are not cryptographic related :-). -4. If you include any Windows specific code (or a derivative thereof) from the apps directory (application code) you must include an acknowledgement: "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - -THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -The licence and distribution terms for any publically available version or derivative of this code cannot be changed. i.e. this code cannot simply be copied and put under another distribution licence [including the GNU Public Licence.] - - - -Open Source Software Licensed Under the Apache License, Version 2.0: -The below software in this distribution may have been modified by THL A29 Limited (“Tencent Modifications”). All Tencent Modifications are Copyright (C) 2018 THL A29 Limited. ----------------------------------------------------------------------------------------- -1. MultiprocessSharedPreferences v1.0 -Copyright (C) 2014 seven456@gmail.com - - -Terms of the Apache License, Version 2.0: --------------------------------------------------------------------- -Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - -“License” shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. - -“Licensor” shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. - -“Legal Entity” shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, “control” means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. - -“You” (or “Your”) shall mean an individual or Legal Entity exercising permissions granted by this License. - -“Source” form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. - -“Object” form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. - -“Work” shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). - -“Derivative Works” shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. - -“Contribution” shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, “submitted” means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as “Not a Contribution.” - -“Contributor” shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: - -a) You must give any other recipients of the Work or Derivative Works a copy of this License; and - -b) You must cause any modified files to carry prominent notices stating that You changed the files; and - -c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and - -d) If the Work includes a “NOTICE” text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. - -You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. -9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work -To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. - -Copyright [yyyy] [name of copyright owner] - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at -http://www.apache.org/licenses/LICENSE-2.0 -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. - - - -Open Source Software Licensed Under the zlib License: -The below software in this distribution may have been modified by THL A29 Limited (“Tencent Modifications”). All Tencent Modifications are Copyright (C) 2018 THL A29 Limited. ----------------------------------------------------------------------------------------- -1. zlib v1.2.11 -Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler - -Terms of the zlib License: --------------------------------------------------------------------- - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. - - - -Terms of the BSD 3-Clause License: --------------------------------------------------------------------- - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. -Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -Neither the name of [copyright holder] nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - License - BSD 3-Clause - Title - MMKVCore - Type - PSGroupSpecifier - - - FooterText - - LICENSE ISSUES - ============== - - The OpenSSL toolkit stays under a dual license, i.e. both the conditions of - the OpenSSL License and the original SSLeay license apply to the toolkit. - See below for the actual license texts. Actually both licenses are BSD-style - Open Source licenses. In case of any license issues related to OpenSSL - please contact openssl-core@openssl.org. - - OpenSSL License - --------------- - -/* ==================================================================== - * Copyright (c) 1998-2008 The OpenSSL Project. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in - * the documentation and/or other materials provided with the - * distribution. - * - * 3. All advertising materials mentioning features or use of this - * software must display the following acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - * - * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - * endorse or promote products derived from this software without - * prior written permission. For written permission, please contact - * openssl-core@openssl.org. - * - * 5. Products derived from this software may not be called "OpenSSL" - * nor may "OpenSSL" appear in their names without prior written - * permission of the OpenSSL Project. - * - * 6. Redistributions of any form whatsoever must retain the following - * acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit (http://www.openssl.org/)" - * - * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY - * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR - * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - * OF THE POSSIBILITY OF SUCH DAMAGE. - * ==================================================================== - * - * This product includes cryptographic software written by Eric Young - * (eay@cryptsoft.com). This product includes software written by Tim - * Hudson (tjh@cryptsoft.com). - * - */ - - Original SSLeay License - ----------------------- - -/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) - * All rights reserved. - * - * This package is an SSL implementation written - * by Eric Young (eay@cryptsoft.com). - * The implementation was written so as to conform with Netscapes SSL. - * - * This library is free for commercial and non-commercial use as long as - * the following conditions are aheared to. The following conditions - * apply to all code found in this distribution, be it the RC4, RSA, - * lhash, DES, etc., code; not just the SSL code. The SSL documentation - * included with this distribution is covered by the same copyright terms - * except that the holder is Tim Hudson (tjh@cryptsoft.com). - * - * Copyright remains Eric Young's, and as such any Copyright notices in - * the code are not to be removed. - * If this package is used in a product, Eric Young should be given attribution - * as the author of the parts of the library used. - * This can be in the form of a textual message at program startup or - * in documentation (online or textual) provided with the package. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * "This product includes cryptographic software written by - * Eric Young (eay@cryptsoft.com)" - * The word 'cryptographic' can be left out if the rouines from the library - * being used are not cryptographic related :-). - * 4. If you include any Windows specific code (or a derivative thereof) from - * the apps directory (application code) you must include an acknowledgement: - * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - * - * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * The licence and distribution terms for any publically available version or - * derivative of this code cannot be changed. i.e. this code cannot simply be - * copied and put under another distribution licence - * [including the GNU Public Licence.] - */ - - - License - OpenSSL (OpenSSL/SSLeay) - Title - OpenSSL-Universal - Type - PSGroupSpecifier - - - FooterText - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - License - Apache - Title - PromisesObjC - Type - PSGroupSpecifier - - - FooterText - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - -Files in folly/external/farmhash licensed as follows - - Copyright (c) 2014 Google, Inc. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. - - License - Apache License, Version 2.0 - Title - RCT-Folly - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) 2020 Mathieu Acthernoene - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - RNBootSplash - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) 2015-present, Facebook, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - License - MIT - Title - RNCAsyncStorage - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) 2015-present, Facebook, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - RNCPicker - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) 2019 Chanaka Athurugiriya - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - RNConfigReader - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) 2019 React Native Community - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - RNDateTimePicker - Type - PSGroupSpecifier - - - FooterText - The MIT License (MIT) - -Copyright (c) 2015 Rebecca Hughes - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - RNDeviceInfo - Type - PSGroupSpecifier - - - FooterText - Apache-2.0 License ------------------- - -Copyright (c) 2016-present Invertase Limited <oss@invertase.io> & Contributors - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this library except in compliance with the License. - -You may obtain a copy of the Apache-2.0 License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. - - -Creative Commons Attribution 3.0 License ----------------------------------------- - -Copyright (c) 2016-present Invertase Limited <oss@invertase.io> & Contributors - -Documentation and other instructional materials provided for this project -(including on a separate documentation repository or it's documentation website) are -licensed under the Creative Commons Attribution 3.0 License. Code samples/blocks -contained therein are licensed under the Apache License, Version 2.0 (the "License"), as above. - -You may obtain a copy of the Creative Commons Attribution 3.0 License at - - https://creativecommons.org/licenses/by/3.0/ - - License - Apache-2.0 - Title - RNFBAnalytics - Type - PSGroupSpecifier - - - FooterText - Apache-2.0 License ------------------- - -Copyright (c) 2016-present Invertase Limited <oss@invertase.io> - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this library except in compliance with the License. - -You may obtain a copy of the Apache-2.0 License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. - - -Creative Commons Attribution 3.0 License ----------------------------------------- - -Copyright (c) 2016-present Invertase Limited <oss@invertase.io> - -Documentation and other instructional materials provided for this project -(including on a separate documentation repository or it's documentation website) are -licensed under the Creative Commons Attribution 3.0 License. Code samples/blocks -contained therein are licensed under the Apache License, Version 2.0 (the "License"), as above. - -You may obtain a copy of the Creative Commons Attribution 3.0 License at - - https://creativecommons.org/licenses/by/3.0/ - - License - Apache-2.0 - Title - RNFBApp - Type - PSGroupSpecifier - - - FooterText - Apache-2.0 License ------------------- - -Copyright (c) 2016-present Invertase Limited <oss@invertase.io> & Contributors - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this library except in compliance with the License. - -You may obtain a copy of the Apache-2.0 License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. - - -Creative Commons Attribution 3.0 License ----------------------------------------- - -Copyright (c) 2016-present Invertase Limited <oss@invertase.io> & Contributors - -Documentation and other instructional materials provided for this project -(including on a separate documentation repository or it's documentation website) are -licensed under the Creative Commons Attribution 3.0 License. Code samples/blocks -contained therein are licensed under the Apache License, Version 2.0 (the "License"), as above. - -You may obtain a copy of the Creative Commons Attribution 3.0 License at - - https://creativecommons.org/licenses/by/3.0/ - - License - Apache-2.0 - Title - RNFBCrashlytics - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) 2017 Dylan Vann - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - RNFastImage - Type - PSGroupSpecifier - - - FooterText - The MIT License (MIT) - -Copyright (c) 2016 Krzysztof Magiera - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - RNGestureHandler - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) 2017 Ivan Pusic - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - RNImageCropPicker - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) 2017-present, Mathieu Acthernoene - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - RNLocalize - Type - PSGroupSpecifier - - - FooterText - The MIT License (MIT) - -Copyright (c) 2016 Krzysztof Magiera - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - RNReanimated - Type - PSGroupSpecifier - - - FooterText - The MIT License (MIT) - -Copyright (c) 2018 Krzysztof Magiera - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - RNScreens - Type - PSGroupSpecifier - - - FooterText - The MIT License (MIT) - -Copyright (c) 2015 Joel Arvidsson - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - - License - MIT - Title - RNVectorIcons - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) Facebook, Inc. and its affiliates. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - React - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) Facebook, Inc. and its affiliates. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - React-Core - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) 2019 react-native-community - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - License - MIT - Title - ReactNativeART - Type - PSGroupSpecifier - - - FooterText - Copyright (c) 2009-2018 Olivier Poitrey rs@dailymotion.com - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is furnished -to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - - License - MIT - Title - SDWebImage - Type - PSGroupSpecifier - - - FooterText - Copyright (c) 2018 Bogdan Poplauschi - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - License - MIT - Title - SDWebImageWebPCoder - Type - PSGroupSpecifier - - - FooterText - The MIT License (MIT) - -Copyright (c) 2015-2019 Tim Oliver - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - TOCropViewController - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) Facebook, Inc. and its affiliates. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - YogaKit - Type - PSGroupSpecifier - - - FooterText - Boost Software License - Version 1.0 - August 17th, 2003 - -Permission is hereby granted, free of charge, to any person or organization -obtaining a copy of the software and accompanying documentation covered by -this license (the "Software") to use, reproduce, display, distribute, -execute, and transmit the Software, and to prepare derivative works of the -Software, and to permit third-parties to whom the Software is furnished to -do so, all subject to the following: - -The copyright notices in the Software and this entire statement, including -the above license grant, this restriction and the following disclaimer, -must be included in all copies of the Software, in whole or in part, and -all derivative works of the Software, unless such copies or derivative -works are solely in the form of machine-executable object code generated by -a source language processor. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -DEALINGS IN THE SOFTWARE. - - License - Boost Software License - Title - boost-for-react-native - Type - PSGroupSpecifier - - - FooterText - Copyright (c) 2008, Google Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -A function gettimeofday in utilities.cc is based on - -http://www.google.com/codesearch/p?hl=en#dR3YEbitojA/COPYING&q=GetSystemTimeAsFileTime%20license:bsd - -The license of this code is: - -Copyright (c) 2003-2008, Jouni Malinen <j@w1.fi> and contributors -All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -3. Neither the name(s) of the above-listed copyright holder(s) nor the - names of its contributors may be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - License - Google - Title - glog - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) Facebook, Inc. and its affiliates. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - hermes-engine - Type - PSGroupSpecifier - - - FooterText - Libevent is available for use under the following license, commonly known -as the 3-clause (or "modified") BSD license: - -============================== -Copyright (c) 2000-2007 Niels Provos <provos@citi.umich.edu> -Copyright (c) 2007-2012 Niels Provos and Nick Mathewson - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. The name of the author may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -============================== - -Portions of Libevent are based on works by others, also made available by -them under the three-clause BSD license above. The copyright notices are -available in the corresponding source files; the license is as above. Here's -a list: - -log.c: - Copyright (c) 2000 Dug Song <dugsong@monkey.org> - Copyright (c) 1993 The Regents of the University of California. - -strlcpy.c: - Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com> - -win32select.c: - Copyright (c) 2003 Michael A. Davis <mike@datanerds.net> - -evport.c: - Copyright (c) 2007 Sun Microsystems - -ht-internal.h: - Copyright (c) 2002 Christopher Clark - -minheap-internal.h: - Copyright (c) 2006 Maxim Yegorushkin <maxim.yegorushkin@gmail.com> - -============================== - -The arc4module is available under the following, sometimes called the -"OpenBSD" license: - - Copyright (c) 1996, David Mazieres <dm@uun.org> - Copyright (c) 2008, Damien Miller <djm@openbsd.org> - - Permission to use, copy, modify, and distribute this software for any - purpose with or without fee is hereby granted, provided that the above - copyright notice and this permission notice appear in all copies. - - THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR - ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN - ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF - OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -============================== - -The Windows timer code is based on code from libutp, which is -distributed under this license, sometimes called the "MIT" license. - - -Copyright (c) 2010 BitTorrent, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - License - BSD 3-Clause - Title - libevent - Type - PSGroupSpecifier - - - FooterText - Copyright (c) 2010, Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of Google nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - - License - BSD - Title - libwebp - Type - PSGroupSpecifier - - - FooterText - Copyright (c) 2011 Petteri Aimonen <jpa at nanopb.mail.kapsi.fi> - -This software is provided 'as-is', without any express or -implied warranty. In no event will the authors be held liable -for any damages arising from the use of this software. - -Permission is granted to anyone to use this software for any -purpose, including commercial applications, and to alter it and -redistribute it freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you - must not claim that you wrote the original software. If you use - this software in a product, an acknowledgment in the product - documentation would be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and - must not be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. - - License - zlib - Title - nanopb - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) Facebook, Inc. and its affiliates. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - react-native-appearance - Type - PSGroupSpecifier - - - FooterText - The MIT License (MIT) - -Copyright (c) 2016 Dávid Ocetník - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - react-native-background-timer - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) 2016 React Native Community - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - react-native-blur - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) 2015-present, Facebook, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - react-native-cameraroll - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) 2020 React Native Community - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - react-native-cookies - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) 2016 Elyx0 - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - react-native-document-picker - Type - PSGroupSpecifier - - - FooterText - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - License - Apache-2.0 - Title - react-native-jitsi-meet - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) 2020 Ammar Ahmed - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - react-native-mmkv-storage - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) 2015-present, Facebook, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - react-native-netinfo - Type - PSGroupSpecifier - - - FooterText - The MIT License (MIT) - -Copyright (c) 2016 Wix.com LTD - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - License - MIT - Title - react-native-notifications - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) 2017 Wonday (@wonday.org) - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - react-native-orientation-locker - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) 2020 Avishay Bar - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - react-native-restart - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) 2019 Th3rd Wave - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - react-native-safe-area-context - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) 2018 Pedro Gomes - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - react-native-simple-crypto - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) 2015-present, Facebook, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - react-native-webview - Type - PSGroupSpecifier - - - FooterText - The MIT License (MIT) - -Copyright (c) 2016 Ali Najafizadeh - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - rn-extensions-share - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) 2017 xeiyan@gmail.com - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - rn-fetch-blob - Type - PSGroupSpecifier - - - FooterText - Generated by CocoaPods - https://cocoapods.org - Title - - Type - PSGroupSpecifier - - - StringsTable - Acknowledgements - Title - Acknowledgements - - diff --git a/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService.debug.xcconfig b/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService.debug.xcconfig deleted file mode 100644 index f79107d03..000000000 --- a/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService.debug.xcconfig +++ /dev/null @@ -1,19 +0,0 @@ -CLANG_CXX_LANGUAGE_STANDARD = c++14 -CLANG_CXX_LIBRARY = compiler-default -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/Frameworks" "${PODS_ROOT}/OpenSSL-Universal/Frameworks" "${PODS_ROOT}/hermes-engine/destroot/Library/Frameworks/iphoneos" "${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 FB_SONARKIT_ENABLED=1 $(inherited) SD_WEBP=1 HERMES_ENABLE_DEBUGGER=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVCore" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCT-Folly" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNCPicker" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeUiLib" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-blur" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-cookies" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-netinfo" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-restart" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-simple-crypto" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/boost-for-react-native" "$(PODS_ROOT)/Headers/Private/React-Core" "$(PODS_TARGET_SRCROOT)/include/" -LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/../../Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXVideoThumbnails" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Glog" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-PeerTalk" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-RSocket" "${PODS_CONFIGURATION_BUILD_DIR}/FlipperKit" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCT-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNCPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/React-perflogger" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeUiLib" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libevent" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-blur" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cookies" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-netinfo" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-restart" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" -OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto/react_native_simple_crypto.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/FlipperKit/FlipperKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"Flipper" -l"Flipper-DoubleConversion" -l"Flipper-Folly" -l"Flipper-Glog" -l"Flipper-PeerTalk" -l"Flipper-RSocket" -l"FlipperKit" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCT-Folly" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNCPicker" -l"RNConfigReader" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"React-perflogger" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeUiLib" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"glog" -l"libevent" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-blur" -l"react-native-cameraroll" -l"react-native-cookies" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-mmkv-storage" -l"react-native-netinfo" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-restart" -l"react-native-safe-area-context" -l"react-native-simple-crypto" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "OpenSSL" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" -framework "hermes" -OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto/react_native_simple_crypto.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/FlipperKit/FlipperKit.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -Xcc -DFB_SONARKIT_ENABLED=1 -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_PODFILE_DIR_PATH = ${SRCROOT}/. -PODS_ROOT = ${SRCROOT}/Pods -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -SWIFT_INCLUDE_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto" -USER_HEADER_SEARCH_PATHS = $(inherited) $(SRCROOT)/libwebp/src -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService.release.xcconfig b/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService.release.xcconfig deleted file mode 100644 index 40f6832a2..000000000 --- a/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService.release.xcconfig +++ /dev/null @@ -1,19 +0,0 @@ -CLANG_CXX_LANGUAGE_STANDARD = c++14 -CLANG_CXX_LIBRARY = compiler-default -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/Frameworks" "${PODS_ROOT}/OpenSSL-Universal/Frameworks" "${PODS_ROOT}/hermes-engine/destroot/Library/Frameworks/iphoneos" "${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=1 HERMES_ENABLE_DEBUGGER=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVCore" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCT-Folly" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNCPicker" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeUiLib" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-blur" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-cookies" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-netinfo" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-restart" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-simple-crypto" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/boost-for-react-native" "$(PODS_ROOT)/Headers/Private/React-Core" "$(PODS_TARGET_SRCROOT)/include/" -LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/../../Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXVideoThumbnails" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCT-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNCPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/React-perflogger" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeUiLib" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libevent" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-blur" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cookies" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-netinfo" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-restart" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" -OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto/react_native_simple_crypto.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCT-Folly" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNCPicker" -l"RNConfigReader" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"React-perflogger" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeUiLib" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"glog" -l"libevent" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-blur" -l"react-native-cameraroll" -l"react-native-cookies" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-mmkv-storage" -l"react-native-netinfo" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-restart" -l"react-native-safe-area-context" -l"react-native-simple-crypto" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "OpenSSL" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" -framework "hermes" -OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto/react_native_simple_crypto.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_PODFILE_DIR_PATH = ${SRCROOT}/. -PODS_ROOT = ${SRCROOT}/Pods -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -SWIFT_INCLUDE_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto" -USER_HEADER_SEARCH_PATHS = $(inherited) $(SRCROOT)/libwebp/src -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig deleted file mode 100644 index 548634ec4..000000000 --- a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig +++ /dev/null @@ -1,19 +0,0 @@ -CLANG_CXX_LANGUAGE_STANDARD = c++14 -CLANG_CXX_LIBRARY = compiler-default -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/OpenSSL-Universal/Frameworks" "${PODS_ROOT}/hermes-engine/destroot/Library/Frameworks/iphoneos" "${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=1 HERMES_ENABLE_DEBUGGER=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVCore" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCT-Folly" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNCPicker" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeUiLib" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-blur" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-cookies" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-netinfo" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-restart" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-simple-crypto" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/boost-for-react-native" "$(PODS_ROOT)/Headers/Private/React-Core" "$(PODS_TARGET_SRCROOT)/include/" -LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/../../Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCT-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/React-perflogger" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeUiLib" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libevent" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" -OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto/react_native_simple_crypto.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCT-Folly" -l"RCTTypeSafety" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNConfigReader" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"React-perflogger" -l"ReactCommon" -l"ReactNativeUiLib" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"c++" -l"glog" -l"libevent" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-document-picker" -l"react-native-mmkv-storage" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-simple-crypto" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "MessageUI" -framework "MobileCoreServices" -framework "OpenSSL" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "hermes" -OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto/react_native_simple_crypto.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_PODFILE_DIR_PATH = ${SRCROOT}/. -PODS_ROOT = ${SRCROOT}/Pods -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -SWIFT_INCLUDE_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto" -USER_HEADER_SEARCH_PATHS = $(inherited) $(SRCROOT)/libwebp/src -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig deleted file mode 100644 index 548634ec4..000000000 --- a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig +++ /dev/null @@ -1,19 +0,0 @@ -CLANG_CXX_LANGUAGE_STANDARD = c++14 -CLANG_CXX_LIBRARY = compiler-default -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/OpenSSL-Universal/Frameworks" "${PODS_ROOT}/hermes-engine/destroot/Library/Frameworks/iphoneos" "${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=1 HERMES_ENABLE_DEBUGGER=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVCore" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCT-Folly" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNCPicker" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeUiLib" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-blur" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-cookies" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-netinfo" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-restart" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-simple-crypto" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/boost-for-react-native" "$(PODS_ROOT)/Headers/Private/React-Core" "$(PODS_TARGET_SRCROOT)/include/" -LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/../../Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCT-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/React-perflogger" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeUiLib" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libevent" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" -OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto/react_native_simple_crypto.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCT-Folly" -l"RCTTypeSafety" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNConfigReader" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"React-perflogger" -l"ReactCommon" -l"ReactNativeUiLib" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"c++" -l"glog" -l"libevent" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-document-picker" -l"react-native-mmkv-storage" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-simple-crypto" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "MessageUI" -framework "MobileCoreServices" -framework "OpenSSL" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "hermes" -OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto/react_native_simple_crypto.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_PODFILE_DIR_PATH = ${SRCROOT}/. -PODS_ROOT = ${SRCROOT}/Pods -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -SWIFT_INCLUDE_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto" -USER_HEADER_SEARCH_PATHS = $(inherited) $(SRCROOT)/libwebp/src -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat-acknowledgements.markdown b/ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat-acknowledgements.markdown index 77875a3f6..e6fbf305d 100644 --- a/ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat-acknowledgements.markdown +++ b/ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat-acknowledgements.markdown @@ -3,26 +3,25 @@ This application makes use of the following third party libraries: ## BugsnagReactNative -Copyright (c) 2016 Bugsnag, Inc. +Copyright (c) Bugsnag, https://www.bugsnag.com/ Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: +a copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. ## CocoaAsyncSocket diff --git a/ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat-acknowledgements.plist b/ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat-acknowledgements.plist index 60f52b0e1..66ae992be 100644 --- a/ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat-acknowledgements.plist +++ b/ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat-acknowledgements.plist @@ -14,26 +14,25 @@ FooterText - Copyright (c) 2016 Bugsnag, Inc. + Copyright (c) Bugsnag, https://www.bugsnag.com/ Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: +a copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. License MIT diff --git a/ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat.debug.xcconfig b/ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat.debug.xcconfig index 8a65b825a..7ab079493 100644 --- a/ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat.debug.xcconfig +++ b/ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat.debug.xcconfig @@ -8,7 +8,7 @@ HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/H LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXVideoThumbnails" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Glog" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-PeerTalk" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-RSocket" "${PODS_CONFIGURATION_BUILD_DIR}/FlipperKit" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCT-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNCPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/React-perflogger" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeUiLib" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libevent" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-blur" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cookies" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-netinfo" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-restart" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto/react_native_simple_crypto.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/FlipperKit/FlipperKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"Flipper" -l"Flipper-DoubleConversion" -l"Flipper-Folly" -l"Flipper-Glog" -l"Flipper-PeerTalk" -l"Flipper-RSocket" -l"FlipperKit" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCT-Folly" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNCPicker" -l"RNConfigReader" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"React-perflogger" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeUiLib" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"glog" -l"libevent" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-blur" -l"react-native-cameraroll" -l"react-native-cookies" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-mmkv-storage" -l"react-native-netinfo" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-restart" -l"react-native-safe-area-context" -l"react-native-simple-crypto" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "OpenSSL" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" -framework "hermes" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"Flipper" -l"Flipper-DoubleConversion" -l"Flipper-Folly" -l"Flipper-Glog" -l"Flipper-PeerTalk" -l"Flipper-RSocket" -l"FlipperKit" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCT-Folly" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNCPicker" -l"RNConfigReader" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"React-perflogger" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeUiLib" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"glog" -l"libevent" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-blur" -l"react-native-cameraroll" -l"react-native-cookies" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-mmkv-storage" -l"react-native-netinfo" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-restart" -l"react-native-safe-area-context" -l"react-native-simple-crypto" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MobileCoreServices" -framework "OpenSSL" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" -framework "hermes" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto/react_native_simple_crypto.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/FlipperKit/FlipperKit.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -Xcc -DFB_SONARKIT_ENABLED=1 PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat.release.xcconfig b/ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat.release.xcconfig index 7556c44b9..bb93383c8 100644 --- a/ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat.release.xcconfig +++ b/ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat.release.xcconfig @@ -8,7 +8,7 @@ HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/H LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXVideoThumbnails" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCT-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNCPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/React-perflogger" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeUiLib" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libevent" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-blur" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cookies" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-netinfo" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-restart" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto/react_native_simple_crypto.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCT-Folly" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNCPicker" -l"RNConfigReader" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"React-perflogger" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeUiLib" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"glog" -l"libevent" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-blur" -l"react-native-cameraroll" -l"react-native-cookies" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-mmkv-storage" -l"react-native-netinfo" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-restart" -l"react-native-safe-area-context" -l"react-native-simple-crypto" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "OpenSSL" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" -framework "hermes" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCT-Folly" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNCPicker" -l"RNConfigReader" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"React-perflogger" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeUiLib" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"glog" -l"libevent" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-blur" -l"react-native-cameraroll" -l"react-native-cookies" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-mmkv-storage" -l"react-native-netinfo" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-restart" -l"react-native-safe-area-context" -l"react-native-simple-crypto" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MobileCoreServices" -framework "OpenSSL" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" -framework "hermes" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto/react_native_simple_crypto.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-acknowledgements.markdown b/ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-acknowledgements.markdown index 77875a3f6..e6fbf305d 100644 --- a/ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-acknowledgements.markdown +++ b/ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-acknowledgements.markdown @@ -3,26 +3,25 @@ This application makes use of the following third party libraries: ## BugsnagReactNative -Copyright (c) 2016 Bugsnag, Inc. +Copyright (c) Bugsnag, https://www.bugsnag.com/ Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: +a copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. ## CocoaAsyncSocket diff --git a/ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-acknowledgements.plist b/ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-acknowledgements.plist index 60f52b0e1..66ae992be 100644 --- a/ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-acknowledgements.plist +++ b/ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-acknowledgements.plist @@ -14,26 +14,25 @@ FooterText - Copyright (c) 2016 Bugsnag, Inc. + Copyright (c) Bugsnag, https://www.bugsnag.com/ Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: +a copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. License MIT diff --git a/ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN.debug.xcconfig b/ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN.debug.xcconfig index 8a65b825a..7ab079493 100644 --- a/ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN.debug.xcconfig +++ b/ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN.debug.xcconfig @@ -8,7 +8,7 @@ HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/H LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXVideoThumbnails" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Glog" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-PeerTalk" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-RSocket" "${PODS_CONFIGURATION_BUILD_DIR}/FlipperKit" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCT-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNCPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/React-perflogger" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeUiLib" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libevent" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-blur" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cookies" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-netinfo" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-restart" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto/react_native_simple_crypto.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/FlipperKit/FlipperKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"Flipper" -l"Flipper-DoubleConversion" -l"Flipper-Folly" -l"Flipper-Glog" -l"Flipper-PeerTalk" -l"Flipper-RSocket" -l"FlipperKit" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCT-Folly" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNCPicker" -l"RNConfigReader" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"React-perflogger" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeUiLib" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"glog" -l"libevent" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-blur" -l"react-native-cameraroll" -l"react-native-cookies" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-mmkv-storage" -l"react-native-netinfo" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-restart" -l"react-native-safe-area-context" -l"react-native-simple-crypto" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "OpenSSL" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" -framework "hermes" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"Flipper" -l"Flipper-DoubleConversion" -l"Flipper-Folly" -l"Flipper-Glog" -l"Flipper-PeerTalk" -l"Flipper-RSocket" -l"FlipperKit" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCT-Folly" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNCPicker" -l"RNConfigReader" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"React-perflogger" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeUiLib" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"glog" -l"libevent" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-blur" -l"react-native-cameraroll" -l"react-native-cookies" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-mmkv-storage" -l"react-native-netinfo" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-restart" -l"react-native-safe-area-context" -l"react-native-simple-crypto" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MobileCoreServices" -framework "OpenSSL" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" -framework "hermes" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto/react_native_simple_crypto.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/FlipperKit/FlipperKit.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -Xcc -DFB_SONARKIT_ENABLED=1 PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN.release.xcconfig b/ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN.release.xcconfig index 7556c44b9..bb93383c8 100644 --- a/ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN.release.xcconfig +++ b/ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN.release.xcconfig @@ -8,7 +8,7 @@ HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/H LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXVideoThumbnails" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCT-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNCPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/React-perflogger" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeUiLib" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libevent" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-blur" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cookies" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-netinfo" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-restart" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto/react_native_simple_crypto.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCT-Folly" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNCPicker" -l"RNConfigReader" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"React-perflogger" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeUiLib" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"glog" -l"libevent" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-blur" -l"react-native-cameraroll" -l"react-native-cookies" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-mmkv-storage" -l"react-native-netinfo" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-restart" -l"react-native-safe-area-context" -l"react-native-simple-crypto" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "OpenSSL" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" -framework "hermes" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCT-Folly" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNCPicker" -l"RNConfigReader" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"React-perflogger" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeUiLib" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"glog" -l"libevent" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-blur" -l"react-native-cameraroll" -l"react-native-cookies" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-mmkv-storage" -l"react-native-netinfo" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-restart" -l"react-native-safe-area-context" -l"react-native-simple-crypto" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MobileCoreServices" -framework "OpenSSL" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" -framework "hermes" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto/react_native_simple_crypto.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/ios/RocketChatRN.xcodeproj/project.pbxproj b/ios/RocketChatRN.xcodeproj/project.pbxproj index dd38d0481..d83401df5 100644 --- a/ios/RocketChatRN.xcodeproj/project.pbxproj +++ b/ios/RocketChatRN.xcodeproj/project.pbxproj @@ -7,9 +7,7 @@ objects = { /* Begin PBXBuildFile section */ - 0BFA93B8E2ED67D4832E0C76 /* libPods-ShareRocketChatRN.a in Frameworks */ = {isa = PBXBuildFile; fileRef = B0B41F834F20FC0ACC547296 /* libPods-ShareRocketChatRN.a */; }; 0C6E2DE448364EA896869ADF /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = B37C79D9BD0742CE936B6982 /* libc++.tbd */; }; - 0E6A7FC7493A0BCBCBACF877 /* libPods-NotificationService.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 81411D280138EF5344596C2F /* libPods-NotificationService.a */; }; 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; @@ -140,7 +138,9 @@ 7AAB3E49257E6A6E00707CF6 /* ShareRocketChatRN.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = 1EC6ACB022CB9FC300A41C61 /* ShareRocketChatRN.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; }; 7AAB3E4A257E6A6E00707CF6 /* NotificationService.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = 1EFEB5952493B6640072EDC0 /* NotificationService.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; }; 7ACD4897222860DE00442C55 /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7ACD4853222860DE00442C55 /* JavaScriptCore.framework */; }; + DC5529EC3B4695AC7319279F /* libPods-defaults-ShareRocketChatRN.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 42EF13FCD0CA813CFABFE073 /* libPods-defaults-ShareRocketChatRN.a */; }; DD2BA30A89E64F189C2C24AC /* libWatermelonDB.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BA7E862283664608B3894E34 /* libWatermelonDB.a */; }; + EDE8A8F63A3ADB93A6640F8E /* libPods-defaults-NotificationService.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2B2C0164CCC5BED03F5A257E /* libPods-defaults-NotificationService.a */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -268,12 +268,16 @@ 290E43E48AD8418287FA99D6 /* WatermelonDB.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = WatermelonDB.xcodeproj; path = "../node_modules/@nozbe/watermelondb/native/ios/WatermelonDB.xcodeproj"; sourceTree = ""; }; 2977818A2C0F18284F485E2B /* Pods-defaults-Rocket.Chat.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-defaults-Rocket.Chat.release.xcconfig"; path = "Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat.release.xcconfig"; sourceTree = ""; }; 298C921C910A1A2FD60068AE /* Pods-defaults-RocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-defaults-RocketChatRN.debug.xcconfig"; path = "Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN.debug.xcconfig"; sourceTree = ""; }; + 2B2C0164CCC5BED03F5A257E /* libPods-defaults-NotificationService.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-defaults-NotificationService.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 3E39DC0E55DAF0C76229CDB1 /* Pods-RocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RocketChatRN.debug.xcconfig"; path = "Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.debug.xcconfig"; sourceTree = ""; }; 4046FBF676A7866DDD7F3D4D /* Pods-defaults-Rocket.Chat.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-defaults-Rocket.Chat.debug.xcconfig"; path = "Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat.debug.xcconfig"; sourceTree = ""; }; + 42EF13FCD0CA813CFABFE073 /* libPods-defaults-ShareRocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-defaults-ShareRocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 4AD2A9CF2BF6DA3C0B8292A5 /* Pods-defaults-ShareRocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-defaults-ShareRocketChatRN.debug.xcconfig"; path = "Pods/Target Support Files/Pods-defaults-ShareRocketChatRN/Pods-defaults-ShareRocketChatRN.debug.xcconfig"; sourceTree = ""; }; 4F207203734B8F5868BBE28D /* Pods-NotificationService.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NotificationService.debug.xcconfig"; path = "Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService.debug.xcconfig"; sourceTree = ""; }; 54CFE45F7A9BAAB898835DB0 /* libPods-defaults-Rocket.Chat.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-defaults-Rocket.Chat.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 60B2A6A31FC4588700BD58E5 /* RocketChatRN.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; name = RocketChatRN.entitlements; path = RocketChatRN/RocketChatRN.entitlements; sourceTree = ""; }; 655D972D9C9581ECA960A1A3 /* Pods-defaults-RocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-defaults-RocketChatRN.release.xcconfig"; path = "Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN.release.xcconfig"; sourceTree = ""; }; + 761454CCD8F76AE5720EF9E8 /* Pods-defaults-NotificationService.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-defaults-NotificationService.debug.xcconfig"; path = "Pods/Target Support Files/Pods-defaults-NotificationService/Pods-defaults-NotificationService.debug.xcconfig"; sourceTree = ""; }; 7A006F13229C83B600803143 /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "GoogleService-Info.plist"; sourceTree = ""; }; 7A0D62D1242AB187006D5C06 /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = LaunchScreen.storyboard; sourceTree = ""; }; 7A14FCEC257FEB3A005BDCD4 /* Experimental.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Experimental.xcassets; sourceTree = ""; }; @@ -282,12 +286,12 @@ 7AAA749C23043B1D00F1ADE9 /* RocketChatRN-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "RocketChatRN-Bridging-Header.h"; sourceTree = ""; }; 7AAB3E52257E6A6E00707CF6 /* Rocket.Chat.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Rocket.Chat.app; sourceTree = BUILT_PRODUCTS_DIR; }; 7ACD4853222860DE00442C55 /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; - 81411D280138EF5344596C2F /* libPods-NotificationService.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-NotificationService.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 9730F55A254AC78BC5361659 /* Pods-NotificationService.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NotificationService.release.xcconfig"; path = "Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService.release.xcconfig"; sourceTree = ""; }; - B0B41F834F20FC0ACC547296 /* libPods-ShareRocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ShareRocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; B37C79D9BD0742CE936B6982 /* libc++.tbd */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "usr/lib/libc++.tbd"; sourceTree = SDKROOT; }; BA7E862283664608B3894E34 /* libWatermelonDB.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libWatermelonDB.a; sourceTree = ""; }; + C2E54E960FF01DF65065578A /* Pods-defaults-ShareRocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-defaults-ShareRocketChatRN.release.xcconfig"; path = "Pods/Target Support Files/Pods-defaults-ShareRocketChatRN/Pods-defaults-ShareRocketChatRN.release.xcconfig"; sourceTree = ""; }; CD6349B2FB77351DFCD655CF /* Pods-RocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RocketChatRN.release.xcconfig"; path = "Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.release.xcconfig"; sourceTree = ""; }; + E1E67FDDC7B11F12B06766A6 /* Pods-defaults-NotificationService.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-defaults-NotificationService.release.xcconfig"; path = "Pods/Target Support Files/Pods-defaults-NotificationService/Pods-defaults-NotificationService.release.xcconfig"; sourceTree = ""; }; FFD96B27BA4184219615DE18 /* libPods-defaults-RocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-defaults-RocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; /* End PBXFileReference section */ @@ -319,7 +323,7 @@ files = ( 1E55FDB32320675C0048D2F9 /* libWatermelonDB.a in Frameworks */, 1E25743422CBA2CF005A877F /* JavaScriptCore.framework in Frameworks */, - 0BFA93B8E2ED67D4832E0C76 /* libPods-ShareRocketChatRN.a in Frameworks */, + DC5529EC3B4695AC7319279F /* libPods-defaults-ShareRocketChatRN.a in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -327,8 +331,8 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 0E6A7FC7493A0BCBCBACF877 /* libPods-NotificationService.a in Frameworks */, 1E1C2F7E250FACB5005DCE7D /* libWatermelonDB.a in Frameworks */, + EDE8A8F63A3ADB93A6640F8E /* libPods-defaults-NotificationService.a in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -491,6 +495,10 @@ 2977818A2C0F18284F485E2B /* Pods-defaults-Rocket.Chat.release.xcconfig */, 298C921C910A1A2FD60068AE /* Pods-defaults-RocketChatRN.debug.xcconfig */, 655D972D9C9581ECA960A1A3 /* Pods-defaults-RocketChatRN.release.xcconfig */, + 761454CCD8F76AE5720EF9E8 /* Pods-defaults-NotificationService.debug.xcconfig */, + E1E67FDDC7B11F12B06766A6 /* Pods-defaults-NotificationService.release.xcconfig */, + 4AD2A9CF2BF6DA3C0B8292A5 /* Pods-defaults-ShareRocketChatRN.debug.xcconfig */, + C2E54E960FF01DF65065578A /* Pods-defaults-ShareRocketChatRN.release.xcconfig */, ); name = Pods; sourceTree = ""; @@ -572,10 +580,10 @@ 7ACD4853222860DE00442C55 /* JavaScriptCore.framework */, B37C79D9BD0742CE936B6982 /* libc++.tbd */, 06BB44DD4855498082A744AD /* libz.tbd */, - B0B41F834F20FC0ACC547296 /* libPods-ShareRocketChatRN.a */, - 81411D280138EF5344596C2F /* libPods-NotificationService.a */, 54CFE45F7A9BAAB898835DB0 /* libPods-defaults-Rocket.Chat.a */, FFD96B27BA4184219615DE18 /* libPods-defaults-RocketChatRN.a */, + 2B2C0164CCC5BED03F5A257E /* libPods-defaults-NotificationService.a */, + 42EF13FCD0CA813CFABFE073 /* libPods-defaults-ShareRocketChatRN.a */, ); name = Frameworks; sourceTree = ""; @@ -597,6 +605,7 @@ 1EC6ACF422CB9FC300A41C61 /* Embed App Extensions */, 1E1EA8082326CCE300E22452 /* ShellScript */, 9558AC195A3506BB8472CE99 /* [CP] Embed Pods Frameworks */, + 88055964DAAE45B1A4886C27 /* Upload source maps to Bugsnag */, ); buildRules = ( ); @@ -638,8 +647,6 @@ 1EFEB5922493B6640072EDC0 /* Frameworks */, 1EFEB5932493B6640072EDC0 /* Resources */, 222BDC9959FFD7AAFFB578E7 /* [CP] Copy Pods Resources */, - 0598CD25801BA82D38DB76DF /* [CP-User] [RNFB] Core Configuration */, - 99D8D8B64BC393A5808C292D /* [CP-User] [RNFB] Crashlytics Configuration */, ); buildRules = ( ); @@ -664,6 +671,7 @@ 7AAB3E4B257E6A6E00707CF6 /* ShellScript */, ED0FD291560ADE19562D38A2 /* [CP] Embed Pods Frameworks */, 6630EA9DDAD28E02D0764540 /* [CP] Copy Pods Resources */, + 7A10288726B1D15200E47EF8 /* Upload source maps to Bugsnag */, ); buildRules = ( ); @@ -823,17 +831,7 @@ ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n"; - }; - 0598CD25801BA82D38DB76DF /* [CP-User] [RNFB] Core Configuration */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - name = "[CP-User] [RNFB] Core Configuration"; - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "#!/usr/bin/env bash\n#\n# Copyright (c) 2016-present Invertase Limited & Contributors\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this library except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n#\nset -e\n\n_MAX_LOOKUPS=2;\n_SEARCH_RESULT=''\n_RN_ROOT_EXISTS=''\n_CURRENT_LOOKUPS=1\n_JSON_ROOT=\"'react-native'\"\n_JSON_FILE_NAME='firebase.json'\n_JSON_OUTPUT_BASE64='e30=' # { }\n_CURRENT_SEARCH_DIR=${PROJECT_DIR}\n_PLIST_BUDDY=/usr/libexec/PlistBuddy\n_TARGET_PLIST=\"${BUILT_PRODUCTS_DIR}/${INFOPLIST_PATH}\"\n_DSYM_PLIST=\"${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}/Contents/Info.plist\"\n\n# plist arrays\n_PLIST_ENTRY_KEYS=()\n_PLIST_ENTRY_TYPES=()\n_PLIST_ENTRY_VALUES=()\n\nfunction setPlistValue {\n echo \"info: setting plist entry '$1' of type '$2' in file '$4'\"\n ${_PLIST_BUDDY} -c \"Add :$1 $2 '$3'\" $4 || echo \"info: '$1' already exists\"\n}\n\nfunction getFirebaseJsonKeyValue () {\n if [[ ${_RN_ROOT_EXISTS} ]]; then\n ruby -e \"require 'rubygems';require 'json'; output=JSON.parse('$1'); puts output[$_JSON_ROOT]['$2']\"\n else\n echo \"\"\n fi;\n}\n\nfunction jsonBoolToYesNo () {\n if [[ $1 == \"false\" ]]; then\n echo \"NO\"\n elif [[ $1 == \"true\" ]]; then\n echo \"YES\"\n else echo \"NO\"\n fi\n}\n\necho \"info: -> RNFB build script started\"\necho \"info: 1) Locating ${_JSON_FILE_NAME} file:\"\n\nif [[ -z ${_CURRENT_SEARCH_DIR} ]]; then\n _CURRENT_SEARCH_DIR=$(pwd)\nfi;\n\nwhile true; do\n _CURRENT_SEARCH_DIR=$(dirname \"$_CURRENT_SEARCH_DIR\")\n if [[ \"$_CURRENT_SEARCH_DIR\" == \"/\" ]] || [[ ${_CURRENT_LOOKUPS} -gt ${_MAX_LOOKUPS} ]]; then break; fi;\n echo \"info: ($_CURRENT_LOOKUPS of $_MAX_LOOKUPS) Searching in '$_CURRENT_SEARCH_DIR' for a ${_JSON_FILE_NAME} file.\"\n _SEARCH_RESULT=$(find \"$_CURRENT_SEARCH_DIR\" -maxdepth 2 -name ${_JSON_FILE_NAME} -print | head -n 1)\n if [[ ${_SEARCH_RESULT} ]]; then\n echo \"info: ${_JSON_FILE_NAME} found at $_SEARCH_RESULT\"\n break;\n fi;\n _CURRENT_LOOKUPS=$((_CURRENT_LOOKUPS+1))\ndone\n\nif [[ ${_SEARCH_RESULT} ]]; then\n _JSON_OUTPUT_RAW=$(cat \"${_SEARCH_RESULT}\")\n _RN_ROOT_EXISTS=$(ruby -e \"require 'rubygems';require 'json'; output=JSON.parse('$_JSON_OUTPUT_RAW'); puts output[$_JSON_ROOT]\" || echo '')\n\n if [[ ${_RN_ROOT_EXISTS} ]]; then\n _JSON_OUTPUT_BASE64=$(python -c 'import json,sys,base64;print(base64.b64encode(json.dumps(json.loads(open('\"'${_SEARCH_RESULT}'\"').read())['${_JSON_ROOT}'])))' || echo \"e30=\")\n fi\n\n _PLIST_ENTRY_KEYS+=(\"firebase_json_raw\")\n _PLIST_ENTRY_TYPES+=(\"string\")\n _PLIST_ENTRY_VALUES+=(\"$_JSON_OUTPUT_BASE64\")\n\n # config.messaging_auto_init_enabled\n _MESSAGING_AUTO_INIT=$(getFirebaseJsonKeyValue \"$_JSON_OUTPUT_RAW\" \"messaging_auto_init_enabled\")\n if [[ $_MESSAGING_AUTO_INIT ]]; then\n _PLIST_ENTRY_KEYS+=(\"FirebaseMessagingAutoInitEnabled\")\n _PLIST_ENTRY_TYPES+=(\"bool\")\n _PLIST_ENTRY_VALUES+=(\"$(jsonBoolToYesNo \"$_MESSAGING_AUTO_INIT\")\")\n fi\n\n # config.crashlytics_disable_auto_disabler - undocumented for now - mainly for debugging, document if becomes usful\n _CRASHLYTICS_AUTO_DISABLE_ENABLED=$(getFirebaseJsonKeyValue \"$_JSON_OUTPUT_RAW\" \"crashlytics_disable_auto_disabler\")\n if [[ $_CRASHLYTICS_AUTO_DISABLE_ENABLED == \"true\" ]]; then\n echo \"Disabled Crashlytics auto disabler.\" # do nothing\n else\n _PLIST_ENTRY_KEYS+=(\"FirebaseCrashlyticsCollectionEnabled\")\n _PLIST_ENTRY_TYPES+=(\"bool\")\n _PLIST_ENTRY_VALUES+=(\"NO\")\n fi\n\n # config.admob_delay_app_measurement_init\n _ADMOB_DELAY_APP_MEASUREMENT=$(getFirebaseJsonKeyValue \"$_JSON_OUTPUT_RAW\" \"admob_delay_app_measurement_init\")\n if [[ $_ADMOB_DELAY_APP_MEASUREMENT == \"true\" ]]; then\n _PLIST_ENTRY_KEYS+=(\"GADDelayAppMeasurementInit\")\n _PLIST_ENTRY_TYPES+=(\"bool\")\n _PLIST_ENTRY_VALUES+=(\"YES\")\n fi\n\n # config.admob_ios_app_id\n _ADMOB_IOS_APP_ID=$(getFirebaseJsonKeyValue \"$_JSON_OUTPUT_RAW\" \"admob_ios_app_id\")\n if [[ $_ADMOB_IOS_APP_ID ]]; then\n _PLIST_ENTRY_KEYS+=(\"GADApplicationIdentifier\")\n _PLIST_ENTRY_TYPES+=(\"string\")\n _PLIST_ENTRY_VALUES+=(\"$_ADMOB_IOS_APP_ID\")\n fi\nelse\n _PLIST_ENTRY_KEYS+=(\"firebase_json_raw\")\n _PLIST_ENTRY_TYPES+=(\"string\")\n _PLIST_ENTRY_VALUES+=(\"$_JSON_OUTPUT_BASE64\")\n echo \"warning: A firebase.json file was not found, whilst this file is optional it is recommended to include it to configure firebase services in React Native Firebase.\"\nfi;\n\necho \"info: 2) Injecting Info.plist entries: \"\n\n# Log out the keys we're adding\nfor i in \"${!_PLIST_ENTRY_KEYS[@]}\"; do\n echo \" -> $i) ${_PLIST_ENTRY_KEYS[$i]}\" \"${_PLIST_ENTRY_TYPES[$i]}\" \"${_PLIST_ENTRY_VALUES[$i]}\"\ndone\n\nfor plist in \"${_TARGET_PLIST}\" \"${_DSYM_PLIST}\" ; do\n if [[ -f \"${plist}\" ]]; then\n\n # paths with spaces break the call to setPlistValue. temporarily modify\n # the shell internal field separator variable (IFS), which normally \n # includes spaces, to consist only of line breaks\n oldifs=$IFS\n IFS=\"\n\"\n\n for i in \"${!_PLIST_ENTRY_KEYS[@]}\"; do\n setPlistValue \"${_PLIST_ENTRY_KEYS[$i]}\" \"${_PLIST_ENTRY_TYPES[$i]}\" \"${_PLIST_ENTRY_VALUES[$i]}\" \"${plist}\"\n done\n\n # restore the original internal field separator value\n IFS=$oldifs\n else\n echo \"warning: A Info.plist build output file was not found (${plist})\"\n fi\ndone\n\necho \"info: <- RNFB build script finished\"\n\n"; + shellScript = "export EXTRA_PACKAGER_ARGS=\"--sourcemap-output $TMPDIR/$(md5 -qs \"$CONFIGURATION_BUILD_DIR\")-main.jsbundle.map\"\nexport NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n"; }; 1984338E174B5F45674AD7A1 /* [CP] Copy Pods Resources */ = { isa = PBXShellScriptBuildPhase; @@ -841,91 +839,7 @@ files = ( ); inputPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-resources.sh", - "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/AntDesign.ttf", - "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Entypo.ttf", - "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf", - "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Feather.ttf", - "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf", - "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf", - "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf", - "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf", - "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Fontisto.ttf", - "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Foundation.ttf", - "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf", - "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf", - "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf", - "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Octicons.ttf", - "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf", - "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Zocial.ttf", - "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle", - ); - name = "[CP] Copy Pods Resources"; - outputPaths = ( - "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AntDesign.ttf", - "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Entypo.ttf", - "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EvilIcons.ttf", - "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Feather.ttf", - "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome.ttf", - "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Brands.ttf", - "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Regular.ttf", - "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Solid.ttf", - "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Fontisto.ttf", - "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Foundation.ttf", - "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Ionicons.ttf", - "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MaterialCommunityIcons.ttf", - "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MaterialIcons.ttf", - "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Octicons.ttf", - "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SimpleLineIcons.ttf", - "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Zocial.ttf", - "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-resources.sh\"\n"; - showEnvVarsInLog = 0; - }; - 1E1EA8082326CCE300E22452 /* ShellScript */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - ); - outputFileListPaths = ( - ); - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "echo \"Target architectures: $ARCHS\"\n\nAPP_PATH=\"${TARGET_BUILD_DIR}/${WRAPPER_NAME}\"\n\nfind \"$APP_PATH\" -name '*.framework' -type d | while read -r FRAMEWORK\ndo\nFRAMEWORK_EXECUTABLE_NAME=$(defaults read \"$FRAMEWORK/Info.plist\" CFBundleExecutable)\nFRAMEWORK_EXECUTABLE_PATH=\"$FRAMEWORK/$FRAMEWORK_EXECUTABLE_NAME\"\necho \"Executable is $FRAMEWORK_EXECUTABLE_PATH\"\necho $(lipo -info \"$FRAMEWORK_EXECUTABLE_PATH\")\n\nFRAMEWORK_TMP_PATH=\"$FRAMEWORK_EXECUTABLE_PATH-tmp\"\n\n# remove simulator's archs if location is not simulator's directory\ncase \"${TARGET_BUILD_DIR}\" in\n*\"iphonesimulator\")\necho \"No need to remove archs\"\n;;\n*)\nif $(lipo \"$FRAMEWORK_EXECUTABLE_PATH\" -verify_arch \"i386\") ; then\nlipo -output \"$FRAMEWORK_TMP_PATH\" -remove \"i386\" \"$FRAMEWORK_EXECUTABLE_PATH\"\necho \"i386 architecture removed\"\nrm \"$FRAMEWORK_EXECUTABLE_PATH\"\nmv \"$FRAMEWORK_TMP_PATH\" \"$FRAMEWORK_EXECUTABLE_PATH\"\nfi\nif $(lipo \"$FRAMEWORK_EXECUTABLE_PATH\" -verify_arch \"x86_64\") ; then\nlipo -output \"$FRAMEWORK_TMP_PATH\" -remove \"x86_64\" \"$FRAMEWORK_EXECUTABLE_PATH\"\necho \"x86_64 architecture removed\"\nrm \"$FRAMEWORK_EXECUTABLE_PATH\"\nmv \"$FRAMEWORK_TMP_PATH\" \"$FRAMEWORK_EXECUTABLE_PATH\"\nfi\n;;\nesac\n\necho \"Completed for executable $FRAMEWORK_EXECUTABLE_PATH\"\necho $\n\ndone\n"; - }; - 1EFE4DC322CBF36300B766B7 /* ShellScript */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - ); - outputFileListPaths = ( - ); - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n"; - }; - 222BDC9959FFD7AAFFB578E7 /* [CP] Copy Pods Resources */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-NotificationService/Pods-NotificationService-resources.sh", + "${PODS_ROOT}/Target Support Files/Pods-defaults-ShareRocketChatRN/Pods-defaults-ShareRocketChatRN-resources.sh", "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker/QBImagePicker.bundle", "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/AntDesign.ttf", "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Entypo.ttf", @@ -970,7 +884,95 @@ ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-NotificationService/Pods-NotificationService-resources.sh\"\n"; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-defaults-ShareRocketChatRN/Pods-defaults-ShareRocketChatRN-resources.sh\"\n"; + showEnvVarsInLog = 0; + }; + 1E1EA8082326CCE300E22452 /* ShellScript */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + ); + outputFileListPaths = ( + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "echo \"Target architectures: $ARCHS\"\n\nAPP_PATH=\"${TARGET_BUILD_DIR}/${WRAPPER_NAME}\"\n\nfind \"$APP_PATH\" -name '*.framework' -type d | while read -r FRAMEWORK\ndo\nFRAMEWORK_EXECUTABLE_NAME=$(defaults read \"$FRAMEWORK/Info.plist\" CFBundleExecutable)\nFRAMEWORK_EXECUTABLE_PATH=\"$FRAMEWORK/$FRAMEWORK_EXECUTABLE_NAME\"\necho \"Executable is $FRAMEWORK_EXECUTABLE_PATH\"\necho $(lipo -info \"$FRAMEWORK_EXECUTABLE_PATH\")\n\nFRAMEWORK_TMP_PATH=\"$FRAMEWORK_EXECUTABLE_PATH-tmp\"\n\n# remove simulator's archs if location is not simulator's directory\ncase \"${TARGET_BUILD_DIR}\" in\n*\"iphonesimulator\")\necho \"No need to remove archs\"\n;;\n*)\nif $(lipo \"$FRAMEWORK_EXECUTABLE_PATH\" -verify_arch \"i386\") ; then\nlipo -output \"$FRAMEWORK_TMP_PATH\" -remove \"i386\" \"$FRAMEWORK_EXECUTABLE_PATH\"\necho \"i386 architecture removed\"\nrm \"$FRAMEWORK_EXECUTABLE_PATH\"\nmv \"$FRAMEWORK_TMP_PATH\" \"$FRAMEWORK_EXECUTABLE_PATH\"\nfi\nif $(lipo \"$FRAMEWORK_EXECUTABLE_PATH\" -verify_arch \"x86_64\") ; then\nlipo -output \"$FRAMEWORK_TMP_PATH\" -remove \"x86_64\" \"$FRAMEWORK_EXECUTABLE_PATH\"\necho \"x86_64 architecture removed\"\nrm \"$FRAMEWORK_EXECUTABLE_PATH\"\nmv \"$FRAMEWORK_TMP_PATH\" \"$FRAMEWORK_EXECUTABLE_PATH\"\nfi\n;;\nesac\n\necho \"Completed for executable $FRAMEWORK_EXECUTABLE_PATH\"\necho $\n\ndone\n"; + }; + 1EFE4DC322CBF36300B766B7 /* ShellScript */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + ); + outputFileListPaths = ( + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "export EXTRA_PACKAGER_ARGS=\"--sourcemap-output $TMPDIR/$(md5 -qs \"$CONFIGURATION_BUILD_DIR\")-main.jsbundle.map\"\nexport NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n"; + }; + 222BDC9959FFD7AAFFB578E7 /* [CP] Copy Pods Resources */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-defaults-NotificationService/Pods-defaults-NotificationService-resources.sh", + "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker/QBImagePicker.bundle", + "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/AntDesign.ttf", + "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Entypo.ttf", + "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf", + "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Feather.ttf", + "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf", + "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf", + "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf", + "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf", + "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Fontisto.ttf", + "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Foundation.ttf", + "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf", + "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf", + "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf", + "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Octicons.ttf", + "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf", + "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Zocial.ttf", + "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle", + "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController/TOCropViewControllerBundle.bundle", + ); + name = "[CP] Copy Pods Resources"; + outputPaths = ( + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/QBImagePicker.bundle", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AntDesign.ttf", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Entypo.ttf", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EvilIcons.ttf", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Feather.ttf", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome.ttf", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Brands.ttf", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Regular.ttf", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Solid.ttf", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Fontisto.ttf", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Foundation.ttf", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Ionicons.ttf", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MaterialCommunityIcons.ttf", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MaterialIcons.ttf", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Octicons.ttf", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SimpleLineIcons.ttf", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Zocial.ttf", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/TOCropViewControllerBundle.bundle", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-defaults-NotificationService/Pods-defaults-NotificationService-resources.sh\"\n"; showEnvVarsInLog = 0; }; 3995C2EE3AF3138E9AF58F1B /* [CP] Check Pods Manifest.lock */ = { @@ -1010,7 +1012,7 @@ outputFileListPaths = ( ); outputPaths = ( - "$(DERIVED_FILE_DIR)/Pods-NotificationService-checkManifestLockResult.txt", + "$(DERIVED_FILE_DIR)/Pods-defaults-NotificationService-checkManifestLockResult.txt", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; @@ -1071,6 +1073,24 @@ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat-resources.sh\"\n"; showEnvVarsInLog = 0; }; + 7A10288726B1D15200E47EF8 /* Upload source maps to Bugsnag */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + ); + name = "Upload source maps to Bugsnag"; + outputFileListPaths = ( + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "SOURCE_MAP=\"$TMPDIR/$(md5 -qs \"$CONFIGURATION_BUILD_DIR\")-main.jsbundle.map\" ../node_modules/@bugsnag/react-native/bugsnag-react-native-xcode.sh\n"; + }; 7AA5C63E23E30D110005C4A7 /* Start Packager */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -1119,7 +1139,7 @@ ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n"; + shellScript = "export EXTRA_PACKAGER_ARGS=\"--sourcemap-output $TMPDIR/$(md5 -qs \"$CONFIGURATION_BUILD_DIR\")-main.jsbundle.map\"\nexport NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n"; }; 7AAB3E4B257E6A6E00707CF6 /* ShellScript */ = { isa = PBXShellScriptBuildPhase; @@ -1138,6 +1158,20 @@ shellPath = /bin/sh; shellScript = "echo \"Target architectures: $ARCHS\"\n\nAPP_PATH=\"${TARGET_BUILD_DIR}/${WRAPPER_NAME}\"\n\nfind \"$APP_PATH\" -name '*.framework' -type d | while read -r FRAMEWORK\ndo\nFRAMEWORK_EXECUTABLE_NAME=$(defaults read \"$FRAMEWORK/Info.plist\" CFBundleExecutable)\nFRAMEWORK_EXECUTABLE_PATH=\"$FRAMEWORK/$FRAMEWORK_EXECUTABLE_NAME\"\necho \"Executable is $FRAMEWORK_EXECUTABLE_PATH\"\necho $(lipo -info \"$FRAMEWORK_EXECUTABLE_PATH\")\n\nFRAMEWORK_TMP_PATH=\"$FRAMEWORK_EXECUTABLE_PATH-tmp\"\n\n# remove simulator's archs if location is not simulator's directory\ncase \"${TARGET_BUILD_DIR}\" in\n*\"iphonesimulator\")\necho \"No need to remove archs\"\n;;\n*)\nif $(lipo \"$FRAMEWORK_EXECUTABLE_PATH\" -verify_arch \"i386\") ; then\nlipo -output \"$FRAMEWORK_TMP_PATH\" -remove \"i386\" \"$FRAMEWORK_EXECUTABLE_PATH\"\necho \"i386 architecture removed\"\nrm \"$FRAMEWORK_EXECUTABLE_PATH\"\nmv \"$FRAMEWORK_TMP_PATH\" \"$FRAMEWORK_EXECUTABLE_PATH\"\nfi\nif $(lipo \"$FRAMEWORK_EXECUTABLE_PATH\" -verify_arch \"x86_64\") ; then\nlipo -output \"$FRAMEWORK_TMP_PATH\" -remove \"x86_64\" \"$FRAMEWORK_EXECUTABLE_PATH\"\necho \"x86_64 architecture removed\"\nrm \"$FRAMEWORK_EXECUTABLE_PATH\"\nmv \"$FRAMEWORK_TMP_PATH\" \"$FRAMEWORK_EXECUTABLE_PATH\"\nfi\n;;\nesac\n\necho \"Completed for executable $FRAMEWORK_EXECUTABLE_PATH\"\necho $\n\ndone\n"; }; + 88055964DAAE45B1A4886C27 /* Upload source maps to Bugsnag */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Upload source maps to Bugsnag"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "SOURCE_MAP=\"$TMPDIR/$(md5 -qs \"$CONFIGURATION_BUILD_DIR\")-main.jsbundle.map\" ../node_modules/@bugsnag/react-native/bugsnag-react-native-xcode.sh\n"; + }; 9558AC195A3506BB8472CE99 /* [CP] Embed Pods Frameworks */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -1162,16 +1196,6 @@ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-frameworks.sh\"\n"; showEnvVarsInLog = 0; }; - 99D8D8B64BC393A5808C292D /* [CP-User] [RNFB] Crashlytics Configuration */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - name = "[CP-User] [RNFB] Crashlytics Configuration"; - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "#!/usr/bin/env bash\n#\n# Copyright (c) 2016-present Invertase Limited & Contributors\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this library except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n#\nset -e\n\nif [[ ${PODS_ROOT} ]]; then\n echo \"info: Exec FirebaseCrashlytics Run from Pods\"\n \"${PODS_ROOT}/FirebaseCrashlytics/run\"\nelse\n echo \"info: Exec FirebaseCrashlytics Run from framework\"\n \"${PROJECT_DIR}/FirebaseCrashlytics.framework/run\"\nfi\n"; - }; A68B7A0986AFB750F727793A /* [CP] Check Pods Manifest.lock */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -1187,7 +1211,7 @@ outputFileListPaths = ( ); outputPaths = ( - "$(DERIVED_FILE_DIR)/Pods-ShareRocketChatRN-checkManifestLockResult.txt", + "$(DERIVED_FILE_DIR)/Pods-defaults-ShareRocketChatRN-checkManifestLockResult.txt", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; @@ -1551,7 +1575,7 @@ }; 1EC6ACBC22CB9FC300A41C61 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0383633C4523666C176CAA52 /* Pods-ShareRocketChatRN.debug.xcconfig */; + baseConfigurationReference = 4AD2A9CF2BF6DA3C0B8292A5 /* Pods-defaults-ShareRocketChatRN.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = YES; CLANG_ANALYZER_NONNULL = YES; @@ -1618,7 +1642,7 @@ }; 1EC6ACBD22CB9FC300A41C61 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 037C33B0D9A54FB4CB670FB7 /* Pods-ShareRocketChatRN.release.xcconfig */; + baseConfigurationReference = C2E54E960FF01DF65065578A /* Pods-defaults-ShareRocketChatRN.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = YES; CLANG_ANALYZER_NONNULL = YES; @@ -1683,7 +1707,7 @@ }; 1EFEB59D2493B6640072EDC0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4F207203734B8F5868BBE28D /* Pods-NotificationService.debug.xcconfig */; + baseConfigurationReference = 761454CCD8F76AE5720EF9E8 /* Pods-defaults-NotificationService.debug.xcconfig */; buildSettings = { CLANG_ANALYZER_NONNULL = YES; CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; @@ -1702,7 +1726,7 @@ INFOPLIST_FILE = NotificationService/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 11.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks"; - MARKETING_VERSION = 4.18.0; + MARKETING_VERSION = 4.19.0; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; PRODUCT_BUNDLE_IDENTIFIER = chat.rocket.reactnative.NotificationService; @@ -1719,7 +1743,7 @@ }; 1EFEB59E2493B6640072EDC0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9730F55A254AC78BC5361659 /* Pods-NotificationService.release.xcconfig */; + baseConfigurationReference = E1E67FDDC7B11F12B06766A6 /* Pods-defaults-NotificationService.release.xcconfig */; buildSettings = { CLANG_ANALYZER_NONNULL = YES; CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; @@ -1739,7 +1763,7 @@ INFOPLIST_FILE = NotificationService/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 11.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks"; - MARKETING_VERSION = 4.18.0; + MARKETING_VERSION = 4.19.0; MTL_FAST_MATH = YES; PRODUCT_BUNDLE_IDENTIFIER = chat.rocket.reactnative.NotificationService; PRODUCT_NAME = "$(TARGET_NAME)"; diff --git a/ios/RocketChatRN/AppDelegate.m b/ios/RocketChatRN/AppDelegate.m index 2c6e7cfe4..1bb516a36 100644 --- a/ios/RocketChatRN/AppDelegate.m +++ b/ios/RocketChatRN/AppDelegate.m @@ -17,6 +17,7 @@ #import "RNBootSplash.h" #import "Orientation.h" #import +#import #import #import #import @@ -53,6 +54,7 @@ static void InitializeFlipper(UIApplication *application) { if(![FIRApp defaultApp]){ [FIRApp configure]; } + [Bugsnag start]; RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge moduleName:@"RocketChatRN" initialProperties:nil]; diff --git a/ios/RocketChatRN/Info.plist b/ios/RocketChatRN/Info.plist index bc30c1441..496e641fd 100644 --- a/ios/RocketChatRN/Info.plist +++ b/ios/RocketChatRN/Info.plist @@ -6,8 +6,11 @@ AppGroup group.ios.chat.rocket - BugsnagAPIKey - + bugsnag + + apiKey + apiKeyValue + CFBundleDevelopmentRegion en CFBundleDisplayName @@ -23,7 +26,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 4.18.0 + 4.19.0 CFBundleSignature ???? CFBundleURLTypes diff --git a/ios/ShareRocketChatRN/Info.plist b/ios/ShareRocketChatRN/Info.plist index 5db7e5aef..e0b6f6042 100644 --- a/ios/ShareRocketChatRN/Info.plist +++ b/ios/ShareRocketChatRN/Info.plist @@ -6,6 +6,11 @@ group.ios.chat.rocket IS_OFFICIAL + bugsnag + + apiKey + apiKeyValue + CFBundleDevelopmentRegion $(DEVELOPMENT_LANGUAGE) CFBundleDisplayName @@ -21,7 +26,7 @@ CFBundlePackageType XPC! CFBundleShortVersionString - 4.18.0 + 4.19.0 CFBundleVersion 1 KeychainGroup diff --git a/ios/ShareRocketChatRN/ShareRocketChatRN.m b/ios/ShareRocketChatRN/ShareRocketChatRN.m index b5fa3318f..33505bada 100644 --- a/ios/ShareRocketChatRN/ShareRocketChatRN.m +++ b/ios/ShareRocketChatRN/ShareRocketChatRN.m @@ -12,6 +12,7 @@ #import #import #import +#import #import #import @@ -32,6 +33,7 @@ RCT_EXPORT_MODULE(); if(![FIRApp defaultApp]){ [FIRApp configure]; } + [Bugsnag start]; self.moduleRegistryAdapter = [[UMModuleRegistryAdapter alloc] initWithModuleRegistryProvider:[[UMModuleRegistryProvider alloc] init]]; jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil]; diff --git a/ios/fastlane/Fastfile b/ios/fastlane/Fastfile index 85d810245..1e9c5cdc7 100644 --- a/ios/fastlane/Fastfile +++ b/ios/fastlane/Fastfile @@ -39,6 +39,11 @@ platform :ios do skip_waiting_for_build_processing: true ) upload_symbols_to_crashlytics(dsym_path: "./ios/Rocket.Chat.app.dSYM.zip") + upload_symbols_to_bugsnag( + config_file: "./RocketChatRN/Info.plist", + dsym_path: "./ios/Rocket.Chat.app.dSYM.zip", + api_key: options[:official] ? ENV["BUGSNAG_KEY_OFFICIAL"] : ENV["BUGSNAG_KEY"] + ) end desc "Build Experimental app" diff --git a/ios/fastlane/Pluginfile b/ios/fastlane/Pluginfile index 273a6b6f4..b9c5b6a6f 100644 --- a/ios/fastlane/Pluginfile +++ b/ios/fastlane/Pluginfile @@ -1,3 +1,4 @@ # Autogenerated by fastlane # # Ensure this file is checked in to source control! +gem 'fastlane-plugin-bugsnag' diff --git a/package.json b/package.json index 97b2a7038..ae3147925 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rocket-chat-reactnative", - "version": "4.18.0", + "version": "4.19.0", "private": true, "scripts": { "start": "react-native start", @@ -13,13 +13,19 @@ "android-whitelabel": "npx react-native run-android --main-activity chat.rocket.reactnative.MainActivity --variant=experimentalPlayDebug --appId", "log-android": "react-native log-android", "snyk-protect": "snyk protect", - "precommit": "eslint . && jest", + "precommit": "lint-staged", "generate-source-maps-ios": "react-native bundle --platform ios --dev false --entry-file index.js --bundle-output ios-release.bundle --sourcemap-output ios-release.bundle.map", - "generate-source-maps-android": "bugsnag-sourcemaps", "postinstall": "patch-package && jetify", "prepare": "husky install" }, + "lint-staged": { + "*.{js,ts,tsx}": [ + "eslint", + "jest --bail --findRelatedTests" + ] + }, "dependencies": { + "@bugsnag/react-native": "^7.10.5", "@codler/react-native-keyboard-aware-scroll-view": "^1.0.1", "@nozbe/watermelondb": "0.19.0", "@react-native-community/art": "^1.2.0", @@ -42,7 +48,6 @@ "@rocket.chat/react-native-fast-image": "^8.2.0", "@rocket.chat/sdk": "RocketChat/Rocket.Chat.js.SDK#mobile", "@rocket.chat/ui-kit": "0.13.0", - "bugsnag-react-native": "2.23.10", "bytebuffer": "^5.0.1", "color2k": "1.2.4", "commonmark": "git+https://github.com/RocketChat/commonmark.js.git", @@ -62,6 +67,7 @@ "i18n-js": "3.8.0", "js-base64": "3.6.1", "js-sha256": "^0.9.0", + "lint-staged": "^11.1.0", "lodash": "4.17.21", "moment": "2.29.1", "pretty-bytes": "5.6.0", @@ -130,13 +136,13 @@ "@babel/eslint-plugin": "^7.13.0", "@babel/plugin-proposal-decorators": "^7.8.3", "@babel/runtime": "^7.12.5", + "@bugsnag/source-maps": "^2.2.0", "@storybook/addon-storyshots": "5.3.21", "@storybook/react-native": "5.3.25", "@types/react-native": "^0.62.7", "axios": "0.21.1", "babel-jest": "27.0.2", "babel-plugin-transform-remove-console": "^6.9.4", - "bugsnag-sourcemaps": "1.3.0", "codecov": "3.8.2", "detox": "18.17.0", "eslint": "7.14.0", diff --git a/yarn.lock b/yarn.lock index 4c464a8a2..e8cd3c094 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1840,6 +1840,108 @@ resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== +"@bugsnag/core@^7.10.0": + version "7.10.0" + resolved "https://registry.yarnpkg.com/@bugsnag/core/-/core-7.10.0.tgz#4b4856141a95a1feadb1afc74265dc6ad8d40cc0" + integrity sha512-sDa2nDxwsxHQx2/2/tsBWjYqH0TewCR8N/r5at6B+irwVkI0uts7Qc2JyqDTfiEiBXKVEXFK+fHTz1x9b8tsiA== + dependencies: + "@bugsnag/cuid" "^3.0.0" + "@bugsnag/safe-json-stringify" "^6.0.0" + error-stack-parser "^2.0.3" + iserror "0.0.2" + stack-generator "^2.0.3" + +"@bugsnag/cuid@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@bugsnag/cuid/-/cuid-3.0.0.tgz#2ee7642a30aee6dc86f5e7f824653741e42e5c35" + integrity sha512-LOt8aaBI+KvOQGneBtpuCz3YqzyEAehd1f3nC5yr9TIYW1+IzYKa2xWS4EiMz5pPOnRPHkyyS5t/wmSmN51Gjg== + +"@bugsnag/delivery-react-native@^7.10.0": + version "7.10.0" + resolved "https://registry.yarnpkg.com/@bugsnag/delivery-react-native/-/delivery-react-native-7.10.0.tgz#6c0b122869cf84aaae9ab4c1e2b591f53f4354ae" + integrity sha512-J1hTgZJWL7wvj0k6WC1/nGEJi4UgxrhheI0vB6bROsGo2t4l/aBY87XzhgfSH3W0ktPbCO8UqdCw1cfXlIP/Kw== + +"@bugsnag/plugin-console-breadcrumbs@^7.10.5": + version "7.10.5" + resolved "https://registry.yarnpkg.com/@bugsnag/plugin-console-breadcrumbs/-/plugin-console-breadcrumbs-7.10.5.tgz#1eed51691c423cea978ad900379ef6588748b229" + integrity sha512-bzjef7iUxis9oNB0Ss5vP86j9+0dXJQWMJ5wUlHQci4qI0BsTdRUoRM5Jti/k/PQzQDLVCxN/hIzA8e/DLyG/A== + +"@bugsnag/plugin-network-breadcrumbs@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@bugsnag/plugin-network-breadcrumbs/-/plugin-network-breadcrumbs-7.10.4.tgz#9cf5d40400114c0037003c4a3cde0b40314f1d6b" + integrity sha512-GkS3hToclhZd6U61GZPQi8iearAYDxOkgKgAVDQ4ql7F2W2XhMKSI/TvXXraNu0zVDKNhF1V0VmSFU340XPQJw== + +"@bugsnag/plugin-react-native-client-sync@^7.10.0": + version "7.10.0" + resolved "https://registry.yarnpkg.com/@bugsnag/plugin-react-native-client-sync/-/plugin-react-native-client-sync-7.10.0.tgz#8fd1113f7d740c5bc5e8891952d157f9d0bb1172" + integrity sha512-WdyYItuEGXNav8orMjIfnqCm1VNQpTiDhrCOmx0+Y/I6hPSTAEfNTAsX1/vpotNZi8+gN5W1AvySMkcyKGsBXg== + +"@bugsnag/plugin-react-native-event-sync@^7.10.0": + version "7.10.0" + resolved "https://registry.yarnpkg.com/@bugsnag/plugin-react-native-event-sync/-/plugin-react-native-event-sync-7.10.0.tgz#9b59687148ab8048b293a5a66133724aa89baf1c" + integrity sha512-+B/8Djtlqq+Le/cYO264K3hcELx4+UDO82IP1RDzTLt8lGw4+p3iTABtLrtzx7Xzl02Qt0yC/3haD6Y6u2e7SQ== + +"@bugsnag/plugin-react-native-global-error-handler@^7.10.0": + version "7.10.0" + resolved "https://registry.yarnpkg.com/@bugsnag/plugin-react-native-global-error-handler/-/plugin-react-native-global-error-handler-7.10.0.tgz#db6c81cd93b3e768fa3c780f4bc5207e06ecc71e" + integrity sha512-xM09XAsoVFQCIf0cHMOfSfAinkFK727eLmyZZ1JWihlTDQlCT9eQtzPs0HtT6iQh0RDOfkkyOCQ61N+Roy1BUQ== + +"@bugsnag/plugin-react-native-hermes@^7.10.0": + version "7.10.0" + resolved "https://registry.yarnpkg.com/@bugsnag/plugin-react-native-hermes/-/plugin-react-native-hermes-7.10.0.tgz#ac95098acf3fed9d257cf6653656faa54180075f" + integrity sha512-jh81BXgC88n2LVZ0/7ONop/smDHGE+XdP2PQNa5/OSrS6v4WngpE5Hiv396X0z/yG5w9cCT4SbcmeWep23SKDA== + +"@bugsnag/plugin-react-native-session@^7.10.0": + version "7.10.0" + resolved "https://registry.yarnpkg.com/@bugsnag/plugin-react-native-session/-/plugin-react-native-session-7.10.0.tgz#d2b1296a85a8854fae0b606952e21c01a08202a5" + integrity sha512-OTT68vzDBjKBkntmbHxQPJNXzoiOhM3OuWt9d+bXNgzpLj1hAIN59mVt/6REZnTXCqcgY6rpEFP0UuPehONn4Q== + +"@bugsnag/plugin-react-native-unhandled-rejection@^7.10.5": + version "7.10.5" + resolved "https://registry.yarnpkg.com/@bugsnag/plugin-react-native-unhandled-rejection/-/plugin-react-native-unhandled-rejection-7.10.5.tgz#8dc030920e01861fc9a486b38bc0221e5adbe3e7" + integrity sha512-esdBjxgGJ9mlYyBTtGXrLb2tJmGlVPS755VXhxMmR9zQ79QaWR10e0FIc+F9dQZeQRg1q/XfX6HOy81p/eanRg== + +"@bugsnag/plugin-react@^7.10.0": + version "7.10.0" + resolved "https://registry.yarnpkg.com/@bugsnag/plugin-react/-/plugin-react-7.10.0.tgz#eef05c2d5d2cce45f622cce152d93cf777edf022" + integrity sha512-o0oHd2BfGxFAQTrc1/u0T5RtWntOaeUREnXOfnrX2obi6JthWCcn44YUyUQ0IklcoZ+IAcLy27GNDggs5LfIew== + +"@bugsnag/react-native@^7.10.5": + version "7.10.5" + resolved "https://registry.yarnpkg.com/@bugsnag/react-native/-/react-native-7.10.5.tgz#7710ac4551a71853e9ba5c7725b3dca4d8487ac4" + integrity sha512-u2aWPHLWYOXO6kGbDCc7PvOUGqSxIypVq8l0YnnsoBpL+Iozksmo79R4uxFYEh1R55HUGyuFOH6qBafw3FVn2g== + dependencies: + "@bugsnag/core" "^7.10.0" + "@bugsnag/delivery-react-native" "^7.10.0" + "@bugsnag/plugin-console-breadcrumbs" "^7.10.5" + "@bugsnag/plugin-network-breadcrumbs" "^7.10.4" + "@bugsnag/plugin-react" "^7.10.0" + "@bugsnag/plugin-react-native-client-sync" "^7.10.0" + "@bugsnag/plugin-react-native-event-sync" "^7.10.0" + "@bugsnag/plugin-react-native-global-error-handler" "^7.10.0" + "@bugsnag/plugin-react-native-hermes" "^7.10.0" + "@bugsnag/plugin-react-native-session" "^7.10.0" + "@bugsnag/plugin-react-native-unhandled-rejection" "^7.10.5" + iserror "^0.0.2" + +"@bugsnag/safe-json-stringify@^6.0.0": + version "6.0.0" + resolved "https://registry.yarnpkg.com/@bugsnag/safe-json-stringify/-/safe-json-stringify-6.0.0.tgz#22abdcd83e008c369902976730c34c150148a758" + integrity sha512-htzFO1Zc57S8kgdRK9mLcPVTW1BY2ijfH7Dk2CeZmspTWKdKqSo1iwmqrq2WtRjFlo8aRZYgLX0wFrDXF/9DLA== + +"@bugsnag/source-maps@^2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@bugsnag/source-maps/-/source-maps-2.2.0.tgz#eabccaf42bb13b8b8a41a4271595b5b41967333b" + integrity sha512-q+0ltXWquin1lgbJAU3r31rNMaCMl+BSNxMuYZDrZuKXo09GRmb7+9mvHRbxMiftPgve1nA9ONu55ciinJmKig== + dependencies: + command-line-args "^5.1.1" + command-line-usage "^6.1.0" + concat-stream "^2.0.0" + consola "^2.15.0" + form-data "^3.0.0" + glob "^7.1.6" + read-pkg-up "^7.0.1" + "@cnakazawa/watch@^1.0.3": version "1.0.4" resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.4.tgz#f864ae85004d0fcab6f50be9141c4da368d1656a" @@ -4214,6 +4316,13 @@ ansi-escapes@^4.2.1: dependencies: type-fest "^0.11.0" +ansi-escapes@^4.3.0: + version "4.3.2" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" + integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== + dependencies: + type-fest "^0.21.3" + ansi-fragments@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/ansi-fragments/-/ansi-fragments-0.2.1.tgz#24409c56c4cc37817c3d7caa99d8969e2de5a05e" @@ -4379,16 +4488,21 @@ array-back@^1.0.3, array-back@^1.0.4: dependencies: typical "^2.6.0" +array-back@^3.0.1, array-back@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/array-back/-/array-back-3.1.0.tgz#b8859d7a508871c9a7b2cf42f99428f65e96bfb0" + integrity sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q== + +array-back@^4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/array-back/-/array-back-4.0.2.tgz#8004e999a6274586beeb27342168652fdb89fa1e" + integrity sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg== + array-filter@~0.0.0: version "0.0.1" resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" integrity sha1-fajPLiZijtcygDWB/SH2fKzS7uw= -array-find-index@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" - integrity sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E= - array-flatten@1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" @@ -4530,6 +4644,11 @@ astral-regex@^1.0.0: resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== +astral-regex@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" + integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== + async-each@^1.0.1: version "1.0.3" resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf" @@ -5412,31 +5531,6 @@ buffer@^5.2.0: base64-js "^1.0.2" ieee754 "^1.1.4" -bugsnag-react-native@2.23.10: - version "2.23.10" - resolved "https://registry.yarnpkg.com/bugsnag-react-native/-/bugsnag-react-native-2.23.10.tgz#f2156f15182d1e81d076386e9bff5b02a2db5153" - integrity sha512-Z47+dSitce8CpJa7rpDMP06tm3045LtIwaJ/nYtKFk+SnbL4qdPad8j4JCC65XL2P/wSOxHfMGYw1lPA4j+lWA== - dependencies: - iserror "^0.0.2" - promise "^7" - prop-types "^15.6.0" - -bugsnag-sourcemaps@1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/bugsnag-sourcemaps/-/bugsnag-sourcemaps-1.3.0.tgz#0b35582050b5cde4cf7a03033cec35279e54b775" - integrity sha512-YbZ52kr+Qnu0pRJ0LGa5QLjdDY14KG8UE9ESMHH+0A7w057PqRzkKnbSoFvo4d92VyzSzrQJnyMptyQAlZxBuw== - dependencies: - concat-stream "^2.0.0" - form-data "^2.3.3" - glob "^7.1.4" - graceful-fs "^4.1.11" - kleur "^3.0.3" - meow "^3.7.0" - once "^1.4.0" - rc "^1.2.8" - read-pkg-up "^2.0.0" - run-parallel-limit "^1.0.5" - builtin-status-codes@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" @@ -5582,19 +5676,6 @@ camel-case@^4.1.1: pascal-case "^3.1.1" tslib "^1.10.0" -camelcase-keys@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" - integrity sha1-MIvur/3ygRkFHvodkyITyRuPkuc= - dependencies: - camelcase "^2.0.0" - map-obj "^1.0.0" - -camelcase@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" - integrity sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8= - camelcase@^5.0.0, camelcase@^5.3.1: version "5.3.1" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" @@ -5675,7 +5756,7 @@ chalk@^3.0.0: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^4.0.0, chalk@^4.1.0: +chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.1.tgz#c80b3fab28bf6371e6863325eee67e618b77e6ad" integrity sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg== @@ -5867,6 +5948,14 @@ cli-table3@0.5.1: optionalDependencies: colors "^1.1.2" +cli-truncate@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-2.1.0.tgz#c39e28bf05edcde5be3b98992a22deed5a2b93c7" + integrity sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg== + dependencies: + slice-ansi "^3.0.0" + string-width "^4.2.0" + cli-width@^2.0.0: version "2.2.1" resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.1.tgz#b0433d0b4e9c847ef18868a4ef16fd5fc8271c48" @@ -6012,7 +6101,7 @@ colors@^1.0.3, colors@^1.1.2: resolved "https://registry.yarnpkg.com/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78" integrity sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA== -combined-stream@^1.0.6, combined-stream@^1.0.8: +combined-stream@^1.0.8: version "1.0.8" resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== @@ -6039,6 +6128,26 @@ command-line-args@^3.0.0: find-replace "^1.0.2" typical "^2.6.0" +command-line-args@^5.1.1: + version "5.1.3" + resolved "https://registry.yarnpkg.com/command-line-args/-/command-line-args-5.1.3.tgz#1e57d2816f28804073bb5e75cd24e02e2aa321e7" + integrity sha512-a5tF6mjqRSOBswBwdMkKY47JQ464Dkg9Pcwbxwo9wxRhKWZjtBktmBASllk3AMJ7qBuWgsAGtVa7b2/+EsymOQ== + dependencies: + array-back "^3.1.0" + find-replace "^3.0.0" + lodash.camelcase "^4.3.0" + typical "^4.0.0" + +command-line-usage@^6.1.0: + version "6.1.1" + resolved "https://registry.yarnpkg.com/command-line-usage/-/command-line-usage-6.1.1.tgz#c908e28686108917758a49f45efb4f02f76bc03f" + integrity sha512-F59pEuAR9o1SF/bD0dQBDluhpT4jJQNWUHEuVBqpDmCUo6gPjCi+m9fCWnWZVR/oG6cMTUms4h+3NPl74wGXvA== + dependencies: + array-back "^4.0.1" + chalk "^2.4.2" + table-layout "^1.0.1" + typical "^5.2.0" + commander@^2.19.0, commander@^2.20.0: version "2.20.3" resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" @@ -6049,6 +6158,11 @@ commander@^4.0.1, commander@^4.1.1: resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== +commander@^7.2.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7" + integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== + commander@~2.13.0: version "2.13.0" resolved "https://registry.yarnpkg.com/commander/-/commander-2.13.0.tgz#6964bca67685df7c1f1430c584f07d7597885b9c" @@ -6165,6 +6279,11 @@ connect@^3.6.5: parseurl "~1.3.3" utils-merge "1.0.1" +consola@^2.15.0: + version "2.15.3" + resolved "https://registry.yarnpkg.com/consola/-/consola-2.15.3.tgz#2e11f98d6a4be71ff72e0bdf07bd23e12cb61550" + integrity sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw== + console-browserify@^1.1.0: version "1.2.0" resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336" @@ -6323,6 +6442,17 @@ cosmiconfig@^6.0.0: path-type "^4.0.0" yaml "^1.7.2" +cosmiconfig@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.0.tgz#ef9b44d773959cae63ddecd122de23853b60f8d3" + integrity sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA== + dependencies: + "@types/parse-json" "^4.0.0" + import-fresh "^3.2.1" + parse-json "^5.0.0" + path-type "^4.0.0" + yaml "^1.10.0" + create-ecdh@^4.0.0: version "4.0.3" resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.3.tgz#c9111b6f33045c4697f144787f9254cdc77c45ff" @@ -6503,13 +6633,6 @@ csstype@^3.0.2: resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.8.tgz#d2266a792729fb227cd216fb572f43728e1ad340" integrity sha512-jXKhWqXPmlUeoQnF/EhTtTl4C9SnrxSH/jZUih3jmO6lBKr99rP3/+FmrMj4EFpOXzMtXHAZkd3x0E6h6Fgflw== -currently-unhandled@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" - integrity sha1-mI3zP+qxke95mmE2nddsF635V+o= - dependencies: - array-find-index "^1.0.1" - cyclist@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-1.0.1.tgz#596e9698fd0c80e12038c2b82d6eb1b35b6224d9" @@ -6569,7 +6692,14 @@ debug@^3.2.5, debug@^3.2.7: dependencies: ms "^2.1.1" -decamelize@^1.1.2, decamelize@^1.2.0: +debug@^4.3.1: + version "4.3.2" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b" + integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw== + dependencies: + ms "2.1.2" + +decamelize@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= @@ -6613,7 +6743,7 @@ deep-equal@^1.1.1: object-keys "^1.1.1" regexp.prototype.flags "^1.2.0" -deep-extend@^0.6.0: +deep-extend@~0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== @@ -7084,7 +7214,7 @@ enhanced-resolve@^4.5.0: memory-fs "^0.5.0" tapable "^1.0.0" -enquirer@^2.3.5: +enquirer@^2.3.5, enquirer@^2.3.6: version "2.3.6" resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== @@ -7120,7 +7250,7 @@ error-ex@^1.2.0, error-ex@^1.3.1: dependencies: is-arrayish "^0.2.1" -error-stack-parser@^2.0.6: +error-stack-parser@^2.0.3, error-stack-parser@^2.0.6: version "2.0.6" resolved "https://registry.yarnpkg.com/error-stack-parser/-/error-stack-parser-2.0.6.tgz#5a99a707bd7a4c58a797902d48d82803ede6aad8" integrity sha512-d51brTeqC+BHlwF0BhPtcYgF5nlzf9ZZ0ZIUQNZpc9ZB9qw5IJ2diTrBY9jlCJkTLITYPjmiX6OWCwH+fuyNgQ== @@ -8036,6 +8166,13 @@ find-replace@^1.0.2: array-back "^1.0.4" test-value "^2.1.0" +find-replace@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/find-replace/-/find-replace-3.0.0.tgz#3e7e23d3b05167a76f770c9fbd5258b0def68c38" + integrity sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ== + dependencies: + array-back "^3.0.1" + find-root@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4" @@ -8056,14 +8193,6 @@ find-up@5.0.0: locate-path "^6.0.0" path-exists "^4.0.0" -find-up@^1.0.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" - integrity sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8= - dependencies: - path-exists "^2.0.0" - pinkie-promise "^2.0.0" - find-up@^2.0.0, find-up@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" @@ -8166,15 +8295,6 @@ fork-ts-checker-webpack-plugin@1.5.0: tapable "^1.0.0" worker-rpc "^0.1.0" -form-data@^2.3.3: - version "2.5.1" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.5.1.tgz#f2cbec57b5e59e23716e128fe44d4e5dd23895f4" - integrity sha512-m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA== - dependencies: - asynckit "^0.4.0" - combined-stream "^1.0.6" - mime-types "^2.1.12" - form-data@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" @@ -8383,6 +8503,11 @@ get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1: has "^1.0.3" has-symbols "^1.0.1" +get-own-enumerable-property-symbols@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664" + integrity sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g== + get-package-type@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" @@ -8395,11 +8520,6 @@ get-port@^2.1.0: dependencies: pinkie-promise "^2.0.0" -get-stdin@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" - integrity sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4= - get-stream@^4.0.0: version "4.1.0" resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" @@ -8486,7 +8606,7 @@ glob@7.0.6: once "^1.3.0" path-is-absolute "^1.0.0" -glob@7.1.7, glob@^7.0.0: +glob@7.1.7, glob@^7.0.0, glob@^7.1.6: version "7.1.7" resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== @@ -9035,13 +9155,6 @@ imurmurhash@^0.1.4: resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= -indent-string@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" - integrity sha1-ji1INIdCEhtKghi3oTfppSBJ3IA= - dependencies: - repeating "^2.0.0" - indent-string@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" @@ -9085,7 +9198,7 @@ ini@^1.3.4: resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== -ini@^1.3.5, ini@~1.3.0: +ini@^1.3.5: version "1.3.5" resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== @@ -9351,11 +9464,6 @@ is-extglob@^2.1.0, is-extglob@^2.1.1: resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= -is-finite@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.1.0.tgz#904135c77fb42c0641d6aa1bcdbc4daa8da082f3" - integrity sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w== - is-fullwidth-code-point@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" @@ -9436,7 +9544,7 @@ is-number@^7.0.0: resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== -is-obj@^1.0.0: +is-obj@^1.0.0, is-obj@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8= @@ -9485,6 +9593,11 @@ is-regex@^1.1.3: call-bind "^1.0.2" has-symbols "^1.0.2" +is-regexp@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" + integrity sha1-/S2INUXEa6xaYz57mgnof6LLUGk= + is-root@2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/is-root/-/is-root-2.1.0.tgz#809e18129cf1129644302a4f8544035d51984a9c" @@ -9532,11 +9645,6 @@ is-unicode-supported@^0.1.0: resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== -is-utf8@^0.2.0: - version "0.2.1" - resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" - integrity sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI= - is-windows@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" @@ -9569,7 +9677,7 @@ isemail@2.x.x: resolved "https://registry.yarnpkg.com/isemail/-/isemail-2.2.1.tgz#0353d3d9a62951080c262c2aa0a42b8ea8e9e2a6" integrity sha1-A1PT2aYpUQgMJiwqoKQrjqjp4qY= -iserror@^0.0.2: +iserror@0.0.2, iserror@^0.0.2: version "0.0.2" resolved "https://registry.yarnpkg.com/iserror/-/iserror-0.0.2.tgz#bd53451fe2f668b9f2402c1966787aaa2c7c0bf5" integrity sha1-vVNFH+L2aLnyQCwZZnh6qix8C/U= @@ -10942,6 +11050,40 @@ lines-and-columns@^1.1.6: resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= +lint-staged@^11.1.0: + version "11.1.0" + resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-11.1.0.tgz#a21d67ffe4516e907635adeaf6d6450d8cffb4e4" + integrity sha512-pzwEf+NKbTauAlk7gPPwTfulRXESEPZCSFXYfg20F220UOObebxu5uL5mkr9csQLNOM2Ydfrt3DJXakzAL7aaQ== + dependencies: + chalk "^4.1.1" + cli-truncate "^2.1.0" + commander "^7.2.0" + cosmiconfig "^7.0.0" + debug "^4.3.1" + dedent "^0.7.0" + enquirer "^2.3.6" + execa "^5.0.0" + listr2 "^3.8.2" + log-symbols "^4.1.0" + micromatch "^4.0.4" + normalize-path "^3.0.0" + please-upgrade-node "^3.2.0" + string-argv "0.3.1" + stringify-object "^3.3.0" + +listr2@^3.8.2: + version "3.11.0" + resolved "https://registry.yarnpkg.com/listr2/-/listr2-3.11.0.tgz#9771b02407875aa78e73d6e0ff6541bbec0aaee9" + integrity sha512-XLJVe2JgXCyQTa3FbSv11lkKExYmEyA4jltVo8z4FX10Vt1Yj8IMekBfwim0BSOM9uj1QMTJvDQQpHyuPbB/dQ== + dependencies: + cli-truncate "^2.1.0" + colorette "^1.2.2" + log-update "^4.0.0" + p-map "^4.0.0" + rxjs "^6.6.7" + through "^2.3.8" + wrap-ansi "^7.0.0" + load-bmfont@^1.3.1, load-bmfont@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/load-bmfont/-/load-bmfont-1.4.0.tgz#75f17070b14a8c785fe7f5bee2e6fd4f98093b6b" @@ -10956,17 +11098,6 @@ load-bmfont@^1.3.1, load-bmfont@^1.4.0: xhr "^2.0.1" xtend "^4.0.0" -load-json-file@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" - integrity sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA= - dependencies: - graceful-fs "^4.1.2" - parse-json "^2.2.0" - pify "^2.0.0" - pinkie-promise "^2.0.0" - strip-bom "^2.0.0" - load-json-file@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" @@ -11059,6 +11190,11 @@ lodash.assign@^4.2.0: resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" integrity sha1-DZnzzNem0mHRm9rrkkUAXShYCOc= +lodash.camelcase@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" + integrity sha1-soqmKIorn8ZRA1x3EfZathkDMaY= + lodash.debounce@^4.0.8: version "4.0.8" resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" @@ -11139,7 +11275,7 @@ lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.5.0: resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== -log-symbols@4.1.0: +log-symbols@4.1.0, log-symbols@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== @@ -11154,6 +11290,16 @@ log-symbols@^2.2.0: dependencies: chalk "^2.0.1" +log-update@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/log-update/-/log-update-4.0.0.tgz#589ecd352471f2a1c0c570287543a64dfd20e0a1" + integrity sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg== + dependencies: + ansi-escapes "^4.3.0" + cli-cursor "^3.1.0" + slice-ansi "^4.0.0" + wrap-ansi "^6.2.0" + logkitty@^0.7.1: version "0.7.1" resolved "https://registry.yarnpkg.com/logkitty/-/logkitty-0.7.1.tgz#8e8d62f4085a826e8d38987722570234e33c6aa7" @@ -11180,14 +11326,6 @@ loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1, loose-envify@^1.4 dependencies: js-tokens "^3.0.0 || ^4.0.0" -loud-rejection@^1.0.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" - integrity sha1-W0b4AUft7leIcPCG0Eghz5mOVR8= - dependencies: - currently-unhandled "^0.4.1" - signal-exit "^3.0.0" - lower-case@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.1.tgz#39eeb36e396115cc05e29422eaea9e692c9408c7" @@ -11259,11 +11397,6 @@ map-cache@^0.2.2: resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= -map-obj@^1.0.0, map-obj@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" - integrity sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0= - map-or-similar@^1.5.0: version "1.5.0" resolved "https://registry.yarnpkg.com/map-or-similar/-/map-or-similar-1.5.0.tgz#6de2653174adfb5d9edc33c69d3e92a1b76faf08" @@ -11347,22 +11480,6 @@ memory-fs@^0.5.0: errno "^0.1.3" readable-stream "^2.0.1" -meow@^3.7.0: - version "3.7.0" - resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" - integrity sha1-cstmi0JSKCkKu/qFaJJYcwioAfs= - dependencies: - camelcase-keys "^2.0.0" - decamelize "^1.1.2" - loud-rejection "^1.0.0" - map-obj "^1.0.1" - minimist "^1.1.3" - normalize-package-data "^2.3.4" - object-assign "^4.0.1" - read-pkg-up "^1.0.1" - redent "^1.0.0" - trim-newlines "^1.0.0" - merge-descriptors@1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" @@ -11771,7 +11888,7 @@ minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: dependencies: brace-expansion "^1.1.7" -minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0, minimist@^1.2.5, "minimist@~ 1.2.0": +minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.5, "minimist@~ 1.2.0": version "1.2.5" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== @@ -12106,7 +12223,7 @@ node-version@^1.0.0: resolved "https://registry.yarnpkg.com/node-version/-/node-version-1.2.0.tgz#34fde3ffa8e1149bd323983479dda620e1b5060d" integrity sha512-ma6oU4Sk0qOoKEAymVoTvk8EdXEobdS7m/mAGhDJ8Rouugho48crHBORAmy5BoOcv8wraPM6xumapQp5hl4iIQ== -normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.5.0: +normalize-package-data@^2.3.2, normalize-package-data@^2.5.0: version "2.5.0" resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== @@ -12212,7 +12329,7 @@ ob1@0.64.0: resolved "https://registry.yarnpkg.com/ob1/-/ob1-0.64.0.tgz#f254a55a53ca395c4f9090e28a85483eac5eba19" integrity sha512-CO1N+5dhvy+MoAwxz8+fymEUcwsT4a+wHhrHFb02LppcJdHxgcBWviwEhUwKOD2kLMQ7ijrrzybOqpGcqEtvpQ== -object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: +object-assign@^4.1.0, object-assign@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= @@ -12567,6 +12684,13 @@ p-map@^3.0.0: dependencies: aggregate-error "^3.0.0" +p-map@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" + integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== + dependencies: + aggregate-error "^3.0.0" + p-try@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" @@ -12745,13 +12869,6 @@ path-dirname@^1.0.0: resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA= -path-exists@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" - integrity sha1-D+tsZPD8UY2adU3V77YscCJ2H0s= - dependencies: - pinkie-promise "^2.0.0" - path-exists@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" @@ -12787,15 +12904,6 @@ path-to-regexp@0.1.7: resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w= -path-type@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" - integrity sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE= - dependencies: - graceful-fs "^4.1.2" - pify "^2.0.0" - pinkie-promise "^2.0.0" - path-type@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" @@ -12910,6 +13018,13 @@ pkg-up@2.0.0, pkg-up@^2.0.0: dependencies: find-up "^2.1.0" +please-upgrade-node@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz#aeddd3f994c933e4ad98b99d9a556efa0e2fe942" + integrity sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg== + dependencies: + semver-compare "^1.0.0" + plist@^3.0.1: version "3.0.2" resolved "https://registry.yarnpkg.com/plist/-/plist-3.0.2.tgz#74bbf011124b90421c22d15779cee60060ba95bc" @@ -13185,7 +13300,7 @@ promise.prototype.finally@^3.1.0: es-abstract "^1.17.0-next.0" function-bind "^1.1.1" -promise@^7, promise@^7.1.1: +promise@^7.1.1: version "7.3.1" resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" integrity sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg== @@ -13426,16 +13541,6 @@ raw-loader@^3.1.0: loader-utils "^1.1.0" schema-utils "^2.0.1" -rc@^1.2.8: - version "1.2.8" - resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" - integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== - dependencies: - deep-extend "^0.6.0" - ini "~1.3.0" - minimist "^1.2.0" - strip-json-comments "~2.0.1" - react-clientside-effect@^1.2.2: version "1.2.5" resolved "https://registry.yarnpkg.com/react-clientside-effect/-/react-clientside-effect-1.2.5.tgz#e2c4dc3c9ee109f642fac4f5b6e9bf5bcd2219a3" @@ -14086,14 +14191,6 @@ reactotron-redux@3.1.3: resolved "https://registry.yarnpkg.com/reactotron-redux/-/reactotron-redux-3.1.3.tgz#ec61ef7a7e1dffda766e534f858f3bb854396d53" integrity sha512-8QVEbr2R4GtFlXwSe0uK5bkuz3xRWZx8Nwi2g9e6cRbpkesTfycWVK5Oyn+wR9XOTt894WSn8CAH2TB6dVuDyg== -read-pkg-up@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" - integrity sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI= - dependencies: - find-up "^1.0.0" - read-pkg "^1.0.0" - read-pkg-up@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" @@ -14119,15 +14216,6 @@ read-pkg-up@^7.0.0, read-pkg-up@^7.0.1: read-pkg "^5.2.0" type-fest "^0.8.1" -read-pkg@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" - integrity sha1-9f+qXs0pyzHAR0vKfXVra7KePyg= - dependencies: - load-json-file "^1.0.0" - normalize-package-data "^2.3.2" - path-type "^1.0.0" - read-pkg@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" @@ -14232,13 +14320,10 @@ recursive-readdir@2.2.2: dependencies: minimatch "3.0.4" -redent@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" - integrity sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94= - dependencies: - indent-string "^2.1.0" - strip-indent "^1.0.1" +reduce-flatten@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/reduce-flatten/-/reduce-flatten-2.0.0.tgz#734fd84e65f375d7ca4465c69798c25c9d10ae27" + integrity sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w== redux-immutable-state-invariant@2.1.0: version "2.1.0" @@ -14405,13 +14490,6 @@ repeat-string@^1.6.1: resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= -repeating@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" - integrity sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo= - dependencies: - is-finite "^1.0.0" - require-directory@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" @@ -14583,11 +14661,6 @@ run-async@^2.2.0, run-async@^2.4.0: resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455" integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== -run-parallel-limit@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/run-parallel-limit/-/run-parallel-limit-1.0.5.tgz#c29a4fd17b4df358cb52a8a697811a63c984f1b7" - integrity sha512-NsY+oDngvrvMxKB3G8ijBzIema6aYbQMD2bHOamvN52BysbIGTnEY2xsNyfrcr9GhY995/t/0nQN3R3oZvaDlg== - run-queue@^1.0.0, run-queue@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47" @@ -14607,7 +14680,7 @@ rxjs@^6.2.2, rxjs@^6.5.3: dependencies: tslib "^1.9.0" -rxjs@^6.4.0: +rxjs@^6.4.0, rxjs@^6.6.7: version "6.6.7" resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.7.tgz#90ac018acabf491bf65044235d5863c4dab804c9" integrity sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ== @@ -14727,6 +14800,11 @@ select@^1.1.2: resolved "https://registry.yarnpkg.com/select/-/select-1.1.2.tgz#0e7350acdec80b1108528786ec1d4418d11b396d" integrity sha1-DnNQrN7ICxEIUoeG7B1EGNEbOW0= +semver-compare@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" + integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w= + "semver@2 || 3 || 4 || 5", semver@^5.2.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0: version "5.7.1" resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" @@ -15019,6 +15097,24 @@ slice-ansi@^2.0.0, slice-ansi@^2.1.0: astral-regex "^1.0.0" is-fullwidth-code-point "^2.0.0" +slice-ansi@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787" + integrity sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ== + dependencies: + ansi-styles "^4.0.0" + astral-regex "^2.0.0" + is-fullwidth-code-point "^3.0.0" + +slice-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" + integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== + dependencies: + ansi-styles "^4.0.0" + astral-regex "^2.0.0" + is-fullwidth-code-point "^3.0.0" + snapdragon-node@^2.0.1: version "2.1.1" resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" @@ -15190,7 +15286,7 @@ stable@^0.1.8: resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== -stack-generator@^2.0.5: +stack-generator@^2.0.3, stack-generator@^2.0.5: version "2.0.5" resolved "https://registry.yarnpkg.com/stack-generator/-/stack-generator-2.0.5.tgz#fb00e5b4ee97de603e0773ea78ce944d81596c36" integrity sha512-/t1ebrbHkrLrDuNMdeAcsvynWgoH/i4o8EGGfX7dEYDoTXOYVAkEpFdtshlvabzc6JlJ8Kf9YdFEoz7JkzGN9Q== @@ -15310,6 +15406,11 @@ strict-uri-encode@^2.0.0: resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz#b9c7330c7042862f6b142dc274bbcc5866ce3546" integrity sha1-ucczDHBChi9rFC3CdLvMWGbONUY= +string-argv@0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da" + integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg== + string-length@^4.0.1: version "4.0.2" resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a" @@ -15464,6 +15565,15 @@ string_decoder@~1.1.1: dependencies: safe-buffer "~5.1.0" +stringify-object@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.3.0.tgz#703065aefca19300d3ce88af4f5b3956d7556629" + integrity sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw== + dependencies: + get-own-enumerable-property-symbols "^3.0.0" + is-obj "^1.0.1" + is-regexp "^1.0.0" + strip-ansi@5.2.0, strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: version "5.2.0" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" @@ -15492,13 +15602,6 @@ strip-ansi@^6.0.0: dependencies: ansi-regex "^5.0.0" -strip-bom@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" - integrity sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4= - dependencies: - is-utf8 "^0.2.0" - strip-bom@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" @@ -15519,23 +15622,11 @@ strip-final-newline@^2.0.0: resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== -strip-indent@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" - integrity sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI= - dependencies: - get-stdin "^4.0.1" - strip-json-comments@3.1.1, strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== -strip-json-comments@~2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" - integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= - stubs@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/stubs/-/stubs-3.0.0.tgz#e8d2ba1fa9c90570303c030b6900f7d5f89abe5b" @@ -15626,6 +15717,16 @@ symbol.prototype.description@^1.0.0: es-abstract "^1.17.0-next.1" has-symbols "^1.0.1" +table-layout@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/table-layout/-/table-layout-1.0.2.tgz#c4038a1853b0136d63365a734b6931cf4fad4a04" + integrity sha512-qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A== + dependencies: + array-back "^4.0.1" + deep-extend "~0.6.0" + typical "^5.2.0" + wordwrapjs "^4.0.0" + table@^5.2.3: version "5.4.6" resolved "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e" @@ -15827,7 +15928,7 @@ through2@^2.0.0, through2@^2.0.1: readable-stream "~2.3.6" xtend "~4.0.1" -through@^2.3.6: +through@^2.3.6, through@^2.3.8: version "2.3.8" resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= @@ -15946,11 +16047,6 @@ tr46@^2.1.0: dependencies: punycode "^2.1.1" -trim-newlines@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" - integrity sha1-WIeWa7WCpFA6QetST301ARgVphM= - truncate-utf8-bytes@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz#405923909592d56f78a5818434b0b78489ca5f2b" @@ -16027,6 +16123,11 @@ type-fest@^0.20.2: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== +type-fest@^0.21.3: + version "0.21.3" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" + integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== + type-fest@^0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" @@ -16091,6 +16192,16 @@ typical@^2.6.0: resolved "https://registry.yarnpkg.com/typical/-/typical-2.6.1.tgz#5c080e5d661cbbe38259d2e70a3c7253e873881d" integrity sha1-XAgOXWYcu+OCWdLnCjxyU+hziB0= +typical@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/typical/-/typical-4.0.0.tgz#cbeaff3b9d7ae1e2bbfaf5a4e6f11eccfde94fc4" + integrity sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw== + +typical@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/typical/-/typical-5.2.0.tgz#4daaac4f2b5315460804f0acf6cb69c52bb93066" + integrity sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg== + ua-parser-js@0.7.28: version "0.7.28" resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.28.tgz#8ba04e653f35ce210239c64661685bf9121dec31" @@ -16748,6 +16859,14 @@ word-wrap@^1.2.3, word-wrap@~1.2.3: resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== +wordwrapjs@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/wordwrapjs/-/wordwrapjs-4.0.1.tgz#d9790bccfb110a0fc7836b5ebce0937b37a8b98f" + integrity sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA== + dependencies: + reduce-flatten "^2.0.0" + typical "^5.2.0" + worker-farm@^1.7.0: version "1.7.0" resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.7.0.tgz#26a94c5391bbca926152002f69b84a4bf772e5a8" @@ -16974,6 +17093,11 @@ yallist@^4.0.0: resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== +yaml@^1.10.0: + version "1.10.2" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" + integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== + yaml@^1.7.2: version "1.10.0" resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.0.tgz#3b593add944876077d4d683fee01081bd9fff31e"